/* =====================================================
   caprate.ca — Master Stylesheet (style-new.css)
   Dropdown: CSS-only, full-height li + ::after bridge
   ===================================================== */

/* RESET & ROOT */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --navy:  #0d1b2a;
  --navy2: #162032;
  --navy3: #1a3a5c;
  --gold:  #c9a84c;
  --goldl: #e8c96e;
  --goldd: rgba(201,168,76,.15);
  --white: #ffffff;
  --off:   #f4f6f9;
  --text:  #2c3e50;
  --muted: #6b7a8d;
  --border:#dde3ec;
  --green: #4ade80;
  --green2:#16a34a;
  --r10:   10px;
  /* accent palette for colorful boxes */
  --red:   #e63946;
  --blue:  #1d3557;
  --ylw:   #e9c46a;
  --teal:  #2a9d8f;
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ANIMATIONS */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity .65s ease,transform .65s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-up.d1{transition-delay:.1s} .fade-up.d2{transition-delay:.2s}
.fade-up.d3{transition-delay:.3s} .fade-up.d4{transition-delay:.4s}

/* ====================================================
   NAVIGATION — CSS-only dropdown that WORKS
   Key techniques:
   1. #nav uses align-items:stretch so <li> fills 68px
   2. ::after pseudo creates 12px transparent bridge
      so cursor moving from nav bar to dropdown menu
      never exits the hover zone
   3. CSS visibility + transition-delay provides delay
==================================================== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(201,168,76,.55);
  display: flex;
  align-items: stretch;   /* children stretch to full 68px */
  padding: 0 5%;
  gap: 24px;
}
#nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.35); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo .lt span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: stretch;  /* li items fill full nav height */
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  gap: 0;
}

/* Each <li> stretches to full 68px — cursor never "falls off" */
.nav-links li {
  position: relative;
  display: flex;
  align-items: center;
}

/* Invisible bridge: 12px zone between nav bottom and dropdown top */
.nav-links li.has-dd::after {
  content: '';
  position: absolute;
  top: 100%;       /* starts at bottom of nav bar */
  left: -8px; right: -8px;
  height: 12px;    /* bridges the gap */
  background: transparent;
}

.nav-links li > a,
.nav-links li > button {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  font: inherit;
  color: rgba(255,255,255,.82);
  font-size: .87rem; font-weight: 500;
  padding: 0 13px;
  height: 100%;         /* button fills full li height */
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links li > a:hover,
.nav-links li > button:hover {
  color: var(--gold);
  background: rgba(201,168,76,.09);
}

.nav-links li > a .arr,
.nav-links li > button .arr {
  font-size: .62rem; opacity: .6;
  transition: transform .22s;
  display: inline-block;
  margin-left: 2px;
}
.nav-links li:hover > a .arr,
.nav-links li:hover > button .arr {
  transform: rotate(180deg);
}

/* CTA button */
.nav-cta {
  background: rgba(201,168,76,.15) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,.4) !important;
  font-weight: 700 !important;
  margin: auto 0 auto 8px;
  height: auto !important;
  padding: 9px 18px !important;
  border-radius: 6px !important;
  align-self: center;
}
.nav-cta:hover {
  background: rgba(201,168,76,.28) !important;
  border-color: rgba(201,168,76,.7) !important;
}

/* DROPDOWN MENU — hidden by default, shown on li:hover */
.dd-wrap {
  position: absolute;
  top: calc(100% + 12px);  /* below bridge */
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  /* delay on CLOSE: stays visible 600ms after hover ends */
  transition: opacity .22s .6s, visibility 0s .82s;
  z-index: 1001;
  pointer-events: none;
}

/* OPEN state on hover — li:hover includes the ::after bridge area */
.nav-links li:hover > .dd-wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* no delay on open */
  transition: opacity .18s, visibility 0s;
}

.dd-menu {
  background: rgba(13,27,42,.98);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 18px 48px rgba(0,0,0,.5);
}
.dd-label {
  padding: 9px 20px 6px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.18);
  margin-bottom: 4px;
}
.dd-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,.82);
  font-size: .84rem; font-weight: 500;
  transition: background .15s, color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.dd-menu a:hover { background: rgba(201,168,76,.12); color: var(--gold); }

