:root {
  color-scheme: light;
  --ink: #10241d;
  --ink-soft: #4a6057;
  --green-950: #08261d;
  --green-900: #0b3327;
  --green-800: #124c3a;
  --green-700: #17664d;
  --green-600: #1e7a5c;
  --green-200: #bfe8d8;
  --green-100: #ddf4eb;
  --green-50: #effaf6;
  --paper: #ffffff;
  --soft: #f4f7f5;
  --line: #d9e4df;
  --warm: #f3e5bf;
  --shadow: 0 24px 70px rgba(8, 38, 29, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e1a82e;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 228, 223, .8);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--green-950);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.brand-icon {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}

.nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  color: var(--green-700);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--green-800);
  color: var(--paper);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.button:hover {
  border-color: var(--green-700);
  background: var(--green-700);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 14px;
}

.button-outline {
  background: transparent;
  color: var(--green-900);
}

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

.button-block {
  width: 100%;
}

.hero {
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 85% 20%, rgba(191, 232, 216, .8), transparent 28%),
    linear-gradient(180deg, #fbfdfc, #fff);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #8be5c1;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.2vw, 50px);
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 32px;
}

.text-link {
  color: var(--green-800);
  font-weight: 800;
  text-underline-offset: 5px;
}

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

.fact-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.key-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(23, 102, 77, .18);
  border-radius: 50%;
}

.orbit-one {
  width: 480px;
  height: 480px;
}

.orbit-two {
  width: 330px;
  height: 330px;
  border-style: dashed;
}

.key-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  background: var(--green-950);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.key-card-top {
  position: relative;
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #58e2ad;
  box-shadow: 0 0 0 5px rgba(88, 226, 173, .13);
}

.key-state {
  margin-left: auto;
  color: #9ce9ca;
}

.offer-price-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .13);
}

.offer-price-list div {
  display: flex;
  gap: 20px;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px;
  background: rgba(255, 255, 255, .07);
}

.offer-price-list span {
  color: #c2d7cf;
  font-size: 14px;
}

.offer-price-list strong {
  font-size: 24px;
  letter-spacing: -.035em;
}

.offer-note {
  margin: 20px 0 0;
  color: #c2d7cf;
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 96px 0;
}

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

.section-heading {
  max-width: 700px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.centered {
  margin: 0 auto 50px;
  text-align: center;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.split-heading h2 {
  margin-bottom: 0;
}

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

.card-label,
.tariff-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.tariff-card {
  position: relative;
  display: flex;
  min-height: 560px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  flex-direction: column;
  background: var(--paper);
}

.tariff-featured {
  border: 2px solid var(--green-700);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.popular-label {
  position: static;
  max-width: 100%;
  align-self: flex-end;
  margin: -8px 0 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}

.tariff-kicker {
  min-height: 32px;
  margin-bottom: 15px;
  letter-spacing: .07em;
}

.price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 24px 0 26px;
}

.price strong {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.05em;
}

.price span {
  color: var(--ink-soft);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: .2em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.tariff-card .button {
  width: 100%;
  margin-top: auto;
}

.terms-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.terms-strip span {
  padding: 18px;
  background: var(--soft);
  color: var(--ink-soft);
  font-size: 13px;
}

.payment-section {
  background: var(--green-950);
  color: var(--paper);
}

.purchase-heading {
  max-width: 820px;
}

.purchase-heading h2,
.purchase-heading > p:last-child {
  color: var(--paper);
}

.purchase-heading > p:last-child {
  color: #c2d7cf;
}

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

.purchase-flow li {
  display: grid;
  min-height: 148px;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .06);
}

.purchase-flow li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-950);
  font-weight: 900;
}

.purchase-flow strong {
  display: block;
  margin-bottom: 7px;
  color: var(--paper);
  font-size: 17px;
}

.purchase-flow p {
  margin: 0;
  color: #b8d0c7;
  font-size: 13px;
  line-height: 1.5;
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: 72px;
  align-items: start;
}

