/* ============================================================
   Edge — powered by Real Deal Accounting
   Premium boutique accounting & advisory · Boca Raton, FL
   ============================================================ */

:root {
  /* Brand palette — deep purple · black */
  --navy:        #120720;  /* near-black plum (dark sections + text) */
  --navy-800:    #1C0E33;
  --navy-700:    #2A1450;
  --purple:      #3B1576;
  --purple-600:  #2E1059;
  --emerald:     #2E1059;  /* deep purple — primary accent */
  --emerald-600: #230C45;  /* darker purple — text/hover */
  --emerald-300: #6D45C9;  /* mid violet — on-dark accent */
  --white:       #FFFFFF;
  --gray-50:     #F7F4FB;
  --gray-100:    #EFEAF7;
  --gray-200:    #E1D9EF;
  --ink-500:     #685C77;
  --ink-400:     #948AA4;

  /* Semantic */
  --bg:          var(--white);
  --bg-alt:      var(--gray-50);
  --text:        var(--navy);
  --text-soft:   var(--ink-500);
  --accent:      var(--emerald);

  /* Type */
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font);

  /* Radius + shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(26,14,46,.06), 0 2px 8px rgba(26,14,46,.05);
  --shadow-md: 0 4px 16px rgba(26,14,46,.08), 0 12px 32px rgba(26,14,46,.07);
  --shadow-lg: 0 8px 28px rgba(26,14,46,.12), 0 30px 60px rgba(26,14,46,.14);
  --shadow-emerald: 0 10px 30px rgba(46,16,89,.34);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 9vw, 140px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

/* tweakable hooks */
body.sharp { --r-sm: 4px; --r-md: 6px; --r-lg: 8px; --r-xl: 10px; }
body.sharp .btn { border-radius: 8px; }
body.sharp .hero-badge, body.sharp .eyebrow::before, body.sharp .tst-who image-slot { border-radius: 4px; }
body.no-motion *, body.no-motion *::before, body.no-motion *::after {
  animation: none !important;
  transition-duration: .001s !important;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typographic scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-600);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--emerald-300); }

.display { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--text-soft);
  font-weight: 400;
  line-height: 1.55;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(120deg, #3B1576 0%, #230C45 100%);
  color: #fff;
  box-shadow: var(--shadow-emerald);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(46,16,89,.42); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 22px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(26,14,46,.06);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 38px; width: auto; display: block; transition: height .35s ease; }
.nav.scrolled .brand-logo { height: 32px; }
/* show light logo only on transparent dark nav; dark logo otherwise (scrolled/light) */
.brand-logo.light { display: none; }
.brand-logo.dark { display: block; }
.nav.on-dark:not(.scrolled) .brand-logo.light { display: block; }
.nav.on-dark:not(.scrolled) .brand-logo.dark { display: none; }
.footer .brand-logo { height: 52px; }
.footer .brand-logo.light { display: block; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #3B1576, #230C45);
  display: grid; place-items: center;
  box-shadow: var(--shadow-emerald);
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-size: 21px; font-weight: 800; letter-spacing: -0.04em; color: var(--navy); }
.brand-name span { font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-400); }
.nav.on-dark:not(.scrolled) .brand-name b { color: #fff; }
.nav.on-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,.82); }
.nav.on-dark:not(.scrolled) .nav-links a:hover { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--text-soft);
  position: relative; transition: color .2s ease; white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--emerald);
  border-radius: 2px; transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 15px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 6px; }
