:root {
  --font-main: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --background: #ffffff;
  --background-soft: #f8fafc;
  --surface: #ffffff;
  --surface-subtle: #f1f5f9;
  --border: #e5e7eb;
  --border-strong: #cbd5e1;
  --text: #111827;
  --muted: #4b5563;
  --soft-text: #64748b;
  --navy: #172554;
  --navy-hover: #0f1e46;
  --navy-border: #0b1637;
  --blue: #1e3a8a;
  --focus: #2563eb;
  --pink: #dc147f;
  --pink-hover: #be0f6d;
  --pink-soft: #fdf2f8;
  --pink-border: #f9a8d4;
  --green: #15803d;
  --green-hover: #166534;
  --green-soft: #ecfdf5;
  --green-border: #bbf7d0;
  --danger: #b42318;
  --radius: 8px;
  --container: 1180px;
  --shadow-button: 0 10px 22px rgba(17, 24, 39, 0.12);
  --shadow-button-hover: 0 14px 28px rgba(17, 24, 39, 0.16);
  --shadow-card: 0 18px 44px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 12px 28px rgba(17, 24, 39, 0.06);
  font-family: var(--font-main);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.34);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(24px, calc((100% - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand-word {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.footer-brand {
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

.footer-brand strong {
  font-weight: 800;
}

.brand-dot {
  width: 7px;
  height: 7px;
  margin-top: 8px;
  background: var(--pink);
  border-radius: 50%;
}

.header-services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  scrollbar-width: none;
}

.header-services::-webkit-scrollbar {
  display: none;
}

.header-services a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 11px;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.header-services a:hover {
  color: var(--navy);
  background: var(--surface-subtle);
}

.header-cta,
.secondary-button,
.primary-link,
.ghost-button,
.sticky-pay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 750;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-cta,
.secondary-button {
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border-strong);
}

.header-cta:hover,
.secondary-button:hover,
.ghost-button:hover {
  color: var(--navy);
  background: var(--surface-subtle);
  border-color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 88px) 24px 58px;
}

main {
  overflow: hidden;
  background: var(--background);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 11px;
  color: var(--pink-hover);
  background: var(--pink-soft);
  border: 1px solid var(--pink-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

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

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.5vw, 66px);
  font-weight: 650;
  line-height: 1.02;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.ghost-button {
  min-width: 176px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-inline span {
  padding: 9px 12px;
  color: var(--green-hover);
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.calculator {
  padding: clamp(24px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

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

.calculator h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.15;
}

.rate {
  color: var(--green-hover);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

label {
  display: block;
  margin: 18px 0 8px;
  color: var(--text);
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  outline: none;
}

textarea {
  width: 100%;
  min-height: 112px;
  padding: 13px 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  outline: none;
  resize: vertical;
}

input:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 16px;
  padding: 18px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
}

.price-row span {
  color: var(--muted);
  font-weight: 650;
}

.price-row small {
  display: block;
  margin-top: 5px;
  color: var(--green-hover);
  font-size: 13px;
  font-weight: 700;
}

.price-row strong {
  color: var(--green-hover);
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.primary-button,
.primary-link {
  width: 100%;
  min-height: 56px;
  color: #ffffff;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-button);
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
}

.primary-button:hover,
.primary-link:hover {
  color: #ffffff;
  background: var(--navy-hover);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-1px);
}

.primary-button:disabled {
  color: #94a3b8;
  background: #e2e8f0;
  border-color: #e2e8f0;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.trust-note {
  margin: 13px 0 0;
  color: var(--soft-text);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.trust-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-grid article,
.steps article {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bridge-cta,
.content-section,
.final-cta,
.site-footer {
  padding-right: max(24px, calc((100% - var(--container)) / 2));
  padding-left: max(24px, calc((100% - var(--container)) / 2));
}

.bridge-cta {
  padding-top: 24px;
  padding-bottom: 56px;
  background: var(--background-soft);
  border-top: 1px solid var(--border);
}

.bridge-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 22px;
  color: #ffffff;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-button);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  text-align: center;
}

.bridge-cta a:hover {
  background: var(--navy-hover);
}

.bridge-cta p {
  max-width: 960px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.bridge-cta strong,
.receive-action .legal-note strong {
  color: var(--text);
  font-weight: 750;
}

.content-section {
  padding-top: 68px;
  padding-bottom: 68px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.content-section:nth-of-type(even),
.content-section.compact,
.pay-now,
.faq {
  background: var(--background-soft);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 650;
  line-height: 1.1;
}

.feature-grid,
.steps,
.snippet-grid,
.reason-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid h3,
.steps h3,
.snippet-grid h3 {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-grid p,
.steps p,
.snippet-grid p,
.split-list p,
.final-cta p {
  color: var(--muted);
  line-height: 1.6;
}

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

.snippet-grid article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.icon-dot {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  background: var(--pink-soft);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius);
}

.icon-dot::after {
  width: 10px;
  height: 10px;
  margin: auto;
  background: var(--pink);
  border-radius: 50%;
  content: "";
}

.section-cta,
.split-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.section-cta strong {
  font-size: 20px;
  font-weight: 700;
}

.pay-now .section-cta {
  display: grid;
  justify-items: center;
  width: min(100%, 720px);
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.pay-now .section-cta .secondary-button {
  width: fit-content;
  min-width: 320px;
}

.receive-action {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 28px;
  text-align: center;
}

.receive-action p {
  max-width: 960px;
  margin: 0;
  padding: 18px;
  color: var(--text);
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  line-height: 1.55;
}

.receive-action .legal-note {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.receive-action .secondary-button {
  width: min(100%, 320px);
  cursor: pointer;
}

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

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  color: #ffffff;
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 750;
}

.reason-list div {
  min-height: 86px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  font-weight: 650;
  line-height: 1.4;
}

.faq details {
  max-width: 920px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.faq summary {
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
  color: #ffffff;
  background: var(--navy);
}

.final-cta > * {
  max-width: var(--container);
}

.final-cta h2 {
  max-width: 820px;
  color: #ffffff;
}

.final-cta .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.final-cta p {
  max-width: 680px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .primary-link {
  width: min(100%, 360px);
  color: var(--navy);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

.final-cta .primary-link:hover {
  color: var(--navy);
  background: var(--pink-soft);
  border-color: var(--pink-border);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(260px, 1fr) minmax(220px, 0.75fr);
  gap: clamp(24px, 4vw, 48px);
  padding-top: 48px;
  padding-bottom: 48px;
  color: var(--text);
  background: var(--background-soft);
  border-top: 1px solid var(--border);
}

.site-footer p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-company,
.footer-proof,
.footer-links {
  display: grid;
  justify-items: start;
  align-content: start;
  min-width: 0;
}

.footer-proof h2,
.footer-links h2 {
  margin: 2px 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.company-details {
  margin-top: 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.company-proof {
  display: grid;
  gap: 9px;
  max-width: 560px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.company-proof li {
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.company-proof li::before {
  margin-right: 7px;
  color: var(--green);
  content: "\2713";
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  justify-items: start;
  gap: 6px;
}

.site-footer nav a {
  padding: 5px 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.site-footer nav a:hover {
  color: var(--pink-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 6vw, 72px) max(24px, calc((100% - var(--container)) / 2));
  background: var(--background-soft);
}

.legal-page article {
  max-width: 920px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 650;
  line-height: 1.06;
}

.legal-page h2 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 650;
}

.legal-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-page a:not(.brand):not(.secondary-button) {
  color: var(--blue);
  font-weight: 700;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 36px), 620px);
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-consent a {
  color: var(--blue);
  font-weight: 700;
}

.cookie-button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
}

.cookie-button:hover {
  background: var(--navy-hover);
}

.sticky-pay {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 25;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(14px);
}

.sticky-pay span,
.sticky-pay strong {
  display: block;
}

.sticky-pay span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.sticky-pay strong {
  color: var(--green-hover);
  font-size: 22px;
}

.sticky-pay a {
  min-width: 152px;
  color: #ffffff;
  background: var(--navy);
  border: 1px solid var(--navy-border);
}

.sticky-pay a[aria-disabled="true"] {
  color: #94a3b8;
  background: #e2e8f0;
  border-color: #e2e8f0;
}

.checkout-dialog,
.example-dialog,
.contact-dialog {
  width: min(92vw, 520px);
  padding: 0;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-dialog {
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
}

.checkout-dialog::backdrop,
.example-dialog::backdrop,
.contact-dialog::backdrop {
  background: rgba(15, 30, 70, 0.58);
  backdrop-filter: blur(3px);
}

.checkout-panel {
  position: relative;
  padding: 30px;
}

.checkout-panel h2 {
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.15;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel h2 {
  margin-bottom: 8px;
}

.contact-panel label {
  margin: 5px 0 0;
  color: var(--text);
  font-weight: 700;
}

.contact-panel input,
.contact-panel textarea {
  min-height: 52px;
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.form-status.is-success {
  color: var(--green-hover);
}

.form-status.is-error {
  color: var(--danger);
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 24px;
}

.order-summary {
  margin: 0 0 22px;
}

.order-summary div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.order-summary dt {
  color: var(--muted);
  font-weight: 650;
}

.order-summary dd {
  max-width: 260px;
  margin: 0;
  text-align: right;
  font-weight: 750;
}

.example-dialog {
  width: min(94vw, 680px);
}

.example-table-wrap {
  overflow-x: auto;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.example-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  text-align: left;
}

.example-table th,
.example-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.example-table th {
  color: var(--muted);
  background: var(--surface-subtle);
  font-size: 13px;
  text-transform: uppercase;
}

.example-table tr:last-child td {
  border-bottom: 0;
}

.dialog-download {
  width: 100%;
}

.success-screen {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(248, 250, 252, 0.97);
}

.success-screen[hidden] {
  display: none;
}

.success-card {
  width: min(100%, 560px);
  padding: clamp(26px, 5vw, 44px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.success-card h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 650;
  line-height: 1.1;
}

.success-card p {
  color: var(--muted);
}

.success-card .secondary-button {
  margin-top: 12px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .header-services a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 34px;
  }
}

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

  .calculator {
    width: min(100%, 680px);
  }

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

  .header-services {
    justify-content: flex-end;
    overflow-x: auto;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 118px;
  }

  body {
    padding-bottom: 76px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 11px 16px 8px;
  }

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

  .header-services {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 3px;
  }

  .header-services a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 9px;
    background: var(--background-soft);
  }

  .hero {
    gap: 30px;
    padding: 34px 16px 38px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 39px;
    line-height: 1.04;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .ghost-button {
    width: 100%;
  }

  .trust-inline {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .trust-inline span {
    width: fit-content;
    max-width: 100%;
  }

  .calculator {
    padding: 20px 18px;
  }

  .calculator-head {
    display: block;
  }

  .calculator h2 {
    font-size: 25px;
  }

  .rate {
    display: block;
    margin-top: 8px;
  }

  .price-row {
    align-items: flex-end;
    padding: 16px;
  }

  .price-row strong {
    font-size: 34px;
  }

  .feature-grid,
  .steps,
  .snippet-grid,
  .reason-list {
    grid-template-columns: 1fr;
  }

  .bridge-cta,
  .content-section,
  .final-cta,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .bridge-cta {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .bridge-cta a {
    min-height: 64px;
    padding: 15px;
    font-size: 20px;
  }

  .content-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

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

  .section-cta,
  .split-list {
    display: grid;
  }

  .secondary-button {
    width: 100%;
  }

  .pay-now .section-cta {
    padding: 22px 18px;
  }

  .pay-now .section-cta .secondary-button {
    width: 100%;
    min-width: 0;
  }

  .final-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .legal-page {
    padding: 24px 16px 48px;
  }

  .legal-page article {
    padding: 22px 18px;
  }

  .legal-page p {
    font-size: 16px;
  }

  .cookie-consent {
    right: 12px;
    bottom: 86px;
    left: 12px;
    display: grid;
    width: auto;
  }

  .cookie-button {
    width: 100%;
  }

  .sticky-pay {
    display: flex;
  }

  .sticky-pay a {
    min-width: 140px;
  }

  .checkout-panel {
    padding: 26px 20px 22px;
  }

  .checkout-panel h2 {
    padding-right: 30px;
    font-size: 27px;
  }

  .order-summary div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .order-summary dd {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
