/* ============================================================
   CLEAR PATH CREDIT & FINANCIAL CONSULTING — PREMIUM STYLES
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --navy:        #1A3A6E;
  --navy-dark:   #0D2347;
  --navy-light:  #2A4E8F;
  --teal:        #2BB5AF;
  --teal-dark:   #1E8F8A;
  --teal-light:  #45CFC9;
  --gold:        #D4AF37;
  --gold-dark:   #B8960C;
  --gold-glow:   rgba(212,175,55,.22);
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --text:        #1E293B;
  --text-light:  #64748B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.18);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(43,181,175,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43,181,175,.45), 0 0 0 1px rgba(212,175,55,.3);
}
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.btn--full { width: 100%; justify-content: center; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label--light { color: rgba(212,175,55,.85); }
.section-label--light::before { background: linear-gradient(90deg, rgba(212,175,55,.8), rgba(212,175,55,.3)); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; }
.section-subtitle--light { color: rgba(255,255,255,.75); }

/* Gold accent underline on section titles */
.section-header .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), rgba(212,175,55,.2));
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-header--light .section-title::after {
  background: linear-gradient(90deg, rgba(212,175,55,.9), rgba(212,175,55,.3));
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(13,35,71,.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo-img {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.25));
  transition: var(--transition);
}
.nav__logo-img:hover { transform: scale(1.04); }
/* Desktop: hide mobile-only drawer elements */
.nav__drawer-top,
.nav__drawer-accent,
.nav__drawer-cta-item,
.nav__drawer-footer,
.nav__link-icon,
.nav__link-arrow { display: none; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Desktop list items are inline */
.nav__item { display: contents; }

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav__link--cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white) !important;
  padding: 10px 22px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(43,181,175,.3);
  border: 1px solid rgba(212,175,55,.35);
}
.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(43,181,175,.45);
  background: rgba(255,255,255,.1) !important;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #1A3A6E 100%);
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(43,181,175,.18) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(43,181,175,.1) 0%, transparent 45%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(43,181,175,.15);
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(0) rotate(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.45);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: badgeDot 2s ease-in-out infinite;
}
@keyframes badgeDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  backdrop-filter: blur(8px);
  width: fit-content;
  gap: 32px;
}
.hero__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
}
.hero__stat-suffix { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
  display: block;
  white-space: nowrap;
}
.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 32px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-bar__item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--off-white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
}
.service-card--featured::before { opacity: 1; }
.service-card--featured:hover { transform: translateY(-8px); }
.service-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon--navy { background: rgba(26,58,110,.1); color: var(--navy); }
.service-card__icon--teal { background: rgba(43,181,175,.12); color: var(--teal); }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__number {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 14px;
}
.service-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}
.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.service-card__link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-card__link:hover { color: var(--teal-dark); }
.service-card__link:hover svg { transform: translateX(4px); }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.process__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1B4A8A 100%);
}
.process > .container { position: relative; z-index: 1; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.process__step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(212,175,55,.35), 0 0 0 8px rgba(212,175,55,.1);
  position: relative;
  z-index: 1;
}
.process__connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,175,55,.25));
}
.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process__step-content p {
  color: rgba(255,255,255,.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us__visual { position: relative; display: flex; justify-content: center; }
/* ---- CLEAN CREDIT SCORE CARD ---- */
.score-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: 0 8px 40px rgba(13,35,71,.09), 0 1px 0 rgba(13,35,71,.05);
  border: 1px solid rgba(13,35,71,.07);
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- Card inner elements --- */
.sc-header { text-align: center; }
.sc-eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.sc-sub { font-size: .78rem; color: var(--text-light); }
.sc-gauge-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.sc-svg { width: 100%; max-width: 230px; display: block; overflow: visible; }
.sc-center { text-align: center; }
.sc-num { display: block; font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: var(--navy-dark); line-height: 1; }
.sc-rating { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); margin-top: 5px; transition: color .35s; }
.sc-slider-wrap { display: flex; flex-direction: column; gap: 8px; }
.sc-slider-row { display: flex; justify-content: space-between; align-items: center; }
.sc-slider-label { font-size: .78rem; font-weight: 600; color: var(--text); }
.sc-slider-val { font-family: var(--font-display); font-size: .95rem; font-weight: 800; color: var(--navy-dark); min-width: 36px; text-align: right; transition: color .35s; }
.sc-range { -webkit-appearance: none; width: 100%; height: 5px; border-radius: 5px; background: var(--gray-100); outline: none; cursor: pointer; }
.sc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--navy-dark); border: 3px solid white; box-shadow: 0 2px 8px rgba(13,35,71,.25); cursor: grab; transition: transform .15s; }
.sc-range::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.sc-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--navy-dark); border: 3px solid white; cursor: grab; }
.sc-slider-ends { display: flex; justify-content: space-between; font-size: .62rem; color: var(--gray-400); font-weight: 600; }
.sc-divider { height: 1px; background: var(--gray-100); }
.sc-result { display: flex; flex-direction: column; gap: 3px; }
.sc-result-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); }
.sc-result-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal); line-height: 1.1; transition: color .35s; }
.sc-result-sub { font-size: .75rem; color: var(--text-light); }
.sc-unlocks { display: flex; flex-direction: column; gap: 9px; }
.sc-unlock-item { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--text); font-weight: 500; animation: scUnlockIn .28s ease both; }
@keyframes scUnlockIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.sc-unlock-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(43,181,175,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-unlock-icon svg { width: 12px; height: 12px; color: var(--teal); }
.sc-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px; background: var(--navy-dark); color: white; border-radius: 12px; font-weight: 700; font-size: .88rem; transition: var(--transition); }
.sc-cta:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,35,71,.2); }
.sc-cta svg { width: 15px; height: 15px; transition: transform .2s; }
.sc-cta:hover svg { transform: translateX(3px); }

