@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

/* ═══════════════════════════════════════════
   DAELA GROUP — Premium Design System
   Brand: Deep Purple + Warm Gold
   Tone: Elite / Refined / Authoritative
═══════════════════════════════════════════ */

:root {
  /* ── Core brand ── */
  --royal:     #3D2470;
  --royal-mid: #4B2E83;
  --royal-lt:  #5E3A9E;
  --royal-dk:  #1E1240;
  --ink:       #0C0A14;
  --ink-2:     #130F20;
  --ink-3:     #1C1730;

  /* ── Gold ── */
  --gold:      #C8A84B;
  --gold-lt:   #DFC06A;
  --gold-dim:  rgba(200,168,75,0.12);
  --gold-line: rgba(200,168,75,0.25);

  /* ── Surfaces ── */
  --cream:     #F7F5F0;
  --cream-2:   #EFECEA;
  --white:     #FFFFFF;

  /* ── Text ── */
  --t-dark:    #0C0A14;
  --t-mid:     #4A4D5C;
  --t-soft:    #8A8E9E;
  --t-ghost:   rgba(255,255,255,0.50);
  --t-on-dark: rgba(255,255,255,0.88);

  /* ── Borders ── */
  --b-light:   rgba(0,0,0,0.08);
  --b-dark:    rgba(255,255,255,0.09);
  --b-royal:   rgba(75,46,131,0.2);
  --b-gold:    rgba(200,168,75,0.25);

  /* ── Type ── */
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;

  /* ── Motion ── */
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);

  /* ── Layout ── */
  --max:  1200px;
  --pad:  clamp(1.25rem, 4vw, 2.5rem);
  --sec:  clamp(5rem, 9vw, 8rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--sans); background: var(--white); color: var(--t-dark); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.sec   { padding: var(--sec) 0; }
.sec-sm{ padding: clamp(3rem,6vw,5rem) 0; }

/* ════════════════════════════════
   SCROLL REVEAL
════════════════════════════════ */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; } .rv.d2 { transition-delay: .16s; }
.rv.d3 { transition-delay: .24s; } .rv.d4 { transition-delay: .32s; }
.rv.d5 { transition-delay: .40s; }