.payment-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #c2d7cf;
  font-size: 19px;
}

.payment-copy h3 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: clamp(30px, 3.7vw, 46px);
}

.payment-reason {
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(139, 229, 193, .2);
  border-radius: var(--radius-md);
  background: rgba(139, 229, 193, .08);
}

.payment-reason strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
}

.payment-reason p {
  margin: 0;
  color: #c2d7cf;
  font-size: 14px;
}

.phone-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
}

.phone-panel > span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--warm);
  color: #4d3b0b;
  font-size: 11px;
  font-weight: 900;
}

.phone-panel strong {
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -.025em;
}

.copy-button {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.payment-checklist {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.payment-checklist li {
  position: relative;
  padding-left: 27px;
  color: #c2d7cf;
}

.payment-checklist li::before {
  position: absolute;
  top: .25em;
  left: 0;
  color: #8be5c1;
  content: "✓";
  font-weight: 900;
}

.payment-clarification {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #c2d7cf;
  font-size: 13px;
}

.payment-clarification strong {
  color: var(--paper);
}

.order-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .24);
}

.order-card h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.5vw, 42px);
}


form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cddbd5;
  border-radius: 10px;
  background: #fbfdfc;
  color: var(--ink);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-600);
  outline: 3px solid rgba(30, 122, 92, .15);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-hint {
  margin: -2px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-result {
  min-height: 0;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: connect;
}

.connect-grid li {
  min-height: 250px;
  padding: 24px;
  border-top: 3px solid var(--green-700);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--soft);
}

.connect-grid li > span {
  display: block;
  margin-bottom: 50px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.connect-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.download-panel {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--green-800);
  color: var(--paper);
}

.download-panel h3,
.download-panel p {
  margin-bottom: 7px;
}

.download-panel p {
  max-width: 730px;
  color: #d6eee5;
}

.download-panel .card-label {
  color: #9ce9ca;
}

.download-links {
  display: flex;
  max-width: 520px;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.download-links a {
  display: inline-flex;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.download-links a:hover {
  background: var(--green-100);
}

.section-context-link {
  margin: 22px 0 0;
  text-align: right;
}

.section-context-link a {
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.subpage-hero {
  padding: 58px 0 80px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 10%, rgba(191, 232, 216, .72), transparent 30%),
    linear-gradient(180deg, var(--green-50), var(--paper));
}

.breadcrumbs {
  margin-bottom: 48px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  color: #89a098;
  content: "→";
}

.breadcrumbs a {
  color: var(--green-800);
  font-weight: 750;
  text-underline-offset: 3px;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 72px;
  align-items: center;
}

.supporting-page h1 {
  max-width: 850px;
  font-size: clamp(42px, 5.4vw, 66px);
}

.subpage-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.key-explainer-card {
  padding: 30px;
  border: 1px solid rgba(23, 102, 77, .2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.key-explainer-card code {
  display: block;
  overflow: hidden;
  margin: 22px 0;
  padding: 17px 18px;
  border-radius: var(--radius-sm);
  background: var(--green-950);
  color: #9ce9ca;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.key-explainer-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.content-section {
  padding: 88px 0;
}

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

.simple-flow li {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.simple-flow li > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
}

.simple-flow p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.info-split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}

.info-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(8, 38, 29, .08);
}

.info-card > p {
  color: var(--ink-soft);
}

.safe-key-example {
  display: grid;
  gap: 8px;
  margin: 25px 0;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--green-950);
}

.safe-key-example span {
  color: #9ce9ca;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.safe-key-example code {
  overflow-wrap: anywhere;
  color: var(--paper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(17px, 2.2vw, 22px);
}

.small-note {
  margin-bottom: 0;
  font-size: 13px;
}

.compact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 38px 0 28px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  list-style: none;
  counter-reset: compact-step;
}

.compact-steps li {
  position: relative;
  min-height: 150px;
  padding: 28px;
  background: var(--soft);
  counter-increment: compact-step;
}

.compact-steps li::before {
  display: block;
  margin-bottom: 18px;
  color: var(--green-700);
  content: counter(compact-step, decimal-leading-zero);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.compact-steps strong,
.compact-steps span {
  display: block;
}

.compact-steps span {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 14px;
}

.supporting-downloads {
  margin-top: 28px;
}

.commercial-support {
  background: var(--green-950);
  color: var(--paper);
}

.commercial-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  gap: 80px;
  align-items: center;
}

.commercial-support h2 {
  color: var(--paper);
}

.commercial-support p:not(.eyebrow) {
  max-width: 680px;
  color: #c2d7cf;
  font-size: 18px;
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--green-900);
}

