/* ═══════════════════════════════════════════════════════════════════
   BharatDeed — Indian Legal Brand Design System
   भारतDeed · Trustworthy · Authoritative · Premium
   ═══════════════════════════════════════════════════════════════════ */

/* ── Keyframes ──────────────────────────────────────────────────── */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatUp {
  0% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-12px); opacity: 0.9; }
  100% { transform: translateY(0); opacity: 0.6; }
}
@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes borderShine {
  0% { border-image-source: linear-gradient(90deg, #C4933A 0%, #F5ECD7 50%, #C4933A 100%); }
  50% { border-image-source: linear-gradient(90deg, #F5ECD7 0%, #C4933A 50%, #F5ECD7 100%); }
  100% { border-image-source: linear-gradient(90deg, #C4933A 0%, #F5ECD7 50%, #C4933A 100%); }
}

/* ── Design Tokens — Indian Legal Brand ──────────────────────────── */
:root {
  --primary-maroon:       #781F2D;
  --primary-maroon-dark:  #3C0D15;
  --primary-maroon-light: #F9F4F5;
  --royal-navy:           #781F2D;
  --royal-slate:          #3C0D15;

  --indian-gold:          #C4933A;
  --indian-gold-dark:     #9E762A;
  --indian-gold-light:    #F5ECD7;
  --royal-gold:           #C4933A;
  --royal-gold-dark:      #9E762A;
  --royal-gold-light:     #F5ECD7;

  --royal-cream:      #FBF9F5;
  --pure-white:       #FFFFFF;
  --surface-warm:     #F7F3EC;

  --text-primary:     #1A1C1E;
  --text-body:        #3D4045;
  --text-muted:       #787C83;
  --text-light:       #A4A8AE;

  --accent-emerald:       #1A5E3B;
  --accent-emerald-hover: #144D31;
  --accent-emerald-light: #EBF5EF;

  --border-subtle:    #E8E2D8;
  --border-warm:      #DDD3C7;

  --shadow-sm:  0 1px 2px rgba(120,31,45,0.04);
  --shadow-md:  0 4px 16px rgba(120,31,45,0.06);
  --shadow-lg:  0 12px 32px rgba(120,31,45,0.08);
  --shadow-xl:  0 20px 48px rgba(120,31,45,0.10);
  --shadow-gold: 0 4px 20px rgba(196,147,58,0.15);
  --shadow-glow: 0 0 40px rgba(196,147,58,0.12);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Scroll-Reveal Animation Classes ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--royal-cream);
}

img { max-width: 100%; display: block; }
a { color: var(--accent-emerald); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-emerald-hover); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--royal-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: 3.2rem; font-weight: 700; }
h2 { font-size: 2.6rem; font-weight: 600; }
h3 { font-size: 1.6rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* ── Gold Divider ───────────────────────────────────────────────── */
.gold-line {
  width: 80px;
  height: 3px;
  background: var(--indian-gold);
  border-radius: 2px;
  margin: 16px auto 28px;
  position: relative;
}
.gold-line::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: var(--indian-gold);
  background: var(--royal-cream);
  padding: 0 6px;
  line-height: 1;
}
.gold-line.left { margin-left: 0; margin-right: auto; }
.gold-line.left::after { background: var(--pure-white); }

/* ── Badge ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid;
}
.badge-gold {
  background: var(--royal-gold-light);
  color: var(--royal-gold-dark);
  border-color: rgba(196,147,58,0.3);
}
.badge-emerald {
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
  border-color: rgba(26,94,59,0.2);
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════ */
/* Indian tricolor top bar */
body::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #FF9933 0%, #FF9933 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #138838 66.66%, #138838 100%);
  position: sticky;
  top: 0;
  z-index: 101;
}
.navbar {
  position: sticky;
  top: 3px;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 24px rgba(120,31,45,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal-navy);
  text-decoration: none;
}
.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-maroon-dark), var(--primary-maroon));
  border: 2px solid var(--indian-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indian-gold);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  position: relative;
}
.navbar-brand .logo-icon::after {
  content: '⚖';
  position: absolute;
  font-size: 0.7rem;
  top: -8px;
  right: -9px;
  background: var(--pure-white);
  border: 1px solid var(--indian-gold);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--royal-navy);
  background: var(--surface-warm);
}
/* Nav buttons */
.nav-signup {
  margin-left: 4px !important;
  padding: 8px 18px !important;
  border: 1.5px solid var(--royal-gold) !important;
  color: var(--royal-gold-dark) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-signup:hover {
  background: var(--royal-gold-light) !important;
  color: var(--royal-gold-dark) !important;
}
.nav-cta {
  margin-left: 4px !important;
  padding: 10px 20px !important;
  background: var(--accent-emerald) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--accent-emerald-hover) !important;
  color: #fff !important;
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--royal-navy);
  padding: 6px;
}

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.2;
}
.btn-lg { padding: 18px 38px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--accent-emerald);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-emerald-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-dark));
  color: #fff;
}
.btn-gold:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--royal-navy);
  border-color: var(--border-warm);
}
.btn-outline:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold-dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--royal-gold-dark);
  border-color: var(--royal-gold);
}
.btn-outline-gold:hover {
  background: var(--royal-gold-light);
  color: var(--royal-gold-dark);
}