/* ════════════════════════════════
   TYPOGRAPHY
════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .67rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--gold); }
.eyebrow.ctr { justify-content: center; }
.eyebrow.ctr::before { display: none; }
.eyebrow.ctr::after  { content: ''; width: 22px; height: 1.5px; background: var(--gold); }

.h1 { font-family: var(--serif); font-size: clamp(2.8rem,5.5vw,5rem); font-weight: 800; line-height: .97; letter-spacing: -.03em; color: var(--white); }
.h1 em { font-style: italic; color: var(--gold); }
.h2 { font-family: var(--serif); font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 700; line-height: 1.08; letter-spacing: -.025em; }
.h2.dk { color: var(--white); }
.h2 em { font-style: italic; color: var(--gold); }
.h3 { font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
.lead { font-family: var(--sans); font-size: clamp(.97rem,1.5vw,1.07rem); font-weight: 300; line-height: 1.82; color: var(--t-mid); }
.lead.dk { color: var(--t-ghost); }
.sm { font-family: var(--sans); font-size: .875rem; line-height: 1.72; color: var(--t-mid); }
.sm.dk { color: rgba(255,255,255,.5); }
.rule-gold { width: 44px; height: 2px; background: var(--gold); margin: .9rem 0; }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; padding: .82rem 1.7rem; border-radius: 7px;
  transition: all .25s var(--ease); cursor: pointer; white-space: nowrap; text-decoration: none;
}
.btn svg, .btn .arr { transition: transform .22s var(--ease); }
.btn:hover svg, .btn:hover .arr { transform: translateX(3px); }
.btn-ink  { background: var(--ink); color: var(--white); border: 1.5px solid var(--ink); }
.btn-ink:hover  { background: var(--ink-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,10,20,.35); }
.btn-royal{ background: var(--royal-mid); color: var(--white); border: 1.5px solid var(--royal-mid); }
.btn-royal:hover{ background: var(--royal-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(75,46,131,.4); }
.btn-gold { background: var(--gold); color: var(--ink); border: 1.5px solid var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,.4); }
.btn-ghost-w { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.22); }
.btn-ghost-w:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-d { background: transparent; color: var(--t-dark); border: 1.5px solid rgba(12,10,20,.18); }
.btn-ghost-d:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-lg { font-size: .88rem; padding: 1rem 2.1rem; }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(12,10,20,.88); backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--b-dark);
  transition: background .3s, box-shadow .3s;
}
.nav.solid { background: rgba(12,10,20,.98); box-shadow: 0 8px 48px rgba(0,0,0,.5); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #9a7c34);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-wordmark-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: .02em; }
.nav-wordmark-sub  { font-family: var(--sans); font-size: .58rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 1px; }
/* Links */
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-lnk {
  font-family: var(--sans); font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.48); padding: .45rem .9rem; border-radius: 6px;
  transition: color .2s, background .2s; display: flex; align-items: center; gap: .3rem; cursor: pointer;
}
.nav-lnk:hover, .nav-lnk.active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-lnk.ha-link { color: var(--gold) !important; }
.nav-lnk.ha-link:hover { background: var(--gold-dim); }
.chev { font-size: .5rem; opacity: .4; transition: transform .2s, opacity .2s; }
.nav-item:hover .chev { transform: rotate(180deg); opacity: .9; }
/* Dropdown */
.nav-item { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--ink-2); border: 1px solid var(--b-dark); border-radius: 14px;
  padding: .6rem; min-width: 252px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s, transform .22s, visibility .22s;
}
.nav-item:hover .drop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.drop::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg); width: 9px; height: 9px;
  background: var(--ink-2); border-left: 1px solid var(--b-dark); border-top: 1px solid var(--b-dark);
}
.drop-row { display: flex; align-items: flex-start; gap: .75rem; padding: .72rem .9rem; border-radius: 9px; transition: background .15s; }
.drop-row:hover { background: rgba(255,255,255,.05); }
.drop-ico { width: 34px; height: 34px; border-radius: 8px; background: var(--gold-dim); border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; margin-top: 1px; }
.drop-title { font-family: var(--serif); font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.88); margin-bottom: .12rem; }
.drop-desc  { font-family: var(--sans); font-size: .72rem; color: rgba(255,255,255,.35); line-height: 1.4; }
.drop-sep { height: 1px; background: var(--b-dark); margin: .4rem .9rem; }
/* CTA */
.nav-cta { flex-shrink: 0; }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  background: var(--gold); color: var(--ink); padding: .52rem 1.2rem;
  border-radius: 6px; border: none; cursor: pointer;
  transition: all .22s; white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,168,75,.38); }