.nav.on-dark:not(.scrolled) .nav-toggle span { background: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 80% -8%, rgba(35,12,69,.32), transparent 60%),
    radial-gradient(900px 520px at 6% 108%, rgba(46,16,89,.26), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, #170A2B 58%, #0A0414 100%);
  color: #fff;
  padding-top: clamp(130px, 16vw, 188px);
  padding-bottom: clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.hero::before {
  /* subtle grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 15px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-300); box-shadow: 0 0 0 4px rgba(167,139,250,.22); }
.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  color: #fff;
}
.hero h1 .accent { color: var(--emerald-300); }
.hero .lead { color: rgba(255,255,255,.74); margin-top: 22px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero-stats { display: flex; gap: 40px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.hero-stats .stat span { font-size: 13.5px; color: rgba(255,255,255,.6); font-weight: 500; }

/* ---------- Animated dashboard ---------- */
.dash {
  position: relative;
  background: rgba(255,255,255,.96);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
  transform: perspective(1600px) rotateY(-8deg) rotateX(3deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.dash:hover { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); }
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-top .lbl { font-size: 13px; font-weight: 700; color: var(--ink-500); }
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-200); }
.dash-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.kpi { background: var(--gray-50); border-radius: var(--r-md); padding: 14px 16px; }
.kpi .k-label { font-size: 11.5px; font-weight: 600; color: var(--ink-400); letter-spacing: .02em; }
.kpi .k-val { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin-top: 4px; }
.kpi .k-trend { font-size: 12px; font-weight: 700; color: var(--emerald-600); display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; }
.dash-chart { background: var(--gray-50); border-radius: var(--r-md); padding: 16px 18px 10px; }
.dash-chart .c-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dash-chart .c-head span { font-size: 12.5px; font-weight: 700; color: var(--ink-500); }
.dash-chart .c-tag { font-size: 11px; font-weight: 700; color: var(--emerald-600); background: rgba(46,16,89,.12); padding: 3px 8px; border-radius: 999px; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 110px; }
.bars .bar { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(var(--emerald-300), var(--emerald)); transform-origin: bottom; animation: grow 1.1s cubic-bezier(.2,.8,.2,1) both; }
.bars .bar.muted { background: var(--gray-200); }
@keyframes grow { from { transform: scaleY(0); opacity:.3;} to { transform: scaleY(1); opacity:1;} }

/* floating chips around dash */
.dash-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 15px;
  display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 14px;
  animation: bob 5s ease-in-out infinite;
}
.dash-float .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.dash-float small { display: block; font-size: 11px; font-weight: 600; color: var(--ink-400); }
.df-1 { top: -26px; left: -34px; animation-delay: 0s; }
.df-2 { bottom: 40px; right: -40px; animation-delay: 1.5s; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

@media (prefers-reduced-motion: reduce) {
  .bars .bar, .dash-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { background: var(--bg); padding: clamp(40px,5vw,64px) 0; border-bottom: 1px solid var(--gray-100); }
.trust-head { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 34px; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.trust-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 8px; }
.trust-item .ti-ico { width: 52px; height: 52px; border-radius: 15px; background: var(--gray-50); display: grid; place-items: center; color: var(--emerald-600); }
.trust-item .ti-ico svg { width: 24px; height: 24px; }
.trust-item p { font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.35; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section { padding: var(--section-y) 0; }
.section.alt { background: var(--bg-alt); }
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin-top: 16px; }
.sec-head .lead { margin-top: 18px; }

/* Split header — heading left, intro right, fills full width */
.sec-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  column-gap: clamp(32px, 6vw, 88px);
  align-items: end;
}
.sec-head.split .eyebrow { grid-column: 1; grid-row: 1; }
.sec-head.split .h2 { grid-column: 1; grid-row: 2; margin-top: 16px; }
.sec-head.split .lead { grid-column: 2; grid-row: 1 / 3; align-self: end; margin-top: 0; max-width: 520px; }
@media (max-width: 860px) {
  .sec-head.split { grid-template-columns: 1fr; row-gap: 18px; }
  .sec-head.split .eyebrow, .sec-head.split .h2, .sec-head.split .lead { grid-column: 1; }
  .sec-head.split .h2 { grid-row: auto; }
  .sec-head.split .lead { grid-row: auto; align-self: start; }
}

/* ============================================================
   SERVICES
   ============================================================ */
/* Featured flagship card */
.svc-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: linear-gradient(150deg, var(--navy) 0%, #1C0E33 60%, #0E0618 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 52px);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.svc-featured::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 88% -10%, rgba(109,69,201,.35), transparent 60%);
  pointer-events: none;
}
.svc-featured .sf-body { position: relative; z-index: 1; }
.sf-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--emerald-300);
  background: rgba(109,69,201,.18); border: 1px solid rgba(139,92,246,.3);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}