/* HAMBURGER */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin: auto 0 auto 8px; flex-shrink: 0;
  align-self: center;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mob-nav {
  display: none; position: fixed;
  inset: 68px 0 0; background: rgba(13,27,42,.99);
  z-index: 998; flex-direction: column;
  padding: 32px 5%; overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  color: rgba(255,255,255,.85); font-size: 1.1rem; font-weight: 600;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mob-nav a:hover { color: var(--gold); }
.mob-nav .mob-cta {
  margin-top: 22px; background: var(--gold); color: var(--navy);
  font-weight: 700; text-align: center; padding: 15px;
  border-radius: 8px; border-bottom: none;
}
.mob-section-toggle {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.85); font-size: 1.1rem; font-weight: 600;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left; font-family: inherit;
}
.mob-section-toggle:hover, .mob-section-toggle.open { color: var(--gold); }
.mob-section-toggle .mob-chev { transition: transform .28s; font-size: .8rem; opacity: .7; }
.mob-section-toggle.open .mob-chev { transform: rotate(180deg); }
.mob-sub { display: none; flex-direction: column; padding-left: 14px; }
.mob-sub.open { display: flex; }
.mob-sub a { font-size: .95rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05); color: rgba(255,255,255,.72); }

/* ====================================================
   SHARED LAYOUT
==================================================== */
section { padding: 92px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: .77rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(1.6rem,3vw,2.5rem); font-weight: 800; color: var(--navy); line-height: 1.22; margin-bottom: 16px; }
.section-title em { color: var(--gold); font-style: normal; }
.section-sub { font-size: 1.02rem; color: var(--muted); max-width: 680px; line-height: 1.85; }
.section-divider { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin: 20px 0 44px; }
.light-section { background: var(--off); }
.white-section { background: var(--white); }
.dark-section { background: var(--navy); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub  { color: rgba(255,255,255,.65); }
.dark-section .section-label{ color: var(--goldl); }
.dark-section .section-divider { background: var(--gold); }

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .95rem; padding: 15px 30px;
  border-radius: 8px; text-decoration: none;
  transition: background .2s, transform .15s; border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary:hover { background: var(--goldl); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  font-weight: 600; font-size: .95rem; padding: 14px 28px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color .2s, color .2s, transform .15s; cursor: pointer; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark {
  display: inline-block; background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 16px 38px; border-radius: 8px;
  transition: background .2s, transform .15s;
}
.btn-dark:hover { background: #1a2d45; transform: translateY(-2px); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ====================================================
   HOME — HERO
==================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2d45 60%, #1e3a52 100%);
  overflow: hidden; padding-top: 68px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(201,168,76,.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,122,74,.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  color: var(--goldl); font-size: .78rem; font-weight: 600;
  letter-spacing: .09em; padding: 6px 14px; border-radius: 100px;
  text-transform: uppercase; margin-bottom: 24px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; flex-shrink: 0; }
.hero h1 { font-size: clamp(2rem,4vw,3.1rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 22px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 38px; max-width: 560px; line-height: 1.85; }
.hero-trust { display: flex; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.55); font-size: .78rem; }
.hero-trust span { display: flex; align-items: center; gap: 6px; }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 16px; padding: 34px;
  backdrop-filter: blur(6px);
}
.hero-card h3 { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 22px; }
.stat-row { display: flex; flex-direction: column; gap: 14px; }
.stat-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: rgba(255,255,255,.05); border-radius: 8px; border-left: 3px solid var(--gold); }
.stat-label { color: rgba(255,255,255,.65); font-size: .83rem; }
.stat-value { color: var(--white); font-weight: 700; font-size: 1.05rem; }
.stat-value.save { color: var(--green); }
.hero-divider { height: 1px; background: rgba(201,168,76,.2); margin: 18px 0; }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.35); font-size: .72rem; animation: bounce 2.2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* STATS STRIP */
.stats-strip { background: var(--gold); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: repeat(5,1fr); }
.stat-block { padding: 34px 20px; text-align: center; border-right: 1px solid rgba(13,27,42,.15); }
.stat-block:last-child { border-right: none; }
.stat-num { font-size: 2.1rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-lab { font-size: .73rem; color: rgba(13,27,42,.65); text-transform: uppercase; letter-spacing: .09em; margin-top: 7px; font-weight: 600; }

/* ====================================================
   INNER PAGES — HERO
==================================================== */
.page-hero {
  position: relative; min-height: 76vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  padding-top: 68px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.65) 60%, rgba(13,27,42,.45) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 5%; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: .8rem; color: rgba(255,255,255,.5); }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.breadcrumb .cur { color: var(--gold); }