/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; padding: 3px; }
.ham span { display: block; height: 1.5px; background: rgba(255,255,255,.65); transition: all .3s; border-radius: 2px; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 290; background: var(--ink);
  padding: 90px 2rem 2rem; display: flex; flex-direction: column; gap: .3rem;
  transform: translateX(100%); transition: transform .35s var(--ease);
}
.drawer.open { transform: none; }
.drawer-lnk {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: rgba(255,255,255,.5); padding: .72rem 0;
  border-bottom: 1px solid var(--b-dark);
  transition: color .2s; display: flex; align-items: center; justify-content: space-between;
}
.drawer-lnk:hover { color: var(--white); }
.drawer-lnk.gold { color: var(--gold); }
.drawer-cta { margin-top: 1.5rem; background: var(--gold); color: var(--ink); font-family: var(--sans); font-size: .9rem; font-weight: 700; padding: 1rem 1.5rem; border-radius: 8px; text-align: center; cursor: pointer; display: block; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  background: var(--ink); min-height: 100vh;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.hero-fx { position: absolute; inset: 0; pointer-events: none; }
.hero-fx::before {
  content: ''; position: absolute;
  width: 1000px; height: 1000px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(75,46,131,.28) 0%, transparent 65%);
  top: -35%; right: -20%;
}
.hero-fx::after {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,168,75,.06) 0%, transparent 65%);
  bottom: -10%; left: -10%;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 88px 88px; pointer-events: none;
}
.hero-body { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-content { padding: 140px 0 5rem; }
.hero-tag { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--sans); font-size: .67rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.hero-kicker { font-family: var(--serif); font-size: clamp(3rem,6vw,5.5rem); font-weight: 800; line-height: .97; letter-spacing: -.035em; color: var(--white); margin-bottom: 1.75rem; }
.hero-kicker em { font-style: italic; color: var(--gold); }
.hero-sub { font-family: var(--sans); font-size: clamp(.98rem,1.5vw,1.08rem); font-weight: 300; line-height: 1.82; color: rgba(255,255,255,.5); max-width: 520px; margin-bottom: 2.75rem; }
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-floor { border-top: 1px solid var(--b-dark); background: var(--ink); position: relative; z-index: 2; padding: 1.6rem 0; }

/* Trust bar */
.trust-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.trust-lbl { font-family: var(--sans); font-size: .67rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-right: 2rem; white-space: nowrap; }
.trust-items { display: flex; align-items: center; gap: 1.85rem; flex-wrap: wrap; }
.trust-item { font-family: var(--sans); font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.28); display: flex; align-items: center; gap: .38rem; transition: color .2s; }
.trust-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: rgba(200,168,75,.35); flex-shrink: 0; }
.trust-item:hover { color: rgba(255,255,255,.65); }

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  background: var(--ink); padding: 130px 0 6rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% -20%, rgba(75,46,131,.35) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 100% 100%, rgba(200,168,75,.05) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: .45rem; font-family: var(--sans); font-size: .75rem; color: rgba(255,255,255,.28); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,.28); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.15); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.6rem,5vw,4.4rem); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; color: var(--white); margin-bottom: 1.4rem; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .lead { max-width: 560px; margin-bottom: 2.25rem; }

/* ════════════════════════════════
   PILLARS
════════════════════════════════ */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--b-light); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,.05); }
.pillar { padding: 2.5rem 2.2rem; background: var(--white); border-right: 1px solid var(--b-light); position: relative; overflow: hidden; transition: background .3s; }
.pillar:last-child { border-right: none; }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform .35s var(--ease); }
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { background: var(--cream); }
.pillar-n { font-family: var(--sans); font-size: .72rem; font-weight: 600; color: var(--gold); letter-spacing: .1em; margin-bottom: 1.2rem; }
.pillar-ico { width: 46px; height: 46px; border-radius: 11px; background: var(--gold-dim); border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; font-size: 1.15rem; transition: background .3s; }
.pillar:hover .pillar-ico { background: var(--gold); border-color: var(--gold); }
.pillar-link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--sans); font-size: .78rem; font-weight: 600; color: var(--t-mid); margin-top: 1.2rem; transition: color .2s, gap .2s; }
.pillar:hover .pillar-link { color: var(--t-dark); gap: .7rem; }

/* ════════════════════════════════
   STAT ROW
════════════════════════════════ */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--b-dark); border-radius: 14px; overflow: hidden; }
.stat-cell { padding: 2.2rem 1.8rem; border-right: 1px solid var(--b-dark); }
.stat-cell:last-child { border-right: none; }
.stat-n { font-family: var(--serif); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: .3rem; }
.stat-l { font-family: var(--sans); font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.4; }