/* KEEP for backwards compat — will be cleaned next pass */
.score-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--navy-dark);
  border-radius: 50px;
  padding: 10px 28px;
  margin: -6px auto 14px;
  width: fit-content;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 24px rgba(13,35,71,.2), 0 0 0 1px rgba(212,175,55,.2);
}
.score-pill__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  transition: color .3s;
}
.score-pill__divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.2);
  border-radius: 1px;
}
.score-pill__rating {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #EF4444;
  transition: color .3s;
}

/* Before / After row */
.score-ba {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 4px 0 16px;
  gap: 8px;
}
.score-ba__col { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.score-ba__tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
}
.score-ba__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.score-ba__num--before { color: var(--gray-400); }
.score-ba__num--after  { color: var(--teal); }
.score-ba__label { font-size: .72rem; color: var(--text-light); font-weight: 600; }
.score-ba__label--good { color: var(--teal); }
.score-ba__middle { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.score-ba__arrow {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.score-ba__arrow svg { width: 14px; height: 14px; }
.score-ba__pts { font-size: .7rem; font-weight: 800; color: var(--teal); }

/* Slider */
.score-slider-wrap { margin-bottom: 14px; }
.score-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.score-slider-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  transition: color .3s;
}
.score-slider-track-wrap { position: relative; padding: 6px 0; }
.score-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #EF4444 0%, #F59E0B 28%, #84CC16 50%, #2BB5AF 73%, #D4AF37 100%);
  outline: none;
  cursor: pointer;
}
.score-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  cursor: grab;
  transition: transform .15s, box-shadow .15s;
}
.score-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.score-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  cursor: grab;
}
.score-slider-zones {
  display: flex;
  justify-content: space-between;
  font-size: .6rem;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: .02em;
}

/* Unlocks */
.score-unlocks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--gray-50);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  min-height: 80px;
  transition: var(--transition);
}
.score-unlock-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.score-unlock-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  animation: unlockFadeIn .3s ease both;
}
.score-unlock-item svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
@keyframes unlockFadeIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: none; }
}

/* Score CTA */
.score-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,.3);
}
.score-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.score-cta svg { width: 16px; height: 16px; transition: transform .2s; }
.score-cta:hover svg { transform: translateX(4px); }
.why-us__floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--gray-200);
  animation: badgeFloat 3s ease-in-out infinite;
}
.why-us__floating-badge--1 {
  top: -20px; right: -20px;
  color: var(--gold);
  animation-delay: 0s;
}
.why-us__floating-badge--1 svg { width: 18px; height: 18px; color: var(--gold); }
.why-us__floating-badge--2 {
  bottom: -20px; left: -10px;
  color: var(--teal);
  animation-delay: 1.5s;
}
.why-us__floating-badge--2 svg { width: 18px; height: 18px; color: var(--teal); }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.why-us__content .section-title { margin-bottom: 16px; }
.why-us__content .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), rgba(212,175,55,.2));
  border-radius: 2px;
  margin: 14px 0 0;
}
.why-us__text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.why-us__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-us__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(43,181,175,.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-us__feature-icon svg { width: 22px; height: 22px; }
.why-us__feature h4 {
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.why-us__feature p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 72px 0;
}
.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stats-section__item {
  position: relative;
}
.stats-section__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.stats-section__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stats-section__symbol {
  display: inline;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}
.stats-section__label {
  margin-top: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.founder__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy-dark) 0%, #0F2855 50%, #162F5C 100%);
}
.founder__bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
}
.founder__bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,181,175,.07) 0%, transparent 70%);
}
.founder__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Photo side ---- */
.founder__photo-side {
  position: relative;
  display: flex;
  justify-content: center;
}
.founder__frame-outer {
  position: relative;
  width: 100%;
  max-width: 380px;
}
/* gold corner accents */
.founder__frame-corner {
  position: absolute;
  width: 48px; height: 48px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}
.founder__frame-corner--tl {
  top: -10px; left: -10px;
  border-width: 3px 0 0 3px;
  border-radius: 4px 0 0 0;
}
.founder__frame-corner--br {
  bottom: -10px; right: -10px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 4px 0;
}
.founder__frame-inner {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.2);
  aspect-ratio: 3 / 4;
}
.founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.founder__frame-inner:hover .founder__img { transform: scale(1.03); }
.founder__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(13,35,71,.65) 100%
  );
}