.page-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  color: var(--goldl); font-size: .78rem; font-weight: 600;
  letter-spacing: .09em; padding: 6px 14px; border-radius: 100px;
  text-transform: uppercase; margin-bottom: 18px;
}
.page-hero h1 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 18px; max-width: 720px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 600px; line-height: 1.85; margin-bottom: 32px; }

/* METRICS STRIP (inner pages) */
.metrics-strip { background: var(--gold); }
.metrics-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: repeat(4,1fr); }
.metric-block { padding: 30px 18px; text-align: center; border-right: 1px solid rgba(13,27,42,.15); }
.metric-block:last-child { border-right: none; }
.metric-num { font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1; }
.metric-lab { font-size: .71rem; color: rgba(13,27,42,.65); text-transform: uppercase; letter-spacing: .09em; margin-top: 6px; font-weight: 600; }

/* ====================================================
   TWO-COLUMN LAYOUT
==================================================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.two-col-center { align-items: center; }

/* OVERVIEW VISUAL */
.overview-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: 18px; padding: 36px; color: white;
  box-shadow: 0 16px 48px rgba(13,27,42,.22);
}
.overview-visual h3 { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 22px; font-weight: 700; }
.fact-list { display: flex; flex-direction: column; gap: 11px; }
.fact-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255,255,255,.07); border-radius: 8px; border-left: 3px solid var(--gold); }
.fact-label { color: rgba(255,255,255,.6); font-size: .84rem; }
.fact-value { color: var(--white); font-weight: 700; font-size: .94rem; }
.fact-value.good { color: var(--green); }

/* CARD GRID */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 22px; margin-top: 40px; }
.card { background: var(--white); border-radius: 14px; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .25s, border-color .25s, transform .25s; }
.card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); border-color: var(--gold); transform: translateY(-4px); }
.card-img { width: 100%; height: 175px; background-size: cover; background-position: center; background-color: var(--navy2); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card-body p { font-size: .85rem; color: var(--muted); line-height: 1.68; }

/* CHECK LIST */
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; background: var(--white); border-radius: 10px; border: 1px solid var(--border); transition: border-color .2s, box-shadow .2s; }
.check-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.ck-icon { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: rgba(201,168,76,.15); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.ck-body h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ck-body p { font-size: .84rem; color: var(--muted); line-height: 1.62; }

/* STEP LIST */
.step-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.step-row { display: flex; gap: 18px; align-items: flex-start; }
.step-num { width: 42px; height: 42px; min-width: 42px; background: var(--gold); color: var(--navy); font-weight: 800; font-size: .95rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.step-content p { font-size: .87rem; color: var(--muted); line-height: 1.65; }
.dark-section .step-content h4 { color: var(--white); }
.dark-section .step-content p { color: rgba(255,255,255,.62); }

/* PROP IMAGE */
.prop-image { width: 100%; height: 360px; background-size: cover; background-position: center; border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,.18); }

/* ====================================================
   SIDEBAR BOXES (colorful accent borders)
==================================================== */
.sidebar-box {
  background: var(--white); border-radius: 14px;
  padding: 24px 26px; border: 1px solid var(--border);
  margin-bottom: 22px;
  border-top: 4px solid var(--gold);
  transition: box-shadow .2s;
}
.sidebar-box:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); }

/* Colorful variants — rotate per box */
.sidebar-box.sb-red   { border-top-color: var(--red);  }
.sidebar-box.sb-blue  { border-top-color: var(--blue); }
.sidebar-box.sb-gold  { border-top-color: var(--gold); }
.sidebar-box.sb-teal  { border-top-color: var(--teal); }

