/* ============================================
   EPPETECH INVENTORY — MAIN STYLESHEET
   Colors: Forest Green #1a5c00, Dark Green #0d3a00,
   Yellow/Gold #f5c000, Cyan/Teal #00bcd4, White #fff
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-dark:   #0d3a00;
  --green-mid:    #1a5c00;
  --green-light:  #2a7a00;
  --yellow:       #f5c000;
  --cyan:         #00bcd4;
  --white:        #ffffff;
  --off-white:    #f7f9f4;
  --text-dark:    #0f1f06;
  --text-muted:   #5a7050;
  --border:       rgba(26,92,0,0.12);
  --shadow-sm:    0 2px 12px rgba(13,58,0,0.08);
  --shadow-md:    0 8px 32px rgba(13,58,0,0.14);
  --shadow-lg:    0 20px 60px rgba(13,58,0,0.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

section { padding: 100px 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 58, 0, 0.97);
  backdrop-filter: blur(12px);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
  padding: 2px;
}

.navbar__name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.navbar__name span {
  color: var(--yellow);
}

.navbar__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta {
  background: var(--yellow) !important;
  color: var(--green-dark) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: all var(--transition) !important;
}

.navbar__cta::after { display: none !important; }
.navbar__cta:hover { background: #ffd233 !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,192,0,0.4); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-warehouse.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,58,0,0.92) 0%, rgba(13,58,0,0.6) 60%, rgba(0,188,212,0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,192,0,0.15);
  border: 1px solid rgba(245,192,0,0.4);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero__badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero__title .accent {
  color: var(--yellow);
  display: block;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.2s both;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 80px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: #ffd233;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,192,0,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-mid);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,92,0,0.35);
}

.btn-arrow::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== TRUSTED BY ===== */
.trusted {
  background: var(--off-white);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

.trusted__logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted__logo-item {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  opacity: 0.55;
  transition: opacity var(--transition);
}

.trusted__logo-item:hover { opacity: 1; }

/* ===== FEATURES ===== */
.features { background: var(--white); }

.features__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.features__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.features__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--cyan));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.screenshots::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,188,212,0.12), transparent 70%);
}

.screenshots__header { color: var(--white); margin-bottom: 64px; }

.screenshots__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.screenshots__desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
}

.screenshots__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--green-dark);
  font-weight: 700;
}

.screenshots__display {
  position: relative;
}

.screenshot-panel {
  display: none;
}

.screenshot-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.screenshot-panel__info {}

.screenshot-panel__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.screenshot-panel__desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.screenshot-panel__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screenshot-panel__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.screenshot-panel__points li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.screenshot-frame {
  position: relative;
}

.screenshot-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(245,192,0,0.25);
  border-radius: 18px;
  pointer-events: none;
}

.screenshot-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: block;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--off-white);
}

.how-it-works__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

.how-it-works__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.how-it-works__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--cyan));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--yellow);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--yellow);
  transition: all var(--transition);
}

.step:hover .step__num {
  background: var(--yellow);
  color: var(--green-dark);
  transform: scale(1.1);
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing { background: var(--white); }

.pricing__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}

.pricing__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.pricing__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-card__tier { color: rgba(255,255,255,0.6); }

.pricing-card__name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-card__name { color: var(--white); }

.pricing-card__price {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-mid);
  margin: 16px 0 4px;
  line-height: 1;
}

.pricing-card.featured .pricing-card__price { color: var(--yellow); }

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-card__period { color: rgba(255,255,255,0.55); }

.pricing-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-card__divider { border-color: rgba(255,255,255,0.12); }

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
  align-items: flex-start;
}

.pricing-card.featured .pricing-card__features li { color: rgba(255,255,255,0.85); }

.pricing-card__features li .check {
  color: var(--green-mid);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.featured .pricing-card__features li .check { color: var(--yellow); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--off-white);
}

.testimonials__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}

.testimonials__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 2.5rem;
  color: var(--yellow);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a4400 50%, #063300 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,192,0,0.08), transparent 70%);
  pointer-events: none;
}

.cta-section__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.cta-section__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: #070f04;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer__brand-logo img {
  height: 36px; width: 36px;
  object-fit: contain;
  background: #000;
  border-radius: 7px;
  padding: 2px;
}

.footer__brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}

.footer__brand-name span { color: var(--yellow); }

.footer__col-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__col ul a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy { font-size: 0.82rem; }
.footer__copy a { color: var(--yellow); text-decoration: none; }

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--yellow);
  color: var(--green-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid  { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .footer__top    { grid-template-columns: 1fr 1fr; }
  .steps          { grid-template-columns: repeat(2, 1fr); }
  .steps::before  { display: none; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .navbar__links  { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__stats    { gap: 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .screenshot-panel.active { grid-template-columns: 1fr; }
  .steps          { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__top    { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .navbar { padding: 0 20px; }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--green-dark);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}