/* ══════════════════════════════════════════════════════════════════
   HERO — WhatsApp Mockup + Dramatic Layout
   ══════════════════════════════════════════════════════════════════ */
.hero {
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #fefdfb 0%, #fdf7f1 20%, #fff8ed 45%, #fefcf9 70%, #fefdfb 100%);
  background-size: 400% 400%;
  animation: gradientShift 18s ease infinite;
}
.hero::before {
  content: '';
  position: absolute;
  top: -35%;
  right: -18%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(196,147,58,0.07) 0%, rgba(196,147,58,0.02) 40%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -12%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(120,31,45,0.03) 0%, transparent 60%);
  border-radius: 50%;
}

/* Mandala decoration */
.hero-mandala {
  position: absolute;
  top: 10%;
  left: -8%;
  width: 300px;
  height: 300px;
  background:
    radial-gradient(circle at center, rgba(196,147,58,0.06) 0%, transparent 25%),
    radial-gradient(circle at center, rgba(196,147,58,0.04) 0%, transparent 50%),
    radial-gradient(circle at center, rgba(196,147,58,0.02) 0%, transparent 75%);
  border: 1px dashed rgba(196,147,58,0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Floating dots */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
}
.hero-dot:nth-child(1) { width: 7px; height: 7px; background: var(--indian-gold); top: 16%; left: 7%; animation: floatUp 5s ease-in-out infinite; }
.hero-dot:nth-child(2) { width: 11px; height: 11px; background: var(--primary-maroon); top: 72%; left: 10%; animation: floatUp 6s ease-in-out 0.6s infinite; }
.hero-dot:nth-child(3) { width: 5px; height: 5px; background: var(--indian-gold); top: 22%; left: 90%; animation: floatUp 4.5s ease-in-out 1.2s infinite; }
.hero-dot:nth-child(4) { width: 9px; height: 9px; background: #E8A840; top: 82%; left: 80%; animation: floatUp 5.5s ease-in-out 1.8s infinite; }
.hero-dot:nth-child(5) { width: 6px; height: 6px; background: var(--primary-maroon); top: 55%; left: 94%; animation: floatUp 4s ease-in-out 0.3s infinite; }

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* -- Hero Content (Left) -- */
.hero-content { padding-right: 20px; }
.hero-top-badge {
  margin-bottom: 28px;
}
.hero-top-badge .badge-india {
  background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
  color: #B45309;
  border: 1.5px solid rgba(255,153,51,0.35);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: 0.02em;
}
.hero-content h1 {
  margin-bottom: 24px;
  line-height: 1.12;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-line1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--royal-navy);
  display: block;
}
.hero-line2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--indian-gold-dark);
  display: block;
  position: relative;
}
.hero-line3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}
.wa-highlight {
  background: linear-gradient(135deg, #25D366, #1fb955);
  color: #fff;
  padding: 4px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  display: inline-block;
  position: relative;
  animation: gentlePulse 2.5s ease-in-out infinite;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 95%;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-actions .or-divider {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-trust-notes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust-notes span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* -- WhatsApp Mockup (Right) -- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-mockup {
  position: relative;
}
.wa-phone {
  width: 340px;
  background: #fff;
  border-radius: 36px;
  border: 3px solid #222;
  box-shadow: 0 28px 60px rgba(120,31,45,0.12), 0 0 80px rgba(196,147,58,0.06);
  overflow: hidden;
  position: relative;
}
.wa-notch {
  width: 100px;
  height: 22px;
  background: #222;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
}
.wa-screen {
  background: #efeae2;
  min-height: 500px;
}
.wa-topbar {
  background: #075E54;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.wa-back { font-size: 1.1rem; cursor: default; }
.wa-contact { flex: 1; display: flex; align-items: center; gap: 10px; }
.wa-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--indian-gold), var(--indian-gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.wa-name { font-size: 0.85rem; font-weight: 600; }
.wa-status { font-size: 0.65rem; opacity: 0.8; }
.wa-menu { font-size: 1.2rem; cursor: default; }

.wa-chat {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    repeating-linear-gradient(transparent, transparent 40px, rgba(0,0,0,0.01) 40px, rgba(0,0,0,0.01) 41px);
}
.wa-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.45;
  position: relative;
  font-family: 'Inter', sans-serif;
}
.wa-msg-bot {
  align-self: flex-start;
  background: #fff;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.wa-msg-user {
  align-self: flex-end;
  background: #DCF8C6;
  border-radius: 8px 0 8px 8px;
}
.wa-msg.msg-doc {
  background: #fff;
  border-left: 3px solid var(--indian-gold);
}
.wa-time {
  display: block;
  font-size: 0.55rem;
  color: #999;
  text-align: right;
  margin-top: 3px;
}
.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #f0f0f0;
  font-size: 1rem;
  color: #888;
}
.wa-input-text {
  flex: 1;
  background: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  color: #bbb;
}
.wa-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(196,147,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: gentlePulse 4s ease-in-out infinite;
}

/* -- Button XL variant -- */
.btn-xl {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  position: relative;
}
.btn .btn-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-maroon);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  gap: 10px;
}
.btn-whatsapp:hover {
  background: #1fb955;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, var(--royal-navy), var(--royal-slate));
  padding: 44px 0;
  position: relative;
}
.trust-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.trust-item:hover { color: #fff; }
.trust-item .ti-icon {
  width: 42px;
  height: 42px;
  background: rgba(196,147,58,0.15);
  border: 1px solid rgba(196,147,58,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.trust-item:hover .ti-icon {
  background: rgba(196,147,58,0.25);
  border-color: rgba(196,147,58,0.5);
}

/* ── Stats Section ──────────────────────────────────────────────── */
.stats-section {
  background: var(--pure-white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--royal-navy);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-item .stat-suffix {
  font-size: 2rem;
  color: var(--royal-gold);
}
.stat-item .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item .stat-number { font-size: 2.4rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item .stat-number { font-size: 2rem; }
}

/* ── Certification Badges ───────────────────────────────────────── */
.certs-section {
  background: var(--royal-cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--pure-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.cert-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 24px rgba(196,147,58,0.05);
  border-color: rgba(196,147,58,0.3);
}
.cert-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cert-icon-aadhaar { background: #FFF3E0; }
.cert-icon-stamp   { background: #F5ECD7; }
.cert-icon-payment { background: #E8F5E9; }
.cert-icon-legal   { background: #F3E5F5; }
.cert-text strong { display: block; font-size: 0.88rem; color: var(--royal-navy); margin-bottom: 2px; }
.cert-text span { font-size: 0.75rem; color: var(--text-muted); }

/* ── Mandala Section Backgrounds ────────────────────────────────── */
.section-mandala {
  position: relative;
}
.section-mandala::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle at 30% 30%, rgba(196,147,58,0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(120,31,45,0.03) 0%, transparent 50%);
  border: 1px dashed rgba(196,147,58,0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cert-badge { padding: 16px; }
}
@media (max-width: 480px) {
  .certs-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   SECTION HEADER
   ══════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════ */
.how-section {
  background: var(--pure-white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--royal-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(196,147,58,0.06);
  border-color: var(--royal-gold);
}
.step-card .step-numeral {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--royal-gold);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}
.step-card .step-icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: var(--pure-white);
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--royal-navy);
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   WEB + WHATSAPP SYNC SECTION
   ══════════════════════════════════════════════════════════════════ */
.sync-section {
  background: var(--pure-white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.sync-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.sync-card {
  text-align: center;
  padding: 44px 32px;
  background: var(--royal-cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}
.sync-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(196,147,58,0.06);
  border-color: var(--royal-gold);
}
.sync-card-highlight {
  background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
  border-color: rgba(26,94,59,0.2);
}
.sync-card .sync-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.sync-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--royal-navy);
}
.sync-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════════════════
   DOCUMENT CARDS
   ══════════════════════════════════════════════════════════════════ */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.doc-card {
  background: var(--pure-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
  cursor: default;
}
.doc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--royal-gold);
  transform: translateY(-2px);
}
.doc-card .doc-icon-box {
  width: 46px;
  height: 46px;
  background: var(--accent-emerald-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.doc-card:nth-child(3n+1) .doc-icon-box { background: #F5ECD7; }
.doc-card:nth-child(3n+1):hover .doc-icon-box { background: #E8D4A8; }
.doc-card:nth-child(3n+2) .doc-icon-box { background: #EBF5EF; }
.doc-card:nth-child(3n+2):hover .doc-icon-box { background: #D4EDE0; }
.doc-card:nth-child(3n+3) .doc-icon-box { background: #F0EBF8; }
.doc-card:nth-child(3n+3):hover .doc-icon-box { background: #E0D8F0; }
.doc-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--royal-navy);
}
.doc-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ══════════════════════════════════════════════════════════════════
   CALCULATOR TEASER
   ══════════════════════════════════════════════════════════════════ */
.calc-teaser {
  background: var(--royal-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.calc-teaser::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,147,58,0.12), transparent);
  border-radius: 50%;
}
.calc-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.calc-teaser h2 {
  color: #fff;
  margin-bottom: 16px;
}
.calc-teaser p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.6;
}
.calc-preview-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.calc-preview-box label {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.calc-preview-box select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.calc-preview-box select option { color: var(--royal-navy); }
.calc-preview-box .calc-result-text {
  margin-top: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--royal-cream);
  border-top: 1px solid var(--border-subtle);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--pure-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(196,147,58,0.05);
  border-color: rgba(196,147,58,0.3);
}
.testimonial-stars {
  color: var(--indian-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indian-gold), var(--indian-gold-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card .author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--royal-navy);
}
.testimonial-card .author-city {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-maroon-dark), #4A101C, var(--primary-maroon), #3C0D15);
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF9933, var(--pure-white), #138838);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,147,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--royal-navy);
  color: rgba(255,255,255,0.5);
  padding: 72px 0 36px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 52px;
}
.site-footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.site-footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.site-footer .footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.site-footer ul a:hover { color: var(--royal-gold); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════════════════════
   AUTH PAGES (Sign Up / Login)
   ══════════════════════════════════════════════════════════════════ */
.auth-page {
  padding: 80px 0 100px;
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  background: var(--royal-cream);
}
.auth-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}
.auth-header {
  text-align: center;
  margin-bottom: 40px;
}
.auth-header h1 { margin-bottom: 10px; font-size: 2rem; }
.auth-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.auth-form .form-group { margin-bottom: 22px; }
.auth-form label {
  display: block;
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 6px;
  font-size: 0.85rem;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--royal-cream);
  transition: all var(--transition);
}
.auth-form input:focus {
  outline: none;
  border-color: var(--royal-gold);
  background: var(--pure-white);
  box-shadow: 0 0 0 4px rgba(196,147,58,0.1);
}
.auth-form input.input-error {
  border-color: #D92D20;
  background: #FFF5F5;
}
.phone-input {
  display: flex;
  align-items: stretch;
}
.phone-input .phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--surface-warm);
  border: 2px solid var(--border-subtle);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}
.phone-input input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}
.field-error {
  display: block;
  color: #D92D20;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 16px;
}
.field-hint {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 6px;
  line-height: 1.5;
}
.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-body);
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent-emerald);
}
.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.forgot-link {
  font-size: 0.88rem;
  color: var(--royal-gold-dark);
  font-weight: 500;
}
.forgot-link:hover { color: var(--royal-gold); }
.auth-success {
  text-align: center;
  padding: 8px 0;
}
.auth-success .success-circle {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  background: var(--accent-emerald-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-emerald);
}
.auth-success h2 { margin-bottom: 12px; }
.auth-success p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.auth-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.5;
}
.auth-alert-error {
  background: #FFF5F5;
  border: 1px solid #FECACA;
  color: #991B1B;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--text-light);
  font-size: 0.85rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
.auth-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.auth-footer a {
  font-weight: 600;
  color: var(--royal-gold-dark);
}

/* ══════════════════════════════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════════════════════════════ */
.pricing-hero {
  background: var(--royal-navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF9933, var(--pure-white), #138838);
}
.pricing-hero h1 { color: #fff; margin-bottom: 12px; }
.pricing-hero p { color: rgba(255,255,255,0.55); font-size: 1.1rem; }
.pricing-card {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  margin-top: -40px;
  position: relative;
  z-index: 1;
}
.fee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.fee-card {
  background: var(--royal-cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition);
}
.fee-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--royal-gold);
}
.fee-card .fee-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-emerald);
  margin-bottom: 4px;
}
.fee-card .fee-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 4px;
}
.fee-card .fee-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pricing-table-wrap { margin-top: 40px; }
table.pricing {
  width: 100%;
  border-collapse: collapse;
}
table.pricing thead th {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 14px 18px;
  border-bottom: 2px solid var(--border-warm);
  text-align: left;
}
table.pricing tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}
table.pricing tbody tr:hover { background: var(--accent-emerald-light); }
table.pricing .state-name { font-weight: 600; color: var(--royal-navy); }
table.pricing .total-col { font-weight: 700; color: var(--accent-emerald); }

