/* ===== Ghar Design System — Light + Dark ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600&display=swap');

/* ===== TOKENS: Light Mode (Default) ===== */
:root {
  --mitti: #5C3D1E;
  --chandan: #C7834A;
  --chandan-bright: #D4954F;
  --haldi: #E8A525;
  --kesar: #E86F25;
  --doodh: #FBF7F0;
  --makhhan: #F5EDE3;
  --tulsi: #3D7A4A;
  --kumkum: #C43D3D;

  --bg: var(--doodh);
  --bg-alt: var(--makhhan);
  --text: #3A2A1A;
  --text-heading: var(--mitti);
  --text-secondary: #7A6A5A;
  --text-muted: #A89888;
  --border: rgba(92,61,30,0.12);
  --border-subtle: rgba(92,61,30,0.06);
  --card-bg: #FFFFFF;
  --card-shadow: 0 2px 16px rgba(92,61,30,0.06);
  --card-hover-shadow: 0 8px 32px rgba(92,61,30,0.1);
  --nav-bg: rgba(251,247,240,0.85);
  --phone-bg: #1A1412;
  --phone-border: rgba(92,61,30,0.15);
}

/* Dark mode tokens removed — site is light-only, dark previewed per-screenshot */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 600; color: var(--text-heading); }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt {
  background: var(--bg-alt);
  position: relative;
}
.section-alt::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(199,131,74,0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(232,165,37,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.section-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--chandan); margin-bottom: 12px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0; transition: all 0.3s;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 30px; height: 30px; }
.nav-wordmark { font-family: Georgia, serif; font-size: 18px; letter-spacing: 4px; color: var(--text-heading); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--text-secondary); transition: color 0.2s; letter-spacing: 0.2px; }
.nav-links a:hover { color: var(--chandan); }
.nav-links a.active { color: var(--chandan); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  padding: 8px 20px; border-radius: 8px;
  background: linear-gradient(135deg, var(--chandan) 0%, var(--haldi) 100%);
  color: #fff;
  font-weight: 600; font-size: 13px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(199,131,74,0.2);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(199,131,74,0.3); }

/* Per-screenshot dark/light toggle */
.screenshot-toggle {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0;
  padding: 4px; border-radius: 100px; z-index: 2;
  background: var(--card-bg); border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(92,61,30,0.1);
  cursor: pointer;
}
.screenshot-toggle .mode-btn {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; cursor: pointer;
  color: var(--text-muted); transition: all 0.2s;
}
.screenshot-toggle .mode-btn.active {
  background: var(--chandan); color: #fff;
  box-shadow: 0 1px 4px rgba(199,131,74,0.3);
}
.screenshot-toggle .mode-btn:not(.active):hover { color: var(--chandan); }
.screenshot-toggle .mode-btn svg { width: 14px; height: 14px; }

/* Mobile menu */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 20px; height: 1.5px; background: var(--text); margin: 4px 0; border-radius: 1px; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); transform-origin: center; }
.mobile-only { display: none; }
@media (max-width: 640px) {
  .mobile-only { display: block; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; position: relative; overflow: hidden;
}
.hero-bg-gradient {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 65% 20%, rgba(199,131,74,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 30% 70%, rgba(232,165,37,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(232,111,37,0.05) 0%, transparent 40%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 500px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  background: rgba(199,131,74,0.08); border: 1px solid var(--border);
  color: var(--chandan); font-size: 11px; font-weight: 600;
  margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero-title {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4.5vw, 48px);
  color: var(--text-heading); margin-bottom: 16px; line-height: 1.12; font-weight: 400;
}
.hero-title .accent { color: var(--chandan); }
.hero-subtitle { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 12px; color: var(--text-muted); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  background: linear-gradient(135deg, var(--chandan) 0%, var(--haldi) 100%);
  color: #fff;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(199,131,74,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(199,131,74,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  background: transparent; color: var(--text-secondary);
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--chandan); color: var(--chandan); }

/* Phone mockup */
.hero-phone { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,131,74,0.15) 0%, rgba(232,165,37,0.06) 40%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%,-50%) scale(1.08); opacity: 0.85; }
}
.phone-frame {
  width: 290px; height: 630px; border-radius: 42px;
  background: var(--phone-bg); border: 2px solid var(--phone-border);
  overflow: hidden; position: relative; z-index: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  animation: float 6s ease-in-out infinite;
}
.phone-screen { height: 100%; overflow: hidden; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Feature phones (smaller) */
.feature-phone {
  width: 260px; height: 564px; border-radius: 38px;
  background: var(--phone-bg); border: 2px solid var(--phone-border);
  overflow: hidden; position: relative;
  box-shadow: 0 20px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}
/* ===== VALUE PROPOSITION ===== */
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card {
  padding: 28px 24px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border-subtle);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); border-color: var(--border); }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.value-card h3 { font-size: 15px; margin-bottom: 6px; font-weight: 600; }