/* ════════════════════════════════
   PROOF BAND
════════════════════════════════ */
.proof-band { background: var(--ink-2); border-top: 1px solid var(--b-dark); border-bottom: 1px solid var(--b-dark); padding: 3.5rem 0; }
.proof-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.proof-badge { display: inline-flex; align-items: center; gap: .45rem; background: var(--gold-dim); border: 1px solid var(--gold-line); border-radius: 4px; padding: .22rem .75rem; font-family: var(--sans); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; }
.proof-hl { font-family: var(--serif); font-size: clamp(1.4rem,2.5vw,2.1rem); font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: .5rem; }
.proof-sub { font-family: var(--sans); font-size: .875rem; color: rgba(255,255,255,.42); line-height: 1.65; }
.proof-nums { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.proof-nn { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.proof-nl { font-family: var(--sans); font-size: .72rem; color: rgba(255,255,255,.35); margin-top: .2rem; max-width: 80px; line-height: 1.35; }

/* ════════════════════════════════
   CARDS
════════════════════════════════ */
.card { background: var(--white); border: 1px solid var(--b-light); border-radius: 14px; padding: 2rem; transition: all .3s var(--ease); }
.card:hover { border-color: var(--b-gold); transform: translateY(-4px); box-shadow: 0 12px 44px rgba(0,0,0,.08); }
.card.dark { background: var(--ink-2); border-color: var(--b-dark); }
.card.dark:hover { border-color: var(--gold-line); box-shadow: 0 12px 44px rgba(0,0,0,.4); }
.card-ico { width: 48px; height: 48px; border-radius: 11px; background: var(--cream); border: 1px solid var(--b-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; transition: all .3s; }
.card:hover .card-ico { background: var(--gold-dim); border-color: var(--gold-line); }
.card-tag-pill { display: inline-flex; align-items: center; font-family: var(--sans); font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-line); border-radius: 20px; padding: .18rem .65rem; margin-bottom: .95rem; }

/* Grid utils */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.split.flip { grid-template-columns: 1fr 1.1fr; }
.flex-r { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }
.text-c { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt1{margin-top:.75rem;}.mt2{margin-top:1.5rem;}.mt3{margin-top:2.25rem;}.mt4{margin-top:3rem;}
.mb1{margin-bottom:.75rem;}.mb2{margin-bottom:1.5rem;}.mb3{margin-bottom:2.25rem;}

/* ════════════════════════════════
   VALUES LIST
════════════════════════════════ */
.val-item { padding: 1.25rem 0; border-top: 1px solid var(--b-light); display: flex; gap: 1.25rem; align-items: flex-start; transition: background .25s; }
.val-item:last-child { border-bottom: 1px solid var(--b-light); }
.val-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: .45rem; }
.val-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--t-dark); margin-bottom: .25rem; }
.val-desc { font-family: var(--sans); font-size: .86rem; color: var(--t-mid); line-height: 1.68; }

/* ════════════════════════════════
   PAST PERFORMANCE
════════════════════════════════ */
.pp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.pp-card { background: var(--white); border: 1px solid var(--b-light); border-radius: 14px; padding: 1.75rem; transition: all .3s; position: relative; overflow: hidden; }
.pp-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transition: transform .35s var(--ease); }
.pp-card:hover::before { transform: scaleY(1); }
.pp-card:hover { border-color: var(--b-gold); box-shadow: 0 8px 36px rgba(0,0,0,.07); transform: translateX(4px); }
.pp-type { font-family: var(--sans); font-size: .67rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--t-soft); margin-bottom: .6rem; }
.pp-agency { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--t-dark); margin-bottom: .3rem; }
.pp-service { font-family: var(--sans); font-size: .82rem; color: var(--t-mid); }
.pp-prime { display: inline-flex; align-items: center; gap: .3rem; background: var(--gold-dim); border: 1px solid var(--gold-line); border-radius: 3px; font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); padding: .18rem .55rem; margin-top: .6rem; }

