:root {
  --bg: #000000;
  --bg-2: #06070a;
  --panel: #090a0f;
  --panel-2: #0d0f16;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f5f7;
  --muted: #b6bac7;
  --muted-2: #8d93a6;
  --accent: #3548fe;
  --accent-2: #7d89ff;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --container: 1200px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 72px;
  --font-body: 'Onest', 'Manrope', sans-serif;
  --font-display: 'Onest', 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 22% -8%, rgba(53, 72, 254, 0.24), transparent 42%),
    linear-gradient(180deg, #000 0%, #020203 42%, #000 100%);
  font-family: var(--font-body);
  overflow-x: clip;
}

body.has-modal-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

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

.noise {
  display: none;
}

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

.section {
  padding: var(--space-8) 0;
}

.section-tight {
  padding-top: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 6, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(53, 72, 254, 0.2), rgba(255, 255, 255, 0.03));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.brand-text {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  min-height: 32px;
  padding: 0 10px;
  border-radius: 9px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.is-active {
  color: #fff;
  background: rgba(53, 72, 254, 0.2);
  box-shadow: inset 0 0 0 1px rgba(125, 137, 255, 0.22);
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: color-mix(in srgb, var(--accent) 35%, white);
}

.hero {
  padding-top: 28px;
  padding-bottom: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  max-width: 1120px;
  margin-inline: auto;
}

.hero-copy {
  max-width: 680px;
  display: grid;
  align-content: start;
  justify-items: start;
  text-align: left;
}

.hero-lockup {
  width: clamp(180px, 26vw, 290px);
  margin-bottom: 10px;
  opacity: 0.92;
}

.hero-lockup img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: invert(1);
}

.hero-copy h1 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 8vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-transform: none;
  max-width: 12ch;
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: clamp(1rem, 3.8vw, 1.18rem);
  max-width: 46ch;
}

.hero-tags {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 8px;
  align-items: start;
  justify-content: start;
  max-width: 100%;
}

.hero-tags li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 700;
  color: #eef0f6;
  box-shadow: inset 0 0 0 1px rgba(53, 72, 254, 0.08);
  white-space: nowrap;
}

.button {
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

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

.button:focus-visible {
  outline: 2px solid rgba(53, 72, 254, 0.75);
  outline-offset: 2px;
}

.button-primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 82%, white) 0%, var(--accent) 58%, #2536d7 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(53, 72, 254, 0.3);
}

.button-primary::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.2) 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.button-primary:hover::before {
  transform: translateX(130%);
}

.button-primary:hover {
  box-shadow:
    0 16px 36px rgba(53, 72, 254, 0.34),
    0 0 0 1px rgba(125, 137, 255, 0.16);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(125, 137, 255, 0.22);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(53, 72, 254, 0.08);
}

.button-primary,
.button-secondary {
  min-height: 52px;
  padding: 0 16px;
}

.final-card .js-cta {
  width: min(100%, 340px);
  margin-inline: auto;
}

.button-sm {
  min-height: 40px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: 12px;
}

.button-lg {
  min-height: 54px;
  padding: 0 18px;
}

.button-xl {
  min-height: 60px;
  padding: 0 22px;
  font-size: 16px;
}

.hero-cta-panel {
  margin: 0 auto 16px;
  max-width: 1120px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 14% 0%, rgba(53, 72, 254, 0.14), transparent 48%),
    rgba(7, 8, 11, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 10px;
}

.hero-cta-panel .button {
  width: min(100%, 360px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: 6px 8px 2px;
  isolation: isolate;
}

.card-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.card-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  aspect-ratio: 10 / 16;
  width: min(100%, 308px);
  position: relative;
  z-index: 3;
  margin-inline: auto;
}

.hero-phone::after {
  content: '';
  position: absolute;
  inset: auto 12% -14% 12%;
  height: 20%;
  background: radial-gradient(circle, rgba(53, 72, 254, 0.28), transparent 65%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-visual:hover .hero-phone {
  transform: translateY(-2px) rotate(-0.35deg);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(125, 137, 255, 0.14);
}

.tilt-a {
  transform-origin: center;
}

.tilt-a {
  transform: rotate(-1deg);
  z-index: 2;
}

.panel-lite {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 15% 0%, rgba(53, 72, 254, 0.13), transparent 45%),
    rgba(8, 9, 12, 0.92);
  padding: 18px;
  max-width: 1120px;
  margin-inline: auto;
}

.section-head {
  max-width: 62ch;
  margin-bottom: 16px;
}

.section-head.compact {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 5.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-transform: none;
}

.section-head p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.inside-description {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.inside-description p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.inside-description p:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 137, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.inside-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.inside-item:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 137, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.inside-item span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #d7ddff;
  background: rgba(53, 72, 254, 0.22);
  border: 1px solid rgba(125, 137, 255, 0.32);
}

.inside-item strong {
  font-size: 15px;
}

.final {
  padding-top: 36px;
  padding-bottom: calc(68px + env(safe-area-inset-bottom) + 40px);
}

.final-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(125, 137, 255, 0.18);
  background:
    radial-gradient(circle at 50% -10%, rgba(53, 72, 254, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(7, 8, 10, 0.94);
  padding: clamp(18px, 4vw, 34px);
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.final-card:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 137, 255, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.final-card h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-size: clamp(1.35rem, 5.5vw, 2.4rem);
}

.final-card p:not(.eyebrow) {
  margin: 12px auto 0;
  color: var(--muted);
  max-width: 46ch;
}

.final-card .button {
  margin-top: 18px;
  width: min(100%, 360px);
}

.lead-modal[hidden] {
  display: none;
}

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

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(53, 72, 254, 0.18), transparent 42%),
    rgba(2, 2, 4, 0.72);
  backdrop-filter: blur(10px);
}