.button-light:hover {
  border-color: var(--green-100);
  background: var(--green-100);
  color: var(--green-950);
}

.compact-prices {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .14);
}

.compact-prices div {
  display: flex;
  gap: 22px;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255, 255, 255, .07);
}

.compact-prices span {
  color: #c2d7cf;
}

.compact-prices strong {
  color: var(--paper);
  font-size: 24px;
}

.compact-faq-grid {
  align-items: start;
}

.legal-hero {
  padding-bottom: 68px;
}

.legal-hero h1 {
  max-width: 900px;
}

.document-date {
  margin: 24px 0 0;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
}

.legal-content {
  max-width: 880px;
}

.privacy-summary {
  margin-bottom: 36px;
  padding: 26px 28px;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  background: var(--green-100);
}

.privacy-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: 18px;
}

.privacy-summary p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.legal-section:last-child {
  padding-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3.2vw, 36px);
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  padding-left: 24px;
}

.legal-section a {
  color: var(--green-800);
  font-weight: 750;
  text-underline-offset: 3px;
}

.numbered-terms .legal-section h2 {
  display: flex;
  gap: 13px;
  align-items: center;
}

.numbered-terms .legal-section h2 > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 15px;
  letter-spacing: 0;
}

.troubleshooting-grid,
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

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

.trouble-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.trouble-list article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
}

.trouble-list .support-policy {
  border-color: var(--green-200);
  background: var(--green-100);
}

.trouble-list .support-policy > span {
  background: var(--green-800);
  color: var(--paper);
}

.trouble-list h3,
.trouble-list p {
  margin-bottom: 5px;
}

.trouble-list p {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 24px 44px 24px 0;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--green-700);
  content: "+";
  font-size: 25px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 690px;
  padding: 0 44px 22px 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 54px 0;
  background: #061b15;
  color: #c8ddd5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 50px;
  align-items: start;
}

.brand-light {
  color: var(--paper);
}

