:root {
  --bg: #f7f8f5;
  --surface: #fcfdf9;
  --text: #070a08;
  --muted: #5f6862;
  --dark: #050706;
  --border: rgba(7, 10, 8, 0.08);
  --green: #10b981;
  --green-strong: #18c964;
  --green-soft: rgba(16, 185, 129, 0.12);
  --green-glow: rgba(16, 185, 129, 0.24);

  --container: min(1180px, 92vw);
  --section-space: clamp(2rem, 3.8vw, 3.4rem);
  --section-compact: clamp(1rem, 2vw, 1.9rem);

  --radius-lg: clamp(1.75rem, 3.2vw, 2.25rem);
  --radius-md: clamp(1.15rem, 2.8vw, 1.65rem);
  --radius-sm: 0.9rem;

  --shadow-soft: 0 20px 60px rgba(7, 10, 8, 0.09);
  --shadow-premium: 0 30px 100px rgba(5, 7, 6, 0.12);
  --shadow-card: 0 10px 30px rgba(7, 10, 8, 0.08);

  --font-display: "Inter", "SF Pro Display", "Manrope", system-ui, -apple-system,
    "Segoe UI", sans-serif;
  --font-size-base: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  --font-size-h1: clamp(2rem, 6vw, 3.4375rem);
  --font-size-h2: 2.1875rem;
  --font-size-h3: clamp(1.07rem, 2.3vw, 1.35rem);

  --line-display: 1.03;
  --line-title: 1.16;
  --line-body: 1.56;

  --transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --blur: 110px;
  --top-banner-height: 2.15rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  font-size: var(--font-size-base);
  line-height: var(--line-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 5rem;
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-compact {
  padding-block: var(--section-compact);
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(1rem, 1.9vw, 1.65rem);
}

.section-header.light {
  color: #edf4ef;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--green) 70%, black 30%);
}

.eyebrow-icon {
  width: 0.85rem;
  height: 0.85rem;
  fill: none;
  stroke: color-mix(in srgb, var(--green) 78%, #006445 22%);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-header h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-title);
  letter-spacing: -0.018em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 340ms cubic-bezier(0.22, 1, 0.36, 1),
    background 340ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 340ms cubic-bezier(0.22, 1, 0.36, 1),
    color 340ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-icon {
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary .button-icon,
.button-dark .button-icon {
  stroke: #ffffff;
  fill: none;
}

.button-primary {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--green) 94%, #ffffff 6%),
    color-mix(in srgb, var(--green-strong) 82%, #ffffff 18%)
  );
  color: #ffffff;
  background-size: 160% 160%;
  background-position: 50% 50%;
  will-change: transform, box-shadow, filter;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.25);
}

.button-dark {
  background: linear-gradient(145deg, #0d1210, #070a08);
  color: #f0f5f2;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(5, 7, 6, 0.3);
}

.button-dark:hover,
.button-dark:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 36px rgba(5, 7, 6, 0.38);
  filter: brightness(1.06);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.36);
  filter: saturate(1.08);
  background-position: 82% 50%;
}

.button:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 120ms;
}

.button:focus-visible,
.faq-trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--green) 70%, black 30%);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -200px;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.6rem 0.9rem;
}

.skip-link:focus {
  top: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: color-mix(in srgb, var(--text) 75%, var(--green) 25%);
  font-weight: 600;
  font-size: 0.8125rem;
  width: fit-content;
}

.badge-dot,
.pulse-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

.hero-section {
  overflow: clip;
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.7)
    ),
    url("./assets/img/map-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.floating-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 90;
  padding-block: 0.6rem;
  background: linear-gradient(
    180deg,
    rgba(247, 248, 245, 0.94),
    rgba(247, 248, 245, 0.7)
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7, 10, 8, 0.06);
}

.top-warning-banner {
  position: relative;
  min-height: var(--top-banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.32rem 0.75rem;
  border-bottom: 1px solid rgba(220, 38, 38, 0.18);
  background: linear-gradient(
    180deg,
    rgba(220, 38, 38, 0.14),
    rgba(220, 38, 38, 0.08)
  );
  backdrop-filter: blur(8px);
}

.top-warning-icon {
  flex: 0 0 auto;
  font-size: 0.75rem;
  line-height: 1;
  color: #8f1d1d;
}

.top-warning-banner p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
  color: color-mix(in srgb, #7f1d1d 76%, var(--text) 24%);
  font-weight: 600;
}

.floating-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.header-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.header-chat-links {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.floating-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.floating-logo .brand-logo-desktop {
  height: 4rem;
}

.floating-logo .brand-logo-mobile {
  display: none;
  height: 3rem;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.64rem;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  background: linear-gradient(145deg, #10b981, #24d27b);
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.24);
}

.button-header {
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(var(--blur));
  opacity: 0.22;
}

.hero-section::before {
  width: 280px;
  height: 280px;
  background: #9df0d0;
  top: 4%;
  left: -12%;
  animation: aurora 14s ease-in-out infinite alternate;
}

.hero-section::after {
  width: 330px;
  height: 330px;
  background: #65dfb1;
  right: -8%;
  top: 22%;
  animation: aurora 16s ease-in-out infinite alternate-reverse;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-copy {
  grid-area: copy;
  display: grid;
  align-content: start;
  gap: clamp(0.5rem, 1vw, 0.9rem);
}

.hero-copy h1 {
  margin-top: 0;
  font-size: var(--font-size-h1);
  line-height: var(--line-display);
  letter-spacing: -0.033em;
  max-width: 18ch;
}

.hero-description {
  margin-top: 0;
  max-width: 52ch;
  color: var(--muted);
}

.hero-subtitle {
  margin-top: 0;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: color-mix(in srgb, var(--text) 84%, var(--green) 16%);
}

.hero-copy .button {
  margin-top: 0.25rem;
  min-width: 0;
  width: fit-content;
  justify-self: start;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.hero-capacity-glass {
  width: min(100%, 35.5rem);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.54),
    rgba(232, 249, 241, 0.44)
  );
  box-shadow: 0 14px 34px rgba(16, 185, 129, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 0.72rem 0.8rem 0.76rem;
}

.hero-capacity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.hero-capacity-top p {
  font-size: 0.82rem;
  line-height: 1.28;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 78%, var(--green) 22%);
}

.hero-capacity-top strong {
  flex: 0 0 auto;
  font-size: 0.9rem;
  line-height: 1;
  color: #047857;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.34);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.27rem 0.5rem;
}

.hero-capacity-track {
  margin-top: 0.58rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(7, 10, 8, 0.1);
  overflow: hidden;
  position: relative;
}

.hero-capacity-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #18c964, #10b981);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 6px 16px rgba(16, 185, 129, 0.33);
}

.mobile-warning-banner {
  display: none;
}

.chat-link {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  transform-origin: center;
}

.chat-link .brand-icon {
  width: 1.02rem;
  height: 1.02rem;
}

.chat-logo {
  width: 1.22rem;
  height: 1.22rem;
  display: block;
}

.chat-link:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 20px rgba(7, 10, 8, 0.1);
}

.header-chat-links .chat-link.telegram {
  color: #229ed9;
  border-color: rgba(34, 158, 217, 0.3);
  animation: chatRingScale 3s ease-in-out infinite;
}

.header-chat-links .chat-link.messenger {
  color: #0084ff;
  border-color: rgba(0, 132, 255, 0.28);
  animation: chatRingScale 3s ease-in-out infinite 1.5s;
}

.hero-feature-boxes {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.52rem;
  align-items: stretch;
  grid-area: features;
}

.hero-feature-box {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.42rem;
  width: 100%;
  height: 100%;
  background-clip: padding-box;
}

.hero-feature-box .icon-wrap {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.7rem;
}

.hero-feature-box p {
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 600;
}

.hero-form-side {
  position: relative;
  display: grid;
  gap: 0.9rem;
  grid-area: form;
  z-index: 1;
  transition: transform var(--transition), filter var(--transition);
}

.hero-route-system {
  display: block;
  gap: 0.2rem;
}

.social-proof-card,
.lead-form-card {
  border: 1px solid var(--border);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.93), #fbfcf8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.social-proof-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 0.95rem;
  margin-top: 0;
}

.proof-avatars {
  display: flex;
}

.proof-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.proof-avatars span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  margin-right: -0.4rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.72rem;
  background: linear-gradient(145deg, #0fae7d, #67dbb0);
  color: #fff;
  transition: opacity 280ms ease, transform 280ms ease;
}

