:root {
  --bg: #f4f7f2;
  --surface: #ffffff;
  --ink: #101820;
  --muted: #68736d;
  --line: #dfe8df;
  --primary: #087a5a;
  --primary-dark: #056347;
  --primary-soft: #e7f5ef;
  --accent: #10a878;
  --warm: #e8b95a;
  --gold: #e8b95a;
  --dark: #0b1512;
  --dark-soft: #17231f;
  --shadow: 0 24px 70px rgba(13, 20, 36, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

h1,
h2,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

.topbar {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 36px), var(--container));
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
}

.brand-name {
  font-size: 19px;
}

.brand-tag {
  padding: 4px 9px;
  color: #101828;
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-account {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.header-account:hover,
.header-account:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.header-cta,
.button,
.checkout-panel a,
.offer-card a,
.option-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta,
.button.primary,
.checkout-panel a,
.offer-card a,
.option-cta {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 16px 36px rgba(8, 122, 90, 0.28);
}

.button.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04) brightness(0.74);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 11, 22, 0.92) 0%, rgba(8, 14, 26, 0.78) 38%, rgba(8, 14, 26, 0.26) 100%),
    linear-gradient(180deg, rgba(6, 11, 22, 0.38) 0%, rgba(6, 11, 22, 0.26) 48%, rgba(6, 11, 22, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), var(--container));
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 56px;
  margin: 0 auto;
  padding: 142px 0 48px;
}

.hero-copy {
  max-width: 745px;
  min-width: 0;
  padding-bottom: 26px;
}

.kicker {
  margin: 0 0 13px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 770px;
  margin-bottom: 20px;
  font-size: 65px;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  overflow-wrap: break-word;
}