/* floating badges */
.founder__title-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 24px var(--gold-glow);
  z-index: 3;
}
.founder__title-badge svg { width: 14px; height: 14px; }
.founder__exp-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  z-index: 3;
  border: 1px solid rgba(212,175,55,.2);
}
.founder__exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.founder__exp-text { font-size: 0.72rem; font-weight: 600; color: var(--text-light); line-height: 1.3; }

/* ---- Content side ---- */
.founder__content { }
.founder__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  margin-top: 12px;
}
.founder__role {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.founder__quote {
  position: relative;
  background: rgba(212,175,55,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 18px 20px 18px 24px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
}
.founder__quote-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  opacity: .6;
  float: left;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}
.founder__bio {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.founder__bio p {
  color: rgba(255,255,255,.68);
  font-size: 0.93rem;
  line-height: 1.78;
}
.founder__bio p strong { color: rgba(255,255,255,.9); font-weight: 600; }

/* credentials */
.founder__credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}
.founder__cred {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 11px 14px;
  transition: var(--transition);
}
.founder__cred:hover {
  background: rgba(212,175,55,.1);
  border-color: rgba(212,175,55,.3);
}
.founder__cred svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.founder__cred span { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,.8); }
.founder__cta { margin-top: 4px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .founder__inner { grid-template-columns: 340px 1fr; gap: 56px; }
}
@media (max-width: 820px) {
  .founder__inner { grid-template-columns: 1fr; gap: 48px; }
  .founder__photo-side { max-width: 360px; margin: 0 auto; width: 100%; }
  .founder__frame-outer { max-width: 100%; }
  .founder__title-badge { left: 0; }
  .founder__exp-badge { right: 0; }
}
@media (max-width: 480px) {
  .founder { padding: 72px 0; }
  .founder__credentials { grid-template-columns: 1fr; }
  .founder__name { font-size: 2rem; }
  .founder__exp-badge { display: none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,.3), var(--shadow-md);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card__avatar--teal {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}
.testimonial-card__name { font-weight: 700; color: var(--navy-dark); font-size: 0.95rem; }
.testimonial-card__detail { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.pricing-card--featured {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: scale(1.04);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card__popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.pricing-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-card--featured .pricing-card__name { color: rgba(255,255,255,.7); }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.pricing-card__currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  align-self: flex-start;
  margin-top: 8px;
}
.pricing-card--featured .pricing-card__currency { color: var(--teal-light); }
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}
.pricing-card--featured .pricing-card__amount { color: var(--white); }
.pricing-card__period {
  font-size: 1rem;
  color: var(--text-light);
  margin-left: 4px;
}
.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,.6); }
.pricing-card__desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.6;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card--featured .pricing-card__desc {
  color: rgba(255,255,255,.65);
  border-bottom-color: rgba(255,255,255,.15);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,.85); }
