:root {
  --font-main: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --color-background: #ffffff;
  --color-background-soft: #f6f8fc;
  --color-surface: #ffffff;
  --color-surface-subtle: #eef2ff;
  --color-border: #dfe5ef;
  --color-border-strong: #c9d3e2;
  --color-text: #111827;
  --color-text-muted: #4b5563;
  --color-text-soft: #64748b;
  --color-brand: #172554;
  --color-brand-hover: #0f1e46;
  --color-brand-secondary: #1e3a8a;
  --color-focus: #2563eb;
  --color-signature: #dc147f;
  --color-signature-hover: #be0f6d;
  --color-signature-soft: #fdf2f8;
  --color-success: #166534;
  --color-success-soft: #ecfdf5;
  --color-error: #b91c1c;
  --color-error-soft: #fef2f2;
  --color-on-brand: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --container: 1200px;
  --shadow-card: 0 22px 60px rgba(15, 30, 70, 0.09);
  --shadow-soft: 0 12px 34px rgba(15, 30, 70, 0.07);
  --shadow-button: 0 12px 26px rgba(23, 37, 84, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--color-on-brand);
  background: var(--color-brand);
}

[hidden] {
  display: none !important;
}

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

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

button {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--color-text);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 720;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(29px, 3.4vw, 46px);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 700;
}

p {
  color: var(--color-text-muted);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 16px;
  color: var(--color-on-brand);
  background: var(--color-brand);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-button);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.eyebrow,
.form-kicker {
  margin-bottom: 14px;
  color: var(--color-signature);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f9a8d4;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  color: var(--color-text);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--color-on-brand);
  background: var(--color-brand);
  border-color: var(--color-brand);
  box-shadow: var(--shadow-button);
}

.button-primary:hover {
  color: var(--color-on-brand);
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
}

.button-secondary {
  color: var(--color-brand);
  background: var(--color-surface);
  border-color: var(--color-border-strong);
}

.button-secondary:hover {
  color: var(--color-brand);
  border-color: var(--color-brand);
}

.button-light {
  color: var(--color-brand);
  background: var(--color-on-brand);
  border-color: var(--color-on-brand);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.button-light:hover {
  color: var(--color-brand);
  background: #f8fafc;
}

.button-text {
  min-height: auto;
  padding: 9px 2px;
  color: var(--color-brand-secondary);
  border-radius: 0;
  box-shadow: inset 0 -1px 0 var(--color-brand-secondary);
}

.button-text:hover {
  color: var(--color-brand);
  box-shadow: inset 0 -2px 0 var(--color-brand);
  transform: none;
}

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 24px rgba(15, 30, 70, 0.06);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: flex-end;
  color: var(--color-brand);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand-dot {
  width: 7px;
  height: 7px;
  margin: 0 0 2px 3px;
  background: var(--color-signature);
  border-radius: 50%;
}

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

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand);
  font-weight: 750;
  white-space: nowrap;
}

.header-messenger {
  color: var(--color-brand-secondary);
  font-size: 14px;
  font-weight: 700;
}

.header-phone:hover,
.header-messenger:hover {
  color: var(--color-signature);
}

.header-cta {
  min-height: 44px;
  padding: 11px 18px;
  box-shadow: none;
}

.main-section {
  position: relative;
  padding: 104px 0;
  overflow: clip;
}

