/* ================================================================
   FLEAZO HOME INTELLIGENCE — Production CSS v3
   Stack: Sora (display) + Inter (body)
   Theme: Midnight ink bg · Saffron orange CTA · Green success
   Mobile-first · Desktop-fixed · Conversion-engineered
================================================================ */

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

/* ── Design tokens ── */
:root {
  --ink:      #0D0F1A;
  --ink2:     #1A1D2E;
  --ink3:     #252840;
  --orange:   #FF6B2C;
  --orange-d: #E05520;
  --orange-l: #FFF3EE;
  --orange-b: rgba(255,107,44,.12);
  --green:    #00C27B;
  --green-l:  #E6FAF4;
  --blue:     #1C4CFF;
  --blue-l:   #EEF2FF;
  --red:      #EF4444;
  --yellow:   #F59E0B;
  --bg:       #F5F6FA;
  --white:    #FFFFFF;
  --border:   #E8EAF2;
  --border2:  #CDD0E3;
  --muted:    #6B7080;
  --faint:    #9299B0;
  --card:     #FFFFFF;
  --r:        10px;
  --r2:       16px;
  --r3:       24px;
  --sh:       0 1px 4px rgba(13,15,26,.06), 0 4px 16px rgba(13,15,26,.06);
  --sh2:      0 4px 12px rgba(13,15,26,.08), 0 12px 40px rgba(13,15,26,.12);
  --sh3:      0 8px 24px rgba(13,15,26,.1), 0 24px 60px rgba(13,15,26,.18);
  --font-d:   'Sora', system-ui, -apple-system, sans-serif;
  --font-b:   'Inter', system-ui, -apple-system, sans-serif;
  --max-w:    1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
}
a { color: var(--blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--orange); }
button { cursor: pointer; font-family: var(--font-b); border: none; outline: none; background: none; }
input, select, textarea { font-family: var(--font-b); outline: none; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1 { font-family: var(--font-d); font-size: clamp(28px,4.5vw,52px); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; }
h2 { font-family: var(--font-d); font-size: clamp(22px,3vw,36px); font-weight: 800; line-height: 1.15; letter-spacing: -.8px; }
h3 { font-family: var(--font-d); font-size: clamp(18px,2.2vw,24px); font-weight: 700; line-height: 1.3; }
h4 { font-family: var(--font-d); font-size: 17px; font-weight: 700; }
h5 { font-family: var(--font-d); font-size: 15px; font-weight: 700; }
p  { color: var(--muted); line-height: 1.75; }
small { font-size: 12px; }

/* ── Container ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.container-lg { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

/* ── Sections ── */
.section     { padding: 72px 0; }
.section-sm  { padding: 48px 0; }
.section-xs  { padding: 28px 0; }
.section-dark { background: var(--ink); }
.section-ink2 { background: var(--ink2); }
.section-white{ background: #fff; }
.section-bg   { background: var(--bg); }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

@media(max-width:960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex helpers */
.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.flex-wrap  { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* Spacing */
.mt-8  { margin-top:8px; }  .mt-12 { margin-top:12px; } .mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; } .mt-32 { margin-top:32px; } .mt-40 { margin-top:40px; }
.mb-8  { margin-bottom:8px; }  .mb-12 { margin-bottom:12px; } .mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; } .mb-32 { margin-bottom:32px; } .mb-40 { margin-bottom:40px; }

/* ================================================================
   TOP BAR
================================================================ */
#top-bar {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  font-size: 12.5px; font-weight: 500;
  padding: 9px 20px; text-align: center;
  position: relative; z-index: 201;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#top-bar strong { color: #fff; }
#top-bar a { color: var(--orange); font-weight: 700; }
#top-bar a:hover { color: #fff; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex; align-items: center;
  padding: 0 20px; gap: 0;
}
.nav-logo {
  font-family: var(--font-d); font-size: 20px; font-weight: 900;
  color: var(--ink); letter-spacing: -.5px; flex-shrink: 0;
  margin-right: 24px;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1;
}
.nav-link {
  padding: 7px 11px; font-size: 13px; font-weight: 600;
  color: var(--muted); border-radius: 8px;
  transition: all .15s; white-space: nowrap;
}
.nav-link:hover  { color: var(--ink); background: var(--bg); text-decoration: none; }
.nav-link.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.btn-nav-cta {
  background: var(--orange); color: #fff;
  border-radius: var(--r); padding: 9px 18px;
  font-size: 13px; font-weight: 700;
  transition: all .2s; white-space: nowrap; border: none;
}
.btn-nav-cta:hover { background: var(--orange-d); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.nav-mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px; z-index: 199; box-shadow: var(--sh2);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-link { display: block; padding: 12px 16px; font-size: 15px; font-weight: 600; color: var(--ink); border-radius: var(--r); }
.nav-mobile-link:hover { background: var(--bg); text-decoration: none; }

@media(max-width: 800px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .btn-nav-cta { padding: 8px 14px; font-size: 12px; }
}

/* ================================================================
   HERO — FIXED DESKTOP SPLIT
================================================================ */
.hero {
  background: var(--ink);
  padding: 72px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 75% 45%, rgba(255,107,44,.13), transparent 65%),
    radial-gradient(ellipse 35% 50% at 15% 80%, rgba(0,194,123,.07), transparent 55%);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── DESKTOP GRID — hero-inner AND hero-layout both supported ── */
.hero-layout, .hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
  position: relative; z-index: 1;
}

/* Tablet */
@media(min-width: 641px) and (max-width: 960px) {
  .hero-layout, .hero-inner { grid-template-columns: 1fr 360px; gap: 36px; }
}
/* Mobile — stack */
@media(max-width: 640px) {
  .hero-layout, .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 48px 0 56px; }
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,44,.15); color: var(--orange);
  border: 1px solid rgba(255,107,44,.3);
  border-radius: 100px; padding: 5px 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-kicker .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

