/* ═══════════════════════════════════════════════════════════
   A to Z Outdoors — Marketing Website
   Design system derived from V6 app mockup
   ═══════════════════════════════════════════════════════════ */

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

/* ─── Design Tokens (Light Mode) ────────────────────────── */
:root {
  /* Brand */
  --forest: #2D5016;
  --forest-light: #4A7A2E;
  --forest-dark: #1E3A0E;
  --forest-glow: rgba(45, 80, 22, 0.10);
  --gold: #8B6914;
  --gold-glow: rgba(139, 105, 20, 0.12);

  /* Backgrounds */
  --bg: #F5F0E8;
  --bg-alt: #EDE8DE;
  --surface: #FFFFFF;
  --surface-hover: #FAFAF7;
  --page-bg: #F5F0E8;

  /* Text */
  --text-primary: #1A1A1A;
  --text-secondary: #4A5568;
  --text-tertiary: #8A94A6;
  --white: #FFFFFF;

  /* Borders & Shadows */
  --border: #E8E0D0;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.06);
  --tile-shadow: 0 1px 3px rgba(0,0,0,0.06);
  --hero-shadow: 0 25px 80px rgba(0,0,0,0.18);

  /* CTA */
  --cta-bg: #2D5016;
  --cta-hover: #3D6A20;
  --cta-shadow: rgba(45, 80, 22, 0.3);

  /* Phone Bezel */
  --phone-bezel: #1a1a1a;

  /* Progress */
  --progress-track: #E8E0D0;

  /* Nav */
  --nav-bg: rgba(255, 255, 255, 0.85);
  --nav-shadow: 0 1px 0 rgba(0,0,0,0.06);

  /* Spacing */
  --section-pad: 100px;
  --content-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Dark Mode ─────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --forest: #5CB85C;
    --forest-light: #6ECF6E;
    --forest-dark: #3D7A1C;
    --forest-glow: rgba(92, 184, 92, 0.15);
    --gold: #D4A843;
    --gold-glow: rgba(212, 168, 67, 0.15);

    --bg: #0F1410;
    --bg-alt: #141A16;
    --surface: #1A211C;
    --surface-hover: #232B25;
    --page-bg: #0F1410;

    --text-primary: #E8E5E0;
    --text-secondary: #9CA89E;
    --text-tertiary: #5F6B62;

    --border: #2A3530;
    --card-shadow: 0 2px 8px rgba(0,0,0,0.25);
    --tile-shadow: 0 1px 4px rgba(0,0,0,0.2);
    --hero-shadow: 0 25px 80px rgba(0,0,0,0.5);

    --cta-bg: #3D7A1C;
    --cta-hover: #4A9422;
    --cta-shadow: rgba(92, 184, 92, 0.25);

    --phone-bezel: #2a2a2a;

    --progress-track: #2A3530;

    --nav-bg: rgba(26, 33, 28, 0.9);
    --nav-shadow: none;
  }
}

/* ─── Typography ────────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--page-bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.2;
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--forest-light); }

/* ─── Utility ───────────────────────────────────────────── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.section-center {
  text-align: center;
}
.section-center .section-subheading {
  margin: 0 auto;
}

/* ─── Scroll Animations ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--nav-shadow);
}

.nav-inner {
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}
.nav-logo svg {
  width: 28px;
  height: 28px;
}
.nav-logo svg path {
  fill: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--cta-bg);
  color: var(--white) !important;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-primary);
}
.nav-hamburger svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  padding: 120px 0 var(--section-pad);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text h1 .highlight {
  color: var(--forest);
}

.hero-tagline {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 480px;
  line-height: 1.5;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #1a1a1a;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: #FFFFFF;
}
.store-badge svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-badge-small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
}
.store-badge-large {
  font-size: 16px;
  font-weight: 600;
}

/* Hero phone mockup */
.hero-phone {
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   PHONE MOCKUP (reusable, from V6 design)
   ═══════════════════════════════════════════════════════════ */
.phone-frame {
  width: 320px;
  min-height: 640px;
  background: var(--bg);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--hero-shadow), 0 0 0 6px var(--phone-bezel);
  position: relative;
  flex-shrink: 0;
}

.phone-screen {
  padding: 16px 16px 72px;
}

/* Phone internal components (match v6 exactly) */
.phone-header {
  text-align: center;
  padding: 6px 0 14px;
}

