/* ============================================================
   WealthEdge Advisory – Premium Financial Advisor Website
   Color Palette: Deep Navy + Emerald + Gold accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:          #0b1f3a;
  --navy-mid:      #132b50;
  --navy-light:    #1a3a6b;
  --emerald:       #0e9e6e;
  --emerald-dark:  #0a7d57;
  --emerald-light: #e6f7f2;
  --gold:          #c9a84c;
  --gold-light:    #fdf6e3;
  --surface:       #ffffff;
  --surface2:      #f4f7fb;
  --surface3:      #eef2f8;
  --border:        #dde3ed;
  --text:          #1a2332;
  --text-muted:    #5a6a7e;
  --text-light:    #8b96a5;
  --shadow-sm:     0 1px 4px rgba(11,31,58,.07);
  --shadow-md:     0 6px 24px rgba(11,31,58,.10);
  --shadow-lg:     0 16px 48px rgba(11,31,58,.14);
  --shadow-xl:     0 32px 80px rgba(11,31,58,.18);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --font:          'Inter', sans-serif;
  --font-serif:    'Playfair Display', serif;
  --transition:    all 0.28s cubic-bezier(.4,0,.2,1);
  --container:     1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #fff; line-height: 1.65; font-size: 15px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Utilities ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }

/* ── Section Label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--emerald-light); color: var(--emerald);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.label-gold { background: var(--gold-light); color: var(--gold); }
.label-navy { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); }

.section-title {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--navy);
}
.section-title span { color: var(--emerald); }
.section-sub { font-size: 16px; color: var(--text-muted); margin-top: 14px; max-width: 560px; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.btn-primary:hover { background: var(--emerald-dark); border-color: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,158,110,.35); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11,31,58,.3); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.4); }
.btn-outline { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn-outline:hover { background: var(--emerald); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--surface2); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-xl { padding: 18px 44px; font-size: 16px; border-radius: 8px; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700;
}
.badge-emerald { background: var(--emerald-light); color: var(--emerald); }
.badge-gold { background: var(--gold-light); color: var(--gold); }
.badge-navy { background: rgba(11,31,58,.08); color: var(--navy); }
.badge-red { background: #fef2f2; color: #dc2626; }

/* ── Card ── */
.card {
  background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border);
  transition: var(--transition); overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(14,158,110,.2); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.navbar { display: flex; align-items: center; height: 72px; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; fill: var(--gold); }