.proof-avatars span.is-swapping {
  opacity: 0.2;
  transform: translateY(3px);
}

.social-proof-card p {
  font-size: 0.94rem;
  font-weight: 500;
}

.proof-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.proof-status span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.verified {
  color: #0a8e63;
  background: rgba(16, 185, 129, 0.09);
}

.de-ready {
  color: #2b3130;
  background: #ffffff;
}

.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(246, 255, 251, 0.95);
  padding: 0.52rem 0.82rem;
  font-size: 0.84rem;
  font-weight: 500;
}

.pulse-dot {
  animation: pulse 2s infinite;
}

.hero-urgency-pill {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  font-size: 0.8rem;
  line-height: 1.25;
}

.lead-form-card {
  position: relative;
  padding: 1.15rem 1rem;
  isolation: isolate;
}

.lead-form-card::before {
  content: "";
  position: absolute;
  inset: 10% -10% -18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 72%);
  filter: blur(56px);
}

.lead-form-card h2 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.form-intro {
  color: color-mix(in srgb, var(--text) 72%, var(--green) 28%);
  margin-top: 0.35rem;
  font-weight: 600;
}

.hero-form-step {
  margin-top: 0;
}

.hero-step-panel {
  display: none;
  opacity: 0;
  transform: translateY(0.75rem);
}

.hero-step-panel.is-active {
  display: block;
  animation: stepFadeIn 360ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-license-grid-wrap {
  position: relative;
  margin-top: 0.35rem;
}

.hero-grid-cursor-hint {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.hero-grid-cursor-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-grid-cursor-icon {
  position: absolute;
  width: 1.65rem;
  height: 1.65rem;
  left: 26%;
  top: 9%;
  color: #067a56;
  filter: drop-shadow(0 6px 12px rgba(4, 120, 87, 0.28));
  opacity: 0;
  animation: cursorMoveToCategoryB 3.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-grid-cursor-icon path {
  fill: #ffffff;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linejoin: round;
}

.hero-grid-click-ring {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  left: 74%;
  top: 10%;
  border-radius: 999px;
  border: 2px solid rgba(16, 185, 129, 0.55);
  background: rgba(16, 185, 129, 0.1);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: cursorClickPulse 3.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-license-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-license-option {
  position: relative;
  width: 100%;
  border: 1px solid rgba(7, 10, 8, 0.14);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  min-height: 4.55rem;
  padding: 0.64rem 0.72rem;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "symbol price"
    "name price";
  align-items: center;
  column-gap: 0.52rem;
  row-gap: 0.16rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition), background var(--transition), color var(--transition);
}

.hero-license-symbol {
  grid-area: symbol;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-license-copy {
  grid-area: name;
}

.hero-license-name {
  font-size: 0.8125rem;
  line-height: 1.2;
  color: var(--muted);
}

.hero-license-price {
  grid-area: price;
  align-self: center;
  color: color-mix(in srgb, var(--green) 78%, #14532d 22%);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-license-tag {
  position: absolute;
  top: -0.58rem;
  right: 0.72rem;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.36);
  color: #047857;
  background: #eafff4;
}

.hero-license-option:hover {
  border-color: rgba(16, 185, 129, 0.42);
  box-shadow: 0 16px 30px rgba(16, 185, 129, 0.2);
  transform: translateY(-2px) scale(1.012);
  background: linear-gradient(160deg, #ffffff 0%, rgba(236, 252, 244, 0.76) 100%);
}

.hero-license-option.is-selected {
  border-color: rgba(16, 185, 129, 0.64);
  background: linear-gradient(160deg, #ffffff 0%, rgba(232, 251, 242, 0.72) 100%);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.18), 0 16px 30px rgba(16, 185, 129, 0.18);
}

.hero-license-option.is-selected .hero-license-name {
  color: color-mix(in srgb, var(--text) 86%, var(--green) 14%);
}

.hero-license-question {
  margin: 0.85rem 0 0;
  padding: 0;
  border: 0;
}

.hero-license-question legend {
  margin-bottom: 0.48rem;
  padding: 0;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.25;
  color: color-mix(in srgb, var(--text) 74%, var(--green) 26%);
}

.hero-license-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-question-option {
  border: 1px solid rgba(7, 10, 8, 0.14);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.88);
  min-height: 3.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--text) 90%, var(--green) 10%);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition), background var(--transition), color var(--transition);
}

.hero-question-option:hover {
  border-color: rgba(16, 185, 129, 0.42);
  transform: translateY(-1px);
}

.hero-question-option.is-selected {
  border-color: rgba(16, 185, 129, 0.64);
  background: linear-gradient(160deg, #ffffff 0%, rgba(230, 250, 241, 0.74) 100%);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.14);
  color: #065f46;
}

.hero-step-next {
  width: 100%;
  margin-top: 0.85rem;
  min-height: 3.55rem;
  border-radius: 0.9rem;
  font-size: 1.02rem;
}

.hero-step-next:disabled {
  cursor: not-allowed;
  background: #b8c4bc;
  box-shadow: none;
  filter: grayscale(0.1);
  transform: none;
}

.order-kicker {
  margin-bottom: 0.58rem;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--text) 76%, var(--green) 24%);
  font-weight: 700;
  text-align: center;
}

.order-header {
  text-align: center;
}

.order-steps {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 19.8rem);
  margin-inline: auto;
  gap: 0.72rem;
  position: relative;
  isolation: isolate;
}

.order-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.24rem;
  padding: 0.3rem 0.18rem;
  flex: 1 1 0;
  color: var(--muted);
  min-width: 0;
  text-align: center;
}

.order-steps li::after {
  content: "➜";
  position: absolute;
  right: -0.72rem;
  top: 0.67rem;
  font-size: 0.72rem;
  color: rgba(16, 185, 129, 0.55);
  animation: stepArrowShift 1.4s ease-in-out infinite;
}

.order-steps li:last-child::after {
  display: none;
}

.order-step-index {
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 185, 129, 0.58);
  background: #ffffff;
  font-size: 0.73rem;
  font-weight: 700;
  color: #0c1210;
  box-shadow: 0 8px 16px rgba(7, 10, 8, 0.08);
}

.order-step-label {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.order-steps li.is-active,
.order-steps li.is-done {
  color: #0b7d59;
}

.order-steps li.is-active .order-step-index,
.order-steps li:not(.is-done) .order-step-index {
  border-color: rgba(16, 185, 129, 0.58);
  background: #ffffff;
  color: #0c1210;
}

.order-steps li.is-done .order-step-index {
  border-color: rgba(16, 185, 129, 0.9);
  background: color-mix(in srgb, var(--green) 94%, #0f8f62 6%);
  color: #ffffff;
}

.order-progress-inline {
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(231, 251, 242, 0.76));
  padding: 0.46rem 0.6rem;
}

.order-progress-inline p {
  margin: 0;
  font-size: 0.7rem;
  color: color-mix(in srgb, var(--muted) 80%, var(--green) 20%);
  line-height: 1.28;
  text-align: center;
}

.order-progress-inline p strong {
  color: #047857;
}

.order-progress-ring {
  --progress: 34;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #ffffff 60%, transparent 61%),
    conic-gradient(
      from 270deg,
      rgba(16, 185, 129, 0.96) calc(var(--progress) * 1%),
      rgba(7, 10, 8, 0.1) 0
    );
  box-shadow: 0 12px 22px rgba(16, 185, 129, 0.18);
}

.order-progress-ring strong {
  font-size: 0.52rem;
  color: #066948;
}

.order-form-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.order-field {
  display: grid;
  grid-template-rows: auto 2.8rem minmax(0.74rem, auto);
  align-items: start;
  gap: 0.18rem;
  min-width: 0;
}

.order-field span {
  font-size: 0.68rem;
  color: color-mix(in srgb, var(--text) 68%, var(--green) 32%);
  font-weight: 600;
}

.order-field-note {
  margin-top: 0;
  font-size: 0.62rem;
  color: color-mix(in srgb, var(--muted) 78%, var(--green) 22%);
  min-height: 0.74rem;
  line-height: 1.2;
}

.order-field-note-muted {
  visibility: hidden;
}

.order-field input {
  width: 100%;
  height: 2.8rem;
  min-height: 2.8rem;
  min-width: 0;
  border: 1px solid rgba(7, 10, 8, 0.13);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.62rem 0.72rem;
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition), transform var(--transition);
  box-sizing: border-box;
}