.hero-title { color: #fff; margin-bottom: 20px; }
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.6);
  font-size: 15.5px; line-height: 1.85;
  max-width: 500px; margin-bottom: 28px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 7px 14px;
  font-size: 12.5px; font-weight: 600;
  transition: all .2s; cursor: pointer; text-decoration: none;
}
.hero-pill:hover {
  background: var(--orange); border-color: var(--orange);
  color: #fff; text-decoration: none;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.45); font-size: 13px;
}
.trust-item .ti-icon { color: var(--green); font-size: 13px; }

/* ── Capture card ── */
.capture-card {
  background: #fff; border-radius: var(--r3);
  padding: 28px; box-shadow: var(--sh3);
  position: relative;
}
.capture-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--orange), #FFB088);
  border-radius: 0 0 3px 3px;
}
.quiz-prog-track {
  height: 3px; background: var(--border); border-radius: 3px;
  margin-bottom: 20px; overflow: hidden;
}
.quiz-prog-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), #FFB088);
  transition: width .4s cubic-bezier(.4,0,.2,1); width: 0%;
}
.quiz-step-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--faint); margin-bottom: 10px;
}
.quiz-q    { font-family: var(--font-d); font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.quiz-hint { font-size: 12.5px; color: var(--faint); margin-bottom: 18px; line-height: 1.5; }
.quiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.quiz-opt {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 12px 10px;
  text-align: left; transition: all .15s; cursor: pointer;
  display: flex; flex-direction: column; gap: 3px;
}
.quiz-opt:hover     { border-color: var(--orange); background: var(--orange-l); }
.quiz-opt.sel       { border-color: var(--orange); background: var(--orange); }
.quiz-opt.sel .qo-l { color: #fff; }
.quiz-opt.sel .qo-s { color: rgba(255,255,255,.7); }
.qo-i { font-size: 22px; margin-bottom: 3px; display: block; }
.qo-l { font-size: 13px; font-weight: 700; color: var(--ink); }
.qo-s { font-size: 11px; color: var(--faint); }

.qstep { display: none; animation: stepIn .25s ease; }
.qstep.active { display: block; }
@keyframes stepIn { from{opacity:0;transform:translateX(10px)} to{opacity:1;transform:translateX(0)} }

/* Contact step */
.cf-field   { margin-bottom: 14px; }
.cf-label   { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 6px; }
.cf-input   {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 13px 14px; font-size: 15px;
  color: var(--ink); transition: all .2s; -webkit-appearance: none;
  font-family: var(--font-b);
}
.cf-input:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,44,.1); }
.cf-input::placeholder { color: var(--faint); }

