/* ================================================================
   FLEAZO — Production CSS
   Design: Editorial / High-signal / Conversion-first
   Font: Sora (display) + Inter (body)
   Color: Midnight ink + Saffron orange accent
   ================================================================ */

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

/* ── Tokens ── */
:root {
  --ink:      #0D0F1A;
  --ink2:     #1A1D2E;
  --orange:   #FF6B2C;
  --orange-d: #E05520;
  --orange-l: #FFF3EE;
  --green:    #00C27B;
  --green-l:  #E6FAF4;
  --blue:     #1C4CFF;
  --blue-l:   #EEF2FF;
  --bg:       #F5F6FA;
  --white:    #FFFFFF;
  --border:   #E8EAF2;
  --border2:  #D0D4E8;
  --muted:    #6B7080;
  --faint:    #9299B0;
  --card:     #FFFFFF;
  --r:        10px;
  --r2:       16px;
  --r3:       24px;
  --shadow:   0 2px 16px rgba(13,15,26,.07);
  --shadow2:  0 8px 40px rgba(13,15,26,.12);
  --shadow3:  0 20px 60px rgba(13,15,26,.18);
  --font-d:   'Sora', system-ui, sans-serif;
  --font-b:   'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
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;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
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%; }

/* ── Typography ── */
h1 { font-family: var(--font-d); font-size: clamp(30px, 5.5vw, 54px); font-weight: 900; line-height: 1.08; letter-spacing: -2px; }
h2 { font-family: var(--font-d); font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; }
h3 { font-family: var(--font-d); font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; line-height: 1.3; }
h4 { font-family: var(--font-d); font-size: 17px; font-weight: 700; }
p  { color: var(--muted); line-height: 1.75; }

/* ── Layout ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 780px; }
.container--wide { max-width: 1320px; }

.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; } }

.section     { padding: 72px 0; }
.section-sm  { padding: 48px 0; }
.section-xs  { padding: 32px 0; }
.section-dark { background: var(--ink); }

.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ================================================================
   TOP BAR — urgency strip
   ================================================================ */
#top-bar {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  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; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: sticky; top: 0; z-index: 150;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 20px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }
.nav-center {
  display: flex; align-items: center; gap: 2px;
}
@media(max-width:800px) { .nav-center { display: none; } }
.nav-link {
  padding: 7px 12px; font-size: 13px; font-weight: 600;
  color: var(--muted); border-radius: 8px; transition: all .15s;
}
.nav-link:hover { color: var(--ink); background: var(--bg); text-decoration: none; }
.nav-link.active { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.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;
}
.nav-cta:hover { background: var(--orange-d); transform: translateY(-1px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--ink);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,107,44,.12), transparent),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,194,123,.06), transparent);
  pointer-events: none;
}
/* Grid texture */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 56px;
  align-items: center; position: relative; z-index: 1;
}
@media(max-width:960px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

.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,.25);
  border-radius: 100px; padding: 5px 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.62);
  font-size: 16px; line-height: 1.85;
  max-width: 500px; margin-bottom: 32px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 0;
}
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.55); font-size: 13px; font-weight: 500;
}
.trust-pill span { font-size: 15px; }

/* ── Lead Capture Card ── */
.capture-card {
  background: #fff;
  border-radius: var(--r3);
  padding: 28px;
  box-shadow: var(--shadow3), 0 0 0 1px rgba(255,255,255,.1);
  position: relative;
}
.capture-card::before {
  content: '';
  position: absolute; top: -1px; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9A6C);
  border-radius: 0 0 3px 3px;
}
.cc-head { margin-bottom: 20px; }
.cc-title { font-family: var(--font-d); font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.cc-sub { font-size: 12.5px; color: var(--faint); }

/* Quiz inside capture card */
.quiz-progress-track {
  height: 3px; background: var(--border); border-radius: 3px;
  margin-bottom: 20px; overflow: hidden;
}
.quiz-progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9A6C);
  transition: width .4s ease;
}
.quiz-steps-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: 16px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.quiz-hint { font-size: 12.5px; color: var(--faint); margin-bottom: 18px; }
.quiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.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;
}
.quiz-btn:hover { border-color: var(--orange); background: var(--orange-l); }
.quiz-btn.selected { border-color: var(--orange); background: var(--orange); color: #fff; }
.quiz-btn.selected .qb-sub { color: rgba(255,255,255,.7); }
.qb-icon { font-size: 20px; margin-bottom: 2px; display: block; }
.qb-label { font-size: 13px; font-weight: 700; color: var(--ink); }
.quiz-btn.selected .qb-label { color: #fff; }
.qb-sub { font-size: 11px; color: var(--faint); }

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

/* Contact form 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); }

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

/* Urgency pill inside card */
.urgency-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFF8F0; color: #C05A00;
  border: 1px solid #FFD9BC;
  border-radius: 100px; padding: 5px 12px;
  font-size: 11.5px; font-weight: 700; margin-bottom: 14px;
}
.urgency-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: blink 1.5s infinite;
  flex-shrink: 0;
}