.order-phone-row {
  display: grid;
  grid-template-columns: minmax(0, 7.2rem) minmax(0, 1fr);
  gap: 0.44rem;
  min-width: 0;
}

.order-phone-row select {
  height: 2.8rem;
  min-height: 2.8rem;
  min-width: 0;
  border: 1px solid rgba(7, 10, 8, 0.13);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.56rem 0.58rem;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(7, 10, 8, 0.55) 50%),
    linear-gradient(135deg, rgba(7, 10, 8, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 0.84rem) calc(1.12rem),
    calc(100% - 0.58rem) calc(1.12rem);
  background-size: 0.28rem 0.28rem, 0.28rem 0.28rem;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.order-field input[type="date"] {
  appearance: auto;
  -webkit-appearance: auto;
}

.order-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
}

@keyframes stepArrowShift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.55;
  }
  50% {
    transform: translateX(0.16rem);
    opacity: 0.95;
  }
}

.order-phone-row select:focus-visible {
  outline: none;
  border-color: rgba(16, 185, 129, 0.64);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
  background-color: #ffffff;
}

.order-field input::placeholder {
  color: color-mix(in srgb, var(--muted) 70%, white 30%);
}

.order-field input:focus-visible {
  outline: none;
  border-color: rgba(16, 185, 129, 0.64);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
  background: #ffffff;
}

.order-field input.user-invalid {
  border-color: rgba(220, 38, 38, 0.58);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
}

.order-field-wide {
  grid-column: 1 / -1;
}

.order-field-span-2 {
  grid-column: span 2;
}

.order-field-birth-date {
  grid-column: 1 / 2;
}

.order-field-birth-place {
  grid-column: 2 / 4;
}

.order-field-nationality {
  grid-column: 1 / 2;
}

.order-field-street {
  grid-column: 2 / 4;
}

.order-field-city {
  grid-column: 1 / 3;
}

.order-field-postal {
  grid-column: 3 / 4;
}

.order-actions {
  margin-top: 0.86rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 0.5rem;
}

.order-back-button {
  border-color: rgba(7, 10, 8, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.order-submit-button {
  min-height: 3rem;
  border-radius: 0.8rem;
}

.order-submit-button.is-clicked {
  transform: translateY(0) scale(0.98);
}

.order-submit-button.is-submitting {
  pointer-events: none;
  opacity: 0.94;
  filter: saturate(0.95);
}

.order-submit-button.is-ready-to-submit {
  animation: submitPulseGlow 1.4s ease-in-out infinite;
}

.order-submit-button.is-ready-to-submit .button-icon {
  animation: submitIconNudge 1.4s ease-in-out infinite;
}

@keyframes submitPulseGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 26px rgba(16, 185, 129, 0.26);
    filter: saturate(1);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 18px 38px rgba(16, 185, 129, 0.4);
    filter: saturate(1.12);
  }
}

@keyframes submitIconNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

.submit-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 6, 0.66);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.submit-loading-card {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-width: min(100%, 16.5rem);
  border-radius: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.28);
  background: linear-gradient(160deg, #ffffff, rgba(241, 252, 247, 0.96));
  box-shadow: 0 20px 50px rgba(7, 10, 8, 0.24);
  padding: 1rem 1.1rem;
}

.submit-loading-card p {
  margin: 0;
  color: #134034;
  font-weight: 600;
  font-size: 0.92rem;
}

.submit-loading-spinner {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 3px solid rgba(16, 185, 129, 0.2);
  border-top-color: #10b981;
  animation: submitSpinner 0.85s linear infinite;
}

@keyframes submitSpinner {
  to {
    transform: rotate(360deg);
  }
}

body.form-submit-loading {
  overflow: hidden;
}

body.form-submit-loading .submit-loading-overlay {
  opacity: 1;
  pointer-events: auto;
}

.live-proof-region {
  position: fixed;
  left: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 180;
  pointer-events: none;
  display: grid;
  gap: 0.5rem;
  width: auto;
  max-width: calc(100vw - 2rem);
}

.live-proof-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.56rem;
  align-items: start;
  border-radius: 0.95rem;
  border: 1px solid rgba(16, 185, 129, 0.28);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(238, 251, 245, 0.92));
  box-shadow: 0 18px 44px rgba(7, 10, 8, 0.19);
  padding: 0.66rem 0.78rem;
  width: fit-content;
  max-width: min(29rem, calc(100vw - 2rem));
  animation: liveProofInDesktop 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.live-proof-card.is-leaving {
  animation: liveProofOutDesktop 300ms cubic-bezier(0.55, 0, 1, 0.45) both;
}

.live-proof-icon {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.12);
  display: grid;
  place-items: center;
  color: #0f7f5d;
}

.live-proof-icon .icon {
  width: 1rem;
  height: 1rem;
}

.live-proof-main {
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 82%, var(--green-strong) 18%);
}

.live-proof-meta {
  margin-top: 0.15rem;
  font-size: 0.74rem;
  color: #7a8380;
}

@keyframes liveProofInDesktop {
  from {
    opacity: 0;
    transform: translate(-16px, 32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes liveProofOutDesktop {
  from {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-12px, 26px) scale(0.97);
  }
}

@keyframes liveProofInMobile {
  from {
    opacity: 0;
    transform: translateY(-220%) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes liveProofOutMobile {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }
}

.mobile-only {
  display: none;
}

.upload-review-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.62rem;
}

.upload-review-card {
  border: 1px solid rgba(7, 10, 8, 0.12);
  border-radius: 0.95rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 246, 0.82));
  padding: 0.82rem;
  display: grid;
  gap: 0.45rem;
  opacity: 1;
  transform: translateY(0);
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition), transform var(--transition), opacity var(--transition);
}

.upload-review-card.is-active {
  border-color: rgba(16, 185, 129, 0.44);
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.12);
}

.upload-review-card.is-complete {
  border-color: rgba(16, 185, 129, 0.75);
  background: linear-gradient(160deg, rgba(237, 255, 246, 0.92), rgba(225, 249, 236, 0.9));
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.18), 0 12px 24px rgba(16, 185, 129, 0.14);
}

.upload-review-card.is-invalid {
  border-color: rgba(220, 38, 38, 0.64);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.16), 0 12px 24px rgba(220, 38, 38, 0.12);
}

.upload-review-card.is-locked {
  opacity: 0.45;
  transform: translateY(0.2rem);
  pointer-events: none;
}

.upload-review-card.is-hidden {
  display: none;
}

.upload-review-card.is-collapsed {
  padding-block: 0.62rem;
}

.upload-review-card.is-collapsed p,
.upload-review-card.is-collapsed .upload-review-actions label,
.upload-review-card.is-collapsed .upload-review-actions .js-open-signature-pad,
.upload-review-card.is-collapsed .signature-pad-shell {
  display: none;
}

.upload-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.55rem;
}

.upload-review-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.upload-review-head h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.15;
}

