:root {
  --navy: #1d2b4e;
  --coral: #f07a62;
  --coral-ink: #f9fafb;
  --canvas: #f8f9fa;
  --surface: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e9ecef;
  --success: #059669;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  --max: 1120px;
  --header: 72px;
}

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

html {
  scroll-behavior: smooth;
}

html[data-i18n-pending] body {
  visibility: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--canvas);
  line-height: 1.5;
  font-size: 16px;
}

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

a {
  color: var(--navy);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--surface);
  padding: 12px 16px;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(248, 249, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 10px;
  background: #eef1f6;
}

.lang-switch button {
  min-height: 36px;
  min-width: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--surface);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.brand-omni {
  color: var(--navy);
}

.brand-toca {
  color: var(--coral);
}

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

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 550;
  border-radius: 10px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
  background: #eef1f6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 650;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.btn-coral {
  background: var(--coral);
  color: var(--coral-ink);
}

.btn-coral:hover {
  filter: brightness(0.97);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  padding: 56px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.device-card {
  background: var(--navy);
  color: #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.device-card strong {
  color: #fff;
}

.device-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.fake-screen,
.fake-phone {
  background: #0b1325;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fake-screen {
  flex: 1;
  min-height: 160px;
  padding: 14px;
}

.fake-phone {
  width: 88px;
  min-height: 160px;
  padding: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--coral);
  display: inline-block;
  margin-right: 6px;
}

.bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  margin: 8px 0;
}

.section {
  padding: 56px 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 28px;
}

.muted {
  color: var(--muted);
}

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

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

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

.price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price.featured {
  border-color: var(--coral);
  box-shadow: 0 12px 32px rgba(240, 122, 98, 0.16);
  transform: translateY(-4px);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 99px;
  background: rgba(240, 122, 98, 0.14);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  width: fit-content;
}

.amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.price ul {
  margin: 8px 0 16px;
  padding: 0 0 0 1.1rem;
  color: var(--text);
  flex: 1;
}

.price li {
  margin: 6px 0;
}

.band {
  background: var(--navy);
  color: #e5e7eb;
}

.band h2,
.band h3 {
  color: #fff;
}

.band .muted {
  color: #cbd5e1;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin: 0 0 16px;
  border-radius: 99px;
  background: rgba(29, 43, 78, 0.08);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 8px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  color: var(--navy);
}

.strip li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

.benefit-label {
  margin: 16px 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.card ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--text);
}

.card li {
  margin: 6px 0;
}

.fair-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.fair-points p {
  margin: 0;
  color: #cbd5e1;
}

.fair-points strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}

.faq {
  display: grid;
  gap: 8px;
  max-width: 46rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 16px;
}

.faq summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  font-weight: 650;
  color: var(--navy);
  cursor: pointer;
}

.faq details p {
  margin: 0 0 16px;
}

.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.logo-dark {
  width: 180px;
  margin-top: 20px;
}

form {
  display: grid;
  gap: 12px;
  max-width: 36rem;
}

label {
  font-weight: 650;
  color: var(--navy);
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  font: inherit;
  background: var(--surface);
}

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

.hp {
  display: none;
}

.legal {
  max-width: 42rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.foot-links a {
  color: var(--muted);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.ok {
  background: #ecfdf5;
  color: #065f46;
  border-radius: var(--radius);
  padding: 12px 14px;
}

@media (min-width: 861px) {
  .nav {
    margin-left: auto;
  }

  .nav + .header-end {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .price-grid,
  .compare,
  .fair-points {
    grid-template-columns: 1fr;
  }

  .price.featured {
    transform: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-end {
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
  }

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