.value-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ===== FEATURE ROWS ===== */
.features-carousel { display: contents; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text { max-width: 440px; }
.feature-icon-badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-text h3 { font-family: Georgia, serif; font-size: 24px; margin-bottom: 10px; font-weight: 400; }
.feature-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(61,122,74,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-check svg { width: 10px; height: 10px; }
.feature-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.feature-visual::before {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,131,74,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
/* ===== TRUST / SOCIAL PROOF ===== */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; text-align: center; }
.trust-item h3 { font-family: Georgia, serif; font-size: 32px; font-weight: 400; color: var(--chandan); margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: var(--text-muted); }
.trust-statement {
  text-align: center; max-width: 600px; margin: 48px auto 0;
  padding: 32px; border-radius: 16px;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(199,131,74,0.04) 100%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--card-shadow);
  position: relative;
}
.trust-statement p { font-family: Georgia, serif; font-size: 16px; font-style: italic; line-height: 1.7; color: var(--text-secondary); }

/* ===== PRICING ===== */
.pricing-header { text-align: center; max-width: 520px; margin: 0 auto 20px; }
.pricing-header h2 { font-family: Georgia, serif; font-size: clamp(26px,3.5vw,36px); margin-bottom: 10px; font-weight: 400; }
.pricing-header p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Currency toggle */
.currency-toggle {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 40px;
}
.currency-toggle span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.currency-toggle span.active { color: var(--chandan); font-weight: 600; }
.toggle-switch {
  width: 44px; height: 24px; border-radius: 12px;
  background: var(--chandan); position: relative; cursor: pointer; border: none;
  transition: background 0.2s;
}
.toggle-switch::after {
  content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; top: 3px; left: 3px; transition: transform 0.2s;
}
.toggle-switch.inr::after { transform: translateX(20px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 820px; margin: 0 auto; }
.pricing-card {
  padding: 28px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border-subtle);
  box-shadow: var(--card-shadow);
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
.pricing-card.featured {
  border-color: var(--chandan); position: relative;
  background: linear-gradient(180deg, var(--card-bg) 0%, rgba(199,131,74,0.06) 100%);
}
.pricing-card.featured:hover { box-shadow: 0 12px 40px rgba(199,131,74,0.15); }
.pricing-popular {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  padding: 3px 14px; border-radius: 100px;
  background: var(--chandan); color: #fff; font-size: 11px; font-weight: 600; white-space: nowrap;
}
.pricing-name { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.pricing-price { font-family: Georgia, serif; font-size: 28px; font-weight: 400; margin-bottom: 2px; color: var(--text-heading); }
.pricing-price span { font-size: 14px; color: var(--text-muted); font-family: -apple-system, sans-serif; }
.pricing-period { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-card-footer { margin-top: auto; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.pricing-features .check { flex-shrink: 0; }
.pricing-btn {
  display: block; width: 100%; padding: 11px; border-radius: 10px;
  font-size: 13px; font-weight: 600; text-align: center; cursor: pointer;
  transition: all 0.2s; border: none;
}
.pricing-btn-primary { background: linear-gradient(135deg, var(--chandan) 0%, var(--haldi) 100%); color: #fff; box-shadow: 0 3px 12px rgba(199,131,74,0.2); }
.pricing-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(199,131,74,0.3); }
.pricing-btn-secondary { background: transparent; color: var(--chandan); border: 1px solid var(--border); }
.pricing-btn-secondary:hover { border-color: var(--chandan); }

/* ===== CTA / DOWNLOAD SECTION ===== */
.cta-section {
  text-align: center; padding: 100px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(199,131,74,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 30%, rgba(232,165,37,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section h2 { font-family: Georgia, serif; font-size: clamp(26px,3.5vw,36px); margin-bottom: 12px; font-weight: 400; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-section p { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; }
.cta-note { font-size: 12px; color: var(--text-muted); margin-top: 8px; position: relative; }

/* App Store Badge */
.app-store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 28px 12px 20px; border-radius: 14px;
  background: #000; color: #fff; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.app-store-badge svg { flex-shrink: 0; }
.app-store-badge-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.app-store-badge-label { font-size: 10px; letter-spacing: 0.3px; opacity: 0.85; }
.app-store-badge-store { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; margin-top: 2px; }

/* ===== FAQ ACCORDION ===== */
.faq-section { max-width: 700px; margin: 0 auto; }
.faq-group-title { font-size: 13px; font-weight: 600; color: var(--chandan); letter-spacing: 1.5px; text-transform: uppercase; margin: 40px 0 16px; }
.faq-group-title:first-child { margin-top: 0; }
.faq-item {
  border: 1px solid var(--border-subtle); border-radius: 12px;
  margin-bottom: 8px; overflow: hidden; background: var(--card-bg);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border); }
.faq-question {
  width: 100%; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; text-align: left;
  font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.2s;
}
.faq-question:hover { color: var(--chandan); }
.faq-chevron { width: 16px; height: 16px; transition: transform 0.3s; flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 20px 16px; font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  text-align: center; padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(199,131,74,0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 20%, rgba(232,165,37,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.about-hero h1 { font-family: Georgia, serif; font-size: clamp(32px,4vw,44px); font-weight: 400; margin-bottom: 16px; position: relative; }
.about-hero p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; max-width: 560px; margin: 0 auto; position: relative; }

.about-section { max-width: 700px; margin: 0 auto; }
.about-section h2 { font-family: Georgia, serif; font-size: 24px; font-weight: 400; margin-bottom: 16px; }
.about-section p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; margin-top: 32px; }
.team-card {
  padding: 28px; border-radius: 16px; background: var(--card-bg);
  border: 1px solid var(--border-subtle); box-shadow: var(--card-shadow); text-align: center;
}
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--chandan), var(--haldi));
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 24px; color: #fff;
}
.team-card h4 { font-size: 15px; margin-bottom: 2px; }
.team-card p { font-size: 12px; color: var(--text-muted); }

/* ===== PRESS KIT ===== */
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.press-card {
  padding: 28px; border-radius: 16px; background: var(--card-bg);
  border: 1px solid var(--border-subtle); box-shadow: var(--card-shadow);
}
.press-card h3 { font-size: 16px; margin-bottom: 8px; }
.press-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.color-swatch { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch {
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border-subtle);
  position: relative; cursor: default;
}
.swatch-label { font-size: 10px; color: var(--text-muted); margin-top: 4px; text-align: center; }

/* ===== PAGE HEADERS (Features, Pricing, etc.) ===== */
.page-hero {
  text-align: center; padding: 140px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(199,131,74,0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 20%, rgba(232,165,37,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero h1 { font-family: Georgia, serif; font-size: clamp(32px,4vw,44px); font-weight: 400; margin-bottom: 16px; position: relative; }
.page-hero p { font-size: 16px; color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.7; position: relative; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 700px; margin: 0 auto; padding: 140px 24px 80px; }
.legal-content h1 { font-family: Georgia, serif; font-size: 32px; font-weight: 400; margin-bottom: 8px; }
.legal-content .legal-date { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 18px; margin-top: 40px; margin-bottom: 12px; }
.legal-content h3 { font-size: 15px; margin-top: 24px; margin-bottom: 8px; }
.legal-content p, .legal-content li { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 24px; }
.legal-content a { color: var(--chandan); }
.legal-content a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt); padding: 56px 0 32px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200px;
  background: radial-gradient(ellipse at 50% 0%, rgba(199,131,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-top: 10px; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--text-secondary); transition: color 0.2s; }
.footer-col a:hover { color: var(--chandan); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--chandan), var(--haldi));
  width: 0%; pointer-events: none;
  transition: width 0.05s linear;
}

/* ===== PER-SCREENSHOT TOGGLE ===== */
.phone-screen img[data-dark-src] { transition: opacity 0.3s; }
.phone-has-toggle { position: relative; margin-bottom: 20px; }

/* ===== HOW IT WORKS ===== */
.how-steps { display: flex; gap: 48px; justify-content: center; position: relative; }
.how-step { text-align: center; flex: 1; max-width: 260px; position: relative; }
.how-step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--chandan), var(--haldi));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 22px; font-weight: 400;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(199,131,74,0.2);
}
.how-step h3 { font-size: 15px; margin-bottom: 6px; font-weight: 600; }
.how-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.how-connector {
  position: absolute; top: 26px; width: 48px; height: 1px;
  background: var(--border); right: -48px;
}
.how-step:last-child .how-connector { display: none; }

/* ===== COMPARISON (Why not YouTube?) ===== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto; }
.compare-card {
  padding: 28px; border-radius: 16px; position: relative;
}
.compare-card.others {
  background: rgba(92,61,30,0.03); border: 1px dashed var(--border);
}
.compare-card.ghar-card {
  background: var(--card-bg); border: 1px solid var(--chandan);
  box-shadow: 0 4px 20px rgba(199,131,74,0.1);
}
.compare-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.compare-card.ghar-card h3 { color: var(--chandan); }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-card li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.compare-icon { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.compare-icon.x { background: rgba(196,61,61,0.1); color: var(--kumkum); }
.compare-icon.check { background: rgba(61,122,74,0.1); color: var(--tulsi); }
.compare-icon svg { width: 10px; height: 10px; }

/* ===== SECTION LABEL ENHANCED ===== */
.section-label { position: relative; }

/* ===== CROSSFADE TRANSITION ===== */
.phone-screen img {
  transition: opacity 0.35s ease-in-out;
}
.phone-screen img.crossfade-out { opacity: 0; }

/* ===== TEXTURE ENHANCEMENTS ===== */

/* Dot grid on alternating sections */
.section-alt::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(92,61,30,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.section-alt > .container { position: relative; z-index: 1; }

/* Dot grid on footer */
.footer::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(92,61,30,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }

/* Hero subtle diagonal line texture */
.hero-bg-gradient::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(199,131,74,0.015) 40px,
    rgba(199,131,74,0.015) 41px
  );
  pointer-events: none;
}

/* Value card gradient accent on hover */
.value-card { position: relative; overflow: hidden; }
.value-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--chandan), var(--haldi));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  transform-origin: left;
}
.value-card:hover::after { transform: scaleX(1); }

