:root {
  --navy-950: #071528;
  --navy-900: #0b213f;
  --navy-800: #15365e;
  --gold-500: #d9ad62;
  --gold-400: #e7c88e;
  --sand-100: #f6f2ea;
  --sand-200: #efe7d7;
  --white: #ffffff;
  --ink: #14253b;
  --muted: #687586;
  --line: rgba(11, 33, 63, 0.12);
  --bg: #f5f7fb;
  --shadow: 0 24px 60px rgba(7, 21, 40, 0.14);
  --shadow-soft: 0 14px 34px rgba(7, 21, 40, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 34px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,33,63,0.08);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(7, 21, 40, 0.08);
  background: rgba(255,255,255,0.96);
}
.header-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
}
.brand img {
  width: clamp(140px, 20vw, 250px);
  height: auto;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform .8s ease;
}
.btn:hover::after { transform: translateX(140%); }
.btn-sm { min-height: 42px; padding-inline: 16px; font-size: .95rem; }
.btn-xl { min-height: 58px; padding-inline: 28px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(217, 173, 98, 0.32);
}
.btn-secondary {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn-ghost {
  background: var(--white);
  color: var(--navy-900);
  border-color: rgba(11,33,63,0.12);
}
.full { width: 100%; }
.pulse {
  animation: pulseGlow 2.4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 14px 34px rgba(217, 173, 98, 0.24); }
  50% { box-shadow: 0 18px 40px rgba(217, 173, 98, 0.38); }
}

.hero {
  position: relative;
  color: var(--white);
  overflow: clip;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,21,40,0.92) 0%, rgba(7,21,40,0.84) 42%, rgba(7,21,40,0.54) 100%),
    url('../img/office-couple-check.png') center/cover no-repeat;
  z-index: -3;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .34;
  z-index: -2;
}
.hero::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
  background: rgba(231, 200, 142, 0.48);
  animation: floatBlob 10s ease-in-out infinite;
}
.hero::after {
  width: 340px;
  height: 340px;
  left: -100px;
  bottom: -140px;
  background: rgba(21, 54, 94, 0.65);
  animation: floatBlob 14s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(16px, -16px, 0); }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 34px;
  padding: 78px 0 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--gold-400);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow-dark {
  background: rgba(217, 173, 98, 0.14);
  color: var(--navy-900);
}
.hero h1,
.center-heading h2,
.content-stack h2 {
  margin: 18px 0 16px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); max-width: 12ch; }
.center-heading h2,
.content-stack h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.hero-lead {
  max-width: 64ch;
  font-size: 1.13rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
  font-size: .96rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-proof-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  max-width: 690px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
}
.hero-proof-card strong { display: block; font-size: 1.04rem; margin-bottom: 4px; }
.hero-proof-card span { color: rgba(255,255,255,.84); display: block; }
.proof-link {
  white-space: nowrap;
  font-weight: 800;
  color: var(--gold-400);
}

.hero-card,
.value-card,
.image-card,
.pricing-card,
.lead-form,
.step-card,
.contact-card,
.mini-note-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.hero-card {
  overflow: hidden;
  color: var(--ink);
}
.floating-card {
  animation: gentleFloat 5.5s ease-in-out infinite;
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-card-image-wrap {
  position: relative;
  min-height: 320px;
}
.hero-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(11,33,63,.82);
  color: var(--white);
  font-weight: 800;
  text-align: center;
}
.hero-card-content { padding: 20px 22px 24px; }
.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.mini-metrics div {
  padding: 14px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfe, #f1f5fa);
  text-align: center;
}
.mini-metrics strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy-900);
}
.mini-metrics span {
  font-size: .92rem;
  color: var(--muted);
}

.trust-bar {
  background: linear-gradient(180deg, var(--sand-100), var(--white));
  border-top: 1px solid rgba(11,33,63,.08);
  border-bottom: 1px solid rgba(11,33,63,.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px 0;
}
.trust-grid article {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-soft);
}
.trust-grid strong { font-size: 1rem; }
.trust-grid span { color: var(--muted); font-size: .95rem; }

.section { padding: 88px 0; }
.section-soft { background: var(--bg); }
.section-dark {
  background: radial-gradient(circle at top right, rgba(21,54,94,0.45), transparent 26%),
              linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}