.sb-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 14px; display: block; }
.sidebar-box.sb-red  .sb-label { color: var(--red); }
.sidebar-box.sb-blue .sb-label { color: #4a90d9; }
.sidebar-box.sb-teal .sb-label { color: var(--teal); }

.sb-row { display: flex; gap: 10px; font-size: .88rem; color: var(--muted); align-items: flex-start; margin-bottom: 10px; }
.sb-arrow { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.sidebar-box.sb-red  .sb-arrow { color: var(--red); }
.sidebar-box.sb-blue .sb-arrow { color: #4a90d9; }
.sidebar-box.sb-teal .sb-arrow { color: var(--teal); }
.sb-check { color: var(--green2); font-weight: 700; flex-shrink: 0; }

.highlight-box { border-radius: 14px; padding: 22px 26px; margin-top: 22px; }
.hl-green { background: #f0fdf4; border: 1px solid #bbf7d0; }
.hl-green strong { color: #166534; display: block; margin-bottom: 8px; font-size: .95rem; }
.hl-green p { color: #166534; font-size: .91rem; line-height: 1.78; }

/* ====================================================
   HOME — INTRO SECTION
==================================================== */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-points { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.intro-point { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: var(--off); border-radius: var(--r10); border-left: 4px solid var(--gold); transition: box-shadow .2s; }
.intro-point:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.point-icon { width: 42px; height: 42px; min-width: 42px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.intro-visual { background: linear-gradient(145deg, var(--navy) 0%, var(--navy3) 100%); border-radius: 18px; padding: 40px; color: white; box-shadow: 0 20px 60px rgba(13,27,42,.28); }
.metrics-list { display: flex; flex-direction: column; gap: 12px; }
.metric-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255,255,255,.07); border-radius: 8px; font-size: .89rem; transition: background .2s; }
.metric-item:hover { background: rgba(255,255,255,.12); }
.metric-item span:last-child { color: var(--gold); font-weight: 700; font-size: .8rem; }

/* ASSET CLASSES */
.asset-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 24px; margin-top: 44px; }
.asset-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow .28s, transform .28s, border-color .28s; }
.asset-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.13); transform: translateY(-6px); border-color: var(--gold); }
.asset-img { width: 100%; height: 200px; background-size: cover; background-position: center; background-color: var(--navy2); position: relative; }
.asset-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,42,0) 40%, rgba(13,27,42,.55) 100%); }
.asset-card-body { padding: 22px 24px 26px; }
.asset-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.asset-card p { font-size: .87rem; color: var(--muted); line-height: 1.68; }

/* FINANCIAL */
.fin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px,1fr)); gap: 22px; margin-top: 44px; }
.fin-card { background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.2); border-radius: 12px; padding: 28px 24px; transition: background .2s, border-color .2s; }
.fin-card:hover { background: rgba(255,255,255,.1); border-color: rgba(201,168,76,.4); }
.fin-card h3 { color: var(--gold); font-size: .88rem; font-weight: 700; letter-spacing: .04em; margin-bottom: 16px; }
.fin-tags { display: flex; flex-direction: column; gap: 10px; }
.fin-tag { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.78); font-size: .88rem; }
.fin-tag::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.fin-goal { margin-top: 44px; padding: 26px 30px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3); border-radius: 12px; max-width: 680px; }
.fin-goal strong { color: var(--goldl); font-size: .96rem; }
.fin-goal p { color: rgba(255,255,255,.78); margin-top: 8px; font-size: .93rem; }