/* Dashed decorative ring on feature phone visuals */
.feature-visual::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border: 1px dashed rgba(199,131,74,0.08);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Compare card Ghar accent top line */
.compare-card.ghar-card { overflow: hidden; }
.compare-card.ghar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--chandan), var(--haldi), var(--kesar));
  border-radius: 16px 16px 0 0;
}

/* Featured pricing card soft glow */
.pricing-card.featured::before {
  content: '';
  position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, rgba(199,131,74,0.12), rgba(232,165,37,0.08), rgba(232,111,37,0.06));
  border-radius: 17px;
  z-index: -1;
  filter: blur(8px);
}

/* Diamond section divider */
.diamond-divider {
  text-align: center;
  padding: 20px 0;
  position: relative;
  line-height: 1;
}
.diamond-divider::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 160px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,131,74,0.25), transparent);
}
.diamond-divider::after {
  content: '◆';
  position: relative; z-index: 1;
  font-size: 6px;
  color: var(--chandan);
  opacity: 0.4;
  padding: 0 16px;
  background: var(--bg);
}
.diamond-divider.on-alt::after {
  background: var(--bg-alt);
}

/* CTA section top ornament line */
.cta-section > .container::before {
  content: '';
  display: block;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--chandan), var(--haldi));
  border-radius: 1px;
  opacity: 0.35;
  margin: 0 auto 32px;
}