.pricing-card__features svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.pricing-card--featured .pricing-card__features svg { color: var(--teal-light); }
.pricing-card__feature--disabled { opacity: .45; }
.pricing-card__feature--disabled svg { color: var(--gray-400) !important; }
.pricing-card--featured .btn--outline {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.pricing-card--featured .btn--outline:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.pricing__note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 40px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #38C4BE 100%);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__content p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section-title { margin-bottom: 16px; }
.contact__info > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact__detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 20px; height: 20px; }
.contact__detail-label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.contact__detail-value { font-weight: 600; color: var(--navy-dark); }
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,181,175,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
}
.form__disclaimer a { color: var(--teal); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(43,181,175,.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success__icon svg { width: 36px; height: 36px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.form-success p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); color: var(--white); padding-top: 72px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}
.footer__tagline {
  color: rgba(255,255,255,.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__social-link:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social-link svg { width: 18px; height: 18px; }
.footer__links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links li a {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links li a:hover { color: var(--teal-light); padding-left: 4px; }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}
.footer__disclaimer {
  max-width: 500px;
  font-size: 0.72rem !important;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid     { grid-template-columns: 1fr 1fr; }
  .testimonials__grid,
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured,
  .pricing-card--featured { transform: none; }
  .stats-section__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .why-us__inner { gap: 48px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process__connector { display: none; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 8px;
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 32px rgba(0,0,0,.3);
  }
  .nav__menu.open { right: 0; }
  .nav__link { font-size: 1rem; padding: 12px 0; }
  .nav__link--cta { margin-top: 16px; padding: 12px 24px; }
  .nav__toggle { display: flex; z-index: 1001; }
  .hero__stats { flex-direction: column; gap: 16px; padding: 24px; }
  .hero__stat-divider { width: 80%; height: 1px; }
  .services__grid     { grid-template-columns: 1fr 1fr; }
  .testimonials__grid,
  .pricing__grid { grid-template-columns: 1fr; }
  .why-us__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-section__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-section__item::after { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .trust-bar__inner { gap: 20px; }
  .process__steps { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 899;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--gold);
  border: 1.5px solid rgba(212,175,55,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(.85);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .25s ease, background .25s ease;
}
.scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 6px 28px var(--gold-glow);
  transform: translateY(-3px);
}
.scroll-top svg { width: 20px; height: 20px; }

@media (max-width: 480px) {
  .scroll-top { bottom: 20px; left: 20px; width: 42px; height: 42px; }
  .scroll-top svg { width: 18px; height: 18px; }
}

/* ============================================================
   FLOATING SPEED DIAL
   ============================================================ */
.fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.fab__main {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(43,181,175,.45), 0 2px 8px rgba(0,0,0,.15);
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.fab__main:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(43,181,175,.55);
}
.fab__ico { width: 22px; height: 22px; position: absolute; transition: var(--transition); }
.fab__ico--open  { opacity: 1;  transform: rotate(0); }
.fab__ico--close { opacity: 0; transform: rotate(-90deg); }
.fab.open .fab__ico--open  { opacity: 0; transform: rotate(90deg); }
.fab.open .fab__ico--close { opacity: 1; transform: rotate(0); }

.fab__options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px) scale(.95);
  transition: opacity .25s ease, transform .25s ease;
}
.fab.open .fab__options {
  pointer-events: all;
  opacity: 1;
  transform: none;
}
.fab__option-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fab__label {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  pointer-events: none;
}
.fab__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(0,0,0,.18);
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}
.fab__btn:hover { transform: scale(1.1); }
.fab__btn svg { width: 20px; height: 20px; }
.fab__btn--book     { background: var(--navy-dark); color: var(--white); }
.fab__btn--whatsapp { background: #25D366; color: var(--white); }
.fab__btn--call     { background: var(--teal); color: var(--white); }
.fab__btn--sms      { background: #5B7FFF; color: var(--white); }

/* Pulse ring on the main button to attract attention */
.fab__main::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(43,181,175,.4);
  animation: fabPulse 2.5s ease-out infinite;
}
.fab.open .fab__main::after { display: none; }
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 480px) {
  .fab { bottom: 20px; right: 20px; }
  .fab__main { width: 52px; height: 52px; }
  .fab__label { display: none; }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.book-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,35,71,.65);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.book-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.book-modal {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  overflow: hidden;
  position: relative;
  transform: translateY(20px) scale(.98);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.book-overlay.open .book-modal { transform: none; }
.book-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.book-close:hover { background: rgba(255,255,255,.35); transform: scale(1.1); }
.book-close svg { width: 16px; height: 16px; }

/* ---- Sidebar ---- */
.book-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, #1B4A8A 100%);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  position: relative;
}
.book-sidebar::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(43,181,175,.2) 0%, transparent 70%);
  pointer-events: none;
}
.book-sidebar__logo  { height: 48px; width: auto; margin-bottom: 28px; filter: brightness(1.1); }
.book-sidebar__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.book-sidebar__sub {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.65);
  font-size: 0.85rem;
  margin-bottom: 28px;
}
.book-sidebar__sub svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--teal-light); }
.book-sidebar__perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.book-sidebar__perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  line-height: 1.4;
}
.book-sidebar__perks svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--teal-light); margin-top: 1px; }
.book-sidebar__contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book-sidebar__contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: 0.8rem;
}
.book-sidebar__contact svg { width: 14px; height: 14px; color: var(--teal-light); }

/* ---- Main area ---- */
.book-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
}

/* ---- Progress steps ---- */
.book-progress {
  display: flex;
  align-items: center;
  padding: 28px 36px 0;
  gap: 0;
  flex-shrink: 0;
}
.book-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}
.book-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.book-step-item.done:not(:last-child)::after   { background: var(--teal); }
.book-step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gray-400);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.book-step-item.active .book-step-circle {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}
.book-step-item.done .book-step-circle {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}
.book-step-label { font-size: 0.68rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.book-step-item.active .book-step-label { color: var(--teal); }
.book-step-item.done .book-step-label   { color: var(--teal-dark); }

/* ---- Step content ---- */
.book-content {
  flex: 1;
  padding: 28px 36px;
  overflow-y: auto;
}
.book-step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.book-step-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; }

/* Step 1 — Service Cards */
.book-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.book-service-card {
  padding: 16px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  background: var(--white);
}
.book-service-card:hover { border-color: var(--teal); background: rgba(43,181,175,.03); }
.book-service-card.selected {
  border-color: var(--teal);
  background: rgba(43,181,175,.06);
  box-shadow: 0 0 0 3px rgba(43,181,175,.12);
}
.book-service-card__icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(43,181,175,.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.book-service-card__icon svg { width: 20px; height: 20px; }
.book-service-card__name { font-weight: 700; font-size: 0.9rem; color: var(--navy-dark); margin-bottom: 3px; }
.book-service-card__desc { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; }

/* Step 2 — Calendar */
.book-calendar-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.book-cal {
  flex: 1;
  min-width: 0;
}
.book-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.book-cal-title { font-weight: 700; font-size: 0.95rem; color: var(--navy-dark); }
.book-cal-nav {
  display: flex;
  gap: 4px;
}
.book-cal-btn {
  width: 30px; height: 30px;
  border-radius: 6px;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  font-size: 0.9rem;
}
.book-cal-btn:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); }
.book-cal-btn:disabled { opacity: .3; cursor: not-allowed; }
.book-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.book-cal-day-header {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  padding: 4px 0;
  letter-spacing: .04em;
}
.book-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  color: var(--text);
}
.book-cal-day:hover:not(.disabled):not(.empty)  { background: rgba(43,181,175,.1); border-color: var(--teal); color: var(--teal); }
.book-cal-day.today    { font-weight: 800; color: var(--navy); background: var(--gray-100); }
.book-cal-day.selected { background: var(--teal); color: var(--white); border-color: var(--teal); font-weight: 700; }
.book-cal-day.disabled { color: var(--gray-200); cursor: not-allowed; pointer-events: none; }
.book-cal-day.empty    { cursor: default; pointer-events: none; }