/* CALCULATOR */
.calc-box { background: linear-gradient(145deg, #0d1b2a 0%, var(--navy3) 100%); border-radius: 20px; padding: 52px 50px; color: white; max-width: 880px; margin: 0 auto; box-shadow: 0 24px 80px rgba(13,27,42,.25); }
.calc-box h3 { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.calc-box h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 32px; }
.slider-label { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: .85rem; color: rgba(255,255,255,.55); }
.slider-value { font-size: 2.2rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
input[type=range] { -webkit-appearance: none; width: 100%; height: 6px; background: rgba(255,255,255,.15); border-radius: 3px; margin-bottom: 36px; outline: none; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 0 0 5px rgba(201,168,76,.3); transition: box-shadow .2s; }
input[type=range]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 9px rgba(201,168,76,.2); }
.calc-results { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.calc-cell { background: rgba(255,255,255,.07); border-radius: 10px; padding: 22px 16px; text-align: center; border: 1px solid rgba(255,255,255,.1); }
.calc-cell.highlight { background: rgba(74,222,128,.12); border-color: rgba(74,222,128,.3); }
.calc-cell-label { font-size: .76rem; color: rgba(255,255,255,.52); margin-bottom: 10px; line-height: 1.4; }
.calc-cell-value { font-size: 1.35rem; font-weight: 800; color: var(--white); }
.calc-cell.highlight .calc-cell-value { color: var(--green); }
.savings-table-wrap { overflow-x: auto; margin-top: 52px; }
.savings-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.savings-table th { background: var(--navy); color: var(--gold); font-size: .79rem; text-transform: uppercase; letter-spacing: .07em; padding: 14px 18px; text-align: left; font-weight: 700; }
.savings-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text); }
.savings-table tr:last-child td { border-bottom: none; }
.savings-table tr:hover td { background: var(--off); }
.save-badge { background: #dcfce7; color: #15803d; font-weight: 700; padding: 4px 12px; border-radius: 100px; font-size: .82rem; white-space: nowrap; }

/* COMPARISON TABLE */
.compare-wrap { overflow-x: auto; margin-top: 44px; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th { padding: 18px 24px; font-size: .87rem; font-weight: 700; }
.compare-table th:first-child { background: var(--off); color: var(--navy); text-align: left; width: 42%; }
.compare-table th.col-trad { background: #e8ecf0; color: var(--muted); text-align: center; font-size: .82rem; letter-spacing: .04em; }
.compare-table th.col-ours { background: var(--navy); color: var(--gold); text-align: center; font-size: .85rem; }
.compare-table td { padding: 14px 24px; font-size: .9rem; border-top: 1px solid var(--border); }
.compare-table td:first-child { color: var(--text); font-weight: 500; background: var(--white); }
.compare-table td.col-trad { text-align: center; color: var(--muted); background: var(--white); }
.compare-table td.col-ours { text-align: center; font-weight: 600; background: #fdfbf5; }
.compare-table tr:hover td { filter: brightness(.98); }
.chk { color: #16a34a; font-weight: 800; font-size: 1.1rem; }
.crs { color: #dc2626; font-size: 1rem; }
.ours-val { color: var(--navy); font-weight: 700; }
.compare-footer { background: var(--navy); padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.compare-footer p { color: rgba(255,255,255,.7); font-size: .88rem; }

/* WHY US CARDS */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; margin-top: 44px; }
.why-card { background: var(--white); border-radius: 14px; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .28s, border-color .28s, transform .28s; }
.why-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,.12); border-color: var(--gold); transform: translateY(-5px); }
.why-img { width: 100%; height: 168px; overflow: hidden; position: relative; }
.why-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.why-card:hover .why-img img { transform: scale(1.07); }
.why-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,.55) 0%, transparent 65%); pointer-events: none; }
.why-body { padding: 22px 22px 26px; }
.why-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.why-body p { font-size: .87rem; color: var(--muted); line-height: 1.68; }

/* COLORFUL FEATURE BOXES (Why Choose Us — index) */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 22px; margin-top: 44px; }
.feat-box { border-radius: 14px; padding: 30px 26px; color: white; overflow: hidden; }
.feat-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feat-box p { font-size: .88rem; line-height: 1.68; opacity: .88; }
.feat-img { display: block; width: calc(100% + 52px); height: 170px; object-fit: cover; border-radius: 10px 10px 0 0; margin: -30px -26px 22px -26px; }
.feat-red  { background: var(--red); }
.feat-blue { background: var(--blue); }
.feat-gold { background: var(--ylw); color: var(--navy); }
.feat-gold p { opacity: .75; }
.feat-teal { background: var(--teal); }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.testi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.2); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; transition: background .2s, border-color .2s; }
.testi-card:hover { background: rgba(255,255,255,.1); border-color: rgba(201,168,76,.4); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 18px; }
.testi-quote { font-size: .93rem; color: rgba(255,255,255,.78); line-height: 1.82; flex: 1; }
.testi-divider { height: 1px; background: rgba(201,168,76,.2); margin: 22px 0; }
.testi-name { color: var(--white); font-size: .92rem; font-weight: 700; }
.testi-detail { color: var(--gold); font-size: .78rem; margin-top: 4px; }
.testi-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.testi-tag { background: rgba(201,168,76,.12); color: var(--goldl); font-size: .72rem; padding: 3px 10px; border-radius: 100px; }

