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

:root {
  --navy-950: #060a14;
  --navy-900: #0b0f1a;
  --navy-800: #111827;
  --navy-700: #1e293b;
  --navy-600: #1e3a5f;
  --navy-500: #1e3a8a;
  --gold-500: #7552b5;
  --gold-400: #9373cd;
  --gold-300: #b097e3;
  --gold-200: #d0c1f5;
  --gold-100: #eee9fb;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--navy-950);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold-300);
  color: var(--navy-950);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--gold-200);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 10px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 20px rgba(117, 82, 181, 0.2);
  transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo {
  transform: scale(1.05);
}

.nav-brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #d4a853;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  min-width: 0;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  max-width: min(100%, 396px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lang-switcher::-webkit-scrollbar {
  display: none;
}

.lang-btn {
  flex: 0 0 auto;
  min-width: 34px;
  padding: 8px 8px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--white-50);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.lang-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(117, 82, 181, 0.28);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-70);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(117, 82, 181, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(117, 82, 181, 0.4);
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-300) 100%);
}

.nav-cta::after {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.29;
  filter: saturate(1.06) contrast(1.02);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 20, 0.30) 0%,
    rgba(6, 10, 20, 0.58) 50%,
    var(--navy-950) 100%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.18;
  z-index: 0;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-500) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: float-orb 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--navy-500) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation: float-orb 16s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(117, 82, 181, 0.1);
  border: 1px solid rgba(117, 82, 181, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 14px rgba(147, 115, 205, 0.8);
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.gold {
  background: linear-gradient(135deg, var(--gold-300), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(117, 82, 181, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(117, 82, 181, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--glass-bg);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-20);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: var(--white-10);
  border-color: var(--white-50);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  perspective: 2200px;
  display: flex;
  justify-content: flex-end;
}

.hero-device {
  position: relative;
  width: min(100%, 920px);
  margin-left: auto;
  transform-style: preserve-3d;
  animation: float-hero 8s ease-in-out infinite;
}

.hero-device-screen {
  position: relative;
  padding: 14px 14px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(42, 52, 78, 0.96) 0%, rgba(13, 18, 33, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transform: rotateY(-18deg) rotateX(10deg);
  transform-origin: center bottom;
}

.hero-device-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(117, 82, 181, 0.06);
  background: #050814;
}

.hero-device-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 88px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(5, 8, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.hero-device-camera::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.8);
  box-shadow: 0 0 10px rgba(148, 163, 184, 0.35);
}

.hero-device-base {
  position: relative;
  width: 88%;
  height: 28px;
  margin: -2px auto 0;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(180deg, rgba(211, 218, 233, 0.94) 0%, rgba(134, 145, 171, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: rotateX(78deg) translateZ(-8px);
  transform-origin: top center;
}

.hero-device-trackpad {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 28%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(80, 93, 124, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

@keyframes float-hero {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -24px;
  background:
    radial-gradient(circle at 72% 22%, rgba(117, 82, 181, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 28% 78%, rgba(212, 168, 83, 0.16) 0%, transparent 32%);
  border-radius: 40px;
  z-index: -1;
  filter: blur(12px);
}

.stats {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  margin-top: -40px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.stat-item {
  background: rgba(11, 15, 26, 0.8);
  backdrop-filter: blur(12px);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(30, 58, 95, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-400), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--white-50);
  font-weight: 500;
}

.section {
  padding: 100px 0;
  position: relative;
}

@supports (content-visibility: auto) {
  .showcase,
  .trust,
  .audience,
  .benefits,
  .cta-section,
  .footer {
    content-visibility: auto;
  }

  .showcase {
    contain-intrinsic-size: 980px;
  }

  .trust {
    contain-intrinsic-size: 780px;
  }

  .audience {
    contain-intrinsic-size: 1120px;
  }

  .benefits {
    contain-intrinsic-size: 760px;
  }

  .cta-section {
    contain-intrinsic-size: 520px;
  }

  .footer {
    contain-intrinsic-size: 360px;
  }
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(117, 82, 181, 0.1);
  border: 1px solid rgba(117, 82, 181, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--white-50);
  line-height: 1.7;
}

.features {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
}

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

.feature-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(117, 82, 181, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(117, 82, 181, 0.1);
  border: 1px solid rgba(117, 82, 181, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--white-50);
  line-height: 1.6;
}

.showcase {
  background: var(--navy-950);
  overflow: hidden;
}

.showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: start;
}

.showcase-image {
  position: relative;
}

.showcase-image::after {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(117, 82, 181, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-2xl);
  z-index: -1;
}

.device-showcase {
  position: relative;
  max-width: 860px;
  min-height: 780px;
  perspective: 3200px;
}

.device-stack {
  position: relative;
  min-height: 780px;
}

.device-shell {
  position: absolute;
  margin: 0;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.28));
}

.device-shell figcaption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white-70);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-screen-crop {
  overflow: hidden;
  background: #050814;
}

.showcase-screen-crop img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.device-frame-desktop {
  inset: 0 126px 122px 0;
  z-index: 1;
}

.device-frame-tablet {
  top: 24px;
  right: 0;
  width: 46%;
  z-index: 3;
}

.device-frame-mobile {
  right: 6px;
  bottom: 2px;
  width: 32%;
  z-index: 4;
}

.showcase-laptop {
  position: relative;
  transform-style: preserve-3d;
}

.showcase-laptop::before {
  content: '';
  position: absolute;
  inset: 26px 34px 44px 40px;
  border-radius: 28px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 42%);
  filter: blur(10px);
  z-index: -1;
}

.showcase-laptop-screen {
  position: relative;
  padding: 12px 12px 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(42, 52, 78, 0.98) 0%, rgba(13, 18, 33, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 36px 86px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transform: rotateY(-20deg) rotateX(13deg);
  transform-origin: center bottom;
}

.showcase-laptop-screen::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
  z-index: 1;
}

.showcase-laptop-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 84px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(5, 8, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.showcase-laptop-camera::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.82);
}

