:root {
  --navy: #102033;
  --ink: #182331;
  --muted: #5d6878;
  --line: #dfe5ec;
  --soft: #f5f7fa;
  --white: #ffffff;
  --teal: #1f8a83;
  --teal-dark: #126860;
  --gold: #d8a23a;
  --shadow: 0 20px 55px rgba(16, 32, 51, 0.12);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 72px 0 92px;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0) 0%, rgba(245, 247, 250, 0.88) 70%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subtitle,
.page-hero p {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-row.right {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--teal);
  border-radius: 7px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

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

.button-secondary:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.button-full {
  width: 100%;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.flow > * + * {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.value-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card,
.trust-grid article,
.step,
.price-card,
.form-panel,
.summary-panel,
.contact-card,
.confirmation-panel,
.proof-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.value-card {
  padding: 24px;
}

.value-card p,
.trust-grid p,
.step p,
.best-for,
.small-note,
.form-note {
  margin-top: 12px;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: rgba(31, 138, 131, 0.12);
  color: var(--teal-dark);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.single-offer-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  min-height: 100%;
}

.price-card.featured {
  border-color: rgba(31, 138, 131, 0.45);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(216, 162, 58, 0.18);
  color: #7a5514;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.price {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.check-list {
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.price-card .button {
  margin-top: auto;
}

.comparison-wrap {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.table-scroll {
  overflow-x: auto;
  margin-top: 16px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--navy);
  background: var(--soft);
}

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

.step {
  padding: 24px;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.form-panel,
.summary-panel,
.contact-card,
.confirmation-panel {
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-panel {
  color: var(--ink);
}

label,
legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(31, 138, 131, 0.28);
  outline-offset: 2px;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 16px 0;
  color: var(--ink);
  font-weight: 400;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-success {
  min-height: 1.4em;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 800;
}

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

.trust-grid article {
  padding: 22px;
}

.proof-placeholder {
  margin-top: 18px;
  padding: 20px;
  border-style: dashed;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 800;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding-bottom: 72px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.7fr);
  gap: 34px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--soft);
}

.final-cta p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.centred {
  text-align: center;
}

.site-footer {
  padding: 48px 0 120px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--navy);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

.footer-bottom p + p {
  margin-top: 8px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
}

.page-hero {
  background: var(--soft);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.summary-panel {
  position: sticky;
  top: 96px;
}

.summary-panel dl {
  margin: 18px 0;
}

.summary-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.summary-panel dt {
  color: var(--navy);
  font-weight: 800;
}

.summary-panel dd {
  margin: 0;
}

.order-form {
  display: grid;
  gap: 24px;
}

fieldset {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

fieldset label:not(.radio-card) {
  margin-top: 18px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.radio-card {
  display: grid;
  gap: 6px;
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.radio-card input {
  width: 18px;
  height: 18px;
}

.radio-card strong {
  color: var(--navy);
  font-size: 1.5rem;
}

.radio-card small {
  color: var(--muted);
}

.radio-card:has(input:checked) {
  border-color: var(--teal);
  background: rgba(31, 138, 131, 0.08);
}

.selected-plan {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.selected-plan h2 {
  font-size: 1.35rem;
}

.selected-plan .price {
  margin: 10px 0;
}

.selected-plan p:not(.price) {
  color: var(--muted);
}

.terms-check {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.next-steps {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.next-steps h2 {
  font-size: 1.35rem;
}

.next-steps ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.contact-card {
  margin-top: 30px;
}

.prose {
  max-width: 850px;
}

.prose h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.prose p {
  margin-top: 14px;
  color: var(--muted);
}

.outline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.outline-grid span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.section-action {
  margin-top: 32px;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .final-cta-inner,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .steps,
  .trust-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-panel {
    position: static;
  }

  .button-row.right {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .section {
    padding: 58px 0;
  }

  .nav {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links:not(.nav-links-static) {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links:not(.nav-links-static) a {
    padding: 13px 12px;
  }

  .nav-links-static {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero-subtitle,
  .page-hero p {
    font-size: 1rem;
  }

  .button-row,
  .button-row.right {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .proof-strip li {
    width: 100%;
  }

  .value-grid,
  .steps,
  .trust-grid,
  .pricing-grid,
  .radio-grid,
  .outline-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    order: -1;
  }

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

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .button {
    padding-left: 12px;
    padding-right: 12px;
  }

  .final-cta-inner,
  fieldset,
  .form-panel,
  .summary-panel {
    padding: 20px;
  }
}