/* TRANSACTIONS */
.tx-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.tx-card { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .25s, transform .25s, border-color .25s; }
.tx-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.10); transform: translateY(-4px); border-color: var(--gold); }
.tx-header { background: var(--navy); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.tx-type { color: var(--gold); font-size: .77rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.tx-sold-badge { background: rgba(74,222,128,.15); color: var(--green); border: 1px solid rgba(74,222,128,.3); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.tx-body { padding: 20px; }
.tx-location { color: var(--muted); font-size: .82rem; margin-bottom: 14px; }
.tx-row { display: flex; justify-content: space-between; margin-bottom: 9px; font-size: .87rem; }
.tx-row span:first-child { color: var(--muted); }
.tx-row span:last-child { font-weight: 700; color: var(--navy); }
.tx-savings-bar { margin-top: 14px; padding: 10px 14px; background: #f0fdf4; border-radius: 6px; display: flex; justify-content: space-between; font-size: .87rem; border: 1px solid #bbf7d0; }
.tx-savings-bar span { color: #166534; }
.tx-savings-bar strong { color: #16a34a; font-weight: 800; }

/* PROCESS (HOME) */
.steps { display: flex; flex-direction: column; margin-top: 52px; position: relative; max-width: 720px; }
.steps::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: rgba(201,168,76,.22); }
.step { display: flex; gap: 26px; align-items: flex-start; padding: 26px 0; position: relative; }
.step-num-lg { width: 58px; height: 58px; min-width: 58px; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 1.1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1; position: relative; box-shadow: 0 0 0 6px rgba(201,168,76,.15); }
.step-content h3 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 7px; }
.step-content p { color: rgba(255,255,255,.62); font-size: .92rem; line-height: 1.72; }

/* OFF-MARKET */
.offmarket-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.offmarket-tags { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.offmarket-tag { display: flex; gap: 12px; align-items: center; background: var(--white); border-radius: 8px; padding: 14px 18px; border: 1px solid var(--border); font-size: .9rem; color: var(--text); font-weight: 500; transition: border-color .2s; }
.offmarket-tag:hover { border-color: var(--gold); }
.offmarket-tag::before { content: '🔒'; font-size: 1rem; }
.offmarket-visual { background: linear-gradient(145deg, var(--navy) 0%, var(--navy3) 100%); border-radius: 18px; padding: 44px; color: white; text-align: center; box-shadow: 0 20px 60px rgba(13,27,42,.22); }
.privacy-badge { display: inline-block; background: rgba(201,168,76,.14); border: 1px solid var(--gold); border-radius: 12px; padding: 28px 36px; margin-bottom: 24px; }
.privacy-badge span { font-size: 3rem; display: block; margin-bottom: 10px; }
.privacy-badge p { color: var(--gold); font-weight: 700; font-size: .95rem; }
.offmarket-visual p { color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.8; }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 44px; }
.area-group { background: var(--off); border-radius: 14px; padding: 30px; border-left: 4px solid var(--gold); }
.area-group h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; font-size: .83rem; color: var(--muted); transition: border-color .2s, color .2s; }
.city-tag:hover { border-color: var(--gold); color: var(--text); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; margin-top: 44px; max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: .98rem; font-weight: 600; color: var(--navy); text-align: left; gap: 20px; transition: color .2s; font-family: inherit; }
.faq-q:hover { color: var(--gold); }
.faq-q .chevron { width: 30px; height: 30px; min-width: 30px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .32s; }
.faq-q .chevron svg { stroke: white; }
.faq-q.open .chevron { background: var(--gold); transform: rotate(180deg); }
.faq-q.open .chevron svg { stroke: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-a.open { max-height: 400px; }
.faq-a-inner { padding: 4px 0 24px; font-size: .93rem; color: var(--muted); line-height: 1.85; max-width: 740px; }

/* WHAT'S INCLUDED */
.included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.inc-card { background: var(--white); border-radius: 14px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border-top: 3px solid var(--gold); }
.inc-icon { font-size: 2rem; margin-bottom: 12px; }
.inc-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.inc-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--gold) 0%, #b8922a 100%); padding: 80px 5%; text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.cta-band p { font-size: 1.05rem; color: rgba(13,27,42,.72); margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.8; }

/* ====================================================
   FORM
==================================================== */
.form-section { background: var(--white); padding: 96px 5%; }
.form-inner { max-width: 720px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .93rem; color: var(--text);
  outline: none; transition: border-color .2s, box-shadow .2s;
  font-family: inherit; background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 10px; background: var(--gold); color: var(--navy); border: none; font-weight: 700; font-size: 1rem; padding: 17px; border-radius: 8px; cursor: pointer; transition: background .2s, transform .15s; font-family: inherit; }
.form-submit:hover { background: var(--goldl); transform: translateY(-2px); }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ====================================================
   FOOTER
==================================================== */
#footer { background: var(--navy); border-top: 2px solid rgba(201,168,76,.2); padding: 64px 5% 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
.footer-logo { font-size: 1.1rem; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.footer-logo .lt span { color: var(--gold); }
.foot-brand p { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.78; margin: 16px 0 24px; }
.foot-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { color: rgba(255,255,255,.45); font-size: .88rem; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.foot-links a::before { content: '›'; color: var(--gold); }
.foot-links a:hover { color: var(--white); }
.foot-ci { display: flex; gap: 10px; color: rgba(255,255,255,.45); font-size: .87rem; margin-bottom: 12px; line-height: 1.6; }
.foot-ci svg { stroke: var(--gold); width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.foot-ci a { color: inherit; }
.foot-ci a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.28); font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.38); }
.footer-bottom a:hover { color: var(--gold); }
.soc-row { display: flex; gap: 8px; margin-top: 4px; }
.soc-btn { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.soc-btn:hover { background: var(--gold); }
.soc-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.7); fill: none; }

/* FLOATING CTA */
.float-cta { position: fixed; bottom: 28px; right: 28px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: .88rem; padding: 13px 22px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 28px rgba(201,168,76,.5); z-index: 998; display: flex; align-items: center; gap: 8px; transition: transform .2s, box-shadow .2s, background .2s; opacity: 0; transform: translateY(20px); pointer-events: none; }
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta:hover { background: var(--goldl); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(201,168,76,.5); }

/* MARKETING ITEMS */
.marketing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px,1fr)); gap: 20px; margin-top: 44px; }
.mkt-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: 10px; border: 1px solid var(--border); transition: border-color .2s, background .2s, transform .2s; }
.mkt-item:hover { border-color: var(--gold); background: #fffdf6; transform: translateY(-2px); }
.mkt-num { width: 36px; height: 36px; min-width: 36px; background: var(--gold); color: var(--navy); font-weight: 800; font-size: .85rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mkt-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: 5px; color: var(--navy); }
.mkt-item p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ABOUT PAGE */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 28px; margin-top: 44px; }
.team-card { background: var(--white); border-radius: 14px; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.team-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,.10); transform: translateY(-4px); }
.team-avatar { width: 100%; height: 220px; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; background: linear-gradient(145deg, var(--navy) 0%, var(--navy3) 100%); }
.team-info { padding: 22px 22px 26px; }
.team-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.team-title { font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: .83rem; color: var(--muted); line-height: 1.65; }
.team-creds { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.team-cred { background: var(--off); border: 1px solid var(--border); border-radius: 100px; font-size: .72rem; color: var(--muted); padding: 3px 10px; }

/* ====================================================
   RESPONSIVE
==================================================== */
@media(max-width:960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .offmarket-inner { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .tx-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .stats-inner { grid-template-columns: repeat(3,1fr); }
  .stat-block:nth-child(3) { border-right: none; }
  .two-col { grid-template-columns: 1fr; }
  .metrics-inner { grid-template-columns: repeat(2,1fr); }
  .included-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media(max-width:680px) {
  #nav { padding: 0 4%; }
  section { padding: 68px 4%; }
  .form-section { padding: 68px 4%; }
  .form-grid { grid-template-columns: 1fr; }
  .calc-box { padding: 30px 22px; }
  .hero-inner { padding: 60px 4%; }
  .footer-grid { grid-template-columns: 1fr; padding: 0 0 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .tx-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .page-hero-inner { padding: 60px 4%; }
  .prop-image { height: 240px; }
  .hero-btns { flex-direction: column; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: .82rem; }
  .included-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .hero-btns { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(13,27,42,.1); }
  .metrics-inner { grid-template-columns: 1fr; }
  .metric-block { border-right: none; border-bottom: 1px solid rgba(13,27,42,.1); }
}