.showcase-screen-crop-desktop {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050814;
}

.showcase-screen-crop-desktop img {
  border-radius: 18px;
  transform: scale(1.12) translateY(-4.5%);
  transform-origin: top center;
}

.showcase-laptop-base {
  position: relative;
  width: 88%;
  height: 26px;
  margin: -2px auto 0;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(180deg, rgba(211, 218, 233, 0.96) 0%, rgba(134, 145, 171, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  transform: rotateX(78deg) translateZ(-8px);
  transform-origin: top center;
}

.showcase-laptop-base::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -8px;
  height: 14px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, rgba(96, 108, 136, 0.32), transparent);
  filter: blur(4px);
}

.showcase-laptop-trackpad {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 28%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(80, 93, 124, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.showcase-tablet {
  position: relative;
  padding: 18px 14px 16px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(26, 34, 55, 0.98) 0%, rgba(10, 15, 28, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 66px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(-19deg) rotateX(12deg) translateZ(16px);
  transform-origin: left bottom;
}

.showcase-tablet::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%, transparent 70%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.showcase-tablet-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 44px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(3, 7, 14, 0.92);
}

.showcase-tablet-button {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 4px;
  height: 56px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.showcase-screen-crop-tablet {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-screen-crop-tablet img {
  border-radius: 24px;
}

.showcase-phone {
  position: relative;
  padding: 16px 11px 13px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(22, 29, 47, 0.99) 0%, rgba(7, 11, 21, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(-24deg) rotateX(14deg) translateZ(24px);
  transform-origin: left bottom;
}

.showcase-phone::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%, transparent 68%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.showcase-phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 60px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(3, 7, 14, 0.92);
}

.showcase-phone-home {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 50px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.showcase-screen-crop-mobile {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-screen-crop-mobile img {
  border-radius: 28px;
}

.showcase-title-left,
.showcase-desc-left {
  text-align: left;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.showcase-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(117, 82, 181, 0.15);
  border: 1px solid rgba(117, 82, 181, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--gold-400);
  font-size: 0.85rem;
}

.showcase-list li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.showcase-list li span {
  font-size: 0.92rem;
  color: var(--white-50);
  line-height: 1.5;
}

.trust {
  background: linear-gradient(180deg, var(--navy-950) 0%, rgba(11, 15, 26, 0.98) 42%, var(--navy-900) 100%);
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 82, 181, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.trust-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.trust-card {
  position: relative;
  min-height: 100%;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.trust-card-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(117, 82, 181, 0.12);
  border: 1px solid rgba(117, 82, 181, 0.18);
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--white-50);
  font-size: 0.95rem;
  line-height: 1.65;
}

.trust-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
  padding: 36px;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.32) 0%, rgba(117, 82, 181, 0.08) 100%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
}

.trust-flow-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-flow h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.trust-flow p {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.7;
}

.trust-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.trust-proof-block {
  padding: 18px 18px 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-proof-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-proof-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.trust-proof-list li {
  position: relative;
  padding-left: 18px;
  color: var(--white-70);
  font-size: 0.93rem;
  line-height: 1.55;
}

.trust-proof-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-300) 100%);
  box-shadow: 0 0 10px rgba(176, 151, 227, 0.35);
}

.trust-steps {
  list-style: none;
  display: grid;
  gap: 18px;
}

.trust-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-step:first-child {
  padding-top: 0;
  border-top: none;
}

.trust-step-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(117, 82, 181, 0.22);
}

.trust-step-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1rem;
}

