/* =========================
   Movepark Lease · styles
   ========================= */
:root {
  /* Brand tones — blue family */
  --navy-900: #0A2447;   /* deepest blue (used for darkest accents) */
  --navy-800: #0F3A7A;   /* primary brand blue */
  --navy-700: #1654B0;   /* mid blue */
  --navy-600: #2070D6;   /* bright blue */
  --navy-500: #4A93EA;   /* light blue */
  --blue-500: #1D6FE5;   /* action blue */
  --blue-400: #4A93EA;
  --blue-300: #7DB6F0;
  --blue-200: #B4D4F5;
  --blue-100: #DEEBFB;
  --sky-500:  #38BDF8;   /* sky accent */
  --sky-400:  #7DD3FC;
  --sky-100:  #E0F2FE;
  --gold-500: #B79264;
  --gold-400: #C6A37A;
  --gold-100: #F2E8D7;

  --ink-900: #0A1424;
  --ink-700: #2A3447;
  --ink-500: #586478;
  --ink-400: #7B8597;
  --ink-300: #B6BDCB;
  --ink-200: #D6DCE6;
  --ink-100: #ECEFF4;
  --ink-50:  #F6F8FB;
  --white:   #FFFFFF;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(10,20,36,.06), 0 1px 3px rgba(10,20,36,.06);
  --shadow:    0 6px 16px rgba(10,20,36,.08), 0 2px 6px rgba(10,20,36,.05);
  --shadow-lg: 0 24px 56px rgba(10,20,36,.18), 0 6px 18px rgba(10,20,36,.08);

  --font-kr: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-en: "Inter", "Pretendard Variable", Pretendard, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-kr);
  color: var(--ink-900);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-wrap: pretty;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; }

.kicker {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--blue-500);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker-on-dark { color: var(--sky-400); }

.accent { color: var(--blue-500); }
.accent-gold { color: var(--sky-400); }
.muted { color: var(--ink-500); font-weight: 500; font-size: .92em; }

/* ============= HEADER ============= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--ink-100);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--sky-500));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(56,189,248,.32);
}
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong { font-family: var(--font-en); font-size: 16px; letter-spacing: .08em; }
.brand-name em {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: .02em;
  margin-top: 2px;
  font-weight: 500;
}
.header-nav { margin-left: auto; display: flex; gap: 28px; }
.header-nav a {
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.header-nav a:hover { color: var(--blue-500); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .01em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(29,111,229,.32);
}
.header-cta .phone-text { font-family: var(--font-en); font-weight: 700; }
.header-cta:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(29,111,229,.42); }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.005em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { height: 56px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
  color: #fff;
  box-shadow: 0 8px 20px rgba(29,111,229,.34);
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 10px 24px rgba(29,111,229,.44); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.btn-gold {
  background: linear-gradient(135deg, var(--sky-400), var(--blue-500));
  color: #fff;
  box-shadow: 0 10px 24px rgba(56,189,248,.4);
}
.btn-gold:hover { filter: brightness(1.08); box-shadow: 0 12px 28px rgba(56,189,248,.5); }
.btn-outline-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }

/* ============= HERO ============= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, #1654B0 0%, #0F3A7A 40%, #0A2447 100%);
  color: #fff;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 0;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    /* sky highlight top-right */
    radial-gradient(700px 460px at 88% 8%, rgba(125,211,252,.32), transparent 60%),
    /* bright cyan glow middle-left */
    radial-gradient(820px 520px at 4% 38%, rgba(56,189,248,.22), transparent 65%),
    /* warm gold accent bottom-right */
    radial-gradient(560px 320px at 92% 95%, rgba(198,163,122,.18), transparent 70%),
    /* deeper blue glow center-bottom */
    radial-gradient(900px 600px at 50% 110%, rgba(32,112,214,.35), transparent 60%);
  pointer-events: none;
}
/* layered grid pattern */
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 80%);
  opacity: .8;
}
/* soft floating orbs */
.hero-bg::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -120px;
  top: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(125,211,252,.55), rgba(56,189,248,.18) 45%, transparent 70%);
  filter: blur(40px);
  opacity: .85;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, 30px) scale(1.06); }
}
.hero-inner { z-index: 1; }