.urgency-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #FFF8F0; color: #B84500;
  border: 1px solid rgba(255,107,44,.25);
  border-radius: 100px; padding: 5px 12px;
  font-size: 11.5px; font-weight: 700; margin-bottom: 14px;
}
.urgency-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 1.5s infinite; flex-shrink: 0; }

.btn-submit {
  width: 100%; padding: 15px 20px;
  background: var(--orange); color: #fff;
  border-radius: var(--r); font-size: 15px; font-weight: 800;
  font-family: var(--font-d);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(255,107,44,.38);
  border: none; cursor: pointer;
}
.btn-submit:hover:not(:disabled) { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,44,.5); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-submit .arr { transition: transform .2s; }
.btn-submit:hover:not(:disabled) .arr { transform: translateX(4px); }

.cc-fine {
  text-align: center; margin-top: 10px;
  font-size: 11px; color: var(--faint); line-height: 1.6;
}

/* ================================================================
   TICKER
================================================================ */
.ticker-bar {
  background: var(--ink2); overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 10px 0;
}
.ticker-track {
  display: flex; width: max-content; gap: 60px;
  animation: ticker 55s linear infinite;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45); font-size: 12.5px; white-space: nowrap;
}
.ticker-item strong { color: rgba(255,255,255,.85); }
.ticker-sep { color: var(--orange); font-size: 16px; opacity: .7; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ================================================================
   STATS STRIP
================================================================ */
.stats-strip { background: var(--orange); }
.stats-row   { display: flex; justify-content: space-around; flex-wrap: wrap; }
.stat-block  { padding: 22px 20px; text-align: center; color: #fff; flex: 1; min-width: 100px; }
.stat-num    { font-family: var(--font-d); font-size: 30px; font-weight: 900; letter-spacing: -1px; display: block; }
.stat-lbl    { font-size: 11px; opacity: .75; text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; display: block; }

/* ================================================================
   TOOL CARDS
================================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media(max-width: 960px) { .tools-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width: 600px) { .tools-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 360px) { .tools-grid { grid-template-columns: 1fr; } }

.tool-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--r2); padding: 20px 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  transition: all .2s; position: relative; overflow: hidden;
}
.tool-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #FFB088);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.tool-card:hover { box-shadow: var(--sh2); border-color: transparent; transform: translateY(-3px); text-decoration: none; }
.tool-card:hover::after { transform: scaleX(1); }
.tc-icon { font-size: 28px; }
.tc-name { font-family: var(--font-d); font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.3; }
.tc-desc { font-size: 12px; color: var(--faint); line-height: 1.5; flex: 1; }
.tc-cta  { font-size: 12px; font-weight: 700; color: var(--orange); margin-top: 4px; }

/* ================================================================
   LOCATION TABLE
================================================================ */
.tbl-wrap { border-radius: var(--r2); overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--sh); }
table.loc-tbl { width: 100%; border-collapse: collapse; }
table.loc-tbl thead tr { background: var(--ink); }
table.loc-tbl thead th { padding: 12px 14px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); white-space: nowrap; }
table.loc-tbl tbody tr { border-bottom: 1px solid var(--border); transition: background .1s; cursor: pointer; background: #fff; }
table.loc-tbl tbody tr:last-child { border-bottom: none; }
table.loc-tbl tbody tr:hover { background: var(--orange-l); }
table.loc-tbl td { padding: 11px 14px; font-size: 13.5px; vertical-align: middle; }
.loc-nm  { font-weight: 700; color: var(--ink); }
.loc-pin { font-size: 11px; color: var(--faint); margin-top: 1px; }
.loc-psf { font-weight: 700; color: var(--ink); }
.loc-rng { font-size: 11px; color: var(--faint); }
.loc-gr  { color: var(--green); font-weight: 700; }
.dem-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 100px;
}
.dem-vh { background: #FEE2E2; color: #B91C1C; }
.dem-h  { background: #FEF3C7; color: #92400E; }
.dem-m  { background: #DBEAFE; color: #1E40AF; }
.dem-l  { background: var(--border); color: var(--muted); }
.zone-pill { display: inline-block; font-size: 10.5px; font-weight: 600; color: var(--blue); background: var(--blue-l); padding: 2px 8px; border-radius: 100px; }
.tbl-act {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: var(--orange);
  padding: 5px 10px; border-radius: 6px; background: var(--orange-l);
  transition: all .15s; white-space: nowrap; text-decoration: none;
}
.tbl-act:hover { background: var(--orange); color: #fff; text-decoration: none; }

/* ================================================================
   SECTION HEADINGS
================================================================ */
.sec-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--orange); margin-bottom: 12px;
}
.sec-title { margin-bottom: 12px; }
.sec-body  { color: var(--muted); max-width: 520px; margin-bottom: 36px; line-height: 1.8; font-size: 15px; }

/* ================================================================
   CARDS
================================================================ */
.card {
  background: var(--card); border-radius: var(--r2);
  border: 1.5px solid var(--border); padding: 22px;
  transition: all .22s; display: block;
}
.card:hover { box-shadow: var(--sh2); border-color: var(--border2); transform: translateY(-2px); text-decoration: none; }
.card-icon  { font-size: 26px; margin-bottom: 12px; display: block; }
.card-title { font-family: var(--font-d); font-size: 16px; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
.card-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.card-cta   { font-size: 13px; font-weight: 700; color: var(--orange); }

/* ================================================================
   NEWS CARDS
================================================================ */
.news-card {
  background: var(--card); border-radius: var(--r2);
  border: 1.5px solid var(--border); padding: 18px 20px;
  transition: all .2s; text-decoration: none; color: inherit; display: block;
}
.news-card:hover { box-shadow: var(--sh2); border-color: var(--border2); transform: translateY(-2px); text-decoration: none; }
.nc-src   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--faint); margin-bottom: 8px; }
.nc-title { font-family: var(--font-d); font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.45; margin-bottom: 8px; }
.nc-sum   { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.nc-foot  { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.nc-date  { font-size: 11px; color: var(--faint); }
.nc-imp   { font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 5px; }
.nc-imp.high   { background: #FEE2E2; color: #B91C1C; }
.nc-imp.medium { background: #FEF3C7; color: #92400E; }
.nc-imp.low    { background: var(--border); color: var(--muted); }

/* ================================================================
   INSIGHT BARS
================================================================ */
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.bar-lbl { font-size: 12px; color: var(--muted); flex-shrink: 0; width: 120px; }
.bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--orange), #FFB088); transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.bar-val   { font-size: 12px; font-weight: 700; color: var(--ink); width: 28px; text-align: right; flex-shrink: 0; }

/* Investment grade badges */
.grade-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 7px;
  font-family: var(--font-d); font-size: 11px; font-weight: 900;
}
.g-ap { background: #D1FAE5; color: #065F46; }
.g-a  { background: #DBEAFE; color: #1E3A8A; }
.g-b  { background: #FEF3C7; color: #78350F; }
.g-c  { background: var(--border); color: var(--muted); }

/* ================================================================
   CALCULATOR PAGES
================================================================ */
.calc-shell {
  background: var(--card); border-radius: var(--r3);
  border: 1.5px solid var(--border); padding: 36px;
  box-shadow: var(--sh);
}
@media(max-width: 600px) { .calc-shell { padding: 22px 18px; } }
.calc-hd { font-family: var(--font-d); font-size: 22px; font-weight: 900; color: var(--ink); margin-bottom: 6px; }
.calc-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
@media(max-width: 580px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-field label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 6px; }
.calc-in {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 12px 14px; font-size: 15px;
  color: var(--ink); transition: all .2s; -webkit-appearance: none; font-family: var(--font-b);
}
.calc-in:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,44,.08); }
select.calc-in {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7080' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.btn-calc {
  width: 100%; padding: 15px 20px; margin-top: 4px;
  background: var(--orange); color: #fff;
  border-radius: var(--r); font-size: 15px; font-weight: 800;
  font-family: var(--font-d); transition: all .2s; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,107,44,.35);
}
.btn-calc:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,44,.45); }
.calc-res { display: none; margin-top: 24px; background: var(--ink); border-radius: var(--r2); padding: 24px; }
.calc-res.show { display: block; animation: fadeUp .35s ease; }
.cr-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.cr-big { font-family: var(--font-d); font-size: 38px; font-weight: 900; color: var(--orange); letter-spacing: -1.5px; margin-bottom: 20px; line-height: 1; }
.cr-rows { display: flex; flex-direction: column; gap: 10px; }
.cr-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13.5px; }
.cr-row:last-child { border-bottom: none; padding-bottom: 0; }
.cr-k { color: rgba(255,255,255,.55); }
.cr-v { font-weight: 700; color: #fff; }
.cr-note { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 14px; text-align: center; }
.calc-nudge {
  display: none; margin-top: 18px;
  background: var(--orange-l); border: 1.5px solid rgba(255,107,44,.2);
  border-radius: var(--r2); padding: 18px 20px;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.calc-nudge.show { display: flex; animation: fadeUp .3s ease; }
.cn-text .cn-hd  { font-family: var(--font-d); font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.cn-text .cn-sub { font-size: 12.5px; color: var(--muted); }
.cn-btn { background: var(--orange); color: #fff; padding: 10px 18px; border-radius: var(--r); font-size: 13px; font-weight: 700; white-space: nowrap; transition: all .2s; border: none; cursor: pointer; }
.cn-btn:hover { background: var(--orange-d); }

/* ================================================================
   BADGES
================================================================ */
.badge { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 5px; font-size: 11px; font-weight: 700; letter-spacing: .2px; }
.badge-hot  { background: #FEE2E2; color: #B91C1C; }
.badge-warm { background: #FEF3C7; color: #92400E; }
.badge-cool { background: #DBEAFE; color: #1E40AF; }
.badge-ok   { background: var(--green-l); color: #065F46; }
.badge-new  { background: var(--orange-l); color: #B84500; }

.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-l); color: #065F46;
  border: 1px solid rgba(0,194,123,.25);
  border-radius: 100px; padding: 4px 12px;
  font-size: 11.5px; font-weight: 700;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; flex-shrink: 0; }

/* ================================================================
   BUTTONS
================================================================ */
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: var(--orange); color: #fff;
  border-radius: var(--r); font-size: 14px; font-weight: 700;
  transition: all .2s; border: none; cursor: pointer; text-decoration: none;
}
.btn-orange:hover { background: var(--orange-d); transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; background: transparent; color: var(--ink);
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 14px; font-weight: 600; transition: all .2s; text-decoration: none; cursor: pointer;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); text-decoration: none; }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r); font-size: 14px; font-weight: 600;
  transition: all .2s; cursor: pointer; text-decoration: none;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.18); text-decoration: none; color: #fff; }

/* ================================================================
   FORM ELEMENTS
================================================================ */
.form-field  { margin-bottom: 16px; }
.form-label  { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 6px; }
.form-input  { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r); padding: 13px 14px; font-size: 15px; color: var(--ink); transition: all .2s; -webkit-appearance: none; font-family: var(--font-b); }
.form-input:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,44,.08); }
.form-input::placeholder { color: var(--faint); }
.form-input.err { border-color: var(--red); }
.form-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7080' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-err-msg { font-size: 11.5px; color: var(--red); margin-top: 5px; }