.svc-featured h3 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); color: #fff; letter-spacing: -.03em; }
.svc-featured .sf-desc { font-size: 16px; color: rgba(255,255,255,.74); margin-top: 14px; line-height: 1.6; max-width: 540px; }
.sf-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.sf-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.9); }
.sf-list li svg { width: 18px; height: 18px; color: var(--emerald-300); flex-shrink: 0; margin-top: 2px; }
.sf-stat { position: relative; z-index: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 30px 32px; backdrop-filter: blur(6px); }
.sf-stat .sf-big { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.04em; color: var(--emerald-300); line-height: 1; }
.sf-stat .sf-cap { font-size: 14.5px; color: rgba(255,255,255,.72); margin-top: 12px; line-height: 1.5; }
.sf-stat .sf-divider { height: 1px; background: rgba(255,255,255,.12); margin: 22px 0; }
.sf-stat .sf-row { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.88); }
.sf-stat .sf-row + .sf-row { margin-top: 12px; }
.sf-stat .sf-row svg { width: 19px; height: 19px; color: var(--emerald-300); flex-shrink: 0; }
@media (max-width: 860px) {
  .svc-featured { grid-template-columns: 1fr; }
  .sf-list { grid-template-columns: 1fr; }
}

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-300));
  transition: width .4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { width: 100%; }
.svc-ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(150deg, var(--navy), var(--navy-700));
  display: grid; place-items: center; color: var(--emerald-300);
  margin-bottom: 22px;
  transition: transform .3s ease;
}
.svc-card:hover .svc-ico { transform: scale(1.06) rotate(-3deg); }
.svc-ico svg { width: 27px; height: 27px; }
.svc-card h3 { font-size: 22px; font-weight: 800; }
.svc-card .svc-sub { font-size: 14.5px; color: var(--text-soft); margin-top: 10px; line-height: 1.5; }
.svc-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.svc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--navy); font-weight: 500; }
.svc-list li svg { width: 17px; height: 17px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-media { position: relative; }
.about-media image-slot { width: 100%; height: 480px; box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--navy); color: #fff;
  border-radius: var(--r-md); padding: 22px 26px;
  box-shadow: var(--shadow-lg); max-width: 240px;
}
.about-badge b { display: block; font-size: 38px; font-weight: 800; letter-spacing: -.03em; color: var(--emerald-300); }
.about-badge span { font-size: 14px; color: rgba(255,255,255,.78); font-weight: 500; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(40px, 5vw, 56px); }
.about-point { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.about-point:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-point .ap-ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(46,16,89,.08); color: var(--emerald-600); display: grid; place-items: center; flex-shrink: 0; }
.about-point .ap-ico svg { width: 22px; height: 22px; }
.about-point h4 { font-size: 18px; font-weight: 800; }
.about-point p { font-size: 14.5px; color: var(--text-soft); margin-top: 6px; line-height: 1.55; }
@media (max-width: 760px) { .about-points { grid-template-columns: 1fr; } }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card .wc-num { font-size: 13px; font-weight: 800; color: var(--emerald-600); letter-spacing: .05em; }
.why-card .wc-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--gray-50); color: var(--navy); display: grid; place-items: center; margin: 14px 0 18px; }
.why-card .wc-ico svg { width: 24px; height: 24px; }
.why-card h4 { font-size: 19px; font-weight: 800; }
.why-card p { font-size: 14.5px; color: var(--text-soft); margin-top: 9px; line-height: 1.55; }