/* aurora line accents */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-aurora span {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,.6), transparent);
  height: 1px;
  width: 60%;
  filter: blur(.5px);
  animation: auroraSlide 14s linear infinite;
  opacity: .5;
}
.hero-aurora span:nth-child(1) { top: 18%;  left: -10%; animation-delay:  0s; }
.hero-aurora span:nth-child(2) { top: 42%;  left: 30%;  animation-delay: -6s; opacity: .35; }
.hero-aurora span:nth-child(3) { top: 72%;  left: -20%; animation-delay: -3s; opacity: .4; }
@keyframes auroraSlide {
  from { transform: translateX(-20%); }
  to   { transform: translateX(140%); }
}

/* gold dot field for premium feel */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 50% at 70% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 70% 20%, #000 0%, transparent 70%);
  opacity: .4;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-content { max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(125,211,252,.12);
  border: 1px solid rgba(125,211,252,.32);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: #E6F4FE;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--sky-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(125,211,252,.28);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(125,211,252,.28); }
  50%     { box-shadow: 0 0 0 8px rgba(125,211,252,.08); }
}

.hero-title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.022em;
  margin: 0 0 20px;
}
.hero-title .accent {
  color: var(--sky-400);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 8px;
  background: linear-gradient(90deg, var(--sky-400), transparent);
  opacity: .35;
  border-radius: 4px;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: #C7D2E0;
  margin: 0 0 26px;
}
.hero-sub strong { color: #fff; font-weight: 700; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(125,211,252,.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #E6F4FE;
  backdrop-filter: blur(6px);
}
.ic-check {
  width: 14px; height: 14px;
  display: inline-block;
  background: var(--sky-400);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-size: 13px; color: #98A6BC; margin: 0; }
.mb-only { display: none; }

/* Hero card (quote compare) */
.hero-card {
  position: relative;
}
.qc {
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.qc-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  margin-bottom: 18px;
  color: var(--ink-500);
  font-family: var(--font-en);
  letter-spacing: .04em;
}
.qc-tag {
  padding: 4px 10px;
  background: var(--ink-50);
  border-radius: 999px;
  color: var(--navy-800);
  font-weight: 600;
}
.qc-id { font-family: var(--font-mono); font-size: 11px; }
.qc-row {
  padding: 18px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qc-before { background: var(--ink-50); }
.qc-after  {
  background: linear-gradient(140deg, var(--navy-800), var(--navy-700));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.qc-after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 120px at 90% 0%, rgba(125,211,252,.35), transparent 70%);
  pointer-events: none;
}
.qc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.qc-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-gray { background: var(--ink-300); }
.dot-gold { background: var(--sky-400); box-shadow: 0 0 0 3px rgba(56,189,248,.32); }

.qc-value { display: inline-flex; align-items: baseline; gap: 6px; }
.qc-amount {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.qc-after .qc-amount { color: var(--sky-400); }
.qc-unit { font-size: 13px; color: var(--ink-400); }
.qc-after .qc-unit { color: rgba(255,255,255,.7); }

.qc-divider {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 6px;
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 500;
}
.qc-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qc-divider-text { font-family: var(--font-en); letter-spacing: .04em; text-transform: uppercase; }

.qc-savings {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.qc-savings-label { font-weight: 700; font-size: 13px; color: var(--navy-700); }
.qc-savings-amount {
  font-size: 13px;
  color: var(--navy-700);
  font-variant-numeric: tabular-nums;
}
.qc-savings-amount strong { font-family: var(--font-en); font-weight: 800; }

.qc-caveat {
  font-size: 11.5px;
  color: var(--ink-400);
  line-height: 1.55;
  margin-top: 12px;
  text-align: left;
}

.qc-stickers {
  position: absolute;
  right: -10px;
  top: -14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.qc-sticker {
  background: linear-gradient(135deg, var(--sky-400), var(--blue-500));
  color: #fff;
  border-radius: 50%;
  width: 88px; height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(56,189,248,.42);
  transform: rotate(-6deg);
}
.qc-sticker.s2 { background: #fff; color: var(--blue-500); transform: rotate(8deg) translateX(-12px); box-shadow: 0 16px 32px rgba(10,36,71,.18); }
.ss-num { font-family: var(--font-en); font-size: 26px; font-weight: 800; line-height: 1; }
.ss-num sub { font-size: 11px; }
.ss-txt { font-size: 10.5px; line-height: 1.2; margin-top: 2px; font-weight: 600; }

/* Strip */
.strip {
  background: linear-gradient(90deg, #0A2447 0%, #0F3A7A 50%, #0A2447 100%);
  border-top: 1px solid rgba(125,211,252,.12);
  border-bottom: 1px solid rgba(125,211,252,.12);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.strip-track {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}
.strip-track span { display: inline-block; }
.strip-track i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sky-400);
  display: inline-block;
  opacity: .9;
  box-shadow: 0 0 8px rgba(125,211,252,.6);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============= SECTIONS ============= */
.section { padding: 96px 0; }
.section-light { background: #fff; }
.section-tinted { background: var(--ink-50); }
.section-dark {
  background: linear-gradient(160deg, #0F3A7A 0%, #1654B0 60%, #0F3A7A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 360px at 80% 100%, rgba(125,211,252,.22), transparent 70%),
    radial-gradient(600px 360px at 0% 0%,    rgba(56,189,248,.16), transparent 70%);
  pointer-events: none;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.022em;
  margin: 0 0 14px;
}
.section-head .section-sub {
  font-size: 16px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.65;
}
.section-head--light .section-sub { color: #C8DCF5; }
.section-head--light .kicker { color: var(--sky-400); }
.section-sub.left { text-align: left; }

/* Why grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reason-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--ink-200);
}
.reason-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.reason-card h3 {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.015em;
}
.reason-card p {
  font-size: 14px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.65;
}
.reason-card--accent {
  background: linear-gradient(160deg, var(--navy-700), var(--blue-500));
  color: #fff;
  border-color: transparent;
}
.reason-card--accent .reason-num { color: var(--sky-400); }
.reason-card--accent p { color: rgba(255,255,255,.82); }

/* Steps */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 26px 24px 24px;
  backdrop-filter: blur(4px);
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-400), var(--blue-500));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(56,189,248,.4);
}
.step-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.015em;
}
.step-body p {
  margin: 0 0 14px;
  color: #C7D2E0;
  font-size: 14px;
  line-height: 1.6;
}
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-list li {
  font-size: 12.5px;
  color: #98A6BC;
  padding-left: 14px;
  position: relative;
}
.step-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1.5px;
  background: var(--sky-400);
}

/* Logos marquee */
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee + .logo-marquee { margin-top: 14px; }
.logo-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: logoSlide var(--marquee-duration, 60s) linear infinite;
}
.logo-marquee-track:hover { animation-play-state: paused; }
.logo-marquee.reverse .logo-marquee-track { animation-direction: reverse; }
@keyframes logoSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}
.logo-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: 18px 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  height: 80px;
  flex-shrink: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-200);
  box-shadow: 0 10px 24px rgba(29,111,229,.10);
}
.logo-card-monogram {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.02em;
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.logo-card-monogram::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent 50%);
  pointer-events: none;
}
.logo-card-body { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.logo-card-text {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -.012em;
  white-space: nowrap;
}
.logo-card-sub {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--ink-400);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.logo-foot {
  text-align: center;
  font-size: 12px;
  color: var(--ink-400);
  margin-top: 24px;
}

/* Checklist two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col-left h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -.022em;
}
.two-col-left .section-sub {
  font-size: 16px;
  color: var(--ink-500);
  margin: 0 0 24px;
}
.checklist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.5;
  transition: border-color .15s ease, transform .15s ease;
}
.checklist li:hover { border-color: var(--blue-100); transform: translateX(2px); }
.cl-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

/* Before / After */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.ba-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.ba-card header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-bottom: 18px;
}
.ba-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.ba-tag--gray { background: var(--ink-100); color: var(--ink-700); }
.ba-tag--gold { background: var(--sky-100); color: var(--blue-500); }
.ba-sub { color: var(--ink-500); font-size: 12.5px; }