.logo-name { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo-name small { display: block; font-family: var(--font); font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--surface2); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { font-size: 13px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px;
  flex-direction: column; gap: 4px; box-shadow: var(--shadow-md); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 500; color: var(--text); }
.mobile-menu a:hover { background: var(--surface2); }
.mobile-menu hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a4a7a 100%);
  padding: 96px 0 80px; position: relative; overflow: hidden; min-height: 90vh;
  display: flex; align-items: center;
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,158,110,.12) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.hero-particles::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); color: var(--gold);
  padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
  border: 1px solid rgba(201,168,76,.25);
}
.hero-label .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.8); } }
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 40px; height: 40px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.trust-text .t-num { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1; }
.trust-text .t-label { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Hero Visual Panel */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(16px);
}
.portfolio-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.portfolio-title { font-weight: 700; color: rgba(255,255,255,.9); font-size: 14px; }
.portfolio-change { color: #4ade80; font-size: 13px; font-weight: 700; background: rgba(74,222,128,.1); padding: 4px 10px; border-radius: 100px; }
.portfolio-value { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.portfolio-sub { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.portfolio-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 100px; margin-bottom: 20px; overflow: hidden; }
.portfolio-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--emerald), #4ade80); width: 72%; transition: width 1.5s ease; }
.portfolio-items { display: flex; flex-direction: column; gap: 10px; }
.pf-item { display: flex; align-items: center; justify-content: space-between; }
.pf-item-left { display: flex; align-items: center; gap: 10px; }
.pf-dot { width: 10px; height: 10px; border-radius: 50%; }
.pf-name { font-size: 13px; color: rgba(255,255,255,.7); }
.pf-val { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 700; }
.pf-pct { font-size: 11px; color: #4ade80; }

/* Floating mini cards */
.float-card {
  position: absolute; background: #fff; border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-lg); animation: float-y 3s ease-in-out infinite;
}
.float-card-1 { top: -28px; right: -20px; animation-delay: 0s; }
.float-card-2 { bottom: -24px; left: -24px; animation-delay: 1.5s; }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-card .fc-label { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.float-card .fc-val { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.float-card .fc-change { font-size: 12px; color: var(--emerald); font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST / CERTIFICATIONS STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cert-strip { background: var(--navy); padding: 24px 0; }
.cert-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.cert-badge {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.75); font-size: 13px; font-weight: 600;
}
.cert-badge .cert-icon { font-size: 22px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT SNAPSHOT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: center; }
.advisor-photo-wrap { position: relative; }
.advisor-photo {
  border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light), var(--emerald-dark));
  height: 480px; display: flex; align-items: flex-end; justify-content: center;
}
.advisor-initials {
  font-family: var(--font-serif); font-size: 8rem; font-weight: 700;
  color: rgba(255,255,255,.15); padding-bottom: 16px;
}
.advisor-badge-card {
  position: absolute; bottom: -20px; right: -20px;
  background: #fff; border-radius: var(--radius-md); padding: 18px 22px;
  box-shadow: var(--shadow-lg); border-left: 4px solid var(--emerald);
}
.advisor-badge-card .abt-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.advisor-badge-card .abt-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.about-content .name { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.about-content .designation { font-size: 14px; color: var(--emerald); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.about-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.certs-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.cert-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--navy); }
.cert-tag svg { width: 16px; height: 16px; fill: var(--emerald); flex-shrink: 0; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.about-stat { text-align: center; background: var(--surface2); border-radius: var(--radius-md); padding: 20px 16px; }
.about-stat .as-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--emerald); line-height: 1; }
.about-stat .as-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--navy-light));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(14,158,110,.3); }
.service-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-features { list-style: none; }
.service-features li { font-size: 13px; color: var(--text-muted); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: '✓'; color: var(--emerald); font-weight: 700; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY CHOOSE US
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.why-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; display: flex; gap: 18px; }
.why-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.why-item h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INVESTMENT SOLUTIONS  
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.solutions-section { background: var(--navy); }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.solution-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 28px; transition: var(--transition);
}
.solution-card:hover { background: rgba(255,255,255,.10); transform: translateY(-4px); border-color: rgba(14,158,110,.4); }
.solution-icon { font-size: 36px; margin-bottom: 14px; }
.solution-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.solution-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 16px; }
.solution-returns { background: rgba(14,158,110,.15); border: 1px solid rgba(14,158,110,.25); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 16px; }
.solution-returns .ret-label { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.solution-returns .ret-val { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: #4ade80; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CALCULATOR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.calculator-section { background: var(--surface2); }
.calc-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.calc-tab { padding: 10px 22px; border-radius: var(--radius-sm); border: 2px solid var(--border); background: #fff; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--text-muted); }
.calc-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.calc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 40px; box-shadow: var(--shadow-md); }
.calc-inputs h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.range-group { margin-bottom: 22px; }
.range-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.range-label span { font-size: 13px; font-weight: 600; color: var(--text); }
.range-label .range-val { font-weight: 800; color: var(--emerald); font-size: 14px; }
input[type="range"] { width: 100%; accent-color: var(--emerald); height: 4px; cursor: pointer; }
.calc-result { background: var(--navy); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; justify-content: space-between; }
.result-label { font-size: 13px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.result-big { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; color: #fff; }
.result-rows { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.result-row:last-child { border-bottom: none; }
.result-row .rr-label { font-size: 13px; color: rgba(255,255,255,.6); }
.result-row .rr-val { font-size: 14px; font-weight: 700; color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CASE STUDIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px; }
.case-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.case-top { padding: 24px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }
.case-top .client-label { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.case-top h3 { font-family: var(--font-serif); font-size: 1.3rem; color: #fff; font-weight: 700; margin-bottom: 4px; }
.case-top .client-tag { font-size: 12px; color: rgba(255,255,255,.6); }
.case-body { padding: 24px; }
.case-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.case-ba { padding: 14px; border-radius: var(--radius-sm); text-align: center; }
.case-ba.before { background: #fef2f2; }
.case-ba.after { background: var(--emerald-light); }
.case-ba .ba-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.case-ba.before .ba-label { color: #991b1b; }
.case-ba.after .ba-label { color: var(--emerald); }
.case-ba .ba-val { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; }
.case-ba.before .ba-val { color: #dc2626; }
.case-ba.after .ba-val { color: var(--emerald); }
.case-ba .ba-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.case-result { background: var(--surface2); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.case-result strong { color: var(--emerald); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px;
  position: relative; transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quote-mark { font-size: 64px; font-family: Georgia, serif; color: var(--emerald-light); line-height: .6; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-ava { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--emerald)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 18px; flex-shrink: 0; font-family: var(--font-serif); }
.testi-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.testi-role { font-size: 12px; color: var(--text-muted); }
.testi-return { margin-left: auto; text-align: right; }
.testi-return .ret { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--emerald); }
.testi-return small { font-size: 10px; color: var(--text-muted); display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LEAD FORM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.lead-section { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.lead-content h2 { font-family: var(--font-serif); font-size: clamp(2rem,3.5vw,2.8rem); color: #fff; font-weight: 700; margin-bottom: 16px; }
.lead-content p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.lead-perks { display: flex; flex-direction: column; gap: 12px; }
.lead-perk { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: 14px; }
.lead-perk .perk-icon { width: 32px; height: 32px; background: rgba(14,158,110,.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.lead-form { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-xl); }
.lead-form h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.lead-form p { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--text); display: block; margin-bottom: 6px; }
.form-control {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 14px; color: var(--text); background: #fff; outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(14,158,110,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(14,158,110,.3); }
.faq-q { padding: 18px 24px; font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; }
.faq-q .faq-icon { color: var(--emerald); font-size: 20px; transition: var(--transition); flex-shrink: 0; font-weight: 300; }
details[open] .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 16px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-strip { background: linear-gradient(90deg, var(--emerald) 0%, var(--emerald-dark) 100%); padding: 64px 0; text-align: center; }
.cta-strip h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; font-weight: 700; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img { height: 210px; background: var(--surface2); overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 22px; }
.blog-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--emerald); margin-bottom: 8px; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-light); }
.blog-read { color: var(--emerald); font-weight: 700; font-size: 13px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS STEPS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; right: -14px; top: 28px; font-size: 20px; color: var(--border); }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 24px rgba(11,31,58,.25); }
.process-step h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHATBOT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.chatbot-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff; border: none; cursor: pointer; box-shadow: 0 8px 32px rgba(14,158,110,.45);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  transition: var(--transition); animation: bounce-in .5s ease;
}
.chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(14,158,110,.55); }
@keyframes bounce-in { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }
.chatbot-window {
  position: fixed; bottom: 102px; right: 28px; z-index: 9998; width: 360px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  border: 1px solid var(--border); overflow: hidden; display: none; flex-direction: column; max-height: 520px;
}
.chatbot-window.open { display: flex; animation: slide-up .3s ease; }
@keyframes slide-up { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.chat-header { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.chat-ava { width: 38px; height: 38px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.chat-name { color: #fff; font-weight: 700; font-size: 14px; }
.chat-status { color: rgba(255,255,255,.6); font-size: 11px; }
.chat-close { margin-left: auto; color: rgba(255,255,255,.7); border: none; background: none; cursor: pointer; font-size: 18px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; min-height: 200px; }
.chat-msg { max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble { padding: 10px 14px; border-radius: 16px; font-size: 13px; line-height: 1.55; }
.chat-msg.bot .chat-bubble { background: var(--surface2); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--emerald); color: #fff; border-bottom-right-radius: 4px; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.quick-reply { background: #fff; border: 1px solid var(--border); color: var(--navy); padding: 5px 12px; border-radius: 100px; font-size: 11px; cursor: pointer; transition: var(--transition); font-weight: 600; }
.quick-reply:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.chat-input-row { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border); }
.chat-input { flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; outline: none; }
.chat-input:focus { border-color: var(--emerald); }
.chat-send { background: var(--emerald); color: #fff; border: none; border-radius: var(--radius-sm); padding: 10px 14px; cursor: pointer; font-size: 16px; transition: var(--transition); }
.chat-send:hover { background: var(--emerald-dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHATSAPP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wa-btn {
  position: fixed; bottom: 100px; right: 28px; z-index: 9997;
  width: 50px; height: 50px; border-radius: 50%; background: #25d366;
  color: #fff; border: none; cursor: pointer; box-shadow: 0 6px 20px rgba(37,211,102,.4);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  transition: var(--transition); text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); }
.footer-main { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.5fr; gap: 48px; padding: 64px 0 48px; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin: 16px 0 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 15px; transition: var(--transition); }
.social-btn:hover { background: var(--emerald); border-color: var(--emerald); color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.55); display: block; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,.65); }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: #fff; }
.disclaimer { background: rgba(0,0,0,.2); padding: 16px 0; }
.disclaimer p { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.7; text-align: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.4); font-size: 12px; }
.footer-links a:hover { color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOAST
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 99999; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--navy); color: #fff; padding: 14px 20px; border-radius: var(--radius-sm); font-size: 14px; display: flex; align-items: center; gap: 10px; min-width: 280px; animation: toast-in .3s ease; box-shadow: var(--shadow-lg); border-left: 4px solid var(--emerald); }
@keyframes toast-in { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 520px; width: 100%; overflow: hidden; transform: scale(.95); transition: transform .25s; }
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { padding: 24px 28px; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: #fff; }
.modal-header h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; }
.modal-header p { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }
.modal-close { float: right; background: none; border: none; color: rgba(255,255,255,.7); font-size: 20px; cursor: pointer; margin-top: -4px; }
.modal-body { padding: 28px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--emerald); border: 2px solid #fff; box-shadow: 0 0 0 3px var(--emerald-light); }
.timeline-year { font-size: 12px; font-weight: 700; color: var(--emerald); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.timeline-title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.timeline-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 64px 0; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem,3.5vw,3rem); color: #fff; font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .calc-body { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .section-pad { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .chatbot-window { width: calc(100vw - 48px); right: 24px; }
  .wa-btn { bottom: 168px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
}