.upload-title-icon {
  width: 0.96rem;
  height: 0.96rem;
  flex: 0 0 0.96rem;
  fill: none;
  stroke: color-mix(in srgb, var(--green) 82%, #00563c 18%);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-status {
  font-size: 0.68rem;
  border-radius: 999px;
  min-height: 1.78rem;
  padding: 0.28rem 0.62rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 10, 8, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
}

.upload-review-card.is-complete .upload-status {
  border-color: rgba(16, 185, 129, 0.55);
  background: rgba(16, 185, 129, 0.14);
  color: #066948;
}

.upload-review-card p {
  font-size: 0.76rem;
  line-height: 1.38;
  color: color-mix(in srgb, var(--text) 82%, var(--green) 18%);
}

.upload-review-actions {
  margin-top: 0.22rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  width: 100%;
}

.upload-review-actions .button {
  min-height: 2.55rem;
  border-radius: 0.75rem;
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  flex: 0 0 auto;
  min-width: 0;
}

.upload-review-actions .button span {
  white-space: nowrap;
}

.upload-button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.upload-button input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-edit-button {
  display: none;
}

.upload-review-card.is-complete .upload-edit-button {
  display: inline-flex;
  flex: 0 0 auto;
}

.upload-edit-inline {
  min-height: 1.78rem;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  border-color: rgba(7, 10, 8, 0.2);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(7, 10, 8, 0.08);
}

.upload-edit-inline .button-icon {
  width: 0.8rem;
  height: 0.8rem;
  flex-basis: 0.8rem;
  stroke: #0c1210;
}

.signature-pad-shell {
  display: none;
  margin-top: 0.48rem;
  border: 1px solid rgba(7, 10, 8, 0.12);
  border-radius: 0.85rem;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
}

.signature-pad-shell.is-open {
  display: block;
}

.signature-pad-shell canvas {
  width: 100%;
  height: 8.2rem;
  border-radius: 0.65rem;
  border: 1px dashed rgba(7, 10, 8, 0.2);
  background: #ffffff;
  touch-action: none;
}

.signature-pad-actions {
  margin-top: 0.48rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.signature-pad-actions .button {
  min-height: 2.4rem;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

.review-consent {
  margin-top: 0.82rem;
  display: grid;
  gap: 0.42rem;
}

.review-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
  font-size: 0.77rem;
  line-height: 1.35;
  color: color-mix(in srgb, var(--text) 78%, var(--green) 22%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 0.8rem;
  padding: 0.56rem 0.62rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(236, 252, 245, 0.78));
}

.review-check input[type="checkbox"] {
  appearance: none;
  width: 1.02rem;
  height: 1.02rem;
  border: 1px solid rgba(16, 185, 129, 0.58);
  border-radius: 0.25rem;
  background: #fff;
  margin-top: 0.1rem;
  position: relative;
}

.review-check input[type="checkbox"]::after {
  content: "";
  position: absolute;
  inset: 0.16rem;
  border-radius: 0.1rem;
  background: rgba(16, 185, 129, 0.95);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: scale(0.8);
}

.review-check input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: scale(1);
}

.review-check input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.review-check a {
  color: #0a8e63;
  text-decoration: underline;
}

.review-check.is-invalid {
  border-color: rgba(220, 38, 38, 0.45);
  background: linear-gradient(160deg, rgba(255, 247, 247, 0.95), rgba(255, 237, 237, 0.84));
  color: #7f1d1d;
}

.order-actions-review {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
}

.route-de-badge {
  display: none;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursorMoveToCategoryB {
  0% {
    left: 26%;
    top: 9%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
  12%,
  22% {
    left: 26%;
    top: 9%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
  52%,
  64% {
    left: 74%;
    top: 10%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
  58% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.9);
  }
  74%,
  92% {
    left: 74%;
    top: 10%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
  100% {
    left: 74%;
    top: 10%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
}

@keyframes cursorClickPulse {
  0%,
  44% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
  }
  54% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.55);
  }
  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
}

.risk-copy {
  margin-top: 0.8rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.trust-strip {
  z-index: 2;
  scroll-margin-top: 5.6rem;
}

.trust-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr 1fr;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.trust-item {
  border: 1px solid rgba(7, 10, 8, 0.06);
  border-radius: 1rem;
  padding: 0.72rem;
  background: #fff;
}

.icon-wrap {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(16, 185, 129, 0.15),
    rgba(16, 185, 129, 0.03)
  );
  color: color-mix(in srgb, var(--green) 80%, #01472f 20%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.18);
}

.trust-item h2 {
  margin-top: 0.5rem;
  font-size: 0.96rem;
  line-height: 1.2;
}

.trust-item p {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.benefits-bento {
  display: grid;
  gap: 0.9rem;
}

.benefits-side-stack {
  display: grid;
  gap: 0.9rem;
}

.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(160deg, #ffffff 0%, rgba(248, 251, 247, 0.88) 100%);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition), background var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.33);
  background: linear-gradient(160deg, #ffffff, rgba(233, 253, 245, 0.78));
  box-shadow: 0 22px 36px rgba(16, 185, 129, 0.14);
}

.benefit-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.benefit-card h3 {
  font-size: var(--font-size-h3);
  line-height: 1.2;
}

.benefit-card p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.benefit-card.large {
  display: flex;
  flex-direction: column;
}

.benefit-card.large .dl-card-showcase {
  flex: 1;
}

.benefits-side-stack .benefit-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dl-card-showcase {
  position: relative;
  margin-top: 0.95rem;
  min-height: clamp(11rem, 24vw, 15rem);
  border-radius: 1rem;
  border: 1px solid rgba(7, 10, 8, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(230, 250, 241, 0.62));
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
}

.dl-card-showcase::before {
  content: "";
  position: absolute;
  inset: 12% -20% auto;
  height: 62%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
}

.dl-card {
  position: absolute;
  width: clamp(10.5rem, 54%, 15rem);
  max-width: 100%;
  height: auto;
  border-radius: 0.85rem;
  clip-path: inset(1.9% 1.9% 1.9% 1.9% round 0.72rem);
  filter: brightness(1.09) contrast(1.04) saturate(1.06)
    drop-shadow(0 20px 32px rgba(7, 10, 8, 0.22));
  object-fit: cover;
}

.dl-card-back {
  left: 50%;
  top: 50%;
  transform: translate(-62%, -52%) rotate(-10deg) scale(0.96);
  opacity: 0.85;
  z-index: 1;
}

.dl-card-front {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-26%, -20%) rotate(7deg) scale(1.03);
  z-index: 3;
}

.mini-visual {
  margin-top: 0.9rem;
  min-height: 2.5rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(7, 10, 8, 0.08);
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-inline: 0.65rem;
}

.mini-route span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.mini-route span:nth-child(2) {
  margin-inline: auto;
}

.mini-status .dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
}

.mini-status .ok {
  background: var(--green);
}

.mini-status .line {
  width: 72%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.9),
    rgba(16, 185, 129, 0.15)
  );
}

.mini-checks span {
  width: 31%;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.32);
}

.mini-dashboard span {
  width: 1.2rem;
  border-radius: 0.3rem;
  background: rgba(16, 185, 129, 0.35);
}

.mini-dashboard span:nth-child(1) {
  height: 0.9rem;
}

.mini-dashboard span:nth-child(2) {
  height: 1.3rem;
}

.mini-dashboard span:nth-child(3) {
  height: 1.75rem;
}

.mini-dashboard span:nth-child(4) {
  height: 1.05rem;
}

.audience-grid {
  display: grid;
  gap: 0.9rem;
}

.audience-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fbfcf9;
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}

.audience-card h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
}

.audience-card ul {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.audience-card li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
}

.audience-card li::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4rem;
  border: 1px solid rgba(16, 185, 129, 0.34);
  background: rgba(16, 185, 129, 0.18);
}

.audience-card.dark {
  color: #eaf2ee;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(155deg, #080d0b, #050706);
}

.audience-card.dark .eyebrow {
  color: #85e8c3;
}

.audience-card.dark li::before {
  border-color: rgba(133, 232, 195, 0.58);
  background: rgba(133, 232, 195, 0.3);
}

.route-de-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(133, 232, 195, 0.4);
  padding: 0.2rem 0.55rem;
  color: #9ff3d1;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-section {
  background: linear-gradient(170deg, #040605, #070b09 65%, #050706);
  color: #edf4ef;
  overflow: clip;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: -15% -10%;
  background-image: radial-gradient(
      circle at 15% 40%,
      rgba(16, 185, 129, 0.2),
      transparent 40%
    ),
    radial-gradient(circle at 85% 65%, rgba(16, 185, 129, 0.14), transparent 42%);
  filter: blur(120px);
  pointer-events: none;
}

.process-route {
  position: relative;
  display: grid;
  gap: 0.9rem;
  margin-top: 0.85rem;
}

.process-route::before {
  content: none;
}

.step-card {
  position: relative;
  margin-left: 1rem;
  padding: 1.45rem 0.95rem 0.95rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(235, 245, 239, 0.13);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition), transform var(--transition),
    background var(--transition), box-shadow var(--transition);
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  left: 1.05rem;
  top: -0.62rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #052e1e;
  background: #8feacc;
  box-shadow: 0 0 0 6px rgba(143, 234, 204, 0.18);
}