.ba-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}
.ba-currency {
  color: var(--ink-500);
  font-size: 16px;
  font-weight: 600;
}
.ba-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -.025em;
  font-variant-numeric: tabular-nums;
}
.ba-before .ba-num { color: var(--ink-700); }
.ba-after  {
  background: linear-gradient(160deg, var(--navy-700), var(--blue-500));
  border-color: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ba-after::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(125,211,252,.32), transparent 70%);
  pointer-events: none;
}
.ba-after .ba-num { color: var(--sky-400); }
.ba-after .ba-sub { color: rgba(255,255,255,.6); }
.ba-after .ba-currency { color: rgba(255,255,255,.7); }

.ba-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px dashed var(--ink-200);
  text-align: left;
}
.ba-after .ba-list { border-top-color: rgba(255,255,255,.16); }
.ba-list > div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.ba-list dt { color: var(--ink-500); font-weight: 500; }
.ba-after .ba-list dt { color: rgba(255,255,255,.6); }
.ba-list dd { margin: 0; font-weight: 700; color: var(--ink-900); }
.ba-after .ba-list dd { color: #fff; }
.ba-badge {
  margin-top: 18px;
  display: inline-block;
  padding: 8px 14px;
  background: var(--sky-400);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(56,189,248,.4);
}

.ba-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--blue-500);
  font-weight: 700;
  font-size: 13px;
}
.ba-arrow svg {
  background: var(--blue-100);
  border-radius: 50%;
  padding: 6px;
}