/* ════════════════════════════════
   CERT BADGES
════════════════════════════════ */
.cert-row { display: flex; gap: .65rem; flex-wrap: wrap; }
.cert-badge { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--sans); font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 4px; padding: .25rem .7rem; }
.naics-pills { display: flex; flex-wrap: wrap; gap: .55rem; }
.naics-pill { background: var(--cream); border: 1px solid var(--b-light); border-radius: 6px; font-family: var(--sans); font-size: .82rem; font-weight: 600; color: var(--t-mid); padding: .45rem .9rem; transition: all .2s; cursor: default; }
.naics-pill:hover { background: var(--royal-mid); color: var(--white); }

/* ════════════════════════════════
   TRAJECTORY TIERS
════════════════════════════════ */
.tier-stack { display: flex; flex-direction: column; gap: .95rem; }
.tier { background: var(--ink-2); border: 1px solid var(--b-dark); border-radius: 12px; padding: 1.5rem 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; transition: all .3s; }
.tier:hover { border-color: var(--gold-line); }
.tier.featured { border-color: var(--gold-line); background: rgba(200,168,75,.06); }
.tier-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .18rem; }
.tier-sub  { font-family: var(--sans); font-size: .75rem; color: rgba(255,255,255,.38); }
.tier-price { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--gold); text-align: right; white-space: nowrap; }
.tier-per   { font-family: var(--sans); font-size: .7rem; color: rgba(255,255,255,.3); text-align: right; }
.tier-badge { font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--gold); color: var(--ink); border-radius: 3px; padding: .15rem .5rem; margin-left: .5rem; vertical-align: middle; }

/* ════════════════════════════════
   FORM
════════════════════════════════ */
.form-card { background: var(--ink-2); border: 1px solid var(--b-dark); border-radius: 18px; padding: 2.75rem; }
.f-g { margin-bottom: 1.2rem; }
.f-g label { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .52rem; }
.f-g input, .f-g select, .f-g textarea { width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--b-dark); border-radius: 8px; padding: .85rem 1rem; font-family: var(--sans); font-size: .9rem; color: var(--white); outline: none; transition: border-color .2s, background .2s; -webkit-appearance: none; }
.f-g select option { background: var(--ink-2); }
.f-g input:focus, .f-g select:focus, .f-g textarea:focus { border-color: var(--gold); background: rgba(200,168,75,.04); }
.f-g input::placeholder, .f-g textarea::placeholder { color: rgba(255,255,255,.18); }
.f-g textarea { resize: vertical; min-height: 120px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-submit { width: 100%; padding: 1.05rem; background: var(--gold); border: none; border-radius: 8px; font-family: var(--sans); font-size: .88rem; font-weight: 700; color: var(--ink); cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.f-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,.38); }

/* ════════════════════════════════
   SECTION BACKGROUNDS
════════════════════════════════ */
.bg-ink   { background: var(--ink); }
.bg-ink2  { background: var(--ink-2); }
.bg-royal { background: var(--royal-dk); }
.bg-cream { background: var(--cream); }
.bg-cream2{ background: var(--cream-2); }
.bg-white { background: var(--white); }

/* ════════════════════════════════
   QUOTE
════════════════════════════════ */
.quote-section { background: var(--cream-2); border-top: 1px solid var(--b-light); border-bottom: 1px solid var(--b-light); padding: 5.5rem 0; text-align: center; }
.quote-mark { font-family: var(--serif); font-size: 5rem; color: var(--gold); opacity: .25; line-height: 1; margin-bottom: -.5rem; }
blockquote { font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.45rem); font-weight: 400; font-style: italic; color: var(--t-mid); max-width: 740px; margin: 0 auto; line-height: 1.68; }
.bq-cite { font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--t-soft); margin-top: 1.25rem; display: block; }

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band { background: var(--ink); padding: 6.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; width: 900px; height: 450px; border-radius: 50%; background: radial-gradient(ellipse, rgba(75,46,131,.35) 0%, transparent 65%); top: -50%; left: 50%; transform: translateX(-50%); pointer-events: none; }
.cta-band::after { content: ''; position: absolute; width: 600px; height: 300px; border-radius: 50%; background: radial-gradient(ellipse, rgba(200,168,75,.06) 0%, transparent 65%); bottom: -30%; right: 0; pointer-events: none; }
.cta-band .wrap { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--ink); border-top: 1px solid var(--b-dark); padding: 5.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--b-dark); margin-bottom: 2rem; }
.footer-tagline { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,.4); line-height: 1.65; margin: .85rem 0 1.25rem; }
.footer-col h6 { font-family: var(--sans); font-size: .67rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-family: var(--sans); font-size: .85rem; color: rgba(255,255,255,.35); padding: .28rem 0; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom span, .footer-bottom a { font-family: var(--sans); font-size: .75rem; color: rgba(255,255,255,.2); }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }

