/* ============================================================
   SparkXGrow — Premium Agency Stylesheet
   ============================================================ */

/* ===== Variables ===== */
:root {
  --navy:        #0A1F44;
  --navy-dark:   #061530;
  --navy-2:      #122d68;
  --navy-3:      #1a3a80;
  --gold:        #C9A43C;
  --gold-light:  #D4AF37;
  --gold-pale:   #EDD97A;
  --gold-bg:     rgba(201,164,60,.08);
  --gold-border: rgba(201,164,60,.28);
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --light:       #EEF2F9;
  --border:      rgba(10,31,68,.09);
  --border-md:   rgba(10,31,68,.15);
  --text:        #0D1B35;
  --muted:       #526070;
  --muted-2:     #8A97A8;
  --shadow:      0 2px 14px rgba(10,31,68,.06);
  --shadow-md:   0 8px 36px rgba(10,31,68,.1);
  --shadow-lg:   0 24px 64px rgba(10,31,68,.15);
  --shadow-xl:   0 40px 100px rgba(10,31,68,.22);
  --radius:      22px;
  --radius-sm:   13px;
  --radius-xs:   8px;
  --max:         1240px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h:       80px;
}

/* ===== 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: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* ===== Custom Cursor ===== */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], .service-card, .faq-btn, label { cursor: none; }
}
.c-dot {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s, opacity .3s;
  will-change: left, top;
}
.c-ring {
  position: fixed;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .35s, background .35s, opacity .3s;
  will-change: left, top;
}
.c-ring.hovered { width: 66px; height: 66px; border-color: var(--navy); background: rgba(10,31,68,.06); }
.c-ring.clicked { width: 22px; height: 22px; background: rgba(10,31,68,.12); }
.c-dot.on-dark { background: var(--gold); }
.c-ring.on-dark { border-color: var(--gold-light); }
body.no-cursor .c-dot,
body.no-cursor .c-ring { opacity: 0; }

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity .6s var(--ease), visibility .6s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
.preloader-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; }
.preloader-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.preloader-logo em { color: var(--gold-light); font-style: normal; }
.preloader-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  border-radius: 999px;
  animation: preloaderLoad 1.4s var(--ease) forwards;
}
@keyframes preloaderLoad {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes preloaderPulse {
  0%,100% { opacity: 1; }
  50% { opacity: .7; }
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  z-index: 2000;
  width: 0%;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
}
.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.section-sub {
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 660px;
}
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .section-sub { margin: 0 auto; }
em { font-style: italic; }

/* Gold gradient text */
.text-grad {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .06em;
}
em.text-grad, .hero-h1 em, .section-title em, .cta-band h2 em, .contact-left h2 em {
  display: inline-block;
  padding-right: .12em;
}

/* ===== Layout ===== */
.container {
  max-width: calc(var(--max) + 96px);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 3.6vw, 56px);
}
.section { padding: 80px 0; }
.section-tight { padding: 64px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy); }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.eyebrow-light {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.92);
}
.dot-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(212,175,55,.5);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,.5); }
  70% { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: none;
  transition: all .35s var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s;
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: 0 8px 28px rgba(201,164,60,.32);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,164,60,.45); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10,31,68,.28);
}
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(10,31,68,.38); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-md);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }

.btn-ghost-light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.24);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.45); }

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.28);
}
.btn-wa:hover { background: #1eb857; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* Submit states */
.btn-submit { width: 100%; min-height: 54px; }
.btn-spinner {
  display: none;
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  position: absolute;
}
.btn-submit.loading .btn-label,
.btn-submit.loading .btn-icon { opacity: 0; }
.btn-submit.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247,249,252,.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(10,31,68,.04);
  transition: all .4s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(10,31,68,.1); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 10px; transition: transform .4s var(--ease); }
.logo:hover .logo-img { transform: rotate(-5deg) scale(1.08); }
.logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.6px;
}
.logo-accent { color: var(--gold-light); }
.logo-name-light { color: #fff; }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 8px;
  transition: all .25s;
  position: relative;
}
.nav-menu a:hover { color: var(--navy); background: rgba(10,31,68,.05); }
.nav-menu a.nav-active { color: var(--navy); background: var(--gold-bg); }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  width: 42px; height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color .25s;
}
.menu-toggle:hover { border-color: var(--gold-border); }
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .35s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,21,48,.55);
  backdrop-filter: blur(4px);
  z-index: 1100;
}
.mobile-overlay.active { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(88vw, 360px);
  background: var(--white);
  z-index: 1200;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.drawer-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all .25s;
}
.drawer-close:hover { border-color: var(--gold-border); background: var(--gold-bg); }
.drawer-nav { display: flex; flex-direction: column; flex: 1; }
.drawer-nav a {
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s, padding-left .2s;
}
.drawer-nav a:hover { color: var(--navy); padding-left: 14px; }
.drawer-nav a::after { content: '→'; opacity: .35; transition: opacity .2s; }
.drawer-nav a:hover::after { opacity: 1; }