.trust-step-copy span {
  display: block;
  color: var(--white-50);
  font-size: 0.94rem;
  line-height: 1.6;
}

.audience {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(117, 82, 181, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.audience-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.5;
}

.benefits {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 82, 181, 0.06) 0%, transparent 70%);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  border-color: rgba(117, 82, 181, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(117, 82, 181, 0.15), rgba(117, 82, 181, 0.05));
  border: 1px solid rgba(117, 82, 181, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.benefit-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.6;
}

.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.4) 0%, rgba(117, 82, 181, 0.08) 100%);
  border: 1px solid rgba(117, 82, 181, 0.15);
  border-radius: var(--radius-2xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(117, 82, 181, 0.06) 0%, transparent 50%);
  animation: cta-shimmer 10s ease-in-out infinite;
}

@keyframes cta-shimmer {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

.cta-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  font-size: 1.15rem;
  color: var(--white-70);
  margin-bottom: 40px;
  position: relative;
}

.cta-card .btn-primary {
  font-size: 1.1rem;
  padding: 18px 40px;
  position: relative;
}

.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer-brand span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d4a853;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--white-50);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links-grid {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-70);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--white-50);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--white-50);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

html[dir="rtl"] body,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-header,
html[dir="rtl"] .showcase-list li,
html[dir="rtl"] .footer-top,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .legal-shell,
html[dir="rtl"] .cookie-content,
html[dir="rtl"] .cookie-preferences-header,
html[dir="rtl"] .cookie-option-copy {
  text-align: right;
}

html[dir="rtl"] .nav-inner,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .footer-bottom-links,
html[dir="rtl"] .showcase-list li,
html[dir="rtl"] .trust-step,
html[dir="rtl"] .cookie-option {
  direction: rtl;
}

html[dir="rtl"] .hero-inner,
html[dir="rtl"] .showcase-inner,
html[dir="rtl"] .trust-flow {
  direction: rtl;
}

html[dir="rtl"] .trust-proof-list li {
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .trust-proof-list li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .hero-content {
  margin-inline-start: auto;
}

.footer-cookie-settings {
  border: none;
  background: transparent;
  color: var(--white-70);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease;
}

.footer-cookie-settings:hover {
  color: var(--gold-400);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(15, 22, 41, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  display: grid;
  gap: 22px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

body.has-cookie-dialog {
  overflow: hidden;
}

.cookie-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.5;
  margin: 0;
}

.cookie-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-70);
  font-size: 0.82rem;
}

.cookie-chip strong {
  color: var(--white);
  font-size: 0.8rem;
}

.cookie-preferences {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.cookie-preferences-header h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cookie-preferences-header p {
  color: var(--white-50);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 14, 27, 0.68);
}

.cookie-option-copy {
  display: grid;
  gap: 6px;
}

.cookie-option-copy strong {
  font-size: 0.95rem;
  color: var(--white);
}

.cookie-option-copy span {
  color: var(--white-50);
  font-size: 0.85rem;
  line-height: 1.45;
}

.cookie-option-required {
  background: rgba(117, 82, 181, 0.08);
}

.cookie-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-toggle {
  position: relative;
  width: 58px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.cookie-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease;
}

.cookie-toggle[aria-checked="true"] {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  border-color: rgba(176, 151, 227, 0.4);
  box-shadow: 0 12px 28px rgba(117, 82, 181, 0.22);
}

.cookie-toggle[aria-checked="true"] .cookie-toggle-thumb {
  transform: translateX(24px);
}

.cookie-content a {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cookie-primary,
.btn-cookie-secondary {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-cookie-primary {
  background: var(--gold-500);
  color: var(--white);
  border: none;
}

.btn-cookie-primary:hover {
  background: var(--gold-400);
}

.btn-cookie-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-20);
}

.btn-cookie-secondary:hover {
  background: var(--white-10);
  border-color: var(--white-50);
}

.btn-cookie-primary:focus-visible,
.btn-cookie-secondary:focus-visible,
.cookie-toggle:focus-visible,
.footer-cookie-settings:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

.legal-card-emphasis {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.36) 0%, rgba(117, 82, 181, 0.12) 100%);
  border-color: rgba(117, 82, 181, 0.16);
}

.cookie-summary-legal {
  margin: 18px 0 20px;
}