.ba-caveat {
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
  max-width: 760px;
  margin: 36px auto 0;
  line-height: 1.7;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(56,189,248,.24), transparent 65%),
    radial-gradient(700px 400px at 10% 100%, rgba(125,211,252,.18), transparent 70%),
    linear-gradient(135deg, #0A2447 0%, #0F3A7A 50%, #1654B0 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.cta-inner { position: relative; }
.cta-bg {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.cta-bg-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 360px;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, rgba(125,211,252,.28), rgba(125,211,252,0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.cta-content h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 16px;
  letter-spacing: -.022em;
}
.cta-content p {
  font-size: 17px;
  color: #C7D2E0;
  margin: 0 0 28px;
  line-height: 1.65;
}
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #98A6BC;
}

/* FAQ */
.faq { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item:hover { border-color: var(--ink-200); }
.faq-item.open { border-color: var(--navy-800); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
}
.faq-q-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink-50);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; }
.faq-toggle {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform .25s ease;
}
.faq-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-q-icon { background: var(--blue-500); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 360px; }
.faq-a p {
  padding: 0 22px 22px 68px;
  margin: 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0A2447 0%, #06182F 100%);
  color: #B6BDCB;
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: #98A6BC; line-height: 1.7; margin: 0; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  margin: 0 0 12px;
}
.footer-cols p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #98A6BC;
}
.footer-cols a:hover { color: var(--sky-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  font-size: 12px;
  color: #6E7A91;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--ink-100);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -8px 24px rgba(10,20,36,.08);
}
.sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.005em;
  transition: transform .15s ease, filter .15s ease;
}
.sticky-btn:active { transform: scale(.98); }
.sticky-btn--call { background: linear-gradient(135deg, var(--blue-500), var(--navy-700)); color: #fff; }
.sticky-btn--sms  { background: linear-gradient(135deg, var(--sky-400), var(--blue-500)); color: #fff; }

/* ============= RESPONSIVE ============= */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 56px; gap: 36px; }
  .hero { padding-top: 36px; }
  .header-nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .cta-bg-num { font-size: 220px; right: -20px; opacity: .6; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .header-cta .phone-text { display: none; }
  .header-cta { padding: 0 12px; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps  { grid-template-columns: 1fr; }
  .logo-card { min-width: 180px; height: 72px; padding: 14px 16px; gap: 10px; }
  .logo-card-monogram { width: 38px; height: 38px; font-size: 13px; }
  .logo-card-text { font-size: 13.5px; }
  .mb-only { display: inline; }
  .hero-title { font-size: 34px; }
  .qc { padding: 22px 20px; }
  .qc-amount { font-size: 26px; }
  .ba-num { font-size: 44px; }
  .qc-sticker { width: 72px; height: 72px; }
  .ss-num { font-size: 22px; }
  .qc-stickers { right: -4px; top: -8px; }
  .faq-q { padding: 18px; font-size: 15px; }
  .faq-a p { padding: 0 18px 18px 56px; font-size: 14px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 90px; }
  .hero-ctas .btn { flex: 1; min-width: 0; }
  .cta-buttons .btn { flex: 1; min-width: 0; }
  .cta-bg-num { font-size: 160px; }
  .cta-content h2 br { display: none; }
  .header-inner { height: 60px; }
  .brand-name em { display: none; }
}

@media (max-width: 380px) {
  .badges .badge { font-size: 12px; padding: 6px 10px; }
}