/* ===== Page Transition ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 9500;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease);
}
.page-transition.active { transform: scaleY(1); transform-origin: top; }

/* ===== Hero (Home) ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-2) 100%);
  z-index: 0;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(201,164,60,.26) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: floatOrb 16s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,164,60,.18) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: floatOrb 20s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(100,140,255,.12) 0%, transparent 70%);
  top: 40%; right: 30%;
  animation: floatOrb 12s ease-in-out infinite;
  animation-delay: -5s;
}
@keyframes floatOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(.97); }
}
.hero > .container { position: relative; z-index: 2; width: 100%; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .03em;
  transition: all .3s;
}
.hero-badge:hover { background: rgba(255,255,255,.16); border-color: rgba(212,175,55,.4); color: var(--gold-pale); }
.hero-h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.035em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.hero-h1 em { font-style: normal; display: inline-block; padding-right: .12em; }
.hero-p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.82;
  margin-bottom: 38px;
  max-width: 580px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.58);
}
.hero-trust svg { flex-shrink: 0; color: var(--gold-light); }

/* Hero Panel */
.hero-panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(16px);
}
.hero-panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.hero-panel-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); font-family: 'Plus Jakarta Sans', sans-serif; }
.hero-panel-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 18px;
  transition: background .3s;
}
.stat-box:hover { background: rgba(255,255,255,.13); }
.stat-full { grid-column: 1 / -1; }
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
  font-weight: 600;
}
.stat-value {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-sm { font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.stat-bar {
  margin-top: 12px;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  border-radius: 999px;
  width: 0;
  transition: width 1.6s var(--ease);
}
.stat-bar-fill.animated { width: 78%; }
.hero-panel-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

/* ===== Page Header (inner pages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-2) 100%);
}
.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.page-hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,164,60,.2), transparent 70%); top: -200px; right: -100px; }
.page-hero-orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,164,60,.15), transparent 70%); bottom: -100px; left: -60px; }
.page-hero > .container { position: relative; z-index: 2; }
.page-hero-content { max-width: 960px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.04em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.page-hero h1 em { padding-right: .12em; display: inline-block; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.78); line-height: 1.82; max-width: 720px; }

/* ===== Marquee ===== */
.marquee-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 38s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.marquee-sep {
  color: var(--gold-light);
  font-size: 10px;
  flex-shrink: 0;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ===== Cards shared ===== */
.card-hover {
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card-hover:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: all .45s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--cx,50%) var(--cy,30%), rgba(201,164,60,.12) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.service-card:hover { border-color: var(--gold-border); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card .svc-num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -.05em;
  transition: color .4s;
  user-select: none;
}
.service-card:hover .svc-num { color: var(--gold-border); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-bg), rgba(201,164,60,.04));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all .4s var(--ease);
}
.service-card:hover .svc-icon {
  background: linear-gradient(135deg, rgba(201,164,60,.2), rgba(201,164,60,.06));
  box-shadow: 0 8px 24px rgba(201,164,60,.2);
}
.svc-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; position: relative; z-index: 1; }
.service-card p { font-size: .93rem; color: var(--muted); line-height: 1.72; position: relative; z-index: 1; margin-bottom: 18px; }
.svc-list { display: flex; flex-direction: column; gap: 7px; position: relative; z-index: 1; }
.svc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--muted-2);
}
.svc-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== Feature/Why Cards ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.why-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.why-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.why-card p { font-size: .91rem; color: var(--muted); line-height: 1.72; }

/* ===== Results Band ===== */
.results-band {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-2) 100%);
  border-radius: 28px;
  padding: 36px 56px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.results-band .section-head {
  margin: 0 0 28px !important;
  padding: 0;
}
.results-band .section-head .eyebrow { margin-bottom: 12px; }
.results-band .section-head .section-title { margin-bottom: 10px; }
.results-band .results-stats { margin-bottom: 24px; }
.results-band .results-note { padding-top: 20px; margin-top: 4px; }
.results-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.results-orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(201,164,60,.22), transparent); top: -180px; right: -80px; }
.results-orb-2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(201,164,60,.15), transparent); bottom: -100px; left: -50px; }
.results-band > * { position: relative; z-index: 1; }
.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.result-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all .4s var(--ease);
}
.result-card:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.result-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,164,60,.16);
  border: 1px solid rgba(201,164,60,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin: 0 auto 18px;
}
.result-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 10px; }
.result-card p { font-size: .86rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.results-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.48);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-style: italic;
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), var(--gold-border));
  border-top: 1px dashed var(--gold-border);
  z-index: 0;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 26px;
  transition: all .4s var(--ease);
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.process-step {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-size: 22px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(201,164,60,.32);
  transition: all .4s var(--ease-back);
}
.process-card:hover .process-step { transform: scale(1.12); box-shadow: 0 12px 32px rgba(201,164,60,.45); }
.process-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.process-card p { font-size: .9rem; color: var(--muted); line-height: 1.72; }