.step-card.is-active {
  border-color: rgba(143, 234, 204, 0.56);
  background: rgba(143, 234, 204, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.step-number {
  display: none;
}

.step-card h3 {
  margin-top: 0.3rem;
  font-size: 1.08rem;
}

.step-card p {
  margin-top: 0.35rem;
  color: #c0cbc4;
  font-size: 0.93rem;
}

.comparison-shell {
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ffffff 0%, #f8faf7 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.comparison-panel {
  padding: 1.35rem;
}

.comparison-panel h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

.comparison-panel ul {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.comparison-panel li {
  padding-left: 1.45rem;
  position: relative;
  font-size: 0.875rem;
}

.comparison-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.comparison-panel.muted {
  background: rgba(7, 10, 8, 0.03);
  border-radius: 0;
}

.comparison-panel.muted li::before {
  background: rgba(95, 104, 98, 0.35);
}

.comparison-panel.highlighted {
  background: linear-gradient(
    155deg,
    rgba(16, 185, 129, 0.15),
    rgba(255, 255, 255, 0.95)
  );
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.comparison-panel.highlighted li::before {
  background: rgba(16, 185, 129, 0.95);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.comparison-mobile {
  display: grid;
  gap: 0.75rem;
}

.comparison-mobile-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.9rem;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.comparison-mobile-card p + p {
  margin-top: 0.45rem;
  color: color-mix(in srgb, var(--text) 80%, var(--green) 20%);
}

.testimonials-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  max-width: 100%;
}

.testimonials-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
  isolation: isolate;
  padding: 0.2rem 0.05rem;
}

.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  padding: 0.55rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  color: rgba(7, 10, 8, 0.62);
  font-size: 1rem;
  z-index: 3;
  transition: color var(--transition), transform var(--transition),
    opacity var(--transition);
  opacity: 0.78;
}

.carousel-nav .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.carousel-nav.prev {
  left: -2.25rem;
  transform: translateY(-50%) rotate(180deg);
}

.carousel-nav.next {
  right: -2.25rem;
}

.carousel-nav:hover {
  color: rgba(7, 10, 8, 0.78);
  opacity: 1;
}

.arrow-glyph {
  position: relative;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
}

.arrow-glyph::before,
.arrow-glyph::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1rem;
  height: 2px;
  background: currentColor;
  transform-origin: right center;
  border-radius: 2px;
}

.arrow-glyph::before {
  transform: translateY(-50%) rotate(60deg);
}

.arrow-glyph::after {
  transform: translateY(-50%) rotate(-60deg);
}

.testimonials-track {
  padding: 0.2rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(160deg, #ffffff, rgba(250, 253, 250, 0.9));
  box-shadow: none;
  min-height: 100%;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-clip: padding-box;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.55;
}

.trust-item,
.benefit-card,
.audience-card,
.comparison-panel,
.testimonial-card,
.final-cta-card,
.final-support-card,
.faq-block,
.lead-form-card,
.social-proof-card,
.hero-feature-box {
  overflow: hidden;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.client-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(145deg, #0fae7d, #67dbb0);
}

.client-social {
  display: flex;
  gap: 0.3rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.client-social span {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.brand-icon {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
  stroke: none;
}

.social-facebook {
  color: #1877f2;
}

.social-google {
  color: #ffffff;
}

.social-x {
  color: #101214;
}

.testimonial-card footer {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.2rem;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.96rem;
}

.mini-result {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #077f58;
  background: rgba(16, 185, 129, 0.09);
  padding: 0.23rem 0.56rem;
  font-size: 0.76rem;
}

.top-badge {
  font-size: 0.68rem;
  padding: 0.17rem 0.5rem;
}

.faq-cta-section {
  padding-top: clamp(2.6rem, 4.5vw, 4.2rem);
}

.final-grid {
  display: grid;
  gap: 0.95rem;
  align-items: stretch;
}

.final-rail {
  display: grid;
  gap: 0;
  grid-template-rows: 1fr;
  height: 100%;
}

.faq-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid rgba(7, 10, 8, 0.1);
  border-radius: 0.95rem;
  background: #fff;
  overflow: clip;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.1rem;
  padding: 0.9rem;
  font-size: 0.99rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.faq-trigger span {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--transition), color var(--transition);
}

.faq-trigger[aria-expanded="true"] span {
  transform: rotate(45deg);
  color: var(--green);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 340ms cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  padding: 0;
}

.faq-panel p {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-item.open .faq-panel {
  max-height: 1000px;
  opacity: 1;
  padding: 0.7rem 0 1.8rem;
}

.faq-panel p {
  margin-inline: 1.6rem;
}

.faq-block .section-header h2,
.final-cta-card h2 {
  font-size: 1.5625rem;
}

.final-cta-card {
  position: relative;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: linear-gradient(160deg, #f9fffc, #e8f9f1);
  box-shadow: 0 24px 64px rgba(16, 185, 129, 0.16);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 18% -10% auto;
  height: 140px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent 74%);
  filter: blur(52px);
}

.final-cta-card h2 {
  font-size: 1.5625rem;
  margin-bottom: 0.6rem;
}

.final-cta-card p {
  color: color-mix(in srgb, var(--text) 76%, var(--green) 24%);
  font-size: 0.9rem;
}

.final-cta-card .eyebrow {
  justify-content: center;
}

.final-cta-card .button {
  margin-top: 1.15rem;
}

.cta-footnote {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.final-support-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
  padding: 0.95rem;
  height: 100%;
}

.final-support-card h2 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.final-support-card p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.final-support-card ul {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.35rem;
}

.final-support-card li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
}

.final-support-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.75);
}

.site-footer {
  margin-top: clamp(1.6rem, 2.6vw, 2.4rem);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0a0d0b, #070a08);
  color: #e8efe9;
  padding-block: 1.3rem;
}

.footer-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.footer-brand .brand-logo-desktop {
  height: 4rem;
  filter: brightness(1.02);
}

.footer-brand .brand-logo-mobile {
  display: none;
  height: 3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.95rem;
  justify-content: flex-end;
  align-self: center;
  justify-self: end;
}

.footer-links a {
  color: rgba(232, 239, 233, 0.88);
  font-size: 0.87rem;
}

.footer-chat-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.footer-chat-links .chat-link {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  transform-origin: center;
  animation: none !important;
}

.footer-chat-links .chat-link.telegram {
  color: #229ed9;
  border-color: rgba(34, 158, 217, 0.3);
}

.footer-chat-links .chat-link.messenger {
  color: #0084ff;
  border-color: rgba(0, 132, 255, 0.28);
}

.footer-chat-links .brand-icon {
  width: 1.02rem;
  height: 1.02rem;
}

.footer-copy {
  color: rgba(232, 239, 233, 0.62);
  font-size: 0.8rem;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(232, 239, 233, 0.16);
  padding-top: 0.7rem;
  text-align: center;
}

.legal-page .section.legal-main {
  padding-top: clamp(5.8rem, 11vw, 7.2rem);
}

.thankyou-page .section.legal-main.thankyou-main {
  padding-top: 0;
  padding-bottom: 0;
}

body.thankyou-page {
  padding-top: 0;
  padding-bottom: 0;
}

.thankyou-shell {
  display: grid;
  gap: 0.9rem;
}

.thankyou-hero-card,
.thankyou-flow-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  padding: clamp(0.92rem, 2.5vw, 1.35rem);
}

.thankyou-hero-card h1 {
  font-size: clamp(1.42rem, 2.7vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.thankyou-warning-box {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0.62rem;
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 0.82rem;
  background: linear-gradient(160deg, rgba(255, 244, 244, 0.92), rgba(255, 255, 255, 0.95));
  padding: 0.72rem;
}

.thankyou-warning-icon {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, 0.42);
  color: #9f1239;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-top: 0.02rem;
}

.thankyou-warning-box strong {
  display: block;
  color: #7f1d1d;
  line-height: 1.35;
}

.thankyou-warning-box p {
  margin-top: 0.28rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5f2a2a;
  max-width: 72ch;
}

.thankyou-visual-progress {
  margin-top: 0.66rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 1.25rem;
  width: 100%;
  margin-inline: 0;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.thankyou-stage {
  display: flex;
  justify-content: center;
}

.thankyou-stage-circle {
  position: relative;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 30px rgba(7, 10, 8, 0.12);
  flex: 0 0 auto;
}

.thankyou-stage-circle svg {
  width: 6.9rem;
  height: 6.9rem;
}

.thankyou-stage-circle.is-done {
  background: linear-gradient(150deg, #14b86f, #0f9257);
}

.thankyou-stage-circle.is-active {
  background: linear-gradient(160deg, #dc2626, #b91c1c);
}

.thankyou-stage-circle.is-pending {
  background: linear-gradient(160deg, #8e99a5, #6f7a86);
}

.thankyou-stage-circle.is-active::after {
  content: "!";
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: #e11d48;
  border: 2px solid #ffffff;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(127, 29, 29, 0.28);
}

.thankyou-stage-double-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
}

.thankyou-stage-double-icon svg {
  width: 4.95rem;
  height: 4.95rem;
}

.thankyou-stage-arrow {
  color: rgba(16, 185, 129, 0.72);
  font-size: 4rem;
  line-height: 1;
  animation: stepArrowShift 1.4s ease-in-out infinite;
  flex: 0 0 auto;
}

.thankyou-stage-copy {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.48rem;
  width: 100%;
}

.thankyou-stage-copy article {
  border: 1px solid rgba(7, 10, 8, 0.1);
  border-radius: 0.76rem;
  background: #ffffff;
  padding: 0.5rem 0.54rem;
}

.thankyou-stage-copy article:nth-child(1) {
  grid-column: 1;
}

.thankyou-stage-copy article:nth-child(2) {
  grid-column: 3;
}

.thankyou-stage-copy article:nth-child(3) {
  grid-column: 5;
}

.thankyou-stage-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  text-align: center;
  font-size: 1.04rem;
  line-height: 1.26;
}

.thankyou-step-dot {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #070a08;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.83rem;
  flex: 0 0 auto;
}

.thankyou-stage-copy p {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.42;
  text-align: center;
}

.thankyou-flow-card .eyebrow {
  display: flex;
  justify-content: center;
}

.thankyou-cta {
  margin-top: 0.78rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.72rem;
  flex-wrap: nowrap;
}

.thankyou-cta .thankyou-cta-btn {
  flex: 0 1 47%;
  min-width: 0;
  max-width: 20rem;
}

.thankyou-cta-btn {
  width: 100%;
  justify-content: center;
  min-height: 2.7rem;
  border-radius: 0.85rem;
  animation: thankyouCtaPulse 1.45s ease-in-out infinite;
}

.thankyou-cta-btn.is-messenger {
  background: #0084ff;
  border-color: #0084ff;
  color: #ffffff;
}

.thankyou-cta-btn.is-messenger:hover {
  background: #0077e6;
  border-color: #0077e6;
}

.thankyou-cta-btn.is-telegram {
  background: #229ed9;
  border-color: #229ed9;
  color: #ffffff;
}

.thankyou-cta-btn.is-telegram:hover {
  background: #1c90c8;
  border-color: #1c90c8;
}

.thankyou-cta-btn .chat-logo {
  color: inherit;
  fill: currentColor;
}

@keyframes thankyouCtaPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 18px rgba(7, 10, 8, 0.12);
  }
  45% {
    transform: translateY(-1px) scale(1.015);
    box-shadow: 0 14px 26px rgba(16, 185, 129, 0.24);
  }
  70% {
    transform: translateY(0) scale(1.015);
    box-shadow: 0 12px 22px rgba(7, 10, 8, 0.16);
  }
}

body.perf-lite .thankyou-cta-btn {
  animation: none;
}

.legal-layout {
  display: grid;
  gap: 0.9rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: color-mix(in srgb, var(--text) 82%, var(--green) 18%);
  font-weight: 600;
  font-size: 0.84rem;
}

.legal-nav a.is-active {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--green) 94%, #ffffff 6%),
    color-mix(in srgb, var(--green-strong) 82%, #ffffff 18%)
  );
  color: #ffffff;
  border-color: rgba(16, 185, 129, 0.44);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.2);
}