/* Step 2 — Time slots */
.book-times {
  width: 160px;
  flex-shrink: 0;
}
.book-times-title { font-size: 0.78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.book-times-empty { font-size: 0.82rem; color: var(--gray-400); text-align: center; padding: 20px 0; }
.book-time-group { margin-bottom: 16px; }
.book-time-group-label { font-size: 0.7rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.book-time-grid { display: flex; flex-direction: column; gap: 6px; }
.book-time-slot {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: var(--white);
}
.book-time-slot:hover:not(.booked)    { border-color: var(--teal); color: var(--teal); background: rgba(43,181,175,.05); }
.book-time-slot.selected { background: var(--teal); color: var(--white); border-color: var(--teal); }
.book-time-slot.booked   { color: var(--gray-200); border-color: var(--gray-100); cursor: not-allowed; text-decoration: line-through; font-weight: 400; }

/* Step 3 — Details form */
.book-form { display: flex; flex-direction: column; gap: 16px; }
.book-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.book-form-group { display: flex; flex-direction: column; gap: 5px; }
.book-form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.book-form-group input,
.book-form-group select,
.book-form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  background: var(--white);
  -webkit-appearance: none;
}
.book-form-group input:focus,
.book-form-group select:focus,
.book-form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,181,175,.1);
}
.book-form-group textarea { resize: none; height: 72px; }