/* ════════════════════════════════
   BEFORE / AFTER
════════════════════════════════ */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1rem; }
.ba-box { padding: .85rem 1rem; border-radius: 8px; font-family: var(--sans); font-size: .78rem; line-height: 1.55; }
.ba-lbl { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .35rem; }
.ba-before { background: rgba(0,0,0,.03); border: 1px solid var(--b-light); color: var(--t-mid); }
.ba-before .ba-lbl { color: var(--t-soft); }
.ba-after  { background: var(--gold-dim); border: 1px solid var(--gold-line); color: var(--t-mid); }
.ba-after .ba-lbl { color: var(--gold); }

/* ════════════════════════════════
   HOUSING AUTHORITY SPECIFICS
════════════════════════════════ */
.ha-hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--gold-dim); border: 1px solid var(--gold-line); border-radius: 20px; padding: .3rem .9rem; font-family: var(--sans); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.solution-row { display: grid; grid-template-columns: 1fr 1.5fr; border: 1px solid var(--b-light); border-radius: 14px; overflow: hidden; margin-bottom: 1.25rem; transition: box-shadow .3s; }
.solution-row:hover { box-shadow: 0 8px 36px rgba(0,0,0,.07); }
.sol-left { background: var(--ink); padding: 2.5rem 2.2rem; }
.sol-left.royal { background: linear-gradient(145deg, var(--royal-dk), var(--royal-mid)); }
.sol-right { background: var(--white); padding: 2.5rem 2.2rem; }
.dm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.dm-card { background: var(--ink-2); border: 1px solid var(--b-dark); border-radius: 14px; padding: 2rem; text-align: center; transition: all .3s; }
.dm-card:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.dm-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 1rem; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media(max-width:1024px){
  .split,.split.flip { grid-template-columns: 1fr; gap: 3rem; }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid var(--b-dark); }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
  .pp-grid { grid-template-columns: repeat(2,1fr); }
  .dm-grid { grid-template-columns: 1fr; }
  .solution-row { grid-template-columns: 1fr; }
}
@media(max-width:768px){
  .nav-links, .nav-cta { display: none; }
  .ham { display: flex; }
  .g2,.g3,.pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--b-light); }
  .pillar:last-child { border-bottom: none; }
  .proof-inner { flex-direction: column; align-items: flex-start; }
  .pp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .trust-lbl { margin-right: 0; margin-bottom: .75rem; width: 100%; }
}
@media(max-width:480px){
  .hero-btns { flex-direction: column; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--b-dark); }
  .stat-cell:last-child { border-bottom: none; }
  .g4 { grid-template-columns: 1fr; }
}

/* ── LOGO IMAGE ── */
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 5px 10px;
  width: fit-content;
  transition: box-shadow .25s;
}
.nav-logo:hover {
  box-shadow: 0 4px 18px rgba(200,168,75,.3);
}
.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Footer logo */
.footer .nav-logo {
  background: #ffffff;
  border-radius: 8px;
  padding: 5px 10px;
  width: fit-content;
  display: inline-flex;
}
.footer .nav-logo-img {
  height: 42px;
}