/* ══════════════════════════════════════════════════════════════════
   STAMP CALCULATOR PAGE
   ══════════════════════════════════════════════════════════════════ */
.calc-page { background: var(--pure-white); }
.calc-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--royal-cream);
  border-radius: var(--radius-xl);
  padding: 52px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}
.calc-container h2 { text-align: center; margin-bottom: 6px; }
.calc-container .calc-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 38px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--royal-navy);
  margin-bottom: 6px;
  font-size: 0.88rem;
}
.form-group select,
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--pure-white);
  transition: all var(--transition);
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 4px rgba(196,147,58,0.1);
}
.calc-result {
  margin-top: 32px;
  padding: 28px;
  background: var(--accent-emerald-light);
  border: 1px solid rgba(26,94,59,0.2);
  border-radius: var(--radius-md);
  display: none;
  text-align: center;
}
.calc-result.visible { display: block; }
.calc-result .result-state {
  font-weight: 600;
  color: var(--royal-navy);
  font-size: 1rem;
  margin-bottom: 4px;
}
.calc-result .result-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-emerald);
}
.calc-result .result-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.calc-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--royal-gold-light);
  border: 1px solid rgba(196,147,58,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--royal-gold-dark);
  text-align: center;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════
   LEGAL CONTENT PAGES (Terms, Privacy, Refund, Contact)
   ══════════════════════════════════════════════════════════════════ */