.lead-modal__dialog {
  position: relative;
  width: min(100%, 760px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 72, 254, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(18, 19, 28, 0.98), rgba(9, 10, 15, 0.98));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.46);
  display: block;
  padding: 20px;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  max-height: min(92vh, 860px);
  overflow-y: auto;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lead-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 137, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.lead-modal__close span {
  font-size: 24px;
  line-height: 1;
}

.lead-form {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 8px 4px 4px;
}

.lead-form__brand {
  width: clamp(170px, 28vw, 240px);
  margin: 0 0 4px;
  opacity: 0.96;
}

.lead-form__brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: invert(1);
}

.lead-form__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.lead-form__subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  max-width: 42ch;
}

.lead-form__field {
  display: grid;
  gap: 7px;
}

.lead-form__field label {
  font-size: 13px;
  font-weight: 700;
  color: #eef0f6;
}

.lead-form input,
.lead-form select {
  appearance: none;
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  padding: 0 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.lead-form input::placeholder {
  color: var(--muted-2);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: rgba(125, 137, 255, 0.34);
  box-shadow: 0 0 0 3px rgba(53, 72, 254, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.lead-country-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.lead-form__phone-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  overflow: visible;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.lead-form__phone-shell:focus-within {
  border-color: rgba(125, 137, 255, 0.34);
  box-shadow: 0 0 0 3px rgba(53, 72, 254, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.lead-form__phone-shell.is-country-open {
  z-index: 18;
}

.lead-country-picker {
  position: relative;
  min-width: 148px;
}

.lead-country-trigger {
  appearance: none;
  min-height: 54px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
  border-radius: 999px 0 0 999px;
  padding: 0 14px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.lead-country-trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}

.lead-country-trigger__flag {
  font-size: 18px;
  line-height: 1;
}

.lead-country-trigger__dial {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.lead-country-trigger__caret {
  margin-left: auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #b6bac7;
  opacity: 0.9;
}

.lead-form__phone-row {
  min-width: 0;
}

.lead-form__phone-row input {
  border: 0;
  border-radius: 0 999px 999px 0;
  min-height: 54px;
  background: transparent;
  box-shadow: none !important;
  padding-left: 16px;
  padding-right: 18px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.lead-country-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(520px, calc(100vw - 40px));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 14, 18, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  z-index: 8;
  overflow: hidden;
  max-height: min(60vh, 420px);
}

.lead-country-search {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-country-search input {
  min-height: 46px;
  border-radius: 999px;
  padding-inline: 16px;
}

.lead-country-list {
  max-height: min(42vh, 280px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 6px;
  display: grid;
  gap: 4px;
}

.lead-country-item {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.lead-country-item:hover,
.lead-country-item[aria-selected='true'] {
  background: rgba(255, 255, 255, 0.04);
}

.lead-country-item__left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lead-country-item__flag {
  font-size: 18px;
}

.lead-country-item__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-country-item__dial {
  color: #eef0f6;
  font-weight: 700;
}

.lead-country-empty {
  margin: 0;
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
}

.lead-form__error {
  margin: 2px 0 0;
  min-height: 18px;
  color: #ff8f9e;
  font-size: 12px;
  font-weight: 600;
}

.lead-form__submit {
  margin-top: 4px;
  width: 100%;
}

.lead-form__submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

.lead-form__hint {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.4;
}

.mobile-sticky-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.mobile-cta-copy {
  min-width: 0;
}

.mobile-cta-copy span,
.mobile-cta-copy small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-cta-copy span {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  filter: blur(3px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero-cta-panel {
    padding: 14px;
    margin-bottom: 18px;
    gap: 12px;
  }

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

@media (max-width: 639px) {
  .site-header {
    background: rgba(5, 5, 6, 0.9);
  }

  .header-row {
    gap: 8px;
    min-height: 62px;
  }

  .brand-text {
    display: none;
  }

  .header-tools {
    gap: 6px;
    min-width: 0;
  }

  .lang-btn {
    min-height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  .button-sm {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .header-tools .button-sm {
    max-width: 144px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .hero-grid {
    gap: 14px;
  }

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

  .hero-copy h1 {
    max-width: 11ch;
    margin-top: 10px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 12px;
    font-size: 0.98rem;
  }

  .hero-cta-panel {
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .hero-lockup {
    width: 164px;
    margin-bottom: 6px;
  }

  .hero-tags {
    margin-top: 16px;
    width: 100%;
    gap: 7px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
  }

  .hero-tags li {
    padding: 6px 5px;
    font-size: 9px;
    width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-visual {
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .hero-phone {
    width: min(100%, 292px);
  }

  .lead-modal {
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom)) 10px;
  }

  .lead-modal__dialog {
    border-radius: 18px;
    padding: 14px;
    max-height: calc(100dvh - 20px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .lead-form {
    gap: 10px;
    padding: 2px 0 0;
  }

  .lead-form__brand {
    width: 170px;
    margin-bottom: 2px;
  }

  .lead-form__subtitle {
    font-size: 14px;
  }

  .lead-form__phone-row {
    min-width: 0;
  }

  .lead-form__phone-shell {
    grid-template-columns: minmax(104px, 132px) minmax(0, 1fr);
    border-radius: 999px;
    padding: 0;
    gap: 0;
  }

  .lead-country-picker {
    min-width: 0;
    position: static;
  }

  .lead-country-trigger {
    width: 100%;
    min-height: 50px;
    border-radius: 999px 0 0 999px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
    justify-content: flex-start;
    padding: 0 10px 0 12px;
    gap: 6px;
  }

  .lead-form__phone-row input {
    border-radius: 999px;
    min-height: 50px;
    background: transparent;
    border: 0;
    padding-inline: 14px;
    padding-left: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.015em;
  }

  .lead-form__phone-row input::placeholder {
    color: rgba(231, 235, 246, 0.9);
    letter-spacing: 0.03em;
  }

  .lead-country-trigger__flag {
    font-size: 16px;
  }

  .lead-country-trigger__dial {
    font-size: 13px;
  }

  .lead-country-trigger__caret {
    border-left-width: 5px;
    border-right-width: 5px;
    border-top-width: 6px;
  }

  .lead-country-popover {
    width: 100%;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    border-radius: 16px;
    max-height: min(38vh, 260px);
  }

  .lead-form__phone-shell.is-country-open {
    margin-bottom: min(42vh, 290px);
  }

  .mobile-sticky-cta {
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    gap: 6px;
    padding: 7px;
  }

  .mobile-sticky-cta .button-sm {
    min-height: 42px;
    min-width: 112px;
    padding: 0 12px;
  }

  .mobile-cta-copy span {
    font-size: 13px;
  }
}

@media (max-width: 389px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-row {
    min-height: 58px;
    gap: 6px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .lang-switch {
    padding: 2px;
  }

  .lang-btn {
    min-height: 28px;
    padding: 0 7px;
    font-size: 10px;
  }

  .header-tools .button-sm {
    max-width: 126px;
    min-height: 36px;
    padding: 0 9px;
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 12vw, 2.35rem);
    line-height: 0.98;
    max-width: 10.5ch;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero-tags {
    gap: 6px;
  }

  .hero-tags li {
    min-height: 36px;
    font-size: 8px;
    padding: 5px 4px;
  }

  .hero-phone {
    width: min(100%, 274px);
  }

  .lead-form__brand {
    width: 152px;
  }

  .lead-form__title {
    font-size: 1.65rem;
    line-height: 0.98;
    max-width: 13ch;
  }

  .lead-form__subtitle {
    font-size: 13px;
    line-height: 1.35;
  }

  .lead-form__phone-shell {
    grid-template-columns: minmax(92px, 118px) minmax(0, 1fr);
  }

  .lead-country-trigger {
    padding: 0 8px 0 10px;
    gap: 4px;
  }

  .lead-country-trigger__flag {
    font-size: 15px;
  }

  .lead-country-trigger__dial {
    font-size: 12px;
  }

  .lead-form__phone-row input {
    font-size: 14px;
    letter-spacing: 0.01em;
    padding-inline: 10px;
    padding-left: 10px;
  }

  .lead-form__hint {
    font-size: 11px;
  }

  .mobile-sticky-cta {
    padding: 6px;
    border-radius: 12px;
  }

  .mobile-sticky-cta .button-sm {
    min-width: 102px;
    min-height: 40px;
    font-size: 12px;
  }

  .mobile-cta-copy span {
    font-size: 12px;
  }
}

@media (min-width: 980px) {
  .section {
    padding: var(--space-9) 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 388px);
    gap: 28px;
    align-items: start;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-subtitle {
    max-width: 44ch;
  }

  .hero-tags {
    grid-template-columns: repeat(3, minmax(0, max-content));
    gap: 10px;
  }

  .hero-visual {
    justify-content: flex-end;
    align-items: flex-start;
    align-self: start;
    padding: 0 18px 6px 8px;
  }

  .hero-phone {
    width: min(100%, 352px);
  }

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

  .inside-description {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .inside-item {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 8px;
    min-height: 112px;
  }

  .inside-item strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .final {
    padding-bottom: var(--space-9);
  }
}

@media (min-width: 1100px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 22px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-phone {
    width: 372px;
  }

}

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

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

  * {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .lead-modal__dialog {
    transition: none !important;
  }
}
