:root {
  --navy: #0b2545;
  --blue: #1f4d78;
  --green: #5d8a72;
  --green-deep: #2f5d4e;
  --red: #b91c1c;
  --gold: #c7a14a;
  --gold-deep: #8a6518;
  --ink: #111827;
  --muted: #475569;
  --line: #d9e2ec;
  --soft: #f4f6f9;
  --cream: #fff4d6;
  --danger-soft: #fdecec;
  --white: #ffffff;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  border-bottom: 1px solid rgba(217, 226, 236, 0.86);
  background: rgba(255, 255, 255, 0.94);
  padding: 12px 24px;
  backdrop-filter: blur(16px);
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.logo-lockup img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.logo-lockup span {
  display: grid;
  gap: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.logo-lockup strong {
  font-size: 0.98rem;
  letter-spacing: 0.09em;
}

.logo-lockup small {
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

nav a:hover {
  color: var(--navy);
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px;
}

.hero-copy {
  max-width: 620px;
}

.hero-logo {
  width: min(100%, 360px);
  height: auto;
  margin: 0 0 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1rem;
}

.lead {
  margin: 24px 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(185, 28, 28, 0.18);
}

.btn.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn.wide {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 11px;
}

.cover-wrap {
  display: flex;
  justify-content: center;
}

.cover-wrap img {
  width: min(100%, 460px);
  height: auto;
  box-shadow: 0 28px 80px rgba(11, 37, 69, 0.18);
}

section {
  padding: 78px 24px;
}

.band {
  background: var(--soft);
}

.section-head {
  max-width: 860px;
  margin: 0 auto 34px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.problem-grid article,
blockquote,
.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.problem-grid p,
.feature-list p,
blockquote p,
.disclaimer p,
.price-copy {
  color: var(--muted);
  line-height: 1.6;
}

.inside-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

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

.feature-list div {
  border-left: 5px solid var(--gold);
  background: var(--soft);
  padding: 18px;
}

.feature-list strong {
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}

.price-panel {
  position: sticky;
  top: 20px;
}

.panel-label,
.fine {
  color: var(--muted);
  font-size: 0.86rem;
}

.price {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

blockquote {
  margin: 0;
}

cite {
  color: var(--green-deep);
  font-style: normal;
  font-weight: 900;
}

.center {
  text-align: center;
}

.checkout-explainer {
  max-width: 1120px;
  margin: 0 auto;
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.disclaimer {
  max-width: none;
}

.disclaimer h2,
.disclaimer p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer p {
  margin-top: 18px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(11, 37, 69, 0.68);
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.icon-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

input,
select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.check input {
  min-height: auto;
  margin-top: 3px;
}

.payment-box {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  background: var(--cream);
  color: var(--gold-deep);
  font-weight: 900;
  padding: 8px 12px;
}

.qr {
  width: 220px;
  min-height: 220px;
  display: grid;
  place-items: center;
  margin: 18px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 900;
  overflow: hidden;
}

.qr img {
  display: block;
  width: 100%;
  height: auto;
}

.qr-instruction {
  max-width: 420px;
  margin: -6px auto 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

dl {
  display: grid;
  gap: 9px;
}

dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.address {
  word-break: break-all;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
  padding: 34px 24px;
}

.site-footer > div {
  max-width: 620px;
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.site-footer .logo-lockup {
  color: var(--white);
}

.site-footer .logo-lockup small {
  color: #b7d1c3;
}

.footer-logo img {
  background: var(--white);
  border-radius: 10px;
}

.footer-meta {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: right;
}

@media (max-width: 900px) {
  .hero,
  .inside-layout,
  .problem-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .cover-wrap {
    order: -1;
  }

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

  .price-panel {
    position: static;
  }

  .site-footer {
    display: grid;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    display: grid;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  section {
    padding: 54px 18px;
  }

  .hero {
    padding: 24px 18px 54px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-actions {
    display: grid;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
