:root {
  --bg: #ffffff;
  --text: #13202f;
  --muted: #647184;
  --line: #dbe4ef;
  --soft: #f3f8fc;
  --soft-green: #edf8f3;
  --blue: #0b63ce;
  --blue-dark: #064b9f;
  --green: #15915f;
  --green-dark: #0e7048;
  --shadow: 0 18px 55px rgba(13, 53, 92, 0.12);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(11, 99, 206, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 239, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 400;
  white-space: nowrap;
}

.header-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 8px;
}

.header-services a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-services a:hover {
  color: var(--blue);
  border-color: #cfe5ff;
  background: #f5fbff;
}

.brand-word {
  color: var(--blue);
  font-size: 21px;
  letter-spacing: 0;
}

.brand-word strong {
  font-weight: 900;
}

.header-cta,
.secondary-button,
.primary-link,
.ghost-button,
.sticky-pay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.secondary-button {
  color: var(--blue);
  background: #eef6ff;
  border: 1px solid #cfe5ff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px) 48px;
  background:
    linear-gradient(120deg, rgba(11, 99, 206, 0.06), rgba(21, 145, 95, 0.08) 58%, #fff 58%),
    #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.45;
}

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

.trust-inline span {
  padding: 10px 13px;
  color: #19425f;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16, 73, 121, 0.06);
  font-size: 14px;
  font-weight: 800;
}

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

.ghost-button {
  min-width: 176px;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid #c7d8ea;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(16, 73, 121, 0.06);
}

.ghost-button:hover {
  border-color: var(--blue);
  background: #f6fbff;
}

.calculator {
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.calculator h2 {
  margin: 0;
  font-size: 28px;
}

.rate {
  color: var(--green-dark);
  white-space: nowrap;
}

label {
  display: block;
  margin: 18px 0 8px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid #bfd0e1;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  outline: none;
}

input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.12);
}

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

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

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

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

.primary-button,
.primary-link {
  width: 100%;
  min-height: 58px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(21, 145, 95, 0.26);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 900;
}

.primary-button:hover,
.primary-link:hover {
  background: var(--green-dark);
}

.primary-button:disabled {
  color: #8290a0;
  background: #e6edf4;
  box-shadow: none;
  cursor: not-allowed;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.trust-grid div,
.feature-grid article,
.steps article {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.content-section {
  padding: 62px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.bridge-cta {
  padding: 0 clamp(18px, 5vw, 72px) 54px;
  background: linear-gradient(120deg, rgba(11, 99, 206, 0.06), rgba(21, 145, 95, 0.08) 58%, #fff 58%);
}

.bridge-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px 22px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(11, 99, 206, 0.24);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  text-align: center;
}

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

.bridge-cta p {
  max-width: 1120px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.content-section.compact,
.pay-now {
  background: #fbfdff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

.feature-grid h3,
.steps h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

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

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

.snippet-grid article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.snippet-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.icon-dot {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  background:
    linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
}

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

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

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

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

.receive-action p {
  max-width: 960px;
  margin: 0;
  padding: 18px;
  color: var(--text);
  background: var(--soft-green);
  border: 1px solid #ccebdc;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
}

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

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

.receive-action .secondary-button {
  width: min(100%, 320px);
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

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

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

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.reason-list div {
  min-height: 84px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
}

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

.faq summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

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

.final-cta {
  margin: 0 clamp(18px, 5vw, 72px) 86px;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background: linear-gradient(135deg, #0a5ab9, #138153);
  border-radius: 8px;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta p {
  max-width: 620px;
  margin: 16px 0 24px;
}

.primary-link {
  width: min(100%, 360px);
  background: #fff;
  color: var(--green-dark);
  box-shadow: none;
}

.primary-link:hover {
  background: #ecfff6;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(260px, 1fr) minmax(220px, 0.75fr);
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(34px, 5vw, 54px) clamp(18px, 5vw, 72px);
  color: var(--text);
  background: #fbfdff;
  border-top: 1px solid var(--line);
  text-align: left;
}

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

.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;
  line-height: 1.2;
}

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

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

.company-proof li {
  position: relative;
  padding-left: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.company-proof li::before {
  position: static;
  margin-right: 7px;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.footer-brand {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
}

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

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

.site-footer nav a {
  padding: 6px 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

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

.legal-page {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.legal-page article {
  max-width: 920px;
}

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

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

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

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

.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: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.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: 800;
}

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

.cookie-button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

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

.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: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 34px rgba(13, 53, 92, 0.12);
  backdrop-filter: blur(14px);
}

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

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

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

.sticky-pay a {
  min-width: 152px;
  color: #fff;
  background: var(--green);
}

.sticky-pay a[aria-disabled="true"] {
  color: #8290a0;
  background: #e6edf4;
}

.checkout-dialog,
.example-dialog,
.contact-dialog {
  width: min(92vw, 520px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-dialog::backdrop,
.example-dialog::backdrop,
.contact-dialog::backdrop {
  background: rgba(11, 31, 54, 0.48);
}

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

.checkout-panel h2 {
  margin-bottom: 22px;
  font-size: 30px;
}

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

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

.contact-panel label {
  color: var(--text);
  font-weight: 900;
}

.contact-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-panel input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(20, 112, 214, 0.15);
}

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

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

.form-status.is-error {
  color: #b42318;
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  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(--line);
}

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

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

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

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

.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(--line);
}

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

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

.dialog-download {
  width: 100%;
  background: var(--green);
  color: #fff;
}

.dialog-download:hover {
  background: var(--green-dark);
}

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

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

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

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

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

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

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

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

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-services {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-services a {
    flex: 0 0 auto;
  }

  .hero {
    padding: 30px 16px;
  }

  .hero-actions {
    display: grid;
  }

  .ghost-button {
    width: 100%;
  }

  h1 {
    font-size: 38px;
  }

  .calculator {
    padding: 18px;
  }

  .calculator-head {
    display: block;
  }

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

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

  .content-section {
    padding: 44px 16px;
  }

  .bridge-cta {
    padding: 0 16px 36px;
  }

  .bridge-cta a {
    min-height: 68px;
  }

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

  .secondary-button {
    width: 100%;
  }

  .final-cta {
    margin: 0 16px 28px;
  }

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

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

  .cookie-button {
    width: 100%;
  }

  .sticky-pay {
    display: flex;
  }

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

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