/* Page hero decorative bottom border */
.page-hero::after, .about-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,131,74,0.2), transparent);
}

/* FAQ item left accent on open */
.faq-item.open {
  border-left: 2px solid var(--chandan);
}

/* Trust statement decorative top/bottom lines */
.trust-statement::before {
  content: '';
  position: absolute; top: -1px; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,131,74,0.2), transparent);
}
.trust-statement::after {
  content: '✦';
  display: block; text-align: center;
  font-size: 12px; color: var(--chandan);
  opacity: 0.25; margin-top: 20px;
}

/* Press card top accent line */
.press-card { position: relative; overflow: hidden; }
.press-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--chandan), var(--haldi));
  opacity: 0.3;
}

/* ===== MOBILE NAV SLIDE-OUT ===== */
@media (max-width: 640px) {
  /* --- Break out of backdrop-filter containing block --- */
  .nav:has(.nav-links.show) {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }

  /* --- Full-screen panel --- */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: var(--makhhan);
    padding: 0;
    gap: 0;
    align-items: stretch !important;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.show {
    opacity: 1; pointer-events: auto;
  }

  /* --- Gradient accent bar --- */
  .nav-links::before {
    content: '';
    display: block; height: 3px; flex-shrink: 0;
    background: linear-gradient(90deg, var(--chandan), var(--haldi), var(--kesar));
    order: -2;
  }

  /* --- Brand header (real logo + wordmark) --- */
  .mob-brand {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 24px 28px 20px !important;
    border-bottom: 1px solid rgba(92,61,30,0.08);
    order: -1;
  }
  .mob-brand svg {
    color: var(--mitti);
    flex-shrink: 0;
  }
  .mob-wordmark {
    font-family: Georgia, serif;
    font-size: 22px;
    letter-spacing: 6px;
    color: var(--mitti);
  }

  /* Hide the old CSS-only brand pseudo-element */
  .nav-links::after {
    display: none !important;
  }

  /* --- List items --- */
  .nav-links li { padding: 0; list-style: none; }

  /* --- Main nav links --- */
  .nav-links > li:not(.mobile-only) a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 28px;
    font-size: 17px; font-weight: 500;
    color: var(--mitti);
    border-bottom: 1px solid rgba(92,61,30,0.04);
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.3px;
  }
  .nav-links > li:not(.mobile-only) a::after {
    content: '\2192';
    font-size: 13px; color: var(--text-muted); opacity: 0.4;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav-links > li:not(.mobile-only) a:hover {
    background: rgba(199,131,74,0.05);
    color: var(--chandan);
  }
  .nav-links > li:not(.mobile-only) a:hover::after {
    opacity: 0.8; transform: translateX(3px);
  }
  .nav-links a.active {
    color: var(--chandan); font-weight: 600;
  }

  /* --- Divider --- */
  .mob-divider {
    height: 1px !important;
    margin: 6px 24px !important;
    background: linear-gradient(90deg, transparent, rgba(199,131,74,0.18), transparent);
  }

  /* --- Extra links (Press Kit, Contact) --- */
  .mob-extra a {
    display: flex !important; align-items: center; gap: 8px;
    padding: 13px 28px !important;
    font-size: 14px !important; font-weight: 500 !important;
    color: var(--text-secondary) !important;
    background: none !important; border: none !important;
    box-shadow: none !important; border-radius: 0 !important;
    text-align: left !important;
    transition: color 0.2s;
  }
  .mob-extra a:hover { color: var(--chandan) !important; }

  /* --- CTA card (matches desktop style) --- */
  .mob-tagline {
    margin: 20px 24px !important;
    padding: 32px 24px 28px !important;
    border-radius: 20px;
    background: var(--bg) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .mob-tagline::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(199,131,74,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 30%, rgba(232,165,37,0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  .mob-tagline::after {
    content: '';
    display: block;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--chandan), var(--haldi));
    border-radius: 1px;
    margin: 0 auto 20px;
    position: relative;
  }
  .mob-tagline-logo {
    display: block;
    margin: 0 auto 16px;
    color: var(--text-muted);
    opacity: 0.5;
    position: relative;
  }
  .mob-tagline-heading {
    display: block;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
  }
  .mob-tagline-desc {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .mob-tagline-note {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    position: relative;
  }
  /* Hide old elements */
  .mob-hindi, .mob-quote { display: none !important; }

  /* --- App Store badge CTA (now inside tagline card) --- */
  .mob-cta { display: none !important; }
  .mob-appstore-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 24px 10px 16px;
    border-radius: 12px;
    background: #000 !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.15s, box-shadow 0.2s;
    position: relative;
  }
  .mob-appstore-badge svg {
    flex-shrink: 0;
    color: #fff;
    width: 22px;
    height: 22px;
  }
  .mob-appstore-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
  }
  .mob-appstore-label {
    font-size: 9px;
    letter-spacing: 0.3px;
    opacity: 0.85;
    color: #fff;
  }
  .mob-appstore-store {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-top: 2px;
    color: #fff;
  }
  .mob-appstore-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
  }

  /* --- Footer legal links --- */
  .mob-legal {
    display: flex !important;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 24px 20px !important;
    margin-top: auto !important;
    border-top: none;
  }
  .mob-legal a {
    display: inline !important;
    padding: 0 !important;
    font-size: 11px !important; font-weight: 400 !important;
    color: var(--text-muted) !important;
    background: none !important; border: none !important;
    box-shadow: none !important;
    transition: color 0.2s;
  }
  .mob-legal a:hover { color: var(--chandan) !important; }
  .mob-dot { font-size: 11px; color: var(--text-muted); }

  /* --- Hamburger → X morph --- */
  .mobile-menu-btn { z-index: 10000; position: relative; }
  .nav-links.show ~ .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav-links.show ~ .mobile-menu-btn span:nth-child(2) {
    opacity: 0; transform: scaleX(0);
  }
  .nav-links.show ~ .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* --- Backdrop overlay (hidden — menu is full-screen) --- */
  .mobile-menu-overlay { display: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-note { text-align: center; }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .feature-text { max-width: 100%; text-align: center; margin: 0 auto; }
  .feature-list li { justify-content: center; }
  .trust-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-steps { gap: 32px; flex-wrap: wrap; }
  .how-connector { display: none; }
  .compare-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 640px) {
  /* ---- NAV ---- */
  .nav-right { display: none; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  /* ---- SPACING ---- */
  .section { padding: 40px 0; }
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 24px; }
  .hero-inner { gap: 28px; }
  .page-hero { padding: 100px 0 40px; }
  .cta-section { padding: 48px 0; }
  .diamond-divider { padding: 6px 0; }
  .container { padding: 0 20px; }

  /* ---- HERO ---- */
  .hero-title { font-size: 26px !important; line-height: 1.15; }
  .hero-subtitle { font-size: 14px; margin-bottom: 24px; }
  .hero-note { font-size: 11px; }
  .hero-badge { font-size: 10px; margin-bottom: 14px; padding: 4px 12px; }
  .hero-actions { flex-direction: row; align-items: stretch; justify-content: center; gap: 10px; }
  .btn-primary, .btn-secondary { justify-content: center; font-size: 13px; padding: 11px 16px; }
  .app-store-badge { padding: 10px 16px 10px 12px; max-width: none; margin: 0; border-radius: 10px; gap: 8px; }
  .app-store-badge svg { width: 22px; height: 22px; }
  .app-store-badge-store { font-size: 14px; }
  .app-store-badge-label { font-size: 9px; }
  .phone-frame { width: 200px; height: 434px; border-radius: 32px; }
  .phone-glow { width: 300px; height: 300px; }

  /* ---- VALUE PROPS: 2-column grid ---- */
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .value-card { padding: 14px 12px; }
  .value-card h3 { font-size: 13px; margin-bottom: 4px; }
  .value-card p { font-size: 11px; line-height: 1.4; }
  .value-icon { width: 34px; height: 34px; border-radius: 9px; margin-bottom: 8px; }
  .value-icon svg { width: 16px; height: 16px; }

  /* ---- HOW IT WORKS: horizontal 3-col ---- */
  .how-steps { flex-direction: row; gap: 12px; flex-wrap: nowrap; }
  .how-step { max-width: none; flex: 1; min-width: 0; }
  .how-step-number { width: 36px; height: 36px; font-size: 15px; margin-bottom: 8px; }
  .how-step h3 { font-size: 12px; margin-bottom: 2px; }
  .how-step p { font-size: 10px; line-height: 1.4; }
  .how-connector { display: none; }

  /* ---- FEATURES: compact card with small phone ---- */
  .features-carousel { display: contents; }
  .feature-row, .feature-row.reverse {
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; direction: ltr;
    margin-bottom: 32px; padding: 20px 16px;
    border-radius: 16px;
    background: var(--card-bg); border: 1px solid var(--border-subtle);
    box-shadow: var(--card-shadow);
  }
  .feature-row:last-child { margin-bottom: 0; }
  .feature-visual {
    display: flex; justify-content: center; order: -1;
  }
  .feature-visual::before, .feature-visual::after { display: none; }
  .feature-phone {
    width: 140px; height: 304px; border-radius: 22px;
  }
  .phone-has-toggle { margin-bottom: 0; }
  .screenshot-toggle {
    bottom: -12px;
    transform: translateX(-50%) scale(0.85);
  }
  .feature-text { text-align: center; max-width: 100%; }
  .feature-text h3 { font-size: 16px; margin-bottom: 4px; }
  .feature-text p { font-size: 12px; margin-bottom: 8px; line-height: 1.5; }
  .feature-list { gap: 4px; }
  .feature-list li { justify-content: center; font-size: 11px; gap: 6px; }
  .feature-check { width: 16px; height: 16px; }
  .feature-check svg { width: 8px; height: 8px; }
  .feature-icon-badge { margin: 0 auto 8px; width: 36px; height: 36px; border-radius: 10px; }
  .feature-icon-badge svg { width: 18px; height: 18px; }

  /* ---- SECTION HEADINGS ---- */
  .section-label { margin-bottom: 6px; font-size: 10px; }
  h2 { font-size: 22px !important; }

  /* ---- COMPARE ---- */
  .compare-grid { gap: 10px; }
  .compare-card { padding: 16px; }
  .compare-card h3 { font-size: 13px; margin-bottom: 10px; }
  .compare-card li { font-size: 12px; }

  /* ---- TRUST ---- */
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .trust-item h3 { font-size: 20px; }
  .trust-item p { font-size: 10px; }
  .trust-statement { padding: 16px; margin-top: 24px; }
  .trust-statement p { font-size: 13px !important; }

  /* ---- PRICING ---- */
  .pricing-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .pricing-card { padding: 22px; }

  /* ---- CTA ---- */
  .cta-section h2 { font-size: 22px !important; }
  .cta-section p { font-size: 13px; margin-bottom: 20px; }

  /* ---- FOOTER ---- */
  .footer { padding: 24px 0 12px; }
  .footer-inner { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .footer-brand { text-align: center; }
  .footer-brand > div { justify-content: center !important; }
  .footer-brand p { display: none; }
  .footer-col { text-align: center; }
  .footer-col h4 { display: none; }
  .footer-col ul { flex-direction: row; flex-wrap: wrap; gap: 6px 14px; justify-content: center; align-items: center; }
  .footer-bottom { gap: 4px; text-align: center; }
  .footer-bottom-links { display: none; }

  /* ---- OTHER PAGES ---- */
  .team-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 26px !important; margin-bottom: 8px; }
  .page-hero p { font-size: 13px; }
  .about-hero { padding: 110px 0 48px; }
  .about-hero h1 { font-size: 26px !important; }
  .about-section h2 { font-size: 20px !important; }

  /* ---- LEGAL PAGES ---- */
  .legal-content { padding: 110px 20px 60px; }
  .legal-content h1 { font-size: 26px; }
}
