/* ============================================================
   TrailCam Manager — Marketing Site
   Theme: Forest green #1e5c34 · Hunter gold #c9a84c
   ============================================================ */

:root {
  --green-dark:    #080f0b;
  --green-deep:    #0d2218;
  --green-primary: #1e5c34;
  --green-mid:     #2a7a47;
  --green-light:   #3aaa63;
  --gold:          #c9a84c;
  --gold-light:    #e0c870;
  --gold-dim:      #a88830;
  --text:          #f0ede6;
  --text-muted:    #8da89a;
  --text-dim:      #556b5e;
  --border:        rgba(201, 168, 76, 0.15);
  --card-bg:       #0f2318;
  --card-border:   rgba(255,255,255,0.06);
  --radius:        16px;
  --radius-sm:     10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--green-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ── Utilities ─────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); color: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 24px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--green-dark); }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(8, 15, 11, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--green-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30, 92, 52, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(13, 34, 24, 0.8) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; color: var(--gold-light); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 14px;
  transition: opacity 0.2s, transform 0.15s;
  line-height: 1.2;
}
.hero-appstore:hover { color: var(--green-dark); opacity: 0.9; transform: translateY(-1px); }
.hero-appstore svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-appstore-text { display: flex; flex-direction: column; }
.hero-appstore-text small { font-size: 0.65rem; font-weight: 400; opacity: 0.7; letter-spacing: 0.02em; }

.hero-note { font-size: 0.82rem; color: var(--text-dim); }

/* Phone Mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,92,52,0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.phone {
  width: 270px;
  height: 560px;
  background: #0a1505;
  border-radius: 44px;
  border: 2.5px solid rgba(201, 168, 76, 0.5);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 8px rgba(13, 34, 24, 0.9),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 1;
}
.phone-notch {
  width: 100px; height: 28px;
  background: #0a1505;
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  z-index: 10;
  border-bottom: 1.5px solid rgba(201,168,76,0.2);
}
.phone-screen {
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
}
.phone-status {
  height: 40px;
  background: #080f0b;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 18px 6px;
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
}
.phone-map-area {
  flex: 1;
  background: #0d1f0f;
  position: relative;
  overflow: hidden;
}
/* Fake satellite map grid */
.phone-map-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
}
/* Tree patches */
.phone-map-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70px 50px at 30% 35%, rgba(20,60,25,0.8) 0%, transparent 100%),
    radial-gradient(ellipse 90px 60px at 75% 25%, rgba(15,50,20,0.7) 0%, transparent 100%),
    radial-gradient(ellipse 60px 80px at 60% 65%, rgba(18,55,22,0.8) 0%, transparent 100%),
    radial-gradient(ellipse 80px 40px at 20% 70%, rgba(12,45,18,0.6) 0%, transparent 100%);
}
/* Camera pins */
.phone-pin {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  z-index: 5;
}
.phone-pin.active {
  background: rgba(58, 170, 99, 0.2);
  border-color: #3aaa63;
  color: #3aaa63;
  box-shadow: 0 0 8px rgba(58,170,99,0.5);
}
.phone-pin.pulled {
  background: rgba(100,100,100,0.2);
  border-color: #556b5e;
  color: #556b5e;
}
.phone-tab-bar {
  height: 72px;
  background: #080f0b;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px 10px;
}
.phone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.45rem;
  color: var(--text-dim);
}
.phone-tab.active { color: var(--gold); }
.phone-tab-icon { font-size: 1.2rem; }