/* ================================================================
   MARQUEE TICKER
   ================================================================ */
.ticker-wrap {
  background: var(--ink2); border-top: 1px solid rgba(255,255,255,.06);
  padding: 10px 0; overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 56px; width: max-content;
  animation: ticker 50s linear infinite;
}
.ticker-wrap:hover .ticker-inner { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 12.5px; white-space: nowrap;
}
.ticker-item strong { color: rgba(255,255,255,.9); }
.ticker-item .ti-dot { color: var(--orange); font-size: 16px; line-height: 1; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

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

/* ================================================================
   TOOL CARDS
   ================================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media(max-width:960px) { .tools-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:600px) { .tools-grid { grid-template-columns: 1fr 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), #FF9A6C);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.tool-card:hover { box-shadow: var(--shadow2); border-color: transparent; transform: translateY(-3px); text-decoration: none; }
.tool-card:hover::after { transform: scaleX(1); }
.tc-icon { font-size: 30px; }
.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; }

/* ================================================================
   LOCATIONS TABLE
   ================================================================ */
.loc-table-wrap { border-radius: var(--r2); border: 1.5px solid var(--border); overflow: hidden; background: var(--card); box-shadow: var(--shadow); }
.loc-table { width: 100%; border-collapse: collapse; }
.loc-table thead tr { background: var(--ink); }
.loc-table thead th {
  padding: 12px 16px; text-align: left;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.6); white-space: nowrap;
}
.loc-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .12s; cursor: pointer;
}
.loc-table tbody tr:last-child { border-bottom: none; }
.loc-table tbody tr:hover { background: var(--orange-l); }
.loc-table td { padding: 12px 16px; font-size: 13.5px; vertical-align: middle; }
.loc-name { 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-range { font-size: 11px; color: var(--faint); }
.loc-growth { color: var(--green); font-weight: 700; font-size: 13px; }
.demand-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px;
}
.demand-badge.very_high { background: #FEE2E2; color: #B91C1C; }
.demand-badge.high      { background: #FEF3C7; color: #92400E; }
.demand-badge.medium    { background: #DBEAFE; color: #1E40AF; }
.demand-badge.low       { 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-cta {
  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;
}
.tbl-cta:hover { background: var(--orange); color: #fff; text-decoration: none; }

/* ================================================================
   INTELLIGENCE / INSIGHTS
   ================================================================ */
.insight-card {
  background: var(--card); border-radius: var(--r2);
  border: 1.5px solid var(--border); padding: 20px;
  transition: all .2s;
}
.insight-card:hover { box-shadow: var(--shadow2); border-color: var(--border2); }
.insight-metric { font-family: var(--font-d); font-size: 28px; font-weight: 900; color: var(--ink); }
.insight-label { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: .8px; margin-top: 2px; }
.insight-delta { font-size: 12px; font-weight: 700; color: var(--green); margin-top: 4px; }

.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bar-lbl { font-size: 12px; color: var(--muted); width: 110px; flex-shrink: 0; }
.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), #FF9A6C); transition: width 1s ease; }
.bar-val { font-size: 12px; font-weight: 700; color: var(--ink); width: 30px; text-align: right; }

/* ================================================================
   NEWS CARDS
   ================================================================ */
.news-card {
  background: var(--card); border-radius: var(--r2);
  border: 1.5px solid var(--border); padding: 18px 20px;
  transition: all .2s; cursor: pointer; display: block; text-decoration: none; color: inherit;
}
.news-card:hover { box-shadow: var(--shadow2); border-color: var(--border2); transform: translateY(-2px); text-decoration: none; }
.nc-source { 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-summary { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.nc-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.nc-date { font-size: 11px; color: var(--faint); }
.nc-impact { font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 5px; }
.nc-impact.high { background: #FEE2E2; color: #B91C1C; }
.nc-impact.medium { background: #FEF3C7; color: #92400E; }

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.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; }

/* ================================================================
   CALCULATOR PAGES
   ================================================================ */
.calc-wrap {
  background: var(--card); border-radius: var(--r3);
  border: 1.5px solid var(--border); padding: 36px;
  box-shadow: var(--shadow);
}
@media(max-width:600px) { .calc-wrap { padding: 22px 18px; } }
.calc-title { font-family: var(--font-d); font-size: 22px; font-weight: 900; color: var(--ink); margin-bottom: 6px; }
.calc-desc { 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-input {
  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-input:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,44,.08); }
select.calc-input {
  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; cursor: pointer; padding-right: 36px;
}
.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;
  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); }

/* Result box */
.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; }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.cr-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: .5; margin-bottom: 4px; }
.cr-big { font-family: var(--font-d); font-size: 40px; font-weight: 900; color: var(--orange); letter-spacing: -1.5px; margin-bottom: 20px; }
.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,.07); font-size: 13.5px; }
.cr-row:last-child { border-bottom: none; padding-bottom: 0; }
.cr-row-k { color: rgba(255,255,255,.6); }
.cr-row-v { font-weight: 700; color: #fff; }
.cr-note { font-size: 11px; opacity: .4; margin-top: 14px; text-align: center; }

/* Post-calc lead nudge */
.calc-nudge {
  margin-top: 20px; background: var(--orange-l);
  border: 1.5px solid rgba(255,107,44,.2);
  border-radius: var(--r2); padding: 18px 20px;
  display: none; align-items: center; gap: 16px; flex-wrap: wrap;
}
.calc-nudge.show { display: flex; animation: fadeUp .3s ease; }
.cn-text { flex: 1; }
.cn-title { font-family: var(--font-d); font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.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); }

/* ================================================================
   AREA INVESTMENT TABLE
   ================================================================ */
.area-table { width: 100%; border-collapse: collapse; }
.area-table thead th {
  padding: 10px 14px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--faint); text-align: left;
  border-bottom: 1.5px solid var(--border);
}
.area-table tbody tr { border-bottom: 1px solid var(--border); }
.area-table tbody tr:hover { background: var(--bg); }
.area-table td { padding: 12px 14px; font-size: 13px; }
.grade-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  font-family: var(--font-d); font-size: 12px; font-weight: 900;
}
.grade-ap { background: #D1FAE5; color: #065F46; }
.grade-a  { background: #DBEAFE; color: #1E3A8A; }
.grade-b  { background: #FEF3C7; color: #78350F; }
.grade-c  { background: var(--border); color: var(--muted); }

/* ================================================================
   ADMIN
   ================================================================ */
.admin-wrap { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--ink); padding: 24px 16px;
  display: flex; flex-direction: column; gap: 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.sidebar-logo {
  font-family: var(--font-d); font-size: 18px; font-weight: 900;
  color: #fff; padding: 4px 10px 20px; letter-spacing: -.3px;
}
.sidebar-logo span { color: var(--orange); }
.sidebar-section { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.25); padding: 14px 10px 6px; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--r); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.55); transition: all .15s; text-decoration: none; margin-bottom: 2px;
}
.sidebar-link:hover { background: rgba(255,255,255,.07); color: #fff; text-decoration: none; }
.sidebar-link.active { background: var(--orange); color: #fff; }
.sidebar-link .ic { font-size: 15px; width: 20px; 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-content { 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; } }
.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); }
.widget-lbl { font-size: 12px; color: var(--faint); margin-top: 2px; }
.tbl-wrap { background: var(--card); border-radius: var(--r2); border: 1.5px solid var(--border); overflow: hidden; margin-bottom: 20px; }
.tbl-head { padding: 14px 18px; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table 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-table tbody tr { border-bottom: 1px solid var(--border); }
.admin-table tbody tr:hover { background: #FAFBFF; }
.admin-table td { padding: 11px 14px; vertical-align: middle; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; align-items: center; }
.search-input { 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-input:focus { border-color: var(--orange); outline: none; }
.filter-select-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-action { 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-action:hover { background: #1DA856; text-decoration: none; color: #fff; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--ink); padding: 60px 0 32px; }
.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,.4); line-height: 1.75; max-width: 280px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.5); padding: 4px 0; transition: color .15s; }
.footer-link:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }

/* ================================================================
   INTERACTIVE COMPONENTS
   ================================================================ */

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* WhatsApp float */
#wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 24px;
  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;
}
#wa-float.visible { opacity: 1; animation: waFloat 3s ease-in-out infinite; }
#wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* Exit popup */
#exit-popup {
  position: fixed; inset: 0;
  background: rgba(13,15,26,.75); backdrop-filter: blur(8px);
  z-index: 1100; 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(--shadow3);
}
.ep-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), #FF9A6C);
  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); border: none; font-size: 14px;
  color: var(--muted); cursor: pointer;
}
.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; }

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

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

/* Live badge */
.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: blink 2s infinite; flex-shrink: 0; }

/* Buttons misc */
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-size: 13px; font-weight: 700;
  color: var(--ink); transition: all .2s; cursor: pointer; background: var(--card);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-primary-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;
}
.btn-primary-orange:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; 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: 700;
  transition: all .2s; cursor: pointer;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.18); }

/* Misc utility */
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--muted); }
.hide-sm { display: flex; }
@media(max-width:640px) { .hide-sm { display: none !important; } }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:640px) {
  .section { padding: 48px 0; }
  h1 { letter-spacing: -1px; }
  h2 { letter-spacing: -.5px; }
  .hero { padding: 48px 0 56px; }
  .stats-strip-inner { flex-direction: row; justify-content: center; }
  .stat-block { min-width: 80px; padding: 16px 12px; }
  .stat-num { font-size: 24px; }
}