.footer-grid > div p {
  max-width: 480px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-grid nav a {
  color: #dff5ec;
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.footer-meta {
  margin: 0;
  color: #90aaa0;
  font-size: 12px;
  text-align: right;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .key-visual {
    min-height: 450px;
  }

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

  .tariff-card:last-child {
    grid-column: 1 / -1;
  }

  .purchase-flow {
    grid-template-columns: 1fr 1fr;
  }

  .tariff-featured {
    transform: none;
  }

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

  .troubleshooting-grid,
  .faq-grid,
  .subpage-hero-grid,
  .info-split,
  .commercial-support-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .key-explainer-card,
  .compact-prices {
    max-width: 620px;
  }
}

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

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand {
    gap: 7px;
    font-size: 14px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .site-header .button-small {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 60px 0 48px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions,
  .download-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .key-visual {
    min-height: 390px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    width: 270px;
    height: 270px;
  }

  .key-card {
    padding: 21px;
  }

  .section {
    padding: 68px 0;
  }

  .subpage-hero {
    padding: 34px 0 58px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .supporting-page h1 {
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .legal-page h1 {
    font-size: clamp(32px, 9vw, 38px);
    text-wrap: wrap;
  }

  .content-section {
    padding: 64px 0;
  }

  .split-heading,
  .tariff-grid,
  .terms-strip,
  .purchase-flow,
  .connect-grid,
  .simple-flow,
  .compact-steps,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 22px;
  }

  .tariff-card:last-child {
    grid-column: auto;
  }

  .tariff-card {
    min-height: auto;
  }

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

  .terms-strip {
    gap: 1px;
  }

  .payment-grid {
    gap: 48px;
  }

  .phone-panel {
    grid-template-columns: 1fr auto;
  }

  .phone-panel > span {
    width: max-content;
  }

  .phone-panel strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .copy-button {
    grid-column: 2;
    grid-row: 1;
  }

  .order-card,
  .download-panel,
  .key-explainer-card,
  .info-card {
    padding: 24px;
  }

  .simple-flow li {
    min-height: 0;
  }

  .simple-flow li > span {
    margin-bottom: 26px;
  }

  .compact-steps li {
    min-height: 0;
  }

  .section-context-link {
    text-align: left;
  }

  .commercial-support-grid {
    gap: 42px;
  }

  .legal-section {
    padding: 32px 0;
  }

  .download-links {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .connect-grid li {
    min-height: 0;
  }

  .connect-grid li > span {
    margin-bottom: 26px;
  }

  .footer-meta {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}


.button:disabled {
  cursor: wait;
  opacity: .68;
}

.form-fields {
  display: grid;
  gap: 18px;
}

.form-fields[hidden],
.form-success[hidden] {
  display: none;
}

.field-grid {
  align-items: start;
}

.field-grid > label {
  align-self: start;
}

.form-result[data-state="error"] {
  color: #9f2f2f;
}

.form-result[data-state="success"] {
  color: var(--green-800);
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: .4rem;
  color: #9f2f2f;
  font-size: .82rem;
  font-weight: 650;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.order-card :is(input, select, textarea)[aria-invalid="true"] {
  border-color: #b83b3b;
  box-shadow: 0 0 0 3px rgba(184, 59, 59, .12);
}

.form-result a {
  color: inherit;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.form-success {
  padding: 26px;
  border: 1px solid #b9ddce;
  border-radius: 14px;
  background: #e5f5ee;
  color: var(--green-900);
}

.form-success h4 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.18;
}

.form-success h4:focus-visible {
  outline: 3px solid rgba(30, 122, 92, .22);
  outline-offset: 4px;
}

.form-success p {
  margin: 0;
  color: var(--green-900);
  line-height: 1.65;
}

/* Monster content mapped onto the approved standalone components. */
img { max-width: 100%; height: auto; }
.hero-image { justify-self: center; border-radius: 24px; box-shadow: var(--shadow); }
h1 small, .section-heading small, .seo-content h5 small { display: block; margin-top: 16px; font-size: .55em; line-height: 1.4; font-weight: 500; }
.hero-copy h1 { font-size: clamp(38px, 5vw, 64px); }
.hero-copy p { color: var(--ink-soft); font-size: 18px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--soft); }
.benefit-card h2 { font-size: 23px; line-height: 1.3; }
.benefit-icon { width: 32px; height: 32px; color: var(--green-700); }
.section-heading > :is(h2,h3) { font-size: clamp(28px, 4vw, 42px); line-height: 1.2; }
.tariff-card ul { padding-left: 20px; }
.tariff-card h3 { font-size: 25px; }
.faq-list { max-width: 900px; margin-inline: auto; }
summary h4 { display: inline; font-size: inherit; font-weight: inherit; }
.faq-answer { padding-top: 18px; }
.connect-grid h6 { font-size: 19px; margin: 0; }
.download-links h5 { margin: 0; font-size: 17px; }
.download-panel { margin-top: 36px; }
.payment-intro { max-width: 850px; margin: 0 auto 36px; }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.payment-option { padding: 22px; border: 1px solid rgba(255,255,255,.25); border-radius: 16px; }
.payment-option h4 { font-size: 19px; line-height: 1.4; margin: 0 0 20px; }
.payment-option small { display: block; }
.support-note { margin-bottom: 24px; }
.order-card { max-width: 850px; margin-inline: auto; }
.order-card .section-heading h3 { color: var(--ink); }
.form-success-title { font-size: 24px; font-weight: 750; }
.seo-content { max-width: 850px; }
.seo-content h5 { font-size: 30px; line-height: 1.3; }
.seo-content figure { text-align: center; margin: 32px 0; }
.seo-content figure img { width: 300px; }
.nav-toggle { display: none; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer .container > p { margin-top: 24px; }
@media (max-width: 1100px) {
 .header-inner { flex-wrap: wrap; }
 .site-header .nav { display: flex; width: 100%; justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 700px) {
 .benefit-grid, .payment-options { grid-template-columns: 1fr; }
 .nav-toggle { display: inline-flex; margin-left: auto; }
 .site-header .nav { display: none; }
 .site-header .nav.is-open, .no-js .site-header .nav { display: flex; }
 .site-header .nav a { padding: 6px 8px; }
 .hero-image { width: min(280px, 100%); }
 .payment-option { padding: 20px; }
}

.monster-steps { grid-template-columns: repeat(4, 1fr); }
@media(max-width: 700px) { .monster-steps { grid-template-columns: 1fr; } }

/* Approved UI revision 2: consistent cards and the original Tech payment layout. */
.brand-vpn { color: var(--green-600); }
#tarif .tariff-card { display: grid; grid-template-rows: auto auto auto auto 1fr; align-content: start; }
#tarif .tariff-card h3 { min-height: 2.3em; margin-bottom: 8px; }
#tarif .card-label { margin-bottom: 0; }
#tarif .price { margin: 20px 0 26px; gap: 10px; }
#tarif .price strong { color: var(--green-800); font-size: clamp(38px, 3.8vw, 50px); white-space: nowrap; }
#tarif .price .price-currency { color: inherit; font-size: .55em; font-weight: 650; }
#tarif .price > span { font-size: 15px; }
#tarif .tariff-card .button { margin-top: 0; min-height: 54px; align-self: start; }
#tarif .tariff-card ul { margin: 24px 0 0; }
.monster-steps { gap: 20px; }
.monster-steps li { display: flex; flex-direction: column; gap: 22px; min-height: 170px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.monster-steps li > span { display: grid; place-items: center; width: 42px; height: 42px; margin: 0; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-size: 18px; font-weight: 800; }
.monster-steps :is(a,h6) { margin: 0; font-size: 18px; line-height: 1.5; font-weight: 700; }
.monster-steps a { text-decoration-color: var(--green-200); text-underline-offset: 5px; }
#install .section-heading > h3 { font-size: clamp(22px, 2.6vw, 28px); }
.payment-choice-section { padding-bottom: 48px; background: var(--soft); }
.payment-choice-section .payment-options { margin: 0; }
.payment-choice-section .payment-option { display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); background: var(--paper); }
.payment-choice-section .payment-option h4 { margin-bottom: 22px; }
.payment-choice-section .payment-option small { margin-top: 8px; color: var(--ink-soft); font-size: .85em; font-weight: 500; }
.payment-choice-section .button { margin-top: auto; }
#pay .order-card { width: 100%; max-width: none; margin: 0; }
#pay .payment-grid { align-items: start; }
#pay .purchase-heading h3 { color: var(--paper); }
.no-js .nav-toggle { display: none; }
@media (max-width: 700px) { .monster-steps li { min-height: 0; } }

/* Revision 3: keep required markers inline and center tariff price labels. */
.field-label { display: block; }
#tarif .card-label { text-align: center; }
#tarif .price { justify-content: center; }