/* ===== About / Founder ===== */
.about-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual {
  position: relative;
  min-height: 520px;
  background: linear-gradient(160deg, var(--navy-dark), var(--navy-2));
}
.founder-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.founder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,21,48,.85) 0%, transparent 50%);
}
.founder-tag {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  padding: 20px 22px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
}
.founder-name-lg {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.founder-role-sm { font-size: 14px; color: rgba(255,255,255,.68); }
.about-content { padding: 56px 52px; }
.about-content .eyebrow { margin-bottom: 18px; }
.about-content .section-title { margin-bottom: 8px; }
.founder-title { font-size: 15px; font-weight: 600; color: var(--muted); margin-bottom: 24px; }
.about-body { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }
.founder-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.founder-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .3s;
}
.founder-check:hover { border-color: var(--gold-border); background: var(--gold-bg); }
.check-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Values grid (about page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.value-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.value-card p { font-size: .93rem; color: var(--muted); line-height: 1.75; }

/* Mission strip */
.mission-strip {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.mission-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.mission-text h3 { font-size: 1.4rem; margin-bottom: 10px; }
.mission-text p { font-size: 1rem; color: var(--muted); line-height: 1.8; }

/* ===== CTA Band ===== */
.cta-band {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-2) 100%);
  border-radius: 28px;
  padding: 44px 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.cta-band .eyebrow { margin-bottom: 12px; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin-bottom: 24px; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.cta-orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(201,164,60,.24), transparent); top: -150px; left: -100px; }
.cta-orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,164,60,.18), transparent); bottom: -100px; right: -60px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); color: #fff; margin-bottom: 18px; }
.cta-band h2 em { font-style: italic; color: var(--gold-pale); }
.cta-band p { font-size: 1.06rem; color: rgba(255,255,255,.74); margin: 0 auto 36px; max-width: 580px; line-height: 1.82; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== FAQ Accordion ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .35s;
}
.faq-item.open { border-color: var(--gold-border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  transition: color .25s;
}
.faq-btn:hover { color: var(--navy-2); }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: all .35s var(--ease);
}
.faq-item.open .faq-icon { border-color: var(--gold-border); background: var(--gold-bg); color: var(--gold); rotate: 45deg; }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), padding .45s var(--ease);
}
.faq-body-inner {
  padding: 0 26px 22px;
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}
.contact-left {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-2) 100%);
  border-radius: var(--radius);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-left-orb {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,60,.2), transparent 70%);
  filter: blur(60px);
  top: -100px; right: -80px;
  pointer-events: none;
}
.contact-left > * { position: relative; z-index: 1; }
.contact-left h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; margin: 16px 0 18px; }
.contact-left h2 em { font-style: italic; color: var(--gold-pale); }
.contact-left > p { font-size: 15px; color: rgba(255,255,255,.74); line-height: 1.85; margin-bottom: 30px; }
.contact-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
}
.contact-point .check-mark { flex-shrink: 0; }
.contact-direct p { font-size: 13px; color: rgba(255,255,255,.58); margin-bottom: 12px; }
.contact-direct-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-contact-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  transition: all .3s;
}
.btn-contact-inline:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); }

/* Contact Info Cards (contact page left col) */
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  transition: all .3s;
}
.contact-info-card:hover { background: rgba(255,255,255,.12); border-color: rgba(201,164,60,.3); }
.cic-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(201,164,60,.16);
  border: 1px solid rgba(201,164,60,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.cic-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.cic-value { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.88); }