.legal-page { padding: 80px 0; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 {
  margin-bottom: 6px;
}
.legal-content .last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 36px;
  display: block;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  color: var(--royal-navy);
}
.legal-content p, .legal-content li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li { margin-bottom: 8px; }
.legal-content .notice-box {
  background: var(--royal-gold-light);
  border: 1px solid rgba(196,147,58,0.3);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 0.9rem;
  margin-top: 36px;
  color: var(--royal-gold-dark);
  line-height: 1.6;
}

/* Contact card */
.contact-card {
  background: var(--pure-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .contact-icon-bg {
  width: 44px;
  height: 44px;
  background: var(--accent-emerald-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item strong {
  color: var(--royal-navy);
  display: block;
  margin-bottom: 2px;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { padding-right: 0; }
  .hero-line1 { font-size: 2.2rem; }
  .hero-line2 { font-size: 2rem; }
  .hero-line3 { font-size: 1.8rem; }
  .wa-highlight { font-size: 1.5rem; padding: 4px 18px; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust-notes { justify-content: center; }
  .hero-visual { display: none; }
  .hero-mandala { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .calc-teaser .container { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .gold-line.left { margin: 16px auto 28px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero-line1 { font-size: 1.8rem; }
  .hero-line2 { font-size: 1.6rem; }
  .hero-line3 { font-size: 1.4rem; }
  .wa-highlight { font-size: 1.2rem; padding: 3px 14px; }
  .hero-trust-notes { font-size: 0.75rem; gap: 12px; }
  .section { padding: 64px 0; }
  .navbar .container { height: 60px; }
  .navbar-links { display: none; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--pure-white);
    padding: 16px;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
  }
  .navbar-toggle { display: block; }
  .steps-grid { grid-template-columns: 1fr; }
  .sync-cards { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 40px; }
  .hero-actions { flex-direction: column; }
  .trust-bar .container { gap: 28px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .footer-bottom { flex-direction: column; text-align: center; }
  .fee-cards { grid-template-columns: 1fr; }
  .calc-container { padding: 28px; }
  .auth-card { padding: 36px 28px; }
  .auth-header h1 { font-size: 1.7rem; }
  table.pricing { font-size: 0.82rem; }
  table.pricing thead th,
  table.pricing tbody td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .doc-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; border-radius: var(--radius-lg); }
  .auth-header h1 { font-size: 1.5rem; }
  .form-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pricing-card { padding: 24px; }
}
