:root {
  color-scheme: light;
  --bg: #FFFFFF;
  --panel: #FFFFFF;
  --panel-alt: #F6F8FB;
  --border: #E3E8EF;
  --border-strong: #667085;
  --text: #16213A;
  --muted: #667085;
  --green: #0C8F4F;
  --green-dark: #087A43;
  --green-soft: #EAF7F0;
  --focus: #0C8F4F;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -20%, rgba(34, 160, 75, 0.18), transparent 42rem),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 12, 16, 0.92);
}

.brand {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 1rem;
}

.site-header nav a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--text);
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.page-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.eyebrow,
.step-label {
  margin: 0 0 0.45rem;
  color: #67d78a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-intro > p:last-child {
  margin-bottom: 0;
  color: #bac6cf;
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.7;
}

.checkout-layout {
  display: grid;
  gap: 2rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.text-button {
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
}

.text-button:hover {
  color: var(--text);
}

.service-grid {
  display: grid;
  gap: 0.85rem;
}

.service-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--panel-alt);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.service-option:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.service-option:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px rgba(34, 160, 75, 0.2);
}

.service-option input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.15rem 0 0;
  accent-color: var(--green);
}

.service-option h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.service-option p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.recommended-badge {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(34, 160, 75, 0.2);
  color: #8de5a8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-panel {
  align-self: start;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: rgba(17, 24, 32, 0.96);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.25);
}

.order-panel h2 {
  margin-bottom: 1.25rem;
}

.empty-selection {
  padding: 1rem;
  border: 1px dashed var(--border-strong);
  border-radius: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.selected-services {
  display: grid;
  gap: 0.85rem;
}

.selected-service {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.selected-service h3 {
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.selected-service p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.bundle-callout {
  margin-top: 1.25rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(12, 143, 79, 0.35);
  border-radius: 0.85rem;
  background: var(--green-soft);
}

.bundle-callout[hidden] { display: none; }

.bundle-label {
  margin: 0 0 0.35rem;
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bundle-prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0;
}

.bundle-was {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: line-through;
}

.bundle-now {
  color: #0B1F4D;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bundle-now span { font-size: 0.82rem; font-weight: 700; }

.bundle-save {
  display: inline-flex;
  margin: 0.55rem 0 0;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(12, 143, 79, 0.14);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-summary {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}

.pricing-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-summary dt {
  color: var(--muted);
  font-size: 0.85rem;
}

.pricing-summary dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.pricing-summary .due-today {
  align-items: center;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.pricing-summary .due-today dt,
.pricing-summary .due-today dd {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.future-billing {
  margin: 0.55rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.no-setup-note {
  margin: 0.55rem 0 0;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
}

.checkout-button {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 0.7rem;
  background: var(--green);
  color: white;
  cursor: pointer;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.checkout-button:hover:not(:disabled) {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.checkout-button[aria-busy="true"] {
  cursor: wait;
}

.checkout-status {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  color: #fca5a5;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.secure-note,
.terms-note {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.secure-note {
  margin: 0.15rem 0 0.55rem;
}

.terms-note {
  margin-bottom: 0;
}

.terms-note a {
  color: #c7d2da;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

footer span:last-child {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 700px) {
  .site-header {
    padding: 1rem 2rem;
  }

  main {
    width: min(1180px, calc(100% - 4rem));
  }

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

  footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    text-align: left;
  }
}

@media (min-width: 980px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 2.5rem;
  }

  .order-panel {
    position: sticky;
    top: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body{background:radial-gradient(circle at 50% -20%,rgba(12,143,79,.08),transparent 42rem),var(--bg);color:var(--text)}
.site-header{background:rgba(255,255,255,.92);border-bottom-color:var(--border)}
.brand{color:#0B1F4D}
.site-header nav a{color:#0B1F4D}
.site-header nav a:hover{color:#0C8F4F}
h1,h2,.selected-service h3,.service-option h3{color:#0B1F4D}
.eyebrow,.step-label{color:#087A43}
.page-intro > p:last-child{color:#667085}
.recommended-badge{background:#EAF7F0;color:#087A43}
.service-option:has(input:checked){box-shadow:inset 0 0 0 1px rgba(12,143,79,.25)}
.order-panel{background:#FFFFFF}
.checkout-button{background:#12A85A}
.checkout-button:hover:not(:disabled){background:#087A43}
.checkout-status{color:#B42318}
.terms-note a{color:#087A43}
footer{background:transparent;border-top-color:#E3E8EF;color:#667085}