/* ================================================================
   VENDOR FORM (onboarding — not public listing)
================================================================ */
.vendor-form-card {
  background: var(--card); border-radius: var(--r3);
  border: 1.5px solid var(--border); padding: 40px;
  max-width: 560px; margin: 0 auto; box-shadow: var(--sh);
}
@media(max-width:600px) { .vendor-form-card { padding: 24px 18px; } }

/* ================================================================
   ADMIN
================================================================ */
.admin-wrap { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
@media(max-width:768px) { .admin-wrap { grid-template-columns: 1fr; } }
.admin-sidebar {
  background: var(--ink); padding: 24px 14px;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
@media(max-width:768px) { .admin-sidebar { position: static; height: auto; } }
.sidebar-logo { font-family: var(--font-d); font-size: 18px; font-weight: 900; color: #fff; padding: 4px 10px 20px; }
.sidebar-logo span { color: var(--orange); }
.sidebar-sec  { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.22); padding: 14px 10px 6px; }
.sidebar-link { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: var(--r); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); transition: all .15s; text-decoration: none; margin-bottom: 2px; }
.sidebar-link:hover  { background: rgba(255,255,255,.07); color: rgba(255,255,255,.9); text-decoration: none; }
.sidebar-link.active { background: var(--orange); color: #fff; }
.sidebar-link .ic { font-size: 14px; width: 18px; text-align: center; }
.admin-main { background: var(--bg); overflow-y: auto; }
.admin-topbar { background: var(--card); border-bottom: 1px solid var(--border); padding: 0 24px; height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 12px; position: sticky; top: 0; z-index: 50; }
.admin-topbar-title { font-family: var(--font-d); font-size: 16px; font-weight: 800; color: var(--ink); }
.admin-body { padding: 24px; }
.widget-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 22px; }
@media(max-width:900px) { .widget-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px) { .widget-grid { grid-template-columns: 1fr; } }
.widget { background: var(--card); border-radius: var(--r2); border: 1.5px solid var(--border); padding: 18px 20px; }
.widget-val { font-family: var(--font-d); font-size: 30px; font-weight: 900; color: var(--ink); line-height: 1; }
.widget-lbl { font-size: 12px; color: var(--faint); margin-top: 4px; }
.widget-delta { font-size: 12px; font-weight: 700; color: var(--green); margin-top: 4px; }
.tbl-box { background: var(--card); border-radius: var(--r2); border: 1.5px solid var(--border); overflow: hidden; margin-bottom: 20px; }
.tbl-box-hd { padding: 14px 18px; border-bottom: 1px solid var(--border); font-family: var(--font-d); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.admin-tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-tbl thead th { padding: 10px 14px; background: var(--bg); text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--faint); border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-tbl tbody tr { border-bottom: 1px solid var(--border); }
.admin-tbl tbody tr:hover { background: #FAFBFE; }
.admin-tbl td { padding: 11px 14px; vertical-align: middle; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; align-items: center; }
.search-in { padding: 9px 14px; border: 1.5px solid var(--border); border-radius: var(--r); font-size: 13px; font-family: var(--font-b); background: var(--card); color: var(--ink); }
.search-in:focus { border-color: var(--orange); outline: none; }
.sel-sm { padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--r); font-size: 13px; font-family: var(--font-b); background: var(--card); color: var(--ink); cursor: pointer; }
.wa-btn { display: inline-flex; align-items: center; gap: 5px; background: #25D366; color: #fff; padding: 6px 12px; border-radius: 7px; font-size: 12px; font-weight: 700; text-decoration: none; transition: all .15s; }
.wa-btn:hover { background: #1DA856; text-decoration: none; color: #fff; }
.act-btn { display: inline-flex; align-items: center; gap: 4px; padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; border: none; transition: all .15s; }
.act-approve { background: var(--green-l); color: #065F46; }
.act-approve:hover { background: var(--green); color: #fff; }
.act-reject  { background: #FEE2E2; color: #B91C1C; }
.act-reject:hover  { background: var(--red); color: #fff; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--ink); padding: 60px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media(max-width: 840px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-d); font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 14px; }
.footer-brand span { color: var(--orange); }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 280px; }
.footer-col-hd { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.48); padding: 4px 0; transition: color .15s; }
.footer-link:hover { color: rgba(255,255,255,.9); text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-data-note { background: rgba(255,255,255,.04); border-radius: var(--r); padding: 12px 16px; margin-bottom: 28px; }
.footer-data-note p { font-size: 11.5px; color: rgba(255,255,255,.3); line-height: 1.7; margin: 0; }

/* ================================================================
   FLOATING ELEMENTS
================================================================ */
#wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 22px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; opacity: 0; pointer-events: none;
}
#wa-float.vis { opacity: 1; pointer-events: auto; animation: waFloat 3.5s ease-in-out infinite; }
#wa-float:hover { transform: scale(1.1) !important; animation: none !important; box-shadow: 0 8px 28px rgba(37,211,102,.6); }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

#exit-popup {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(13,15,26,.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
#exit-popup.show { display: flex; animation: fadeIn .3s ease; }
.ep-card { background: #fff; border-radius: var(--r3); max-width: 400px; width: 100%; padding: 36px; text-align: center; position: relative; box-shadow: var(--sh3); }
.ep-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), #FFB088); border-radius: var(--r3) var(--r3) 0 0; }
.ep-close { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; border-radius: 50%; background: var(--bg); font-size: 14px; color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.ep-icon  { font-size: 48px; margin-bottom: 14px; }
.ep-title { font-family: var(--font-d); font-size: 20px; font-weight: 900; color: var(--ink); margin-bottom: 8px; }
.ep-sub   { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.65; }

.sp-toast {
  position: fixed; bottom: 20px; left: 16px; max-width: 320px;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r2);
  padding: 12px 14px; box-shadow: var(--sh2); z-index: 800;
  display: flex; align-items: center; gap: 11px;
  animation: slideUp .4s ease;
}
@keyframes slideUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.sp-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #FFB088); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.sp-msg { font-size: 12.5px; color: var(--ink); line-height: 1.45; }
.sp-msg strong { color: var(--orange); }
.sp-time { font-size: 11px; color: var(--faint); margin-top: 2px; }

#toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--ink); color: #fff;
  padding: 12px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  z-index: 2000; transition: transform .3s ease;
  white-space: nowrap; pointer-events: none;
  box-shadow: var(--sh2);
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ================================================================
   BREADCRUMB
================================================================ */
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb .sep { color: rgba(255,255,255,.2); font-size: 13px; }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,.8); }

/* ================================================================
   MISC UTILITY
================================================================ */
.text-orange { color: var(--orange) !important; }
.text-green  { color: var(--green) !important; }
.text-muted  { color: var(--muted) !important; }
.text-white  { color: #fff !important; }
.font-d      { font-family: var(--font-d) !important; }
.fw-900      { font-weight: 900; }
.ta-c        { text-align: center; }
.hide-mob    { display: block; }
.hide-desk   { display: none; }
@media(max-width:640px) {
  .hide-mob  { display: none !important; }
  .hide-desk { display: block; }
}

@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ================================================================
   PARTNER / VENDOR ONBOARDING PAGE
================================================================ */
.partner-hero { background: var(--ink); padding: 72px 0; }
.partner-steps { counter-reset: steps; }
.partner-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.partner-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: var(--font-d); font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-content .step-title { font-family: var(--font-d); font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.step-content .step-body  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Project page */
.proj-card { background: var(--card); border-radius: var(--r2); border: 1.5px solid var(--border); padding: 24px; margin-bottom: 16px; }
.proj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:500px) { .proj-grid { grid-template-columns: 1fr; } }
.proj-field-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--faint); margin-bottom: 3px; }
.proj-field-val { font-size: 14px; font-weight: 700; color: var(--ink); }

/* ── Footer column title alias ── */
.footer-col-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.28); margin-bottom: 14px;
}

/* ── wa-float as anchor tag ── */
a#wa-float {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 22px;
  opacity: 0; pointer-events: none;
}
a#wa-float.vis, a#wa-float.visible {
  opacity: 1; pointer-events: auto;
  animation: waFloat 3.5s ease-in-out infinite;
}