.center-heading {
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}
.center-heading p,
.content-stack p { color: var(--muted); }
.center-heading.light p,
.section-dark .pricing-copy p,
.section-dark .pricing-copy li { color: rgba(255,255,255,0.88); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.step-card {
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(7,21,40,0.16);
}
.step-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.step-content { padding: 18px 20px 22px; }
.step-content h3 { margin: 10px 0 10px; font-size: 1.28rem; }
.step-content p { margin: 0; color: var(--muted); }
.step-content small { display: block; margin-top: 12px; color: #7a8695; }
.step-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  font-weight: 900;
}

.split-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 34px;
  align-items: start;
}
.split-layout.reverse {
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}
.content-stack { min-width: 0; }
.check-list,
.compact-list { list-style: none; padding: 0; margin: 0; }
.check-list li,
.compact-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}
.check-list li::before,
.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}
.value-card {
  padding: 28px;
  border: 1px solid rgba(11,33,63,0.08);
}
.mini-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,33,63,0.08);
  color: var(--navy-900);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mini-label.gold {
  background: rgba(217,173,98,0.18);
  color: var(--gold-400);
}
.value-card h3,
.pricing-card h3,
.lead-form h3,
.benefit-grid h3,
.site-footer h3 {
  margin: 12px 0 10px;
}
.price-box {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  margin: 18px 0;
}
.price-main {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}
.price-note { margin-top: 8px; color: rgba(255,255,255,.78); }

.image-stack { position: relative; }
.image-card { overflow: hidden; }
.image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.mini-note-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 230px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.94);
}
.mini-note-card strong { display: block; margin-bottom: 4px; }
.mini-note-card span { color: var(--muted); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.benefit-grid article {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: var(--shadow-soft);
}
.benefit-grid p { margin: 0; }

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 32px;
  align-items: stretch;
  margin-top: 32px;
}
.pricing-copy h3 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}
.light-list li::before { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); }
.pricing-card {
  overflow: hidden;
  color: var(--ink);
}
.pricing-card-head {
  padding: 26px 26px 18px;
  background: linear-gradient(180deg, rgba(7,21,40,0.98), rgba(11,33,63,0.92));
  color: var(--white);
}
.huge-price {
  margin: 14px 0 6px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 900;
  color: var(--gold-400);
}
.pricing-card-body { padding: 24px 26px 26px; }
.compact-list.dark li { color: var(--ink); }
.price-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0 22px;
}
.price-split div {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfe, #f1f5fa);
}
.price-split strong { display: block; }
.price-split span { color: var(--muted); }
.price-call {
  display: block;
  margin-top: 14px;
  font-weight: 800;
  text-align: center;
  color: var(--navy-900);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.contact-card {
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 4px;
}
.contact-card strong { font-size: 1.1rem; }
.lead-form {
  padding: 24px;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}
.form-head p,
.form-note { color: rgba(255,255,255,.76); }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.lead-form label {
  display: block;
  margin-bottom: 14px;
}
.lead-form span {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.98);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(217,173,98,.16);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.faq-section { padding-bottom: 110px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.faq-grid details {
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 20px 22px;
}
.faq-grid summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  position: relative;
  padding-right: 22px;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-500);
  font-size: 1.3rem;
}
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid p { margin-bottom: 0; color: var(--muted); }

.site-footer {
  padding: 44px 0 100px;
  background: linear-gradient(180deg, var(--navy-950), #06101e);
  color: rgba(255,255,255,0.88);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 26px;
  align-items: start;
}
.footer-logo {
  width: min(320px, 100%);
  margin-bottom: 16px;
}
.site-footer h3 { color: var(--white); }
.site-footer a:hover { color: var(--gold-400); }

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 70;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(7,21,40,0.92);
  box-shadow: 0 20px 44px rgba(7,21,40,.22);
  backdrop-filter: blur(14px);
}
.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}
.floating-call {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.floating-form {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 16px;
  background: radial-gradient(circle at top right, rgba(21,54,94,0.28), transparent 28%),
              linear-gradient(180deg, var(--sand-100), #ffffff);
}
.success-card {
  width: min(100%, 680px);
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}
.success-card img { width: min(330px, 100%); margin: 0 auto 22px; }
.success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .pricing-shell,
  .split-layout,
  .split-layout.reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: 15ch; }
  .hero-card { max-width: 620px; }
  .hero-proof-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 920px) {
  .trust-grid,
  .steps-grid,
  .benefit-grid,
  .faq-grid,
  .footer-grid,
  .contact-cards,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-grid { padding: 66px 0 64px; }
  .header-actions .btn-ghost { display: none; }
  .mini-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-inner { min-height: 48px; }
  .brand img { width: 154px; }
  .header-actions .btn-sm { min-height: 38px; padding-inline: 12px; font-size: .87rem; }
  .section { padding: 72px 0; }
  .hero h1 { max-width: none; font-size: clamp(2rem, 9vw, 3rem); }
  .hero-cta-row .btn,
  .success-actions .btn { width: 100%; }
  .image-card img { height: 360px; }
  .price-split { grid-template-columns: 1fr; }
  .floating-cta {
    left: 14px;
    right: 14px;
    transform: none;
    justify-content: stretch;
  }
  .floating-cta a { flex: 1 1 auto; }
}