.phone-logo {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.phone-logo path { fill: var(--forest); }

.phone-app-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-tagline {
  font-size: 11px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 2px;
}

.phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 44px;
  background: var(--cta-bg);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.phone-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Phone activity grid */
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}

.phone-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
}

.phone-tile-emoji {
  font-size: 20px;
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}

.phone-tile-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.phone-tile-count {
  font-size: 8px;
  color: var(--text-tertiary);
}

/* Phone trip cards */
.phone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 6px;
  border-left: 3px solid transparent;
}
.phone-card-active { border-left-color: var(--gold); }
.phone-card-done   { border-left-color: var(--forest); }

.phone-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.phone-card-icon-gold   { background: var(--gold-glow); }
.phone-card-icon-green  { background: var(--forest-glow); }

.phone-card-body { flex: 1; min-width: 0; }

.phone-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.phone-card-done .phone-card-title { color: var(--forest); }

.phone-card-meta {
  font-size: 9px;
  color: var(--text-secondary);
}

.phone-card-progress {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-progress-track {
  flex: 1;
  height: 4px;
  background: var(--progress-track);
  border-radius: 2px;
  overflow: hidden;
}

.phone-progress-fill {
  height: 100%;
  border-radius: 2px;
}
.phone-progress-gold  { background: var(--gold); }
.phone-progress-green { background: var(--forest); }

.phone-progress-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Phone bottom nav */
.phone-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  color: var(--text-tertiary);
}
.phone-nav-item.active { color: var(--forest); }
.phone-nav-item svg { width: 18px; height: 18px; }


/* ═══════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.feature-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   ACTIVITY SHOWCASE
   ═══════════════════════════════════════════════════════════ */
.activity-grid-web {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.activity-tile-web {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 12px;
  text-align: center;
  cursor: default;
  transition: all 0.3s var(--ease);
  box-shadow: var(--tile-shadow);
}
.activity-tile-web:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: var(--forest);
}

.atw-emoji {
  font-size: 36px;
  margin-bottom: 8px;
  display: block;
  line-height: 1.2;
}

.atw-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.atw-count {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.activity-more {
  text-align: center;
  margin-top: 8px;
}

.activity-more a {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
}


/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest-glow);
  color: var(--forest);
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-emoji {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}


/* ═══════════════════════════════════════════════════════════
   TRIP DEMO
   ═══════════════════════════════════════════════════════════ */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.demo-text .section-heading {
  font-size: 36px;
}

.demo-features {
  list-style: none;
  margin-top: 24px;
}

.demo-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.demo-features li .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--forest-glow);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.demo-phone {
  display: flex;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest-glow);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-tertiary);
}


/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--forest);
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--text-tertiary);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}


/* ═══════════════════════════════════════════════════════════
   BLOG TEASERS
   ═══════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.blog-card-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-gradient-1 {
  background: linear-gradient(135deg, #2D5016, #4A7A2E);
}
.blog-gradient-2 {
  background: linear-gradient(135deg, #8B6914, #C4952A);
}
.blog-gradient-3 {
  background: linear-gradient(135deg, #1a5276, #2980b9);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════
   FINAL CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #1E3A0E, #2D5016, #4A7A2E);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 36px;
}

.cta-banner .store-badges {
  justify-content: center;
}

.cta-banner .store-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.cta-banner .store-badge:hover {
  background: rgba(255,255,255,0.25);
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
}
.footer-brand svg {
  width: 22px;
  height: 22px;
}
.footer-brand svg path { fill: var(--forest); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text h1 { font-size: 44px; }
  .hero-tagline { margin: 0 auto 16px; }
  .hero-trust { justify-content: center; }
  .store-badges { justify-content: center; }
  .hero-phone { order: -1; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .activity-grid-web { grid-template-columns: repeat(3, 1fr); }

  .demo-grid { grid-template-columns: 1fr; text-align: center; }
  .demo-phone { order: -1; }
  .demo-features li { justify-content: center; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }

  .blog-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .section-heading { font-size: 34px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }

  .hero { min-height: auto; padding: 100px 0 64px; }
  .hero-text h1 { font-size: 34px; }
  .hero-tagline { font-size: 16px; }
  .section-heading { font-size: 28px; }
  .section-subheading { font-size: 16px; }

  .features-grid { grid-template-columns: 1fr; }

  .activity-grid-web { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }

  .phone-frame { width: 270px; min-height: 540px; border-radius: 30px; }

  .cta-banner h2 { font-size: 28px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