/* ── Top bar ── */
#top-bar {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  font-size: 12.5px; font-weight: 500;
  padding: 9px 20px;
  text-align: center; letter-spacing: .2px;
  position: relative; z-index: 200;
}
#top-bar strong { color: #fff; }
#top-bar a { color: var(--orange); font-weight: 700; }

/* ── Desktop fixes for wide screens ── */
@media(min-width: 1200px) {
  .hero-layout, .hero-inner {
    grid-template-columns: 1fr 440px;
  }
}

/* ── Quiz button ── */
.quiz-btn {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 12px 10px; text-align: left;
  transition: all .15s; cursor: pointer;
  display: flex; flex-direction: column; gap: 3px;
  font-family: var(--font-b);
}
.quiz-btn:hover { border-color: var(--orange); background: var(--orange-l); }
.quiz-btn.selected, .quiz-btn.sel {
  border-color: var(--orange); background: var(--orange); color: #fff;
}
.quiz-btn.selected .qb-sub,
.quiz-btn.sel .qb-sub { color: rgba(255,255,255,.7); }
.quiz-btn.selected .qb-label,
.quiz-btn.sel .qb-label { color: #fff; }
.qb-icon  { font-size: 20px; margin-bottom: 2px; display: block; }
.qb-label { font-size: 13px; font-weight: 700; color: var(--ink); }
.qb-sub   { font-size: 11px; color: var(--faint); }

/* ── Quiz progress fill ── */
.quiz-progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9A6C);
  transition: width .4s ease;
}

/* ── Calc wrap (alias for calc-card) ── */
.calc-wrap {
  background: var(--card); border-radius: var(--r3);
  border: 1.5px solid var(--border); padding: 32px;
  box-shadow: var(--shadow);
}
@media(max-width:600px) { .calc-wrap { padding: 20px 16px; } }

/* ── Calc result ── */
.calc-result {
  display: none; margin-top: 24px;
  background: var(--ink); border-radius: var(--r2);
  padding: 24px; color: #fff;
}
.calc-result.show { display: block; animation: fadeUp .35s ease; }