.hero-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.hero-trust {
  max-width: 600px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

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

.checkout-panel {
  align-self: end;
  min-width: 0;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

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

.hero-offer-card {
  position: relative;
  min-width: 0;
  min-height: 206px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  padding: 14px 10px 10px;
  background: #ffffff;
  border: 1px solid rgba(8, 122, 90, 0.16);
  border-radius: 10px;
}

.hero-offer-card.featured {
  color: #ffffff;
  background: linear-gradient(180deg, #0b8b69 0%, #087a5a 100%);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 42px rgba(8, 122, 90, 0.34);
  transform: translateY(-10px);
}

.hero-offer-card em {
  position: static;
  display: inline-flex;
  justify-content: center;
  padding: 4px 6px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offer-card span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.hero-offer-card.featured span {
  color: #ffffff;
}

.hero-offer-card strong {
  font-size: 25px;
  line-height: 0.98;
}

.hero-offer-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.hero-offer-card.featured small {
  color: rgba(255, 255, 255, 0.84);
}

.hero-offer-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 7px;
  color: var(--primary);
  background: rgba(8, 122, 90, 0.08);
  border: 1px solid rgba(8, 122, 90, 0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.hero-offer-card.featured a {
  color: var(--primary);
  background: #ffffff;
  border-color: #ffffff;
}

.panel-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  margin-bottom: 18px;
}

.panel-top span {
  grid-column: 1 / -1;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-top strong {
  font-size: 29px;
  line-height: 1;
}

.panel-top b {
  color: var(--primary);
  font-size: 29px;
  line-height: 1;
}

.checkout-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.checkout-panel li,
.offer-card li,
.subscription-card li {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}

.checkout-panel li::before,
.offer-card li::before,
.subscription-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 999px;
}

.checkout-panel a {
  width: 100%;
}

.checkout-panel p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip,
.intent-section,
.handoff-section,
.why-section,
.offers-section,
.comparison-section,
.subscriptions-section,
.flow-section,
.options-section,
.direct-order-section,
.reassurance-section,
.exclusions-section,
.final-cta-section,
.faq-section {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(13, 20, 36, 0.09);
}

.proof-strip div {
  padding: 22px;
  background: #ffffff;
}

.proof-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  font-size: 17px;
}

.intent-section {
  width: 100%;
  max-width: none;
  padding: 62px max(36px, calc((100% - var(--container)) / 2)) 44px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

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

.intent-grid a {
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.intent-grid span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intent-grid strong {
  font-size: 20px;
  line-height: 1.18;
}

.intent-grid small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.handoff-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px 0 22px;
}

.handoff-section article,
.reassurance-section article {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(13, 20, 36, 0.06);
}

.handoff-section span,
.reassurance-section span {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.handoff-section strong,
.reassurance-section strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.handoff-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.handoff-section li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.handoff-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 999px;
}

.why-section {
  padding: 34px 0 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-grid article {
  padding: 20px;
  background: transparent;
  border: 0;
  border-left: 4px solid rgba(8, 122, 90, 0.28);
  border-radius: var(--radius);
}

.why-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.why-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.offers-section,
.comparison-section,
.subscriptions-section,
.flow-section,
.options-section,
.direct-order-section,
.exclusions-section,
.final-cta-section,
.faq-section {
  padding: 76px 0;
}

.comparison-section {
  width: 100%;
  max-width: none;
  padding: 76px max(36px, calc((100% - var(--container)) / 2));
  background: #eaf4ee;
  border-top: 1px solid rgba(8, 122, 90, 0.12);
  border-bottom: 1px solid rgba(8, 122, 90, 0.12);
}

.subscriptions-section {
  width: 100%;
  max-width: none;
  padding: 76px max(36px, calc((100% - var(--container)) / 2));
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.options-section {
  width: 100%;
  max-width: none;
  padding: 76px max(36px, calc((100% - var(--container)) / 2));
  background:
    linear-gradient(90deg, rgba(8, 122, 90, 0.06), rgba(8, 122, 90, 0) 42%),
    var(--bg);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head .kicker,
.options-section .kicker {
  color: var(--primary);
}

.section-head h2,
.options-section h2 {
  margin-bottom: 10px;
  font-size: 43px;
  line-height: 1.1;
}

.section-head p:not(.kicker) {
  color: var(--muted);
  font-weight: 600;
}

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

.offer-guide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.offer-guide article {
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(8, 122, 90, 0.18);
  border-radius: var(--radius);
}

.offer-guide span {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-guide strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.25;
}

.offer-guide p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

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

.compare-scroll {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 15px 48px rgba(13, 20, 36, 0.06);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: var(--ink);
  font-weight: 800;
}

.compare-table thead th {
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
}

.compare-table td {
  color: var(--muted);
  font-weight: 700;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.mobile-compare {
  display: none;
}

.offer-card {
  position: relative;
  min-width: 0;
  min-height: 392px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 15px 48px rgba(13, 20, 36, 0.07);
}

.subscription-card {
  position: relative;
  min-width: 0;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 15px 48px rgba(13, 20, 36, 0.06);
}

.subscriptions-section .subscription-card {
  background: #f8fbf8;
}

.offer-card.recommended {
  border-color: rgba(8, 122, 90, 0.62);
  box-shadow: 0 22px 70px rgba(8, 122, 90, 0.16);
}

.subscription-card.recommended {
  border-color: rgba(8, 122, 90, 0.62);
  box-shadow: 0 22px 70px rgba(8, 122, 90, 0.14);
}

.offer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.subscription-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.offer-head span {
  font-size: 25px;
  font-weight: 800;
}

.subscription-head span {
  font-size: 23px;
  font-weight: 800;
}

.offer-head strong {
  color: var(--primary);
  font-size: 32px;
  line-height: 1;
  white-space: nowrap;
}

.subscription-head strong {
  color: var(--primary);
  font-size: 30px;
  line-height: 1;
}

.offer-card p {
  color: var(--muted);
  font-weight: 600;
}

.offer-card ul {
  display: grid;
  gap: 11px;
  margin: 12px 0 24px;
  padding: 0;
  list-style: none;
}

.subscription-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card a {
  width: 100%;
  margin-top: auto;
}

.subscription-cta {
  min-height: 46px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 16px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(8, 122, 90, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
}

.subscription-card.recommended .subscription-cta {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.section-pill {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 10px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(8, 122, 90, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.tag {
  position: absolute;
  top: -15px;
  left: 24px;
  padding: 7px 11px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.flow-section {
  width: 100%;
  max-width: none;
  padding: 48px max(36px, calc((100% - var(--container)) / 2));
  color: #ffffff;
  background: var(--dark);
}

.compact-head {
  max-width: 640px;
  margin-bottom: 18px;
}

.flow-section .kicker {
  color: var(--warm);
}

.flow-section .section-head p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.compact-head h2 {
  font-size: 32px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow li {
  min-height: 86px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

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

.flow strong {
  display: block;
}

.flow small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.options-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.options-intro p {
  max-width: 520px;
  color: var(--muted);
  font-weight: 600;
}

.option-groups {
  display: grid;
  gap: 18px;
}

.option-group {
  display: grid;
  gap: 12px;
}

.option-group[open] {
  gap: 12px;
}

.option-group-head {
  position: relative;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  list-style: none;
}

.option-group-head::-webkit-details-marker {
  display: none;
}

.option-group-head::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.option-group[open] .option-group-head::after {
  content: "-";
}

.option-group-body {
  display: grid;
  gap: 12px;
}

.option-group-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-group-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.option-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
  gap: 18px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 15px 48px rgba(13, 20, 36, 0.06);
}

.option-copy {
  min-width: 0;
}

.option-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-copy strong {
  display: block;
  font-size: 20px;
}

.option-copy p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-weight: 600;
}

.option-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.option-copy li {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}

.option-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 999px;
}

.option-cta {
  width: fit-content;
  margin-top: 14px;
}

.option-cta.secondary {
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(8, 122, 90, 0.24);
  box-shadow: none;
}

.option-price {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 16px;
  background: var(--primary-soft);
  border: 1px solid rgba(8, 122, 90, 0.24);
  border-radius: var(--radius);
}

.option-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-price strong {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.08;
}

.inline-price {
  margin: 14px 0 12px;
}

.direct-order-section {
  padding-top: 42px;
}

.direct-order-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 20px;
  align-items: stretch;
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #101820 0%, #0b2a22 100%);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(13, 20, 36, 0.18);
}

.direct-order-copy h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.08;
}

.direct-order-copy p:not(.kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.direct-order-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.direct-order-copy li {
  position: relative;
  padding-left: 18px;
  font-weight: 800;
}

.direct-order-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--warm);
  border-radius: 999px;
}

.direct-order-price {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  color: var(--ink);
  background: #ffffff;
  border-radius: var(--radius);
}

.direct-order-price span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.direct-order-price strong {
  color: var(--primary);
  font-size: 48px;
  line-height: 1;
}

.direct-order-price p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.direct-order-price a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--primary);
  border-radius: var(--radius);
  font-weight: 900;
}

.option-price.wide strong {
  font-size: 19px;
}

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

.option-list article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.option-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-list strong {
  display: block;
  font-size: 18px;
}

.option-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.option-list b {
  max-width: 260px;
  color: var(--primary);
  font-size: 17px;
  line-height: 1.25;
  text-align: right;
}

.reassurance-section {
  padding: 54px 0 18px;
}

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

.reassurance-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

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

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-weight: 600;
}

.exclusions-section {
  padding-top: 36px;
}

.seo-hub-section {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
  padding: 40px 0 34px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.seo-link-grid a {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(8, 122, 90, 0.22);
  border-radius: var(--radius);
}

.seo-link-grid span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-link-grid strong {
  font-size: 16px;
  line-height: 1.25;
}

.exclusion-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.exclusion-list article {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.exclusion-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.exclusion-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.final-cta-section {
  padding: 54px 0 90px;
  text-align: center;
}

.final-cta-section h2 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 42px;
  line-height: 1.1;
}

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

.final-cta-grid a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(8, 122, 90, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
}

.final-cta-grid a.featured {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.final-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 760px;
  margin: 14px auto 0;
}

.final-service-grid a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .topbar nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-cta {
    min-height: 44px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner,
  .proof-strip,
  .intent-grid,
  .offer-grid,
  .offer-guide,
  .subscription-grid,
  .flow,
  .options-section,
  .direct-order-card,
  .direct-order-copy ul {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 92px 0 30px;
    gap: 18px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .checkout-panel {
    max-width: 430px;
  }
}

@media (max-width: 700px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .topbar,
  .proof-strip,
  .intent-section,
  .handoff-section,
  .offers-section,
  .comparison-section,
  .subscriptions-section,
  .flow-section,
  .options-section,
  .direct-order-section,
  .reassurance-section,
  .exclusions-section,
  .seo-hub-section,
  .final-cta-section,
  .faq-section {
    width: min(calc(100% - 40px), var(--container));
  }

  .topbar,
  .hero-inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .topbar {
    color: #ffffff;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .header-cta {
    display: none;
  }

  .header-account {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .lead {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-note {
    font-size: 13px;
  }

  .hero-trust {
    font-size: 13px;
  }

  .hero-actions,
  .offer-head,
  .option-list article {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .checkout-panel a,
  .offer-card a {
    width: 100%;
  }

  .hero-actions,
  .hero-trust,
  .hero-note {
    display: none;
  }

  .checkout-panel,
  .offer-card,
  .subscription-card {
    padding: 22px;
  }

  .checkout-panel.hero-offers {
    padding: 8px;
    gap: 7px;
  }

  .hero-offer-card {
    min-height: 178px;
    padding: 14px 8px 8px;
  }

  .hero-offer-card.featured {
    transform: translateY(-7px);
  }

  .hero-offer-card strong {
    font-size: 22px;
  }

  .hero-offer-card small {
    font-size: 11px;
  }

  .checkout-panel {
    max-width: none;
    width: 100%;
  }

  .proof-strip {
    margin-top: -12px;
  }

  .why-grid,
  .intent-grid,
  .seo-link-grid,
  .exclusion-list,
  .final-cta-grid,
  .final-service-grid {
    grid-template-columns: 1fr;
  }

  .intent-section {
    width: 100%;
    padding: 34px 20px 26px;
  }

  .intent-grid a {
    min-height: 0;
    padding: 16px;
  }

  .why-section {
    padding: 24px 0 34px;
  }

  .section-head h2,
  .options-section h2 {
    font-size: 31px;
  }

  .offers-section,
  .comparison-section,
  .subscriptions-section,
  .options-section,
  .direct-order-section,
  .exclusions-section,
  .faq-section {
    padding: 48px 0;
  }

  .comparison-section,
  .subscriptions-section,
  .options-section,
  .flow-section {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .offer-guide {
    margin-bottom: 18px;
  }

  .handoff-section,
  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .handoff-section {
    padding: 10px 0 20px;
  }

  .compact-head h2 {
    font-size: 27px;
  }

  .compare-scroll {
    display: none;
  }

  .mobile-compare {
    display: grid;
    gap: 10px;
  }

  .mobile-compare details {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .mobile-compare details[open] {
    border-color: rgba(8, 122, 90, 0.3);
    box-shadow: 0 14px 34px rgba(13, 20, 36, 0.08);
  }

  .mobile-compare summary {
    min-height: 62px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 14px 16px;
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
  }

  .mobile-compare summary small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-compare details[open] summary span {
    color: var(--primary);
  }

  .mobile-compare summary::-webkit-details-marker {
    display: none;
  }

  .mobile-compare ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
    font-weight: 700;
    list-style-position: inside;
  }

  .flow-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .flow {
    gap: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
  }

  .flow li {
    display: grid;
    grid-template-columns: 31px 1fr;
    column-gap: 10px;
    min-height: 0;
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  .flow li:last-child {
    border-bottom: 0;
  }

  .flow span {
    grid-row: 1 / 3;
    width: 27px;
    height: 27px;
    margin: 0;
    font-size: 13px;
  }

  .flow small {
    margin-top: 2px;
    font-size: 12px;
  }

  .option-list b {
    max-width: none;
    text-align: left;
  }

  .options-section {
    gap: 20px;
  }

  .option-group-head {
    padding: 14px;
  }

  .option-group-head::after {
    top: 14px;
    right: 14px;
  }

  .option-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .option-price {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 7px 12px;
    padding: 14px;
  }

  .option-price strong {
    font-size: 18px;
  }

  .option-price.wide strong {
    font-size: 16px;
  }

  .option-price.wide {
    grid-template-columns: 1fr;
  }

  .option-cta {
    width: 100%;
  }

  .direct-order-section {
    padding-top: 18px;
  }

  .direct-order-card {
    padding: 22px;
  }

  .direct-order-copy h2 {
    font-size: 31px;
  }

  .direct-order-price strong {
    font-size: 40px;
  }

  .exclusions-section {
    padding-top: 22px;
  }

  .final-cta-section {
    padding: 42px 0 110px;
    text-align: left;
  }

  .final-cta-section h2 {
    font-size: 31px;
  }

  .sticky-mobile-cta {
    position: fixed;
    z-index: 20;
    right: 16px;
    bottom: 12px;
    left: 16px;
    display: block;
    padding: 7px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(13, 20, 36, 0.22);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .sticky-mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-mobile-cta a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: var(--radius);
    font-weight: 800;
  }
}