/* compare strip */
.compare {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-col { padding: 34px clamp(24px,3vw,40px); }
.compare-col.them { background: var(--white); }
.compare-col.us { background: var(--navy); color: #fff; }
.compare-col h4 { font-size: 16px; font-weight: 800; letter-spacing: .02em; margin-bottom: 20px; }
.compare-col.them h4 { color: var(--ink-400); }
.compare-col.us h4 { color: var(--emerald-300); }
.compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.compare-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; line-height: 1.4; }
.compare-list li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; }
.compare-col.them li { color: var(--ink-500); }
.compare-col.them li svg { color: #c3ccd6; }
.compare-col.us li { color: rgba(255,255,255,.92); }
.compare-col.us li svg { color: var(--emerald-300); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tst-stars { display: flex; gap: 3px; color: var(--emerald); margin-bottom: 18px; }
.tst-stars svg { width: 18px; height: 18px; }
.tst-quote { font-size: 16.5px; line-height: 1.6; color: var(--navy); font-weight: 500; flex: 1; }
.tst-who { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.tst-who image-slot { width: 50px; height: 50px; flex-shrink: 0; }
.tst-who .tw-name { font-size: 15px; font-weight: 800; }
.tst-who .tw-role { font-size: 13px; color: var(--ink-400); font-weight: 600; }
.tw-avatar { width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 17px; letter-spacing: .01em; box-shadow: var(--shadow-sm); }
.tw-avatar.av-1 { background: linear-gradient(135deg, #5B21B6, #2E1059); }
.tw-avatar.av-2 { background: linear-gradient(135deg, #2A6FDB, #1E54AC); }
.tw-avatar.av-3 { background: linear-gradient(135deg, #1FA971, #168A5C); }
body.sharp .tw-avatar { border-radius: 8px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.8vw, 34px); max-width: 980px; margin-inline: auto; }
.team-card { display: flex; flex-direction: column; }
.team-card image-slot { width: 100%; height: auto; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.team-card:hover image-slot { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card h4 { font-size: 19px; font-weight: 800; margin-top: 20px; line-height: 1.2; }
.team-role { font-size: 14px; font-weight: 700; color: var(--emerald-600); margin-top: 4px; letter-spacing: -.005em; }
.team-bio { font-size: 14.5px; color: var(--text-soft); margin-top: 12px; line-height: 1.55; }

/* ============================================================
   BOOK / CALENDLY CTA
   ============================================================ */
.book {
  position: relative;
  background:
    radial-gradient(800px 420px at 88% 0%, rgba(35,12,69,.40), transparent 60%),
    radial-gradient(700px 380px at 5% 100%, rgba(46,16,89,.30), transparent 58%),
    linear-gradient(150deg, var(--navy), #0A0414);
  color: #fff;
  border-radius: clamp(24px, 3vw, 40px);
  overflow: hidden;
}
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,56px); align-items: center; padding: clamp(40px,5vw,68px); }
.book h2 { font-size: clamp(2rem, 3.6vw, 3rem); color: #fff; }
.book .lead { color: rgba(255,255,255,.74); margin-top: 18px; }
.book-perks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.book-perks li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 600; color: rgba(255,255,255,.92); }
.book-perks li svg { width: 20px; height: 20px; color: var(--emerald-300); flex-shrink: 0; }
.calendly {
  background: rgba(255,255,255,.97); color: var(--navy);
  border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-lg);
}
.cal-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.cal-head .cal-logo { width: 42px; height: 42px; border-radius: 12px; background: var(--emerald); display: grid; place-items: center; }
.cal-head .cal-logo svg { width: 22px; height: 22px; color: #fff; }
.cal-head b { font-size: 17px; font-weight: 800; display: block; }
.cal-head span { font-size: 13px; color: var(--ink-400); }
.cal-slots { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 18px; }
.cal-slot { border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 13px; text-align: center; font-weight: 700; font-size: 14px; cursor: pointer; transition: .2s; }
.cal-slot:hover, .cal-slot.sel { border-color: var(--emerald); background: rgba(46,16,89,.08); color: var(--emerald-600); }
.cal-day { font-size: 12px; color: var(--ink-400); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.cal-note { font-size: 12.5px; color: var(--ink-400); text-align: center; margin-top: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 880px; margin-inline: auto; }
.faq-cat { margin-top: 46px; }
.faq-cat:first-child { margin-top: 0; }
.faq-cat-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--emerald-600); margin-bottom: 8px;
}
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 6px; font-size: 17.5px; font-weight: 700; color: var(--navy);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--emerald-600); }
.faq-ico { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2px; background: var(--emerald); border-radius: 2px;
  transform: translate(-50%,-50%); transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .3s;
}
.faq-ico::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-ico::after { transform: translate(-50%,-50%) rotate(0deg); opacity: 0; }
.faq-answer { overflow: hidden; }
.faq-item[open] .faq-answer { animation: faqOpen .35s cubic-bezier(.2,.8,.2,1); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-answer p { font-size: 15.5px; line-height: 1.65; color: var(--text-soft); padding: 0 6px 24px; max-width: 760px; }
.faq-cta { text-align: center; margin-top: 52px; font-size: 16px; color: var(--text-soft); }
.faq-cta a { font-weight: 800; color: var(--emerald-600); }
.faq-cta a:hover { text-decoration: underline; }

/* ============================================================
   GET A QUOTE
   ============================================================ */
.quote-section {
  position: relative;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(46,16,89,.10), transparent 60%),
    radial-gradient(700px 420px at 0% 110%, rgba(46,16,89,.08), transparent 55%),
    var(--gray-50);
}
.quote-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.quote-aside { position: sticky; top: 110px; }
.quote-aside .lead { margin-top: 18px; }
.quote-steps-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 20px; }
.quote-steps-list li { display: flex; gap: 15px; align-items: flex-start; }
.quote-steps-list .qn { width: 38px; height: 38px; border-radius: 11px; background: var(--white); border: 1px solid var(--gray-200); color: var(--emerald-600); font-weight: 800; display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.quote-steps-list h5 { font-size: 15.5px; font-weight: 800; margin: 4px 0 2px; color: var(--navy); }
.quote-steps-list p { font-size: 13.5px; color: var(--text-soft); }
.quote-trust { display: flex; align-items: center; gap: 10px; margin-top: 30px; font-size: 13.5px; font-weight: 600; color: var(--text-soft); }
.quote-trust svg { width: 18px; height: 18px; color: var(--emerald-600); }

/* form card */
.qform-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-lg); }
/* progress */
.q-prog { display: flex; align-items: center; margin-bottom: 30px; }
.q-prog .pstep { display: flex; align-items: center; gap: 10px; }
.q-prog .pdot { width: 34px; height: 34px; border-radius: 50%; background: var(--gray-100); color: var(--ink-400); font-weight: 800; font-size: 14px; display: grid; place-items: center; transition: .3s; flex-shrink: 0; }
.q-prog .pstep.active .pdot { background: linear-gradient(135deg,#3B1576,#230C45); color: #fff; box-shadow: var(--shadow-emerald); }
.q-prog .pstep.done .pdot { background: var(--emerald-600); color: #fff; }
.q-prog .plabel { font-size: 13.5px; font-weight: 700; color: var(--ink-400); white-space: nowrap; }
.q-prog .pstep.active .plabel, .q-prog .pstep.done .plabel { color: var(--navy); }
.q-prog .pline { flex: 1; height: 2px; background: var(--gray-200); margin: 0 12px; border-radius: 2px; }
.q-prog .pstep.done + .pline { background: var(--emerald-600); }

.qpanel { display: none; animation: qfade .4s cubic-bezier(.2,.8,.2,1); }
.qpanel.active { display: block; }
@keyframes qfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.qpanel h3 { font-size: 22px; font-weight: 800; }
.qpanel .qsub { font-size: 14.5px; color: var(--text-soft); margin: 6px 0 24px; }

.q-grouplabel { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.q-grouplabel .opt { color: var(--ink-400); font-weight: 500; }
.q-block { margin-bottom: 22px; }

/* selectable option chips (radio + checkbox) */
.q-opts { display: grid; gap: 10px; }
.q-opts.cols-2 { grid-template-columns: 1fr 1fr; }
.q-opts.cols-3 { grid-template-columns: repeat(3, 1fr); }
.q-opt { position: relative; }
.q-opt input { position: absolute; opacity: 0; pointer-events: none; }
.q-opt label {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--gray-200); background: var(--gray-50);
  border-radius: var(--r-sm); padding: 13px 15px; cursor: pointer;
  font-size: 14.5px; font-weight: 600; color: var(--navy);
  transition: border-color .18s, background .18s, box-shadow .18s; height: 100%;
}
.q-opt label .qcheck { width: 19px; height: 19px; border-radius: 6px; border: 1.5px solid var(--gray-200); display: grid; place-items: center; flex-shrink: 0; transition: .18s; background: #fff; }
.q-opt.radio label .qcheck { border-radius: 50%; }
.q-opt label .qcheck svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: .15s; }
.q-opt label:hover { border-color: var(--emerald-300); }
.q-opt input:checked + label { border-color: var(--emerald); background: rgba(46,16,89,.06); box-shadow: 0 0 0 3px rgba(46,16,89,.10); }
.q-opt input:checked + label .qcheck { background: var(--emerald); border-color: var(--emerald); }
.q-opt input:checked + label .qcheck svg { opacity: 1; }
.q-opt input:focus-visible + label { border-color: var(--emerald); }

.q-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 30px; }
.q-actions .spacer { flex: 1; }
.btn-back { background: transparent; border: 0; color: var(--text-soft); font-weight: 700; font-family: var(--font); font-size: 15px; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; padding: 10px 4px; }
.btn-back:hover { color: var(--navy); }
.btn-back svg { width: 17px; height: 17px; }
.q-stepcount { font-size: 13px; font-weight: 700; color: var(--ink-400); }

.qsuccess { display: none; text-align: center; padding: 24px 6px; }
.qsuccess.show { display: block; }
.qsuccess .qs-ico { width: 72px; height: 72px; border-radius: 50%; background: rgba(46,16,89,.1); color: var(--emerald); display: grid; place-items: center; margin: 0 auto 20px; }
.qsuccess .qs-ico svg { width: 36px; height: 36px; }
.qsuccess h3 { font-size: 26px; }
.qsuccess p { color: var(--text-soft); margin-top: 10px; max-width: 420px; margin-inline: auto; }
.qsuccess .qs-summary { text-align: left; background: var(--gray-50); border-radius: var(--r-md); padding: 20px 22px; margin: 24px 0; }
.qsuccess .qs-summary .row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--gray-100); }
.qsuccess .qs-summary .row:last-child { border-bottom: 0; }
.qsuccess .qs-summary .row b { color: var(--ink-400); font-weight: 700; }
.qsuccess .qs-summary .row span { color: var(--navy); font-weight: 700; text-align: right; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px,5vw,68px); }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--gray-100); }
.ci-item:last-child { border-bottom: 0; }
.ci-item .ci-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--navy); color: var(--emerald-300); display: grid; place-items: center; flex-shrink: 0; }
.ci-item .ci-ico svg { width: 21px; height: 21px; }
.ci-item .ci-label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-400); }
.ci-item .ci-val { font-size: 16.5px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.ci-item .ci-val a:hover { color: var(--emerald-600); }

.form-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: clamp(28px,3vw,40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15.5px;
  padding: 14px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--gray-200); background: var(--gray-50);
  color: var(--navy); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--emerald); background: #fff;
  box-shadow: 0 0 0 4px rgba(46,16,89,.12);
}
.field.err input, .field.err select, .field.err textarea { border-color: #e0556b; background: #fdf3f5; }
.field .err-msg { display: none; font-size: 12.5px; color: #d23b54; font-weight: 600; margin-top: 6px; }
.field.err .err-msg { display: block; }
.form-card .btn-primary { width: 100%; margin-top: 6px; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .fs-ico { width: 64px; height: 64px; border-radius: 50%; background: rgba(46,16,89,.12); color: var(--emerald); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .fs-ico svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--text-soft); margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: clamp(56px,6vw,80px) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-name b { color: #fff; }
.footer-blurb { font-size: 14.5px; line-height: 1.6; margin-top: 18px; max-width: 300px; }
.footer-col h5 { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: var(--emerald-300); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: rgba(255,255,255,.75); transition: .25s; }
.footer-social a:hover { background: var(--emerald); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .nav-cta .btn-ghost { display: none; }
  .nav-links { gap: 22px; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .dash { transform: none; max-width: 520px; margin-top: 12px; }
  .dash:hover { transform: none; }
  .svc-grid, .why-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .book-grid, .contact-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-aside { position: static; }
  .about-media image-slot { height: 380px; }
  .df-2 { right: 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .svc-grid, .why-grid, .tst-grid, .trust-grid, .form-row, .compare { grid-template-columns: 1fr; }
  .q-opts.cols-2, .q-opts.cols-3 { grid-template-columns: 1fr; }
  .q-prog .plabel { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 26px; }
  .about-badge { left: 0; right: 0; max-width: none; bottom: -18px; }
  .df-1 { left: 0; top: -16px; }
  .cal-slots { grid-template-columns: 1fr 1fr; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-size: 28px; font-weight: 800; letter-spacing: -.03em; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .btn { margin-top: 24px; }
.mobile-close { position: absolute; top: 24px; right: var(--gutter); background: none; border: 0; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; }

/* ============================================================
   BENEFITS BAR
   ============================================================ */
.benefits { background: var(--bg); padding: clamp(40px,5vw,60px) 0; border-bottom: 1px solid var(--gray-100); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { display: flex; align-items: center; gap: 16px; padding: 22px 26px; background: var(--gray-50); border-radius: var(--r-lg); border: 1px solid var(--gray-100); }
.benefit .b-ico { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg,#3B1576,#230C45); color: var(--emerald-300); display: grid; place-items: center; flex-shrink: 0; }
.benefit .b-ico svg { width: 24px; height: 24px; }
.benefit h4 { font-size: 16.5px; font-weight: 800; }
.benefit p { font-size: 13.5px; color: var(--text-soft); margin-top: 2px; }
@media (max-width: 820px){ .benefits-grid { grid-template-columns: 1fr; } }

/* ============================================================
   EXPLAINER — What is cost segregation
   ============================================================ */
.explain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.explain-copy .eyebrow { margin-bottom: 14px; }
.explain-copy h2 { font-size: clamp(1.9rem,3.4vw,2.8rem); }
.explain-copy p { font-size: 16px; color: var(--text-soft); line-height: 1.65; margin-top: 18px; }
.explain-copy p strong { color: var(--navy); font-weight: 700; }
.explain-visual { background: linear-gradient(150deg, var(--navy), #0E0618); border-radius: var(--r-xl); padding: clamp(28px,3.5vw,44px); color:#fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.explain-visual::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 300px at 90% 0%, rgba(109,69,201,.3), transparent 60%); pointer-events:none; }
.ev-row { position: relative; z-index:1; }
.ev-label { font-size: 13px; font-weight: 700; letter-spacing:.04em; color: rgba(255,255,255,.6); text-transform: uppercase; }
.ev-bar-track { height: 16px; border-radius: 999px; background: rgba(255,255,255,.1); margin: 12px 0 6px; overflow: hidden; }
.ev-bar-fill { height: 100%; border-radius: 999px; }
.ev-bar-fill.slow { width: 18%; background: rgba(255,255,255,.3); }
.ev-bar-fill.fast { width: 100%; background: linear-gradient(90deg, var(--emerald-300), #C4A8FF); }
.ev-cap { font-size: 13.5px; color: rgba(255,255,255,.7); }
.ev-divider { height:1px; background: rgba(255,255,255,.12); margin: 26px 0; }
.ev-stat { position: relative; z-index:1; text-align:center; }
.ev-stat b { display:block; font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; color: var(--emerald-300); letter-spacing:-.03em; }
.ev-stat span { font-size: 14px; color: rgba(255,255,255,.72); }
@media (max-width: 880px){ .explain-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ELIGIBILITY
   ============================================================ */
.elig { background: linear-gradient(150deg, var(--navy), #0E0618); color:#fff; position: relative; overflow:hidden; }
.elig::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 85% -10%, rgba(91,33,118,.4), transparent 60%); pointer-events:none; }
.elig .wrap { position: relative; z-index:1; }
.elig .sec-head .h2 { color:#fff; }
.elig .sec-head .lead { color: rgba(255,255,255,.74); }
.elig-cards { display:grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; margin-top: 12px; }
.elig-card { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 34px 30px; text-align:center; backdrop-filter: blur(6px); }
.elig-card .ec-ico { width: 54px; height:54px; border-radius:15px; background: rgba(109,69,201,.25); color: var(--emerald-300); display:grid; place-items:center; margin: 0 auto 18px; }
.elig-card .ec-ico svg { width:26px; height:26px; }
.elig-card b { display:block; font-size: clamp(1.8rem,3.2vw,2.4rem); font-weight:800; letter-spacing:-.03em; color:#fff; }
.elig-card span { font-size: 14.5px; color: rgba(255,255,255,.72); }
.elig-or { display:grid; place-items:center; font-size: 13px; font-weight:800; letter-spacing:.1em; color: var(--emerald-300); }
.elig-or .line { width:1px; flex:1; background: rgba(255,255,255,.18); }
.elig-plus { display:flex; align-items:center; justify-content:center; gap:12px; margin-top: 26px; font-size: 16px; font-weight:600; color: rgba(255,255,255,.92); }
.elig-plus svg { width:22px; height:22px; color: var(--emerald-300); }
.elig-cta { text-align:center; margin-top: 36px; }
@media (max-width: 820px){ .elig-cards { grid-template-columns: 1fr; } .elig-or { padding: 6px 0; } }

/* ============================================================
   PROCESS — How it works
   ============================================================ */
.proc-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.proc-card { background: var(--white); border:1px solid var(--gray-100); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; transition: transform .3s ease, box-shadow .3s ease; }
.proc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.proc-num { width: 46px; height:46px; border-radius: 13px; background: linear-gradient(135deg,#3B1576,#230C45); color:#fff; font-weight:800; font-size:19px; display:grid; place-items:center; margin-bottom: 20px; }
.proc-card h4 { font-size: 18px; font-weight:800; }
.proc-card p { font-size: 14px; color: var(--text-soft); margin-top: 9px; line-height:1.55; }
.proc-cta { text-align:center; margin-top: 44px; }
@media (max-width: 1024px){ .proc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .proc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CPA — We work with your accountant
   ============================================================ */
.cpa-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items:center; }
.cpa-copy h2 { font-size: clamp(1.9rem,3.4vw,2.6rem); }
.cpa-copy p { font-size: 16px; color: var(--text-soft); line-height:1.65; margin-top: 18px; }
.cpa-points { list-style:none; padding:0; margin: 26px 0 0; display:grid; gap:14px; }
.cpa-points li { display:flex; gap:13px; align-items:flex-start; font-size: 15px; font-weight:500; color: var(--navy); }
.cpa-points li svg { width:22px; height:22px; color: var(--emerald-600); flex-shrink:0; margin-top:1px; }
.cpa-visual { background: var(--gray-50); border:1px solid var(--gray-100); border-radius: var(--r-xl); padding: clamp(28px,3.5vw,44px); }
.cpa-flow { display:flex; flex-direction:column; gap: 0; }
.cpa-node { display:flex; align-items:center; gap:16px; background:#fff; border:1px solid var(--gray-100); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.cpa-node .cn-ico { width:44px; height:44px; border-radius:12px; display:grid; place-items:center; flex-shrink:0; }
.cpa-node b { font-size: 15.5px; font-weight:800; display:block; }
.cpa-node span { font-size: 13px; color: var(--text-soft); }
.cpa-connector { width:2px; height: 26px; background: var(--gray-200); margin-left: 41px; }
@media (max-width: 880px){ .cpa-grid { grid-template-columns: 1fr; } }
