/* ============================================================
   MY TAX SARTHI — Master Stylesheet v2
   All pages share this file. Edit once, updates everywhere.
   CHANGES v2: Richer navy, deeper gold, dot-grid hero pattern,
   Playfair weight 900, animated stat counters, trust shield,
   WhatsApp float button, polished spacing, blog card format.
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Deeper navy palette from old site */
  --navy:        #0A1628;
  --navy-mid:    #0D1F3C;
  --navy-light:  #1a3a6b;
  --royal:       #1565C0;   /* royal blue accent — old site */
  --blue:        #1e5faa;
  --blue-bright: #2878d4;
  --blue-pale:   #e8f1fb;
  /* Richer gold */
  --gold:        #C9983A;
  --gold-light:  #E8B84B;
  --gold-pale:   #fdf3dc;
  --teal:        #0f6e56;
  --teal-pale:   #e1f5ee;
  --white:       #ffffff;
  --off-white:   #f5f7fc;
  --text-dark:   #0d1f3c;
  --text-mid:    #3d5280;
  --text-muted:  #7a8fae;
  --border:      #dce4f0;
  --border-dark: rgba(255,255,255,0.10);
  --shadow-sm:   0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:   0 6px 24px rgba(10,22,40,0.14);
  --shadow-lg:   0 16px 48px rgba(10,22,40,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  /* Tricolour palette */
  --saffron:     #FF9933;
  --triwhite:    #F5F5F0;
  --india-green: #138808;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY — Playfair 900 for h1, 700 for h2 ── */
h1, h2, h3, h4, h5 { line-height: 1.2; }
h1 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 500; }
h4 { font-size: 1rem; font-weight: 500; }
p { line-height: 1.75; }

/* ── LAYOUT UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.section { padding: 90px 0; }
.section-sm { padding: 55px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-mid { background: var(--navy-mid); color: var(--white); }
.section-alt { background: var(--off-white); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .7rem;
}
.section-label.dark { color: var(--gold-light); }
.section-title { color: var(--text-dark); margin-bottom: .8rem; }
.section-title.light { color: var(--white); }
.section-intro {
  font-size: 1.05rem; color: var(--text-muted);
  font-weight: 300; max-width: 540px;
  margin-bottom: 2.5rem; line-height: 1.75;
}
.section-intro.light { color: rgba(255,255,255,0.65); }
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500;
  transition: var(--transition); letter-spacing: .01em;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--royal); color: var(--white); }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline-navy:hover { border-color: var(--blue); color: var(--blue); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8871f; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 68px;
  display: flex; align-items: center; padding: 0 5%;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-dark);
}
.navbar.transparent { background: transparent; }
.navbar.solid { background: var(--navy); }
.nav-inner {
  max-width: 1160px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--royal), var(--blue-bright));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--white);
}
.logo-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo-tagline { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: .05em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 1.8rem; }
.nav-menu a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 400; transition: color var(--transition); position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold-light); border-radius: 2px;
}
.nav-cta {
  background: var(--royal); color: var(--white) !important;
  padding: 8px 20px; border-radius: 8px;
  font-weight: 500 !important; transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-bright) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 100px 5% 80px;
}

/* Dot-grid pattern from old site */
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,152,58,0.09) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Subtle line grid overlay */
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 72% 45%, rgba(21,101,192,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 85%, rgba(201,152,58,0.12) 0%, transparent 55%);
}
.hero-inner {
  position: relative; max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}
.hero-content { animation: fadeUp .7s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(21,101,192,0.18);
  border: 1px solid rgba(21,101,192,0.45);
  color: #8ec4f8; font-size: 12px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 1.4rem;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #8ec4f8; animation: blink 2.2s ease infinite; }
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }

/* ── TRICOLOUR TAGLINE ── */
.tagline-svg-wrap {
  margin: 0 0 2rem;
  max-width: 540px;
}
.tagline-svg-wrap svg { width: 100%; height: auto; }

.hero-desc {
  font-size: 1.08rem; font-weight: 300;
  color: rgba(255,255,255,0.6); max-width: 480px;
  margin-bottom: 2rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* ── STAT CARDS — animated counters ── */
.hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
.hero-stat {
  padding: 0 2rem 0 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 2rem;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); margin-top: 5px; }