/* ── Photo Strip ───────────────────────────────────────── */
.photo-strip {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  position: relative;
}
.photo-strip-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
  transition: transform 0.5s, filter 0.3s;
}
.photo-strip-item:hover img { transform: scale(1.03); filter: brightness(0.9) saturate(1); }
/* Placeholder for when no photo loaded */
.photo-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 40% 60%, rgba(20,60,25,0.9) 0%, rgba(8,15,11,0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 2.5rem;
}
.photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(to top, rgba(8,15,11,0.85) 0%, transparent 100%);
}
.photo-caption {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.photo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.photo-strip-label {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

/* ── Features ──────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--green-deep);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(30, 92, 52, 0.4);
  border: 1px solid rgba(30, 92, 52, 0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── How It Works ──────────────────────────────────────── */
.how {
  padding: 100px 0;
}
.how-steps {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.how-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.how-step.reverse { direction: rtl; }
.how-step.reverse > * { direction: ltr; }

.how-step-num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.how-step h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.how-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.how-step ul {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-step ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.how-step ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* Screenshot Frame */
.screenshot-frame {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.screenshot-bar {
  height: 36px;
  background: #0a1505;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.screenshot-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.screenshot-title {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.screenshot-body {
  padding: 24px;
  min-height: 220px;
  position: relative;
}
/* Placeholder screen styles */
.screen-map {
  background: #0d1f0f;
  border-radius: var(--radius-sm);
  height: 200px;
  position: relative;
  overflow: hidden;
}
.screen-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100px 70px at 25% 40%, rgba(20,60,25,0.9) 0%, transparent 100%),
    radial-gradient(ellipse 140px 80px at 75% 30%, rgba(15,50,20,0.8) 0%, transparent 100%),
    radial-gradient(ellipse 80px 100px at 60% 70%, rgba(18,55,22,0.85) 0%, transparent 100%),
    radial-gradient(ellipse 120px 60px at 15% 75%, rgba(12,45,18,0.7) 0%, transparent 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0,rgba(255,255,255,0.015) 1px,transparent 1px,transparent 30px),
    repeating-linear-gradient(90deg,rgba(255,255,255,0.015) 0,rgba(255,255,255,0.015) 1px,transparent 1px,transparent 30px);
}
.map-pin-demo {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(58,170,99,0.2);
  border: 2px solid #3aaa63;
  box-shadow: 0 0 8px rgba(58,170,99,0.6);
  z-index: 2;
}
.screen-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.screen-list-item {
  height: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
}
.screen-list-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.screen-list-dot.active { background: #3aaa63; box-shadow: 0 0 6px rgba(58,170,99,0.5); }
.screen-list-dot.dim { background: #556b5e; }
.screen-list-lines { flex: 1; }
.screen-list-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 5px;
}
.screen-list-line.short { width: 55%; }
.screen-compass {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  flex-direction: column;
  gap: 12px;
}
.compass-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.compass-arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 60px solid var(--gold);
  position: absolute;
  top: 20px;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.6));
}
.compass-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}
.screen-history {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.screen-history-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
}
.screen-history-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.screen-history-label {
  height: 7px;
  border-radius: 3px;
  background: rgba(201,168,76,0.25);
}
.screen-history-fill {
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0.6;
  margin-top: 2px;
}
.screen-equip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.screen-equip-row {
  height: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}
.screen-equip-icon {
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
}
.screen-equip-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  flex: 1;
}
.screen-equip-row.warn .screen-equip-line { background: rgba(255, 165, 0, 0.25); }
.screen-equip-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffa500;
  background: rgba(255,165,0,0.15);
  border: 1px solid rgba(255,165,0,0.3);
  padding: 2px 6px;
  border-radius: 50px;
  flex-shrink: 0;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--green-deep);
}
.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--card-bg);
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(201,168,76,0.2); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-a p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Support ───────────────────────────────────────────── */
.support {
  padding: 100px 0;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
.support-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
}
.support-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.support-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Form */
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(201,168,76,0.4); }
.form-field select { appearance: none; cursor: pointer; }
.form-field select option { background: #0f2318; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.support-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.support-link:hover {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.05);
  color: var(--text);
}
.support-link-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}
.support-link-text strong { display: block; font-size: 0.95rem; }
.support-link-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── Scroll animation ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,15,11,0.97);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.3rem; color: var(--text); }
  .nav-links.open + .nav-cta { display: block; }

  .hero-inner { grid-template-columns: 1fr; }
  .phone-wrap { display: none; }
  .hero { min-height: auto; padding: 100px 0 60px; }

  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item { aspect-ratio: 16/9; }

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

  .how-step { grid-template-columns: 1fr; gap: 32px; }
  .how-step.reverse { direction: ltr; }

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

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
}