.hero {
  min-height: calc(100vh - 68px);
  padding-top: 32px;
  background:
    radial-gradient(circle at 92% 18%, rgba(220, 20, 127, 0.09), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.hero::before {
  position: absolute;
  top: 8%;
  right: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(30, 58, 138, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  gap: clamp(36px, 4vw, 56px);
  align-items: start;
}

.hero-copy {
  padding-top: 18px;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.62;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 9px 14px 9px 36px;
  color: var(--color-brand);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(15, 30, 70, 0.04);
}

.benefit-list li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 14px;
  height: 14px;
  color: var(--color-on-brand);
  background: var(--color-signature);
  border-radius: 50%;
  content: "✓";
  font-size: 9px;
  line-height: 14px;
  text-align: center;
  transform: translateY(-50%);
}

.price-highlight {
  display: grid;
  max-width: 570px;
  margin-bottom: 28px;
  padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-signature);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.price-highlight > span {
  color: var(--color-text-soft);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-highlight strong {
  margin: 2px 0 4px;
  color: var(--color-brand);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.price-highlight p {
  margin: 0;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-bottom: 18px;
}

.cta-note {
  max-width: 670px;
  margin-bottom: 0;
  font-size: 14px;
}

.cta-note strong {
  color: var(--color-brand);
  white-space: nowrap;
}

.hero-side {
  position: relative;
}

.document-visual {
  position: relative;
  min-height: 268px;
  margin: 0 18px -52px;
  padding-top: 4px;
  pointer-events: none;
}

.document-sheet {
  position: absolute;
  width: 230px;
  min-height: 256px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(15, 30, 70, 0.14);
}

.document-sheet-back {
  top: 18px;
  left: 12%;
  background: #edf1f9;
  transform: rotate(-7deg);
}

.document-sheet-main {
  top: 0;
  left: 25%;
  z-index: 2;
  padding: 24px;
  transform: rotate(3deg);
}

.document-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--color-signature);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-sheet strong {
  display: block;
  margin-bottom: 22px;
  color: var(--color-brand);
  font-size: 17px;
  line-height: 1.25;
}

.document-line {
  display: block;
  width: 72%;
  height: 6px;
  margin-bottom: 10px;
  background: #dbe2ee;
  border-radius: var(--radius-full);
}

.document-line-long {
  width: 100%;
}

.document-line-short {
  width: 48%;
}

.document-seal {
  position: absolute;
  right: -34px;
  bottom: 22px;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: var(--color-on-brand);
  background: var(--color-signature);
  border: 7px solid #ffffff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-8deg);
}

.document-flow {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 3;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 12px 14px;
  color: var(--color-on-brand);
  background: var(--color-brand);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-button);
  list-style: none;
}

.document-flow li {
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.document-flow li:not(:last-child)::after {
  margin-left: 5px;
  color: #f9a8d4;
  content: "↓";
}

.lead-card {
  position: relative;
  z-index: 4;
  padding: 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.lead-card h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.stage-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.stage-options label {
  position: relative;
}

.stage-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.stage-options span {
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 12px 13px;
  color: var(--color-text-muted);
  background: var(--color-background-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.35;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.stage-options input:checked + span {
  color: var(--color-brand);
  background: var(--color-surface-subtle);
  border-color: var(--color-brand-secondary);
  box-shadow: inset 0 0 0 1px var(--color-brand-secondary);
}

.stage-options input:focus-visible + span {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.form-step-two {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field > span {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.field > span small {
  color: var(--color-text-soft);
  font-size: 12px;
  font-weight: 500;
}

.field > span b {
  color: var(--color-error);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--color-text);
  background: var(--color-background);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-focus);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  outline: none;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--color-error);
}

.field > small:not(.field-error) {
  color: var(--color-text-soft);
  font-size: 12px;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--color-brand);
}

.consent-field a {
  color: var(--color-brand-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field-error {
  min-height: 0;
  margin: 5px 0 0;
  color: var(--color-error);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

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

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

.form-status {
  margin: 16px 0 0;
  padding: 0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 680;
}

.form-status.is-success,
.form-status.is-error {
  padding: 13px 14px;
}

.form-status.is-success {
  color: var(--color-success);
  background: var(--color-success-soft);
}

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

.lead-form.is-success .form-body {
  opacity: 0.54;
}

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

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

.section-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 18px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center > p:last-child {
  margin-inline: auto;
}

.process-section {
  background: var(--color-brand);
}

.process-section .section-heading h2,
.process-section .section-heading > p:last-child {
  color: var(--color-on-brand);
}

.process-section .section-heading > p:last-child {
  color: #cbd5e1;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.process-grid li > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--color-on-brand);
  background: var(--color-signature);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.process-grid h3 {
  color: var(--color-on-brand);
  font-size: 19px;
}

.process-grid p {
  margin-bottom: 0;
  color: #cbd5e1;
  font-size: 14px;
}

.process-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 28px 30px;
  background: var(--color-on-brand);
  border-radius: var(--radius-md);
}

.process-callout strong {
  display: block;
  max-width: 820px;
  margin-bottom: 6px;
  color: var(--color-brand);
  font-size: 18px;
  line-height: 1.4;
}

.process-callout p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  padding: 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.package-card-accent {
  border-top: 4px solid var(--color-signature);
}

.package-number {
  display: block;
  margin-bottom: 28px;
  color: var(--color-signature);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.package-card ul,
.outcome-card ul,
.check-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li,
.outcome-card li,
.check-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.package-card li::before,
.outcome-card li::before,
.check-panel li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--color-signature);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.package-disclaimer {
  margin: 18px 0 0;
  color: var(--color-text-soft);
  font-size: 13px;
}

.price-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 50px;
  align-items: center;
  margin-top: 40px;
  padding: 40px;
  color: var(--color-on-brand);
  background: var(--color-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.price-card h3 {
  color: var(--color-on-brand);
  font-size: clamp(28px, 3vw, 40px);
}

.price-card p {
  max-width: 720px;
  margin-bottom: 12px;
  color: #dbe3f2;
}

.price-card small {
  color: #aebbd2;
}

.price-action {
  display: grid;
  gap: 12px;
}

.price-action span {
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.task-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.task-examples span {
  padding: 9px 13px;
  color: var(--color-brand);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 650;
}

.task-note {
  margin: 12px 0 0;
  color: var(--color-text-soft);
  font-size: 12px;
}

.trust-section {
  background: var(--color-background);
}

.guarantee-panel {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
  padding: 30px 32px;
  background: var(--color-success-soft);
  border: 1px solid rgba(21, 128, 61, 0.22);
  border-radius: var(--radius-lg);
}

.guarantee-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--color-on-brand);
  background: var(--color-success);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 850;
}

.guarantee-panel h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.guarantee-panel p {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.65;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.trust-layout .section-heading {
  margin-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  min-height: 238px;
  padding: 28px;
  background: var(--color-background-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.trust-grid article > span {
  display: block;
  margin-bottom: 40px;
  color: var(--color-signature);
  font-size: 13px;
  font-weight: 850;
}

.trust-grid h3 {
  font-size: 19px;
}

.trust-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.trust-stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-stats-grid article {
  display: grid;
  min-height: 154px;
  gap: 10px;
  align-content: start;
  padding: 24px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.trust-stats-grid article > strong {
  color: var(--color-brand-secondary);
  font-size: 36px;
  line-height: 1;
}

.trust-stats-grid article > span {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.check-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: start;
  margin-top: 32px;
  padding: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.check-panel h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.check-panel ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.trust-callout {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 26px 30px;
  background: var(--color-signature-soft);
  border: 1px solid #fbcfe8;
  border-radius: var(--radius-md);
}

.trust-callout p {
  max-width: 780px;
  margin-bottom: 0;
  color: #77154c;
  font-weight: 650;
}

.trust-callout .button {
  flex: 0 0 auto;
}

.final-section {
  color: var(--color-on-brand);
  background:
    radial-gradient(circle at 14% 16%, rgba(220, 20, 127, 0.18), transparent 28%),
    #101d44;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(50px, 7vw, 88px);
  align-items: start;
}

.final-copy {
  position: sticky;
  top: 104px;
}

.final-copy h2,
.final-copy h3 {
  color: var(--color-on-brand);
}

.final-copy > p:not(.eyebrow) {
  color: #cbd5e1;
  font-size: 18px;
}

.outcome-card {
  margin-top: 32px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.outcome-card h3 {
  font-size: 18px;
}

.outcome-card li {
  color: #dbe3f2;
}

.quick-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
}

.quick-contacts a {
  color: var(--color-on-brand);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 5px;
}

.final-form {
  padding: 34px;
}

.final-form .form-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-wide,
.final-form .honeypot,
.final-form > .form-status {
  grid-column: 1 / -1;
}

.form-submit-row {
  display: grid;
  gap: 10px;
}

.faq {
  max-width: 920px;
  margin: 96px auto 0;
  scroll-margin-top: 90px;
}

.section-heading-light h2 {
  color: var(--color-on-brand);
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 64px;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
  color: var(--color-on-brand);
  background: transparent;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-item button span {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #f9a8d4;
  border-radius: 2px;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 150ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 64px 20px 22px;
}

.faq-answer p {
  margin-bottom: 0;
  color: #cbd5e1;
}

.site-footer {
  padding: 62px 0 28px;
  color: var(--color-on-brand);
  background: #0a122c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(180px, 0.7fr));
  gap: 60px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #aebbd2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: #e8edf6;
}

.site-footer a:not(.brand):hover {
  color: #f9a8d4;
}

.footer-about > p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #aebbd2;
}

.footer-legal {
  font-size: 13px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom p {
  margin: 0;
  color: #7786a5;
  font-size: 13px;
}

.mobile-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 70;
  display: none;
  grid-template-columns: minmax(100px, 0.7fr) minmax(170px, 1.3fr);
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -12px 30px rgba(15, 30, 70, 0.12);
  transform: translateY(115%);
  transition: transform 180ms ease;
}

.mobile-sticky.is-visible {
  transform: translateY(0);
}

.mobile-sticky .button {
  min-height: 48px;
  padding-inline: 12px;
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 34, 0.7);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: calc(100vh - 40px);
  padding: 34px;
  overflow-y: auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
}

.modal-panel > h2 {
  margin: 0 42px 10px 0;
  font-size: 30px;
}

.modal-panel > p:not(.form-kicker) {
  margin-bottom: 22px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-brand);
  background: var(--color-background-soft);
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.modal-form .form-body {
  display: grid;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  display: grid;
  width: min(440px, calc(100% - 36px));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.cookie-banner p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--color-brand-secondary);
  text-decoration: underline;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 10px 14px;
  box-shadow: none;
}

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

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

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

  .trust-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-grid article {
    min-height: 210px;
  }
}

@media (max-width: 1050px) {
  .main-section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .final-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-side {
    display: grid;
    grid-template-columns: minmax(270px, 0.75fr) minmax(360px, 1.25fr);
    gap: 22px;
    align-items: end;
  }

  .document-visual {
    min-height: 380px;
    margin: 0;
  }

  .document-sheet-back {
    left: 2%;
  }

  .document-sheet-main {
    left: 12%;
  }

  .document-flow {
    right: 4%;
    bottom: 40px;
  }

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

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

  .final-copy {
    position: static;
  }

  .final-copy > p:not(.eyebrow) {
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: clamp(32px, 8.7vw, 36px);
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .site-header,
  .header-inner {
    min-height: 60px;
  }

  .brand {
    font-size: 22px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-phone {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--color-background-soft);
    border: 1px solid var(--color-border);
    border-radius: 50%;
  }

  .header-phone span,
  .header-cta {
    display: none;
  }

  .main-section {
    padding: 66px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-copy > h1 {
    order: 2;
  }

  .hero-copy > .hero-lead {
    order: 3;
  }

  .hero-copy > .price-highlight {
    order: 4;
    margin-bottom: 18px;
    padding: 18px 20px;
  }

  .hero-copy > .hero-actions {
    order: 5;
  }

  .benefit-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    order: 6;
    margin-top: 20px;
    margin-bottom: 18px;
  }

  .hero-copy > .cta-note {
    order: 7;
  }

  .benefit-list li {
    width: fit-content;
  }

  .price-highlight {
    padding: 19px 20px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-text {
    width: fit-content;
    margin-inline: auto;
  }

  .hero-side {
    display: block;
  }

  .document-visual {
    min-height: 270px;
    margin-bottom: -54px;
  }

  .document-sheet {
    width: 210px;
    min-height: 238px;
  }

  .document-sheet-back {
    left: 7%;
  }

  .document-sheet-main {
    left: 19%;
    padding: 21px;
  }

  .document-flow {
    right: 2%;
    bottom: 35px;
  }

  .lead-card,
  .final-form {
    padding: 24px;
    border-radius: var(--radius-md);
  }

  .stage-options {
    grid-template-columns: minmax(0, 1fr);
  }

  .stage-options span {
    min-height: 54px;
  }

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

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .process-grid,
  .package-grid,
  .trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .guarantee-panel,
  .trust-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .guarantee-panel {
    gap: 18px;
    margin-bottom: 40px;
    padding: 24px;
  }

  .guarantee-panel h3 {
    font-size: 24px;
  }

  .guarantee-panel p {
    font-size: 16px;
  }

  .process-grid li,
  .trust-grid article {
    min-height: 0;
  }

  .process-grid li > span,
  .trust-grid article > span {
    margin-bottom: 22px;
  }

  .process-callout,
  .price-card,
  .check-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 26px;
  }

  .process-callout .button,
  .price-action .button {
    width: 100%;
  }

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

  .check-panel ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-callout {
    display: grid;
    gap: 20px;
    padding: 24px;
  }

  .trust-callout .button {
    width: 100%;
  }

  .final-grid {
    gap: 38px;
  }

  .final-form .form-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .field-wide,
  .final-form .honeypot,
  .final-form > .form-status {
    grid-column: auto;
  }

  .faq {
    margin-top: 72px;
  }

  .faq-item button {
    gap: 14px;
    padding: 17px 18px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 48px 18px 18px;
  }

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

  .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .mobile-sticky {
    display: grid;
  }

  .modal {
    align-items: end;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  }

  .modal-panel {
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom));
    padding: 26px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-md) var(--radius-md);
  }

  .modal-panel > h2 {
    font-size: 27px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }

  .cookie-banner {
    right: 10px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .document-sheet-back {
    left: 0;
  }

  .document-sheet-main {
    left: 9%;
  }

  .document-flow {
    right: 0;
  }

  .document-seal {
    right: -22px;
    width: 78px;
    height: 78px;
    border-width: 5px;
    font-size: 9px;
  }

  .lead-card,
  .final-form {
    padding: 20px;
  }

  .price-card,
  .check-panel,
  .trust-callout {
    padding: 22px;
  }

  .cookie-banner {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .cookie-banner .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