.cic-value a { color: inherit; transition: color .25s; }
.cic-value a:hover { color: var(--gold-light); }

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale), var(--gold));
}
.form-heading {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-sub { font-size: .9rem; color: var(--muted); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }

/* Floating label fields */
.field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.field-full { margin-bottom: 18px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 22px 16px 10px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text);
  font-size: .96rem;
  transition: all .35s var(--ease);
  outline: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23526070' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field textarea { resize: vertical; min-height: 140px; padding-top: 28px; }
.field label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: .94rem;
  color: var(--muted-2);
  pointer-events: none;
  transition: all .3s var(--ease);
  font-weight: 500;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field.has-value label {
  top: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(10,31,68,.07);
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: #e53935;
  animation: fieldShake .4s var(--ease);
}
@keyframes fieldShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.field-error {
  display: none;
  font-size: 11px;
  color: #c62828;
  margin-top: 5px;
  font-weight: 700;
  padding-left: 2px;
}
.field.is-invalid .field-error { display: block; }
.form-status {
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  max-height: 0;
  transition: all .5s var(--ease);
  margin-bottom: 0;
}
.form-status.show { max-height: 70px; padding: 14px 18px; margin-bottom: 16px; }
.form-status.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.form-status.error { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; }

/* Audit checkboxes */
.audit-section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  margin-bottom: 12px;
}
.audit-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
.audit-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: 9px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  transition: all .25s;
}
.audit-opt:hover { border-color: var(--gold-border); background: var(--gold-bg); }
.audit-opt:has(input:checked) { border-color: var(--gold); background: var(--gold-bg); }
.audit-opt input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: #fff;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 30px;
}
.footer-brand-col p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.56);
  margin: 18px 0 24px;
  max-width: 260px;
}
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 10px;
  color: #4ade80;
  font-size: 13px;
  font-weight: 700;
  transition: all .3s;
}
.footer-wa-link:hover { background: rgba(37,211,102,.2); transform: translateY(-2px); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold-light);
  margin-bottom: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.36);
}

/* ===== Floating Elements ===== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  z-index: 900;
  transition: all .4s var(--ease-back);
  border: none;
}
.float-wa:hover { transform: scale(1.15) translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,.6); }

.back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: all .4s var(--ease);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold-bg); border-color: var(--gold-border); color: var(--gold); }

/* ===== Modals ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4,12,32,.7);
  backdrop-filter: blur(10px);
}
.modal.active { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: start;
  width: min(920px, 100%);
  max-height: 92vh;
  overflow: hidden auto;
  border: 1px solid var(--border);
  animation: modalIn .45s var(--ease) forwards;
}
.modal-box-lg { width: min(1080px, 100%); }
@keyframes modalIn {
  from { opacity: 0; transform: scale(.96) translateY(12px); }
  to { opacity: 1; transform: none; }
}
.modal-left {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  padding: 24px 32px 28px;
  color: #fff;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.modal-left-orb {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,60,.2), transparent);
  filter: blur(50px);
  bottom: -80px; right: -60px;
  pointer-events: none;
}
.modal-left > * { position: relative; z-index: 1; }
.modal-left .eyebrow { margin-bottom: 14px; }
.modal-left h3 { font-size: clamp(1.4rem, 2.3vw, 1.85rem); color: #fff; margin-bottom: 12px; }
.modal-left p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 22px; }
.modal-trust { display: flex; flex-direction: column; gap: 10px; }
.modal-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  padding: 13px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  z-index: 2;
}
.modal-close:hover { background: rgba(255,255,255,.18); }
.modal-right { padding: 28px 36px 32px; background: var(--white); overflow-y: auto; }
.modal-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.modal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.modal-success { display: flex; flex-direction: column; gap: 12px; padding: 8px 0; }
.success-badge {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.modal-success h3 { font-size: 1.5rem; color: var(--navy); }
.modal-success p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* Word-split hero reveal */
.word { display: inline-block; overflow: hidden; }
.word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .85s var(--ease);
}
.word-inner.in { transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 380px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-left { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .results-stats { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  :root { --nav-h: 72px; }
}
@media (max-width: 768px) {
  .container { width: calc(100% - 32px); }
  .section { padding: 72px 0; }
  .hero { padding: 80px 0 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .results-band { padding: 44px 28px; }
  .results-stats { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .about-content { padding: 36px 28px; }
  .founder-checks { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mission-strip { flex-direction: column; gap: 22px; padding: 36px 28px; }
  .cta-band { padding: 52px 28px; }
  .contact-left { padding: 36px 28px; }
  .contact-form-box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .audit-options { grid-template-columns: repeat(2, 1fr); }
  .modal-box { border-radius: 18px; }
  .modal-right { padding: 28px 20px; }
  .float-wa { bottom: 20px; right: 20px; }
  .back-top { bottom: 88px; right: 20px; }
}
@media (max-width: 500px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .audit-options { grid-template-columns: 1fr 1fr; }
}
@media (pointer: coarse) {
  .c-dot, .c-ring { display: none; }
}