/* ── HERO CARD (right side) ── */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl); padding: 1.8rem;
  animation: fadeUp .9s ease .2s both;
}
.hero-card-title { font-size: 12px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
.service-chip {
  display: flex; align-items: center; gap: 10px;
  padding: .7rem .9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; margin-bottom: .6rem;
  transition: border-color var(--transition), background var(--transition);
}
.service-chip:hover { border-color: rgba(21,101,192,0.45); background: rgba(21,101,192,0.1); }
.chip-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.chip-icon.blue { background: rgba(21,101,192,0.3); }
.chip-icon.gold { background: rgba(201,152,58,0.25); }
.chip-icon.teal { background: rgba(15,110,86,0.25); }
.chip-icon.rose { background: rgba(190,50,70,0.18); }
.chip-name { font-size: 14px; font-weight: 500; color: var(--white); }
.chip-sub { font-size: 11px; color: var(--text-muted); font-weight: 300; }
.chip-arrow { margin-left: auto; color: var(--text-muted); font-size: 14px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.1rem 5%;
}
.trust-bar-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 300; }
.trust-item svg { color: var(--gold-light); flex-shrink: 0; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--royal); }
.card-dark {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 1.6rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.card-dark:hover { border-color: rgba(21,101,192,0.5); background: rgba(21,101,192,0.08); transform: translateY(-3px); }
.card-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1.1rem; }
.card-icon.blue { background: var(--blue-pale); }
.card-icon.gold { background: var(--gold-pale); }
.card-icon.teal { background: var(--teal-pale); }
.card-icon.pink { background: #fce8ec; }
.card-icon.blue-dark { background: rgba(21,101,192,0.22); }
.card-icon.gold-dark { background: rgba(201,152,58,0.18); }
.card-icon.teal-dark { background: rgba(15,110,86,0.18); }
.card-icon.pink-dark { background: rgba(190,50,70,0.14); }
.card h3 { margin-bottom: .4rem; color: var(--text-dark); }
.card-dark h3 { color: var(--white); }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.card-dark p { color: rgba(255,255,255,0.55); }
.card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: .9rem; font-size: 13px; font-weight: 500; color: var(--royal); transition: gap var(--transition); }
.card-link:hover { gap: 8px; }
.card-dark .card-link { color: #8ec4f8; }

/* ── TRUST / GUARANTEE SHIELD ── */
.guarantee-box {
  background: linear-gradient(135deg, rgba(21,101,192,0.08), rgba(15,110,86,0.06));
  border: 1.5px solid rgba(21,101,192,0.25);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.guarantee-box .shield-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--royal), var(--teal));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1rem;
}
.guarantee-point {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: .9rem;
}
.guarantee-point:last-child { margin-bottom: 0; }
.guarantee-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; margin-top: 5px; }
.guarantee-point p { font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.6; }
.guarantee-point strong { color: var(--text-dark); font-weight: 500; }

