@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #d60b52;
  --brand-dark: #97053a;
  --brand-deep: #510a27;
  --accent: #f7a600;
  --ink: #0e0d0d;
  --text: #363636;
  --muted: #696966;
  --line: #e6e6e6;
  --soft: #f5f4eb;
  --white: #ffffff;
  --success: #00764c;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 30px rgba(14, 13, 13, 0.08);
  --shadow: 0 24px 60px rgba(14, 13, 13, 0.14);
  --container: 1180px;
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

h3 {
  font-size: 1.3rem;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.offer-bar {
  position: relative;
  z-index: 70;
  background: var(--brand-deep);
  color: var(--white);
  font-size: 0.9rem;
}

.offer-bar__content {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.offer-bar__badge {
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-bar a {
  color: #ffd46c;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(14, 13, 13, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(14, 13, 13, 0.08);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand__context {
  max-width: 82px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #373737;
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #f3f3f3;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 22px rgba(214, 11, 82, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(214, 11, 82, 0.26);
}

.button svg,
.mobile-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.button--large {
  min-height: 58px;
  padding: 17px 25px;
}

.button--primary {
  background: var(--brand);
}

.button--primary:hover {
  background: #c1094a;
}

.button--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(247, 166, 0, 0.25);
}

.button--accent:hover {
  background: #ffb51e;
  box-shadow: 0 16px 34px rgba(247, 166, 0, 0.32);
}

.button--outline {
  border-color: #d7d7d7;
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.button--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: none;
}

.button--white {
  background: var(--white);
  color: var(--brand-deep);
  box-shadow: 0 16px 34px rgba(81, 10, 39, 0.22);
}

.button--white:hover {
  background: #fff7fa;
}

.button--block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #132337;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 21, 0.98) 0%, rgba(8, 13, 21, 0.88) 36%, rgba(8, 13, 21, 0.38) 68%, rgba(8, 13, 21, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 13, 21, 0.35), transparent 45%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 64px;
  padding-block: 90px;
}

.hero__copy {
  max-width: 700px;
  color: var(--white);
}

.hero h1 {
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(3.3rem, 6.6vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.hero__lead strong {
  color: #ffd36c;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 5px;
}

.text-link--light {
  color: var(--white);
}

.official-note {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.official-note svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #5ee0ab;
  stroke-width: 2;
}

.eyebrow {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow--light {
  color: #ffd36c;
}

.hero-offer {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-offer::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(214, 11, 82, 0.09);
}

.hero-offer__tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-offer__number {
  margin: 12px 0 -8px;
  color: var(--brand);
  font-size: 6.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
}

.hero-offer > p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-offer__divider {
  height: 1px;
  margin: 22px 0;
  background: var(--line);
}

.hero-offer__product {
  width: 100%;
  margin: 0 auto 15px;
  filter: drop-shadow(0 12px 18px rgba(81, 10, 39, 0.15));
}

.hero-offer .hero-offer__fine {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.4;
}

.proof-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 116px;
  padding: 25px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  color: var(--brand);
  font-size: 1.3rem;
  line-height: 1.2;
}

.proof-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.section {
  padding-block: 118px;
}

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

.section--dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading > p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 30px;
  border: 1px solid rgba(14, 13, 13, 0.07);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(14, 13, 13, 0.12);
}

.icon-box {
  width: 52px;
  height: 52px;
  margin-bottom: 45px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff0f5;
  color: var(--brand);
}

.icon-box svg,
.protection-list svg,
.protection__image-badge svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 75px;
}

.split-layout__content > h2 {
  max-width: 680px;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
}

.compare-card {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-card__column {
  padding: 28px;
  background: #f8f8f8;
}

.compare-card__column + .compare-card__column {
  border-left: 1px solid var(--line);
}

.compare-card__column--positive {
  background: #edf9f4;
}

.compare-card__label {
  display: block;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.check-list,
.neutral-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.neutral-list li {
  position: relative;
  padding-left: 28px;
  color: #4a4a4a;
  font-size: 0.95rem;
}

.check-list li + li,
.neutral-list li + li {
  margin-top: 10px;
}

.check-list li::before,
.neutral-list li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  background: #d8f4e8;
  color: var(--success);
}

.neutral-list li::before {
  content: "•";
  background: #e5e5e5;
  color: #5f5f5f;
}

.video-panel {
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-panel__topline {
  min-height: 48px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-panel__topline span:first-child {
  color: #ffd36c;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #060606;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-panel__caption {
  padding: 24px;
  color: var(--white);
}

.video-panel__caption strong {
  display: block;
  font-size: 1.1rem;
}

.video-panel__caption p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.91rem;
}

.journey {
  position: relative;
  overflow: hidden;
}

.journey::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 100px solid rgba(214, 11, 82, 0.12);
  border-radius: 50%;
}

.steps {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.steps li {
  min-height: 270px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.steps__number {
  color: #f7699b;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.steps h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.45rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

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

.plan-card {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.plan-card--featured {
  border: 2px solid var(--brand);
  box-shadow: 0 24px 55px rgba(214, 11, 82, 0.15);
  transform: translateY(-12px);
}

.plan-card__ribbon {
  position: absolute;
  top: 0;
  right: 26px;
  padding: 7px 13px 8px;
  border-radius: 0 0 10px 10px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-card__head {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.plan-card__name {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 700;
}

.plan-card__offer {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 99px;
  background: #fff0f5;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.plan-card__offer--neutral {
  background: #f0f0f0;
  color: #4a4a4a;
}

.plan-card__head p {
  margin: 22px 0 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.plan-card__price {
  color: var(--ink);
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.plan-card__price small {
  font-size: 0.78rem;
  letter-spacing: 0;
}

.plan-card > .check-list {
  margin: 26px 0 32px;
  flex: 1;
}

.plans__disclaimer {
  max-width: 920px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.protection {
  background: #fff;
}

.protection__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.93fr);
  align-items: center;
  gap: 78px;
}

.protection__image {
  position: relative;
}

.protection__image > img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.protection__image-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.protection__image-badge span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.protection__image-badge strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.protection-list {
  margin: 34px 0;
  display: grid;
  gap: 15px;
}

.protection-list > div {
  padding: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.protection-list svg {
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 13px;
  background: #fff0f5;
  color: var(--brand);
}

.protection-list span {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.45;
}

.protection-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1rem;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.66fr 1fr;
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p {
  margin-bottom: 28px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #d8d7d0;
}

.faq-list details {
  border-bottom: 1px solid #d8d7d0;
}

.faq-list summary {
  min-height: 76px;
  padding: 20px 4px;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-list details[open] summary span {
  background: var(--brand);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details > div {
  padding: 0 50px 25px 4px;
}

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

.final-cta {
  position: relative;
  padding-block: 92px;
  overflow: hidden;
  background: var(--brand);
  color: var(--white);
}

.final-cta__pattern {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 520px;
  height: 520px;
  border: 95px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 15px;
  color: var(--white);
}

.final-cta p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.final-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.final-cta__action > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
}

.site-footer {
  padding: 62px 0 26px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__top {
  padding-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__brand img {
  width: 65px;
  height: 65px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer__brand p {
  max-width: 285px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer__links a:hover,
.site-footer__bottom a:hover {
  color: #f7699b;
}

.legal-note {
  padding-block: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  line-height: 1.6;
}

.legal-note strong {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 0.8rem;
}

.site-footer__bottom a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-cta {
  display: none;
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 10px;
  bottom: 10px;
  left: 10px;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 17px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.88rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 35px;
  }

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

  .split-layout,
  .protection__grid {
    gap: 45px;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    z-index: 100;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 82px);
    padding: 24px max(20px, calc((100vw - var(--container)) / 2));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav .button {
    margin-top: 20px;
  }

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

  .hero-offer {
    max-width: 610px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 6px 18px;
  }

  .hero-offer__tag {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero-offer__number {
    grid-row: span 2;
    margin: 0;
    font-size: 5.3rem;
  }

  .hero-offer__divider,
  .hero-offer__product,
  .hero-offer__fine {
    display: none;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-layout,
  .protection__grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .video-panel {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .steps li {
    min-height: 0;
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 20px;
  }

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

  .plan-card--featured {
    transform: none;
  }

  .plan-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .protection__image {
    order: 2;
  }

  .protection__image > img {
    min-height: 450px;
  }

  .faq-intro {
    position: static;
  }

  .faq-layout {
    gap: 45px;
  }

  .final-cta__content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .final-cta__action {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 74px;
    font-size: 16px;
  }

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

  .offer-bar__content {
    min-height: 47px;
    justify-content: flex-start;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
  }

  .offer-bar__badge,
  .offer-bar a {
    display: none;
  }

  .offer-bar__content span:last-of-type {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand__context {
    font-size: 0.68rem;
  }

  .primary-nav {
    max-height: calc(100vh - 72px);
  }

  .hero {
    min-height: auto;
  }

  .hero__media img {
    object-position: 65% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(8, 13, 21, 0.98) 0%, rgba(8, 13, 21, 0.91) 65%, rgba(8, 13, 21, 0.65) 100%);
  }

  .hero__grid {
    gap: 35px;
    padding-block: 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .official-note {
    align-items: flex-start;
  }

  .hero-offer {
    padding: 23px;
  }

  .proof-item {
    min-height: 105px;
    padding: 20px;
  }

  .proof-item strong {
    font-size: 1.12rem;
  }

  .section {
    padding-block: 82px;
  }

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

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .benefit-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 25px;
  }

  .icon-box {
    margin-bottom: 28px;
  }

  .compare-card {
    grid-template-columns: 1fr;
  }

  .compare-card__column + .compare-card__column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps li {
    padding: 25px;
    grid-template-columns: 65px 1fr;
  }

  .steps__number {
    font-size: 2.7rem;
  }

  .plan-card {
    padding: 27px;
  }

  .plan-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .protection__image > img {
    min-height: 350px;
  }

  .protection-list > div {
    grid-template-columns: 44px 1fr;
  }

  .faq-list summary {
    min-height: 72px;
  }

  .faq-list details > div {
    padding-right: 4px;
  }

  .final-cta {
    padding-block: 72px;
  }

  .final-cta__action,
  .final-cta__action .button {
    width: 100%;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    min-height: 56px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    background: var(--brand);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 16px 36px rgba(81, 10, 39, 0.35);
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-offer__number {
    font-size: 4.5rem;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .protection__image-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }
}

@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;
  }
}

@media print {
  .offer-bar,
  .site-header,
  .mobile-cta,
  .video-panel,
  .button {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
  }

  .hero {
    min-height: auto;
    background: #fff;
  }

  .hero__media,
  .hero__overlay,
  .hero-offer {
    display: none;
  }

  .hero__grid {
    display: block;
    padding: 30px 0;
  }

  .hero h1,
  .hero__lead {
    color: #000;
  }

  .section {
    padding-block: 30px;
  }
}