.legal-cookie-preferences {
  margin-bottom: 18px;
}

.legal-cookie-actions {
  margin-bottom: 18px;
}

.legal-cookie-open {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.cookie-feedback {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(18px);
  min-width: min(92vw, 320px);
  max-width: min(92vw, 460px);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(176, 151, 227, 0.24);
  background: rgba(15, 22, 41, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 10001;
}

.cookie-feedback.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(117, 82, 181, 0.1);
  border: 1px solid rgba(117, 82, 181, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.legal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.legal-intro,
.legal-meta {
  color: var(--white-70);
}

.legal-meta {
  font-size: 0.9rem;
  margin-top: 12px;
}

.legal-grid {
  display: grid;
  gap: 18px;
}

.legal-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 28px 30px;
}

.legal-card h2 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
  color: var(--white-70);
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-back {
  padding: 8px 16px;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
  }

  .hero-device {
    width: min(100%, 840px);
    margin: 0 auto;
  }

  .hero-device-screen {
    transform: rotateY(-12deg) rotateX(8deg);
  }

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

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

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .trust-flow {
    grid-template-columns: 1fr;
  }

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

  .device-showcase {
    max-width: 760px;
    margin: 0 auto;
    min-height: 690px;
  }

  .device-stack {
    min-height: 690px;
  }

  .device-frame-desktop {
    inset: 0 112px 108px 0;
  }

  .device-frame-tablet {
    top: 18px;
    right: 6px;
    width: 47%;
  }

  .device-frame-mobile {
    width: 33%;
    right: 8px;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px 32px;
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 16px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-actions {
    gap: 10px;
  }

  .lang-switcher {
    max-width: calc(100vw - 104px);
  }

  .lang-btn {
    min-width: 32px;
    padding: 6px 7px;
    font-size: 0.68rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

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

  .hero-image {
    perspective: none;
  }

  .hero-device {
    width: 100%;
  }

  .hero-device-screen {
    transform: none;
    border-radius: 24px;
  }

  .hero-device-base {
    width: 92%;
    height: 18px;
    border-radius: 0 0 24px 24px;
    transform: none;
    margin-top: -1px;
  }

  .hero-device-trackpad {
    top: 4px;
    height: 6px;
  }

  .hero-orb,
  .hero-image::before {
    display: none;
  }

  .device-showcase {
    min-height: auto;
    perspective: none;
    max-width: 100%;
    margin: 0 auto 12px;
  }

  .device-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .device-shell {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 14px;
    right: auto;
    top: auto;
    bottom: auto;
    left: auto;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.24));
  }

  .device-frame-desktop,
  .device-frame-tablet,
  .device-frame-mobile {
    inset: auto;
    right: auto;
    top: auto;
    bottom: auto;
    left: auto;
  }

  .device-frame-desktop {
    width: 100%;
    z-index: 1;
  }

  .device-frame-tablet {
    width: min(82%, 420px);
    margin-left: auto;
    margin-top: -18px;
    z-index: 2;
  }

  .device-frame-mobile {
    width: min(50%, 250px);
    margin-left: auto;
    margin-top: -22px;
    margin-right: 8px;
    z-index: 3;
  }

  .showcase-laptop-screen,
  .showcase-laptop-base,
  .showcase-tablet,
  .showcase-phone {
    transform: none;
  }

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

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

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

  .trust-flow {
    padding: 28px 22px;
    gap: 24px;
  }

  .trust-card {
    padding: 28px 24px;
  }

  .trust-step-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 0.94rem;
  }

  .trust-proof-block {
    padding: 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links-grid {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  .cta-card {
    padding: 48px 28px;
  }

  .section {
    padding: 60px 0;
  }

  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-actions .btn-cookie-primary,
  .cookie-actions .btn-cookie-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .cookie-pill,
  .cookie-toggle {
    align-self: flex-start;
  }

  .legal-page .nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .legal-page .nav-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .showcase-inner {
    gap: 34px;
  }

  .showcase-image {
    margin-bottom: 4px;
  }

  .device-showcase {
    margin-bottom: 0;
  }

  .device-shell {
    padding: 8px;
  }

  .device-shell figcaption {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .device-frame-tablet {
    width: min(84%, 340px);
    margin-top: -12px;
  }

  .device-frame-mobile {
    width: min(54%, 210px);
    margin-top: -14px;
    margin-right: 0;
  }

  .showcase-title-left,
  .showcase-desc-left {
    max-width: 100%;
  }

  .showcase-list {
    gap: 18px;
  }

  .trust-flow {
    padding: 24px 18px;
  }

  .trust-card {
    padding: 24px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

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

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