:root {
  --blue: #004777;
  --blue-deep: #073455;
  --gold: #b38d5a;
  --gold-light: #d7b880;
  --paper: #f6f4ef;
  --cream: #efe7dc;
  --white: #ffffff;
  --ink: #17222d;
  --muted: #65727e;
  --line: #d8d0c3;
  --shadow: 0 24px 60px rgba(11, 31, 46, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(0, 71, 119, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(230px, 42vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.nav__cta {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  background:
    radial-gradient(circle at top left, rgba(215, 184, 128, 0.16), transparent 28%),
    linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 55%, #0f5f92 100%);
  color: var(--white);
}

.hero__copy {
  padding: clamp(38px, 7vw, 90px) clamp(20px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.96;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.35vw, 25px);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.85);
}

.hero__actions,
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 30px;
}

.hero__note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(179, 141, 90, 0.28);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.hero__included {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 880px;
}

.mini-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
}

.mini-card strong {
  display: block;
  font-size: 15px;
}

.mini-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.hero__media {
  position: relative;
  min-height: 560px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 52, 85, 0.14), rgba(7, 52, 85, 0.6));
}

.quote-card {
  position: absolute;
  right: clamp(16px, 4vw, 40px);
  bottom: clamp(18px, 4vw, 40px);
  z-index: 2;
  width: min(420px, calc(100% - 32px));
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-card__label {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.quote-card__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.section {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 62px);
}

.section--light { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--blue-deep);
  color: var(--white);
}

.inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: clamp(22px, 5vw, 60px);
  align-items: start;
  margin-bottom: 34px;
}

.section-label {
  font-family: "Playfair Display", serif;
  font-size: 29px;
  text-transform: none;
  letter-spacing: 0;
}

.section-label--light,
.section-head--light .section-label {
  color: var(--gold-light);
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
}

.lead {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.compare,
.feature,
.proof,
.faq-item {
  border-radius: 28px;
  padding: 28px;
}

.compare--muted {
  background: #eef2f5;
  border: 1px solid #dbe3ea;
}

.compare--highlight {
  background: linear-gradient(180deg, rgba(179, 141, 90, 0.12), rgba(255,255,255,0.96));
  border: 1px solid rgba(179, 141, 90, 0.24);
}

.compare__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
}

.compare h3,
.feature h3,
.price-panel h3,
.step h3,
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.18;
}

.compare ul,
.proof-grid,
.feature-grid,
.faq,
.steps {
  margin: 0;
}

.compare ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid,
.proof-grid,
.steps,
.faq {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature__num,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(179, 141, 90, 0.16);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 16px;
}

.feature p,
.proof p,
.faq-item p,
.price-panel p,
.steps p,
.founder-band__quote,
.cta-band__inner p {
  margin: 0;
  line-height: 1.78;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0, 71, 119, 0.12);
  font-weight: 700;
}

.price-panel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(0, 71, 119, 0.96), rgba(8, 53, 84, 0.98));
  color: var(--white);
}

.price-panel p,
.price-panel h3 { color: var(--white); }

.price-panel__eyebrow {
  margin-bottom: 12px;
  color: var(--gold-light) !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-stamp {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: start;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.price-stamp span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.price-stamp strong {
  font-size: clamp(46px, 7vw, 72px);
  line-height: 0.95;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof {
  background: var(--white);
  border: 1px solid var(--line);
}

.proof strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.founder-band {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(179, 141, 90, 0.1);
}

.founder-band img {
  width: 100%;
  border-radius: 24px;
}

.founder-band__quote {
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
}

.founder-band__name {
  margin-top: 14px !important;
  color: var(--gold) !important;
  font-weight: 800;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step p { color: rgba(255, 255, 255, 0.74); }

.faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
}

.cta-band {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-band__actions {
  justify-items: end;
  align-items: end;
}

.cta-band__actions p {
  max-width: 320px;
  text-align: right;
}

@media (max-width: 1080px) {
  .hero,
  .section-head,
  .comparison,
  .price-panel,
  .proof-grid,
  .steps,
  .faq,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .hero__included,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band__actions {
    justify-items: start;
  }

  .cta-band__actions p {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero__included,
  .feature-grid,
  .proof-grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .compare,
  .feature,
  .proof,
  .faq-item,
  .price-panel,
  .founder-band,
  .cta-band__inner {
    padding: 22px;
  }

  .founder-band {
    grid-template-columns: 1fr;
  }

  .founder-band img {
    max-width: 180px;
  }
}