/* Step 4 — Confirmation */
.book-confirm {
  text-align: center;
  padding: 12px 0;
}
.book-confirm__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(43,181,175,.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.book-confirm__icon svg { width: 36px; height: 36px; }
.book-confirm h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 8px; }
.book-confirm > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
.book-confirm__summary {
  background: var(--off-white);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 24px;
}
.book-confirm__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.88rem;
}
.book-confirm__row:last-child { border-bottom: none; }
.book-confirm__row span:first-child { color: var(--text-light); font-weight: 500; }
.book-confirm__row span:last-child  { color: var(--navy-dark); font-weight: 700; }
.book-confirm__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-cal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-cal--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(43,181,175,.3);
}
.btn-cal--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(43,181,175,.4); }
.btn-cal--ghost {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-cal--ghost:hover { border-color: var(--navy); }
.btn-cal svg { width: 16px; height: 16px; }

/* ---- Nav bar (bottom of modal) ---- */
.book-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px 24px;
  flex-shrink: 0;
  border-top: 1px solid var(--gray-100);
}
.book-nav--end { justify-content: flex-end; }
.btn-book-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.btn-book-back:hover { color: var(--text); border-color: var(--gray-400); }
.btn-book-next {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(43,181,175,.3);
  transition: var(--transition);
}
.btn-book-next:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(43,181,175,.4); }
.btn-book-next:disabled { opacity: .45; cursor: not-allowed; }
.btn-book-next svg, .btn-book-back svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 768px) {
  .book-modal { flex-direction: column; max-height: 95vh; border-radius: 16px; }
  .book-sidebar { width: 100%; padding: 24px; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .book-sidebar__title { font-size: 1.1rem; }
  .book-sidebar__perks, .book-sidebar__contact, .book-sidebar__sub { display: none; }
  .book-sidebar__logo { height: 36px; margin-bottom: 0; }
  .book-calendar-wrap { flex-direction: column; }
  .book-times { width: 100%; }
  .book-time-grid { flex-direction: row; flex-wrap: wrap; }
  .book-time-slot { flex: 1; min-width: 80px; }
  .book-form-row { grid-template-columns: 1fr; }
  .book-content { padding: 20px 20px; }
  .book-progress { padding: 20px 20px 0; }
  .book-nav { padding: 14px 20px 20px; }
  .book-service-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
body.is-loading { overflow: hidden; }

/* ---- FUTURISTIC PRELOADER ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080E1E;
  transition: opacity .45s ease, transform .45s ease;
}
.preloader.exit {
  opacity: 0;
  pointer-events: none;
}

/* Dot-grid background */
.preloader__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(43,181,175,.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

/* Scan line */
.preloader__scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 40%, var(--gold) 60%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  animation: plScan 2s ease-in-out infinite;
}
@keyframes plScan {
  0%   { top: 15%; opacity: 0; }
  8%   { opacity: .7; }
  92%  { opacity: .7; }
  100% { top: 85%; opacity: 0; }
}

/* Content */
.preloader__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.preloader.ready .preloader__content { opacity: 1; transform: none; }

/* Logo — reveals upward via clip-path */
.preloader__logo {
  height: 110px;
  width: auto;
  display: block;
  clip-path: inset(100% 0 0 0);
  transition: clip-path .6s cubic-bezier(.4,0,.2,1) .1s, filter .4s ease;
  filter: drop-shadow(0 0 20px rgba(43,181,175,.3)) brightness(1.05);
}
.preloader.ready .preloader__logo { clip-path: inset(0% 0 0 0); }

/* Arc ring */
.preloader__arc-wrap {
  position: relative;
  width: 112px;
  height: 112px;
}
.preloader__arc-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.preloader__arc-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__pct {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .06em;
}

/* Tagline */
.preloader__tagline {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ============================================================
   NAV OVERLAY (mobile menu backdrop)
   ============================================================ */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,35,71,.6);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav__overlay.show { opacity: 1; pointer-events: all; }

/* ============================================================
   COMPREHENSIVE MOBILE IMPROVEMENTS
   ============================================================ */

/* ---- 1024px — Tablet landscape ---- */
@media (max-width: 1024px) {
  .services__grid     { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid      { grid-template-columns: 1fr 1fr; }
  .service-card       { padding: 28px 22px; }
  .pricing-card--featured { transform: none; }
  .stats-section__grid    { grid-template-columns: repeat(2, 1fr); }
  .process__steps         { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process__connector     { display: none; }
  .footer__inner          { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-us__inner          { gap: 48px; }
  .dash-grid              { grid-template-columns: 1fr; }
  .kpi-grid               { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 768px — Tablet portrait / Large phone ---- */
@media (max-width: 768px) {
  /* Global */
  .container { padding: 0 20px; }

  /* Sections — tighten vertical padding */
  .services, .testimonials, .pricing, .why-us,
  .contact, .process, .stats-section { padding: 64px 0; }
  .section-header { margin-bottom: 44px; }
  .hero { padding: 110px 0 64px; min-height: auto; }

  /* ---- NAV DRAWER (mobile) ---- */

  /* Hide desktop-only elements */
  .nav__desktop-cta { display: none; }

  /* Show mobile-only elements */
  .nav__drawer-top,
  .nav__drawer-accent,
  .nav__drawer-cta-item,
  .nav__drawer-footer { display: flex; }

  /* The drawer panel */
  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 88vw);
    height: 100vh;
    background: linear-gradient(180deg, #08142A 0%, var(--navy-dark) 50%, #08142A 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    box-shadow: -12px 0 60px rgba(0,0,0,.55);
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav__menu.open { right: 0; }

  /* Drawer top: logo + close */
  .nav__drawer-top {
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
  }
  .nav__drawer-logo { height: 44px; width: auto; }
  .nav__drawer-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
  }
  .nav__drawer-close:hover { background: rgba(255,255,255,.15); color: #fff; }
  .nav__drawer-close svg { width: 16px; height: 16px; }

  /* Gold accent bar */
  .nav__drawer-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal), transparent);
    flex-shrink: 0;
    margin: 0;
  }

  /* Nav items */
  .nav__item { display: flex; flex-direction: column; }
  .nav__item:first-of-type { margin-top: 8px; }

  .nav__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: rgba(255,255,255,.72);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: all .22s ease;
    position: relative;
  }
  .nav__link::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--teal));
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity .22s ease;
  }
  .nav__link:hover,
  .nav__link:active {
    color: #fff;
    background: rgba(255,255,255,.06);
    padding-left: 28px;
  }
  .nav__link:hover::before { opacity: 1; }

  /* Icon */
  .nav__link-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
  }
  .nav__link:hover .nav__link-icon {
    background: rgba(43,181,175,.15);
    border-color: rgba(43,181,175,.3);
  }
  .nav__link-icon svg { width: 17px; height: 17px; color: var(--teal-light); }

  /* Arrow */
  .nav__link-arrow {
    width: 16px; height: 16px;
    margin-left: auto;
    color: rgba(255,255,255,.2);
    flex-shrink: 0;
    transition: transform .22s ease, color .22s ease;
  }
  .nav__link:hover .nav__link-arrow {
    transform: translateX(3px);
    color: var(--teal-light);
  }

  /* Mobile CTA button */
  .nav__drawer-cta-item {
    padding: 20px 24px 0;
    flex-direction: column;
  }
  .nav__drawer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-weight: 800;
    font-size: .95rem;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(212,175,55,.3);
    transition: var(--transition);
    letter-spacing: .01em;
  }
  .nav__drawer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,175,55,.4); }
  .nav__drawer-cta-btn svg { width: 18px; height: 18px; }

  /* Mobile footer: contact + socials */
  .nav__drawer-footer {
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 32px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .nav__drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .nav__drawer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.45);
    font-size: .82rem;
    transition: color .2s;
  }
  .nav__drawer-contact a:hover { color: rgba(255,255,255,.8); }
  .nav__drawer-contact svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
  .nav__drawer-social { display: flex; gap: 10px; }
  .nav__drawer-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    transition: var(--transition);
  }
  .nav__drawer-social a:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
  .nav__drawer-social svg { width: 16px; height: 16px; }

  /* Stagger animation for nav items */
  @keyframes drawerItemIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: none; }
  }
  .nav__menu.open .nav__item:nth-child(3)       { animation: drawerItemIn .32s ease .08s both; }
  .nav__menu.open .nav__item:nth-child(4)       { animation: drawerItemIn .32s ease .14s both; }
  .nav__menu.open .nav__item:nth-child(5)       { animation: drawerItemIn .32s ease .20s both; }
  .nav__menu.open .nav__item:nth-child(6)       { animation: drawerItemIn .32s ease .26s both; }
  .nav__menu.open .nav__item:nth-child(7)       { animation: drawerItemIn .32s ease .32s both; }
  .nav__menu.open .nav__drawer-cta-item         { animation: drawerItemIn .32s ease .38s both; }
  .nav__menu.open .nav__drawer-footer           { animation: drawerItemIn .32s ease .44s both; }

  .nav__toggle { display: flex; z-index: 1001; }

  /* Hide desktop-only icon/arrow on desktop (in case JS doesn't hide them) */

  /* Hero */
  .hero__content { max-width: 100%; }
  .hero__title   { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  /* Hero stats — clean 3-col grid, stacked */
  .hero__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 18px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
  }
  .hero__stat { padding: 4px 6px; }
  .hero__stat-number  { font-size: 1.5rem; }
  .hero__stat-suffix  { font-size: .95rem; }
  .hero__stat-label   { font-size: .68rem; white-space: normal; line-height: 1.3; }
  .hero__stat-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
    align-self: center;
  }
  .hero__scroll-indicator { display: none; }

  /* Trust bar — 2-col pill grid */
  .trust-bar { padding: 24px 0 20px; }
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: stretch;
    padding: 0 4px;
  }
  .trust-bar__item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 10px 12px;
    gap: 8px;
    font-size: .78rem;
    white-space: normal;
    justify-content: flex-start;
    transition: var(--transition);
  }
  .trust-bar__item:hover {
    background: rgba(212,175,55,.1);
    border-color: rgba(212,175,55,.25);
  }
  .trust-bar__item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .trust-bar__item svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* Services */
  .services__grid     { grid-template-columns: 1fr; gap: 16px; }
  .service-card       { padding: 28px 24px; }
  .service-card       { padding: 28px 24px; }
  .service-card--featured { transform: none; box-shadow: var(--shadow-lg); }
  .service-card--featured:hover { transform: translateY(-8px); }

  /* Process */
  .process__steps { grid-template-columns: 1fr; gap: 36px; }
  .process__step  { flex-direction: row; text-align: left; align-items: flex-start; padding: 0; }
  .process__step-circle { width: 56px; height: 56px; font-size: 1.2rem; margin-bottom: 0; flex-shrink: 0; }
  .process__step-content { padding-left: 20px; }
  .process__step-content h3 { font-size: 1rem; }

  /* Why Us */
  .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us__visual { max-width: 340px; margin: 0 auto; }
  .why-us__score-card { max-width: 100%; }
  .why-us__floating-badge--1 { top: -10px; right: -10px; }
  .why-us__floating-badge--2 { bottom: -10px; left: -10px; }

  /* Stats */
  .stats-section__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stats-section__item::after { display: none; }
  .stats-section__number { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card--featured { order: -1; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }

  /* CTA Banner */
  .cta-banner { padding: 56px 0; }
  .cta-banner__content h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact__form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Founder */
  .founder { padding: 64px 0; }
  .founder__inner { grid-template-columns: 1fr; gap: 40px; }
  .founder__photo-side { max-width: 320px; margin: 0 auto; width: 100%; }
  .founder__frame-inner { aspect-ratio: 4 / 5; }
  .founder__title-badge { left: 0; font-size: .72rem; padding: 8px 14px; }
  .founder__exp-badge { right: 0; }
  .founder__name { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .founder__credentials { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__logo  { height: 64px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }

  /* Booking modal */
  .book-modal { max-width: 100%; border-radius: 16px 16px 0 0; max-height: 92vh; align-self: flex-end; }
  .book-overlay { align-items: flex-end; padding: 0; }
  .book-sidebar { padding: 16px 20px; }
  .book-content { padding: 20px; }
  .book-progress { padding: 16px 20px 0; }
  .book-nav { padding: 12px 20px 20px; }
  .book-service-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .book-service-card { padding: 12px 14px; }
  .book-calendar-wrap { flex-direction: column; gap: 20px; }
  .book-times { width: 100%; }
  .book-time-grid { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .book-time-slot { flex: 1; min-width: 76px; font-size: .75rem; }
  .book-form-row { grid-template-columns: 1fr; }

  /* Scroll to top */
  .scroll-top { width: 44px; height: 44px; bottom: 24px; left: 24px; }

  /* FAB */
  .fab { bottom: 24px; right: 24px; }
  .fab__main { width: 52px; height: 52px; }
  .fab__label { display: none; }
  .fab__btn   { width: 44px; height: 44px; }
}

/* ---- 480px — Mobile portrait ---- */
@media (max-width: 480px) {
  /* Global */
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .btn { padding: 12px 22px; font-size: .88rem; }

  /* Hero */
  .hero { padding: 96px 0 56px; }
  .hero__title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero__badge  { font-size: .72rem; padding: 6px 14px; }
  /* Keep 3-col at 480px, just tighten numbers */
  .hero__stats  { padding: 14px 8px; gap: 0; }
  .hero__stat-number { font-size: 1.25rem; }
  .hero__stat-suffix { font-size: .82rem; }
  .hero__stat-label  { font-size: .62rem; }
  .hero__stat-divider { height: 32px; }

  /* Trust bar — keep 2-col even at 480px */
  .trust-bar__inner { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Why Us floating badges */
  .why-us__floating-badge--1,
  .why-us__floating-badge--2 { display: none; }

  /* Process */
  .process__step-circle { width: 48px; height: 48px; font-size: 1.1rem; }

  /* Founder */
  .founder__credentials { grid-template-columns: 1fr; }
  .founder__exp-badge   { display: none; }
  .founder__bio p       { font-size: .88rem; }

  /* Pricing */
  .pricing-card { padding: 28px 20px; }
  .pricing-card__amount { font-size: 2.8rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }

  /* Booking modal */
  .book-service-grid { grid-template-columns: 1fr; }
  .book-service-card { display: flex; align-items: center; gap: 12px; }
  .book-service-card__icon { margin-bottom: 0; flex-shrink: 0; }
  .book-close { top: 12px; right: 12px; }
  .book-step-label { display: none; }

  /* Nav badge */
  .nav__link--cta { display: none; }
}

/* ---- 375px — Very small mobile ---- */
@media (max-width: 375px) {
  .hero__title { font-size: 1.75rem; }
  .hero__stats { padding: 16px 12px; }
  .hero__stat-number { font-size: 1.3rem; }
  .book-cal-day { font-size: .72rem; }
  .kpi-card__value { font-size: 1.6rem; }
}

/* ============================================================
   MAINTENANCE OVERLAY (public-facing)
   ============================================================ */
.maint-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(145deg, #080F1E 0%, var(--navy-dark) 50%, #091829 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease .2s;
  overflow: auto;
}
.maint-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Animated background blobs */
.maint-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.maint-blob--1 {
  width: 500px; height: 500px;
  background: rgba(43,181,175,.06);
  top: -150px; right: -100px;
  animation: blobDrift 14s ease-in-out infinite alternate;
}
.maint-blob--2 {
  width: 400px; height: 400px;
  background: rgba(212,175,55,.05);
  bottom: -120px; left: -80px;
  animation: blobDrift 18s ease-in-out infinite alternate-reverse;
}
.maint-blob--3 {
  width: 300px; height: 300px;
  background: rgba(26,58,110,.3);
  top: 40%; left: 40%;
  animation: blobDrift 22s ease-in-out infinite alternate;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

/* Card */
.maint-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  width: 100%;
  animation: maintFadeUp .7s ease .4s both;
}
@keyframes maintFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.maint-logo {
  height: 68px;
  width: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 20px rgba(43,181,175,.3)) brightness(1.1);
}

/* Spinning rings icon */
.maint-rings {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
}
.maint-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid transparent;
}
.maint-ring--outer {
  border-top-color: var(--teal);
  border-right-color: rgba(43,181,175,.25);
  animation: spin 2.4s linear infinite;
}
.maint-ring--inner {
  inset: 14px;
  border-top-color: var(--gold);
  border-left-color: rgba(212,175,55,.25);
  animation: spin 3.6s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.maint-ring-center {
  position: absolute;
  inset: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
}
.maint-ring-center svg { width: 26px; height: 26px; }

/* Badge */
.maint-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.maint-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: maintPulse 1.6s ease-in-out infinite;
}
@keyframes maintPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.maint-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.maint-msg {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

/* Countdown timer */
.maint-countdown {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 28px;
}
.maint-countdown.show { display: flex; }
.maint-unit { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 52px; }
.maint-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.maint-label { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.maint-sep { font-size: 1.5rem; font-weight: 800; color: var(--gold); align-self: flex-start; margin-top: 6px; }

/* Contact */
.maint-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.maint-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color .2s;
}
.maint-contact-link:hover { color: var(--teal-light); }
.maint-contact-link svg { width: 15px; height: 15px; }

.maint-staff { margin-top: 8px; }
.maint-staff a { color: rgba(255,255,255,.15); font-size: .72rem; transition: color .2s; }
.maint-staff a:hover { color: rgba(255,255,255,.4); }

@media (max-width: 480px) {
  .maint-countdown { padding: 16px 16px; gap: 6px; }
  .maint-unit { min-width: 42px; }
  .maint-num { font-size: 1.5rem; }
  .maint-contact { flex-direction: column; align-items: center; gap: 12px; }
}