/* ── ABOUT STAT CARDS ── */
.stat-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); border-color: var(--royal); }
.stat-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--royal), var(--blue-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card-label { font-size: 13px; color: var(--text-muted); margin-top: .4rem; font-weight: 300; }

/* ── TOOL CARDS ── */
.tool-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; display: flex; align-items: flex-start; gap: 1rem; transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition); }
.tool-card:hover { box-shadow: var(--shadow-md); border-color: var(--royal); transform: translateY(-2px); }
.tool-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.tool-card h4 { font-size: 14px; margin-bottom: 3px; }
.tool-card p { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.tool-tag { display: inline-block; font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 4px; margin-bottom: 4px; }
.tag-calc { background: var(--blue-pale); color: #0C447C; }
.tag-finder { background: var(--teal-pale); color: #085041; }
.tag-guide { background: var(--gold-pale); color: #633806; }

/* ── TESTIMONIALS ── */
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); padding: 1.6rem; }
.testi-stars { color: var(--gold-light); font-size: 13px; letter-spacing: 2px; margin-bottom: .7rem; }
.testi-quote { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.78); font-weight: 300; font-style: italic; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: #8ec4f8; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--white); }
.testi-role { font-size: 11px; color: var(--text-muted); font-weight: 300; }

/* ── BLOG CARDS — consistent format ── */
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--royal); }
.blog-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; position: relative; overflow: hidden;
  flex-shrink: 0;
}
.blog-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25));
}
.blog-thumb.blue  { background: linear-gradient(140deg, #060f1c 0%, #0D1F3C 55%, #1565C0 100%); }
.blog-thumb.gold  { background: linear-gradient(140deg, #3a1f00 0%, #6b4400 55%, #C9983A 100%); }
.blog-thumb.teal  { background: linear-gradient(140deg, #041c15 0%, #064030 55%, #0f6e56 100%); }
.blog-thumb.red   { background: linear-gradient(140deg, #1a0000 0%, #5a1010 55%, #c0392b 100%); }
.blog-thumb.purple{ background: linear-gradient(140deg, #160820 0%, #3b1060 55%, #7c3aed 100%); }
.blog-body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.blog-category { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--royal); margin-bottom: .5rem; }
.blog-card h3 { font-size: 15px; margin-bottom: .5rem; line-height: 1.45; color: var(--text-dark); font-weight: 500; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin-bottom: .8rem; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: .5rem; font-size: 11px; color: var(--text-muted); margin-top: auto; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.blog-read-more { color: var(--royal); font-weight: 500; font-size: 13px; margin-left: auto; display: flex; align-items: center; gap: 3px; }
.blog-read-more::after { content: '→'; transition: transform var(--transition); }
.blog-card:hover .blog-read-more::after { transform: translateX(4px); }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--text-mid); letter-spacing: .04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-weight: 300; font-family: inherit; color: var(--text-dark); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-dark .form-group label { color: rgba(255,255,255,0.5); }
.form-dark .form-group input, .form-dark .form-group select, .form-dark .form-group textarea { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: var(--white); }
.form-dark .form-group input:focus, .form-dark .form-group select:focus, .form-dark .form-group textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(40,120,212,0.15); }
.form-dark .form-group select option { background: var(--navy-mid); }

/* ── CALCULATOR STYLES ── */
.calc-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-sm); }
.calc-result { background: var(--blue-pale); border: 1px solid rgba(21,101,192,0.15); border-radius: var(--radius-lg); padding: 1.4rem; margin-top: 1.5rem; }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid rgba(21,101,192,0.1); font-size: 14px; }
.result-row:last-child { border-bottom: none; }
.result-label { color: var(--text-mid); font-weight: 300; }
.result-value { font-weight: 500; color: var(--text-dark); }
.result-total { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 2px solid var(--royal); }
.result-total .label { font-size: 15px; font-weight: 500; color: var(--text-dark); }
.result-total .value { font-size: 1.5rem; font-weight: 700; color: var(--royal); font-family: 'Playfair Display', serif; }

/* ── PROCESS STEPS ── */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item { display: flex; gap: 1rem; align-items: flex-start; position: relative; padding-bottom: 1.5rem; }
.process-item:last-child { padding-bottom: 0; }
.process-item::before { content: ''; position: absolute; left: 17px; top: 36px; bottom: 0; width: 1px; background: var(--border); }
.process-item:last-child::before { display: none; }
.process-num { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; background: var(--blue-pale); border: 1.5px solid rgba(21,101,192,0.25); color: var(--royal); font-size: 13px; font-weight: 500; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.process-item h4 { font-size: 15px; margin-bottom: 3px; }
.process-item p { font-size: 13px; color: var(--text-muted); font-weight: 300; }

/* ── CONTACT ── */
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-info-item h4 { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--text-dark); font-weight: 400; line-height: 1.5; }
.contact-info-item a:hover { color: var(--royal); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); padding: 110px 5% 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(201,152,58,0.07) 1px, transparent 1px); background-size: 32px 32px; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(21,101,192,0.22) 0%, transparent 70%); }
.page-hero-inner { position: relative; max-width: 1160px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-weight: 300; font-size: 1.05rem; max-width: 520px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 1rem; font-weight: 300; }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--gold-light); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 15px; font-weight: 500; color: var(--text-dark); cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: inherit; }
.faq-question .icon { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--royal); transition: transform var(--transition); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.75; padding-top: .8rem; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 3.5rem 5% 2rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-dark); margin-bottom: 1.5rem; }
.footer-brand p { font-size: 13px; font-weight: 300; margin-top: .8rem; line-height: 1.7; max-width: 250px; }
.footer-col h5 { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 12px; font-weight: 300; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 26px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.wa-float-tooltip {
  position: absolute; right: 64px;
  background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 400;
  padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── BADGES / CHIPS ── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 500; }
.badge-blue { background: var(--blue-pale); color: #0C447C; }
.badge-gold { background: var(--gold-pale); color: #633806; }
.badge-teal { background: var(--teal-pale); color: #085041; }
.badge-red  { background: #fce8ec; color: #7a1a26; }
.badge-new  { background: var(--gold); color: var(--white); }

/* ── DIVIDERS ── */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.divider-dark { height: 1px; background: var(--border-dark); margin: 2rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy-mid); padding: 1.5rem 5%; border-bottom: 1px solid var(--border-dark); gap: 1.2rem; z-index: 999; }
  .nav-menu.open .nav-cta { align-self: flex-start; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .section { padding: 60px 0; }
  .hero { padding: 90px 5% 60px; }
  .trust-bar-inner { gap: 1.5rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat { padding-right: 1.2rem; margin-right: 1.2rem; }
  .stat-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { border-right: none; margin-right: 0; padding-right: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-card-grid { grid-template-columns: 1fr; }
}

/* ── PRINT ── */
@media print {
  .navbar, .footer, .hero-actions, .wa-float { display: none; }
  body { color: #000; }
}