.legal-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: clamp(0.95rem, 2.6vw, 1.55rem);
}

.legal-card h1 {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.legal-card h2 {
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.34;
  margin-top: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: color-mix(in srgb, var(--text) 84%, #000000 16%);
  font-size: 0.93rem;
  line-height: 1.6;
}

.legal-card p + p {
  margin-top: 0.55rem;
}

.legal-card ol {
  margin: 0.45rem 0 0.3rem 1.4rem;
  list-style: decimal;
  list-style-position: outside;
  padding-left: 0.2rem;
}

.legal-card ul {
  margin: 0.45rem 0 0.3rem 1.2rem;
  list-style: disc;
  list-style-position: outside;
  padding-left: 0.2rem;
}

.legal-card li + li {
  margin-top: 0.34rem;
}

.legal-card li::marker {
  color: color-mix(in srgb, var(--green) 70%, #0a4f36 30%);
}

.legal-lead {
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 76%, var(--green-strong) 24%);
}

.sticky-mobile-cta {
  position: fixed;
  left: 50%;
  right: auto;
  width: calc(100% - 1.6rem);
  max-width: 19rem;
  bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.42rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, 130%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
  z-index: 70;
}

.focus-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 6, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 110;
}

body.form-focus-active .focus-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.form-focus-active .hero-form-side {
  z-index: 120;
}

.sticky-mobile-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-mobile-cta .button {
  min-height: 2.55rem;
  width: 100%;
  font-size: 0.86rem;
  padding-inline: 0.9rem;
}

.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 6, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.exit-intent-modal {
  width: min(100%, 36rem);
  border-radius: 1.24rem;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #ffffff, rgba(243, 251, 247, 0.95));
  box-shadow: 0 30px 74px rgba(7, 10, 8, 0.3);
  padding: 1.45rem;
  position: relative;
  transform: translateY(10px) scale(0.98);
  transition: transform var(--transition);
}

.exit-intent-close {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.exit-intent-modal h2 {
  font-size: 1.62rem;
  line-height: 1.2;
  max-width: calc(100% - 2.8rem);
}

.exit-intent-modal p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.48;
  max-width: 35ch;
}

.exit-intent-actions {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.exit-chat-button {
  min-height: 3rem;
  border-radius: 0.98rem;
  font-size: 0.98rem;
  font-weight: 700;
  justify-content: center;
  gap: 0.55rem;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.exit-chat-button .chat-logo {
  width: 1.2rem;
  height: 1.2rem;
}

.button-telegram {
  background: linear-gradient(140deg, #ffffff, #ecf8ff);
  border: 1px solid rgba(34, 158, 217, 0.48);
  color: #229ed9;
  box-shadow: 0 12px 30px rgba(34, 158, 217, 0.24);
}

.button-messenger {
  background: linear-gradient(140deg, #ffffff, #edf2ff);
  border: 1px solid rgba(0, 132, 255, 0.46);
  color: #0084ff;
  box-shadow: 0 12px 30px rgba(0, 132, 255, 0.26);
}

.button-telegram:hover,
.button-telegram:focus-visible {
  transform: translateY(-2px) scale(1.012);
  border-color: rgba(34, 158, 217, 0.72);
  box-shadow: 0 19px 38px rgba(34, 158, 217, 0.33);
  filter: saturate(1.12);
}

.button-messenger:hover,
.button-messenger:focus-visible {
  transform: translateY(-2px) scale(1.012);
  border-color: rgba(0, 132, 255, 0.72);
  box-shadow: 0 19px 38px rgba(0, 132, 255, 0.34);
  filter: saturate(1.12);
}

.exit-intent-close:hover,
.exit-intent-close:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(7, 10, 8, 0.15);
  filter: brightness(1.03);
}

body.exit-intent-open {
  overflow: hidden;
}

body.exit-intent-open .exit-intent-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.exit-intent-open .exit-intent-modal {
  transform: translateY(0) scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.42);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes aurora {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(28px, -12px, 0);
  }
}

@keyframes chatRingScale {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  12% {
    transform: scale(1.28) rotate(-12deg);
  }
  19% {
    transform: scale(1.34) rotate(10deg);
  }
  26% {
    transform: scale(1.24) rotate(-8deg);
  }
  33% {
    transform: scale(1.12) rotate(5deg);
  }
  42% {
    transform: scale(1) rotate(0deg);
  }
}

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .order-form-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .order-field {
    grid-column: span 2;
  }

  .order-field-wide {
    grid-column: 1 / -1;
  }

  .order-field-birth-date {
    grid-column: 1 / 4;
  }

  .order-field-birth-place {
    grid-column: 4 / 7;
  }

  .order-field-nationality {
    grid-column: 1 / 3;
  }

  .order-field-street {
    grid-column: 3 / 7;
  }

  .order-field-city {
    grid-column: 1 / 5;
  }

  .order-field-postal {
    grid-column: 5 / 7;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "copy form"
      "features form";
    align-items: stretch;
    gap: 1.5rem;
  }

  .hero-copy .button {
    min-height: 3.5rem;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1),
      background-position 360ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 360ms cubic-bezier(0.22, 1, 0.36, 1);
    width: fit-content;
    justify-self: start;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(0.72rem, 1.25vw, 1.12rem);
  }

  .hero-cta-row {
    margin-top: 0.45rem;
  }

  .hero-feature-boxes {
    gap: 0.6rem;
    margin-top: 0;
    align-self: end;
    align-items: stretch;
  }

  .hero-feature-box {
    padding: 1.5rem;
    align-content: center;
  }

  .hero-feature-box p {
    font-size: 1rem;
  }

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

  .benefits-bento {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .benefit-card.large {
    grid-column: 1;
    grid-row: 1;
  }

  .benefits-side-stack {
    grid-column: 2;
    grid-row: 1;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

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

  .process-route {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .process-route::before {
    content: none;
  }

  .step-card {
    margin-left: 0;
    padding-left: 1.1rem;
  }

  .step-card::before {
    left: 1rem;
    top: -0.62rem;
    transform: none;
  }

  .comparison-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .comparison-mobile {
    display: none;
  }

  .testimonials-carousel {
    max-width: 100%;
  }

  .final-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

  .final-rail {
    grid-template-rows: 1fr;
    height: 100%;
  }
}

@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: stretch;
  }

  .hero-copy {
    max-width: 96%;
  }

  .hero-form-side {
    height: 100%;
  }

  .process-route {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 80rem) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .trust-item {
    padding: 0.82rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .trust-item,
  .comparison-mobile-card {
    transition: transform var(--transition), box-shadow var(--transition),
      border-color var(--transition);
  }

  .trust-item:hover,
  .comparison-mobile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(7, 10, 8, 0.13);
  }

  .button-primary:hover {
    transform: translateY(-2px) scale(1.01);
  }
}

@media (min-width: 48rem) {
  .sticky-mobile-cta {
    display: none;
  }
}

@media (max-width: 47.99rem) {
  :root {
    --top-banner-height: 2.45rem;
  }

  body {
    padding-top: 4.2rem;
    overflow-x: hidden;
  }

  .section {
    padding-block: clamp(1.7rem, 7vw, 2.35rem);
  }

  .section-header h2 {
    font-size: 1.25rem;
    line-height: 1.16;
  }

  .hero-section {
    padding-top: 2.15rem;
  }

  .hero-grid {
    gap: 1.05rem;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "features";
  }

  .hero-copy {
    gap: 0.72rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10.2vw, 2.45rem);
    line-height: 1.14;
    max-width: 12ch;
  }

  .hero-subtitle {
    font-size: 1.17rem;
  }

  .hero-description {
    font-size: 1.01rem;
    line-height: 1.56;
    max-width: 34ch;
  }

  .hero-capacity-glass {
    padding: 0.68rem 0.74rem 0.72rem;
    border-radius: 0.9rem;
  }

  .hero-capacity-top p {
    font-size: 0.79rem;
  }

  .hero-capacity-top strong {
    font-size: 0.84rem;
  }

  .floating-logo .brand-logo-desktop,
  .footer-brand .brand-logo-desktop {
    display: none;
  }

  .floating-logo .brand-logo-mobile,
  .footer-brand .brand-logo-mobile {
    display: block;
  }

  .button-header {
    min-height: 2.55rem;
    padding-inline: 0.85rem;
    font-size: 0.8125rem;
  }

  .header-chat-links {
    gap: 0.3rem;
  }

  .header-chat-links .chat-link {
    width: 2.05rem;
    height: 2.05rem;
  }

  .hero-route-system {
    gap: 0.55rem;
  }

  .trust-strip {
    scroll-margin-top: 4.9rem;
  }

  .hero-copy .button {
    width: 100%;
    min-height: 3.25rem;
  }

  .hero-cta-row {
    width: 100%;
    margin-top: 0.55rem;
    gap: 0.5rem;
  }

  .hero-cta-row .button {
    flex: 1 1 100%;
  }

  .hero-feature-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    margin-top: 0.15rem;
  }

  .hero-form-side,
  .social-proof-card,
  .lead-form-card,
  .hero-license-grid-wrap {
    width: 100%;
    min-width: 0;
  }

  .hero-feature-box {
    padding: 0.95rem 0.65rem;
    border-radius: 0.85rem;
  }

  .hero-feature-box .icon-wrap {
    width: 2.1rem;
    height: 2.1rem;
  }

  .hero-feature-box p {
    font-size: 0.9rem;
  }

  .hero-license-option {
    min-height: 4.35rem;
    padding: 0.58rem 0.62rem;
    border-radius: 0.85rem;
  }

  .hero-grid-cursor-icon {
    width: 1.55rem;
    height: 1.55rem;
    left: 24%;
    top: 8%;
  }

  .hero-grid-click-ring {
    width: 1.2rem;
    height: 1.2rem;
    left: 74%;
    top: 9%;
  }

  .hero-license-symbol {
    font-size: 0.9375rem;
  }

  .hero-license-name {
    font-size: 0.8125rem;
  }

  .hero-license-price {
    font-size: 0.9375rem;
  }

  .hero-question-option {
    min-height: 3.15rem;
    border-radius: 0.75rem;
  }

  .process-route {
    margin-top: 1.35rem;
  }

  .step-card {
    margin-left: 0;
    text-align: center;
    padding: 1.5rem 0.9rem 1rem;
  }

  .step-card::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-proof-card {
    padding: 0.8rem 0.82rem;
  }

  .lead-form-card {
    padding: 0.92rem 0.82rem;
  }

  .order-kicker {
    font-size: 0.86rem;
  }

  .top-warning-banner {
    display: none;
  }

  .top-warning-banner p {
    font-size: 0.64rem;
    line-height: 1.2;
    text-align: center;
  }

  .top-warning-icon {
    font-size: 0.68rem;
  }

  .order-steps li {
    gap: 0.18rem;
    padding: 0.26rem 0.1rem;
  }

  .order-steps li::after {
    right: -0.42rem;
    top: 0.62rem;
    font-size: 0.64rem;
  }

  .order-step-index {
    width: 1.34rem;
    height: 1.34rem;
    font-size: 0.68rem;
  }

  .order-step-label {
    font-size: 0.56rem;
  }

  .order-progress-inline {
    padding: 0.42rem 0.52rem;
  }

  .order-form-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 0.44rem;
  }

  .order-field {
    grid-column: span 2;
  }

  .order-field input {
    min-height: 2.8rem;
    font-size: 0.88rem;
  }

  .order-phone-row {
    grid-template-columns: minmax(0, 6.2rem) minmax(0, 1fr);
    width: 100%;
  }

  .order-phone-row select {
    min-height: 2.8rem;
    font-size: 0.78rem;
  }

  .order-field-span-2,
  .order-field-wide {
    grid-column: 1 / -1;
  }

  .order-field {
    width: 100%;
  }

  .order-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 0.42rem;
  }

  .order-actions .button {
    min-height: 2.55rem;
    font-size: 0.9rem;
    padding-inline: 0.85rem;
    border-radius: 0.75rem;
  }

  .mobile-only {
    display: inline-flex;
  }

  .upload-review-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 0.36rem;
    padding-bottom: 0;
  }

  .upload-review-actions .button {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    white-space: nowrap;
    font-size: 0.74rem;
    padding: 0.5rem 0.62rem;
  }

  .upload-review-card[data-upload-key="signature"] .upload-review-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upload-review-card[data-upload-key="signature"] .upload-review-actions .mobile-only {
    grid-column: 1 / -1;
  }

  .upload-review-card {
    padding: 0.74rem;
  }

  .upload-review-head {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .upload-review-head h3 {
    flex: 1 1 100%;
    font-size: 0.92rem;
    line-height: 1.16;
  }

  .upload-review-meta {
    width: 100%;
    justify-content: flex-end;
  }

  .signature-pad-shell canvas {
    height: 7.2rem;
  }

  .signature-pad-actions {
    justify-content: space-between;
    overflow: visible;
    padding-bottom: 0;
  }

  .signature-pad-actions .button {
    min-height: 2.2rem;
    font-size: 0.74rem;
    padding: 0.48rem 0.7rem;
    flex: 1 1 0;
  }

  .order-actions-review {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .order-actions-review .button {
    min-height: 2.36rem !important;
    font-size: 0.74rem !important;
    padding: 0.5rem 0.62rem !important;
    white-space: nowrap;
  }

  .review-check {
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .live-proof-region {
    left: 0;
    right: 0;
    bottom: auto;
    top: calc(var(--top-banner-height) + 1.78rem);
    transform: none;
    width: 100%;
    max-width: none;
    padding-inline: 0;
    z-index: 88;
  }

  .live-proof-card {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    padding: 0.34rem 0.5rem;
    width: 100%;
    max-width: none;
    animation: liveProofInMobile 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .live-proof-card.is-leaving {
    animation: liveProofOutMobile 280ms cubic-bezier(0.55, 0, 1, 0.45) both;
  }

  .live-proof-main {
    font-size: 0.67rem;
    line-height: 1.2;
  }

  .live-proof-meta {
    font-size: 0.59rem;
    margin-top: 0.05rem;
  }

  .live-proof-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .live-proof-icon .icon {
    width: 0.64rem;
    height: 0.64rem;
  }

  .mobile-warning-banner {
    margin-top: 0.55rem;
    display: flex;
    align-items: flex-start;
    gap: 0.42rem;
    border: 1px solid rgba(220, 38, 38, 0.22);
    border-radius: 0.75rem;
    background: linear-gradient(
      160deg,
      rgba(255, 241, 241, 0.82),
      rgba(255, 255, 255, 0.88)
    );
    padding: 0.5rem 0.58rem;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.08);
  }

  .mobile-warning-icon {
    font-size: 0.74rem;
    line-height: 1;
    margin-top: 0.08rem;
  }

  .mobile-warning-banner p {
    font-size: 0.64rem;
    line-height: 1.24;
    color: #5b1a1a;
  }

  .order-field-city {
    grid-column: 1;
  }

  .order-field-postal {
    grid-column: 2;
  }

  .order-field-birth-date {
    grid-column: 1 / 4;
  }

  .order-field-birth-place {
    grid-column: 4 / 7;
  }

  .order-field-nationality {
    grid-column: 1 / 3;
    grid-row: 5;
  }

  .order-field-street {
    grid-column: 1 / -1;
    grid-row: 6;
  }

  .order-field-city {
    grid-column: 3 / 5;
    grid-row: 5;
  }

  .order-field-postal {
    grid-column: 5 / 7;
    grid-row: 5;
  }

  .order-field input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23656f68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.72rem center;
    background-size: 1.02rem;
  }

  .order-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    right: 0.45rem;
    width: 1.55rem;
    height: 1.55rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.58rem;
    padding: 0.58rem;
  }

  .trust-item {
    padding: 0.76rem;
    border-radius: 0.85rem;
  }

  .benefit-card,
  .audience-card,
  .comparison-mobile-card,
  .testimonial-card,
  .faq-block,
  .final-cta-card,
  .final-support-card {
    border-radius: 0.95rem;
  }

  .benefit-card,
  .audience-card,
  .comparison-mobile-card,
  .testimonial-card,
  .faq-block,
  .final-cta-card,
  .final-support-card {
    padding: 0.88rem;
  }

  .dl-card-showcase {
    min-height: 12.2rem;
  }

  .dl-card {
    width: 58%;
  }

  .dl-card-back {
    left: 50%;
    top: 50%;
    transform: translate(-63%, -54%) rotate(-9deg) scale(0.94);
  }

  .dl-card-front {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-27%, -17%) rotate(7deg) scale(1);
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-nav {
    display: none;
  }

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

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.95rem;
    text-align: center;
    justify-self: center;
    width: 100%;
  }

  .footer-chat-links {
    justify-content: center;
  }

  .legal-page .section.legal-main {
    padding-top: 5.1rem;
  }

  .legal-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-nav a {
    width: 100%;
    min-height: 2.2rem;
    font-size: 0.8rem;
  }

  .legal-card p,
  .legal-card li {
    font-size: 0.86rem;
  }

  .thankyou-hero-card h1 {
    font-size: 1.18rem;
  }

  .thankyou-warning-box {
    padding: 0.56rem;
    gap: 0.48rem;
  }

  .thankyou-warning-icon {
    width: 1.3rem;
    height: 1.3rem;
    font-size: 0.78rem;
  }

  .thankyou-warning-box p {
    font-size: 0.79rem;
  }

  .thankyou-visual-progress {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.3rem;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .thankyou-stage-circle {
    width: clamp(4.2rem, 20vw, 5.1rem);
    height: clamp(4.2rem, 20vw, 5.1rem);
    box-shadow: 0 10px 18px rgba(7, 10, 8, 0.12);
  }

  .thankyou-stage-circle svg {
    width: clamp(2rem, 9.6vw, 2.45rem);
    height: clamp(2rem, 9.6vw, 2.45rem);
  }

  .thankyou-stage-circle.is-active::after {
    right: 0.02rem;
    bottom: 0.02rem;
    width: 1.28rem;
    height: 1.28rem;
    font-size: 0.78rem;
    border-width: 1px;
  }

  .thankyou-stage-double-icon svg {
    width: clamp(1.35rem, 6.2vw, 1.7rem);
    height: clamp(1.35rem, 6.2vw, 1.7rem);
  }

  .thankyou-stage-arrow {
    font-size: clamp(1rem, 5.1vw, 1.25rem);
  }

  .thankyou-stage-copy {
    grid-template-columns: 1fr;
    gap: 0.38rem;
    width: 100%;
  }

  .thankyou-stage-copy article {
    grid-column: auto !important;
    padding: 0.46rem 0.48rem;
  }

  .thankyou-stage-heading {
    font-size: 0.76rem;
    gap: 0.34rem;
  }

  .thankyou-step-dot {
    width: 1.08rem;
    height: 1.08rem;
    font-size: 0.64rem;
  }

  .thankyou-stage-copy p {
    font-size: 0.67rem;
  }

  .thankyou-cta {
    flex-direction: column;
    gap: 0.45rem;
  }

  .thankyou-cta .thankyou-cta-btn {
    flex: 1 1 auto;
    max-width: none;
  }

  .thankyou-cta-btn {
    min-height: 2.5rem;
    font-size: 0.72rem;
    border-radius: 0.72rem;
    padding-inline: 0.45rem;
  }

  .sticky-mobile-cta .button {
    min-height: 2.4rem;
    font-size: 0.82rem;
  }

  .exit-intent-modal {
    width: min(100%, 29rem);
    padding: 1.05rem;
  }

  .exit-intent-modal h2 {
    font-size: 1.28rem;
  }

  .exit-intent-modal p {
    font-size: 0.9rem;
    max-width: 34ch;
  }

  .exit-intent-actions {
    grid-template-columns: 1fr;
  }

  .exit-chat-button {
    min-height: 2.82rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 22rem) {
  .hero-license-grid {
    grid-template-columns: 1fr;
  }

  .hero-license-price {
    font-size: 0.9375rem;
  }

  .order-form-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

body.perf-lite .hero-section::before,
body.perf-lite .hero-section::after,
body.perf-lite .lead-form-card::before {
  display: none;
}

body.perf-lite .hero-grid-cursor-hint {
  display: none;
}

body.perf-lite .header-chat-links .chat-link.telegram,
body.perf-lite .header-chat-links .chat-link.messenger,
body.perf-lite .pulse-dot,
body.perf-lite .order-steps li::after {
  animation: none !important;
}

body.perf-lite .hero-capacity-glass,
body.perf-lite .sticky-mobile-cta,
body.perf-lite .top-warning-banner {
  backdrop-filter: none;
}

body.perf-lite .reveal {
  opacity: 1;
  transform: none;
  transition: none !important;
}

body.perf-lite .chat-link,
body.perf-lite .hero-question-option,
body.perf-lite .upload-review-card {
  transition: none !important;
}

body.perf-lite .button {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease,
    background 180ms ease, color 180ms ease !important;
}

body.perf-lite .chat-link,
body.perf-lite .exit-chat-button {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease,
    filter 180ms ease, background 180ms ease, color 180ms ease !important;
}

body.perf-lite .hero-license-option {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease,
    background 180ms ease, color 180ms ease !important;
}

body.perf-lite .faq-panel {
  transition: max-height 240ms ease, opacity 200ms ease, padding 240ms ease !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 10ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-grid-cursor-icon,
  .hero-grid-click-ring {
    animation: none !important;
  }
}
