/* ============================================================
   Max Proxy — roskom.party
   ============================================================ */

:root {
  --bg: #07080c;
  --bg-1: #0a0c12;
  --bg-2: #0f1219;
  --bg-3: #151923;
  --bg-4: #1b2030;
  --border: #222838;
  --border-soft: #1a1f2c;
  --text: #eef0f7;
  --text-2: #9aa3b8;
  --text-3: #646c84;
  --text-4: #404758;

  --accent: #6ee7b7;
  --accent-dark: #10b981;
  --accent-2: #60a5fa;
  --accent-3: #a78bfa;
  --accent-4: #f472b6;
  --warn: #fbbf24;
  --pain: #f87171;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(110, 231, 183, 0.2);

  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --font-display: "Manrope", "Inter", sans-serif;

  --container: 1200px;
  --nav-h: 68px;
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); margin: 0; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============= GLOBAL BG GLOW ============= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(110, 231, 183, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(96, 165, 250, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(167, 139, 250, 0.05), transparent 60%);
}

/* ============= LAYOUT ============= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 16px; }
}

/* ============= NAVBAR ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 18, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--nav-h);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0a0c12;
  font-size: 16px;
  box-shadow: 0 0 24px rgba(110, 231, 183, 0.35);
}
.nav__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(110, 231, 183, 0.25);
}
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__burger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__inner { padding: 0 16px; gap: 12px; }
  .nav__burger { display: flex; }
  .nav__cta .btn { padding: 9px 14px; font-size: 13px; }
}
@media (max-width: 768px) {
  /* На мобилке в шапке оставляем только бургер — CTA дублируется sticky снизу */
  .nav__cta .btn { display: none; }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  position: relative;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #04110b;
  box-shadow: 0 8px 24px rgba(110, 231, 183, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(110, 231, 183, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #04110b;
}
.btn--ghost {
  background: var(--bg-3);
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--bg-4);
  border-color: var(--text-3);
  color: var(--text);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  background: var(--bg-3);
  border-color: var(--accent);
}
.btn--lg { padding: 18px 32px; font-size: 17px; border-radius: 14px; }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--block { width: 100%; }

/* ============= HERO ============= */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(110, 231, 183, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(96, 165, 250, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 40%, rgba(167, 139, 250, 0.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: heroFloat 16s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, 20px) scale(1.05); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero { padding: 48px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  /* На мобилке скрываем визуальный телефон — он мешает и отжимает CTA вниз */
  .hero__visual { display: none; }
  /* Оставляем только основную CTA-кнопку в hero */
  .hero__cta .btn--ghost { display: none; }
  .hero__cta .btn { width: 100%; }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(110, 231, 183, 0.08);
  border: 1px solid rgba(110, 231, 183, 0.25);
  border-radius: 100px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  color: var(--text-2);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.pill svg { width: 14px; height: 14px; color: var(--accent); }
.pill--acc { border-color: rgba(110, 231, 183, 0.3); color: var(--accent); }
.pill--acc svg { color: var(--accent); }
.pill--blue { border-color: rgba(96, 165, 250, 0.3); color: var(--accent-2); }
.pill--violet { border-color: rgba(167, 139, 250, 0.3); color: var(--accent-3); }
.pill--pain { color: var(--pain); border-color: rgba(248, 113, 113, 0.25); background: rgba(248, 113, 113, 0.06); }

/* ============= HERO VISUAL ============= */
.hero__visual {
  position: relative;
  height: 540px;
  max-width: 100%;
}
@media (max-width: 960px) {
  .hero__visual { height: 480px; }
}
.phone {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-2deg);
  width: 320px;
  height: 640px;
  background: linear-gradient(145deg, #1a1f2e, #0f1219);
  border: 2px solid #262b3d;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(110, 231, 183, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.05);
}
@media (max-width: 960px) {
  .phone { left: 50%; right: auto; transform: translate(-50%, -50%) rotate(-2deg); }
}
.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #05070a;
  border-radius: 16px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: #0e1014;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  padding: 44px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.tg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #04110b;
  font-size: 14px;
}
.tg-info { line-height: 1.1; }
.tg-name { font-size: 13px; font-weight: 600; }
.tg-status { font-size: 11px; color: var(--text-3); }
.tg-msg {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.4;
  animation: tgFadeUp 0.5s both;
}
.tg-msg--bot {
  background: #1a1f2c;
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.tg-msg--user {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #04110b;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 600;
}
.tg-msg:nth-child(2) { animation-delay: 0.2s; }
.tg-msg:nth-child(3) { animation-delay: 0.4s; }
.tg-msg:nth-child(4) { animation-delay: 0.6s; }
.tg-msg:nth-child(5) { animation-delay: 0.8s; }
@keyframes tgFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tg-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tg-btn {
  background: #0f1520;
  border: 1px solid #1f2735;
  color: var(--accent);
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
}
.tg-status-active {
  margin-top: auto;
  background: rgba(110, 231, 183, 0.1);
  border: 1px solid rgba(110, 231, 183, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.tg-status-active::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s infinite;
}

.floating-badge {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow);
  animation: floatBadge 4s ease-in-out infinite;
}
.floating-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.floating-badge--1 {
  top: 40px;
  left: 0;
  color: var(--accent);
  animation-delay: 0s;
}
.floating-badge--2 {
  bottom: 80px;
  left: 20px;
  color: var(--accent-2);
  animation-delay: 1.5s;
}
.floating-badge--3 {
  top: 200px;
  right: 280px;
  color: var(--accent-3);
  animation-delay: 3s;
}
@media (max-width: 960px) {
  .floating-badge--1 { top: 0; left: 8px; }
  .floating-badge--2 { bottom: 0; left: 8px; }
  .floating-badge--3 { top: 80px; right: 8px; }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============= SECTION HEADER ============= */
.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.sec-head__tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(110, 231, 183, 0.08);
  border: 1px solid rgba(110, 231, 183, 0.2);
  border-radius: 100px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.sec-head__sub {
  color: var(--text-2);
  font-size: 17px;
}
@media (max-width: 768px) {
  .sec-head { margin-bottom: 40px; }
  .sec-head__sub { font-size: 15px; }
}

/* ============= PAINS GRID ============= */
.pains {
  background: linear-gradient(180deg, transparent, var(--bg-1) 50%, transparent);
}
.pains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .pains__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pains__grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.pain-card:hover {
  border-color: rgba(248, 113, 113, 0.35);
  transform: translateY(-2px);
}
.pain-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
  display: grid;
  place-items: center;
  color: var(--pain);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.pain-card__icon svg { width: 22px; height: 22px; }
.pain-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  font-weight: 700;
}
.pain-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .pain-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 0 12px;
  }
  .pain-card__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
    align-self: center;
  }
  .pain-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 4px;
  }
  .pain-card p {
    grid-column: 2;
    grid-row: 2;
  }
}

/* ============= HOW IT WORKS ============= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 960px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.step:hover {
  border-color: rgba(110, 231, 183, 0.35);
  transform: translateY(-2px);
}
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04110b;
  font-weight: 800;
  font-size: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(110, 231, 183, 0.25);
  flex-shrink: 0;
}
.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.step p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 960px) {
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
  }
  .step__num {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
    align-self: center;
  }
  .step h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding-bottom: 6px;
  }
  .step p {
    grid-column: 2;
    grid-row: 2;
  }
}
.steps__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-4);
}

/* ============= SMART ROUTING ============= */
.smart {
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(167, 139, 250, 0.06), transparent 60%);
}
.smart__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) { .smart__split { grid-template-columns: 1fr; } }
.split-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.split-card--bad {
  border-color: rgba(248, 113, 113, 0.3);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.04), var(--bg-2));
}
.split-card--good {
  border-color: rgba(110, 231, 183, 0.3);
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.05), var(--bg-2));
  box-shadow: 0 0 40px rgba(110, 231, 183, 0.08);
}
.split-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.split-card--bad .split-card__label { color: var(--pain); }
.split-card--good .split-card__label { color: var(--accent); }
.split-card h3 { font-size: 20px; margin-bottom: 16px; }
.split-card ul li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
}
.split-card ul li:last-child { border-bottom: none; }
.split-card ul li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.split-card--bad li svg { color: var(--pain); }
.split-card--good li svg { color: var(--accent); }

.smart__services {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ============= BENEFITS ============= */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .benefits__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .benefits__grid { grid-template-columns: 1fr; } }
.benefit {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.25s, transform 0.25s;
}
.benefit:hover {
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-2px);
}
.benefit__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.benefit__icon svg { width: 22px; height: 22px; }
.benefit:nth-child(1) .benefit__icon { background: rgba(110, 231, 183, 0.1); color: var(--accent); border: 1px solid rgba(110, 231, 183, 0.2); }
.benefit:nth-child(2) .benefit__icon { background: rgba(96, 165, 250, 0.1); color: var(--accent-2); border: 1px solid rgba(96, 165, 250, 0.2); }
.benefit:nth-child(3) .benefit__icon { background: rgba(167, 139, 250, 0.1); color: var(--accent-3); border: 1px solid rgba(167, 139, 250, 0.2); }
.benefit:nth-child(4) .benefit__icon { background: rgba(244, 114, 182, 0.1); color: var(--accent-4); border: 1px solid rgba(244, 114, 182, 0.2); }
.benefit:nth-child(5) .benefit__icon { background: rgba(251, 191, 36, 0.1); color: var(--warn); border: 1px solid rgba(251, 191, 36, 0.2); }
.benefit:nth-child(6) .benefit__icon { background: rgba(110, 231, 183, 0.1); color: var(--accent); border: 1px solid rgba(110, 231, 183, 0.2); }
.benefit h3 { font-size: 18px; margin-bottom: 8px; }
.benefit p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

/* ============= USE CASES ============= */
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .usecases__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .usecases__grid { grid-template-columns: repeat(2, 1fr); } }
.usecase {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.usecase:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.usecase__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--bg-3);
}
.usecase__icon svg { width: 24px; height: 24px; color: var(--accent); }
.usecase h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.usecase p { font-size: 12px; color: var(--text-3); }

/* ============= QUIZ ============= */
.quiz-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(244, 114, 182, 0.08), transparent 65%);
}
.quiz-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quiz-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.5), transparent 40%, rgba(110, 231, 183, 0.3) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (max-width: 560px) { .quiz-wrap { padding: 24px 18px; } }

.quiz-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.quiz-progress__bar {
  flex: 1;
  height: 4px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 16px;
}
.quiz-progress__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-4), var(--accent-3));
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(244, 114, 182, 0.5);
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quizFadeIn 0.3s ease-out; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-q {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  line-height: 1.25;
}
.quiz-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 560px) { .quiz-opts { grid-template-columns: 1fr; } }
.quiz-opt {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  transition: all 0.2s;
  min-height: 72px;
  cursor: pointer;
}
.quiz-opt:hover {
  border-color: var(--accent-4);
  background: var(--bg-4);
  transform: translateY(-1px);
}
.quiz-opt__letter {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(244, 114, 182, 0.12);
  color: var(--accent-4);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(244, 114, 182, 0.25);
}
.quiz-opt__body strong { display: block; font-size: 15px; font-weight: 600; color: var(--text); }
.quiz-opt__body small { display: block; font-size: 12.5px; color: var(--text-3); margin-top: 2px; }

.quiz-back {
  margin-top: 20px;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.quiz-back:hover { color: var(--text); }

.quiz-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.quiz-form__field {
  position: relative;
}
.quiz-form input[type="text"],
.quiz-form input[type="tel"],
.quiz-form input[type="email"] {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-4);
}
.quiz-form input.error { border-color: var(--pain); }
.quiz-form__err {
  color: var(--pain);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.quiz-form__err.show { display: block; }

.quiz-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.45;
  margin-top: 4px;
}
.quiz-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.quiz-consent a { color: var(--accent-2); text-decoration: underline; }

.quiz-submit-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}
.quiz-submit-row .btn { flex: 1; min-height: 48px; }

.quiz-consent {
  padding: 6px 0;
  cursor: pointer;
}
.quiz-consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
}

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.quiz-intro {
  text-align: center;
  padding: 24px 0;
}
.quiz-intro .btn { margin-top: 8px; }

/* ============= PRICING ============= */
.pricing-trial {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.trial-card {
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.08), rgba(96, 165, 250, 0.06));
  border: 1px solid rgba(110, 231, 183, 0.25);
  border-radius: 100px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.trial-card svg { width: 18px; height: 18px; color: var(--accent); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }
.plan {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--text-3); }
.plan--best {
  border-color: rgba(110, 231, 183, 0.5);
  background: linear-gradient(180deg, rgba(110, 231, 183, 0.05), var(--bg-2) 50%);
  box-shadow: 0 0 40px rgba(110, 231, 183, 0.12);
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #04110b;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(110, 231, 183, 0.35);
}
.plan__name { font-size: 14px; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 10px; }
.plan__price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 6px;
}
.plan__price-note { color: var(--text-3); font-size: 14px; margin-bottom: 20px; }
.plan__price-note s { color: var(--text-4); }
.plan__features {
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.plan__features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 2px;
}

/* ============= DEVICES ============= */
.devices__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 768px) { .devices__grid { grid-template-columns: repeat(3, 1fr); } }
.device {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.25s;
}
.device:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.device svg { width: 32px; height: 32px; color: var(--text-2); margin: 0 auto 8px; display: block; }
.device:hover svg { color: var(--accent); }
.device span { font-size: 13px; font-weight: 500; color: var(--text-2); }

/* ============= REVIEWS ============= */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews__grid { grid-template-columns: 1fr; } }
.review {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s;
}
.review:hover { border-color: rgba(110, 231, 183, 0.35); }
.review__stars { color: var(--warn); margin-bottom: 10px; font-size: 14px; }
.review__text { color: var(--text); font-size: 15px; line-height: 1.55; margin-bottom: 16px; }
.review__author { display: flex; align-items: center; gap: 10px; }
.review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.review__info { line-height: 1.2; }
.review__name { font-size: 14px; font-weight: 600; }
.review__role { font-size: 12px; color: var(--text-3); }

.reviews__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.stat__num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { font-size: 13px; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ============= FAQ ============= */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--accent); }
.faq-item__q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-item__q:hover { background: var(--bg-3); }
.faq-item__chev {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  transition: transform 0.25s;
  color: var(--text-3);
}
.faq-item.open .faq-item__chev { transform: rotate(180deg); color: var(--accent); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a-inner {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ============= FINAL CTA ============= */
.final-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(110, 231, 183, 0.15), transparent 60%);
  pointer-events: none;
}
.final-cta__wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(110, 231, 183, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(110, 231, 183, 0.1);
}
@media (max-width: 560px) {
  .final-cta { padding: 64px 0; }
  .final-cta__wrap { padding: 32px 24px; }
}
.final-cta h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.final-cta p { color: var(--text-2); font-size: 17px; margin-bottom: 28px; }
.final-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.final-cta__guarantees {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  margin-top: 8px;
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
}
.guarantee svg { width: 16px; height: 16px; color: var(--accent); }

/* ============= FOOTER ============= */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 32px;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer__main { grid-template-columns: 1fr; }
}
.footer__brand p { color: var(--text-3); font-size: 14px; margin: 12px 0; line-height: 1.55; max-width: 300px; }
.footer__col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer__col a {
  display: block;
  color: var(--text-3);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-4);
  font-size: 12px;
  flex-wrap: wrap;
}

/* ============= MOBILE STICKY CTA ============= */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 90;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 8px 8px 16px;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.mobile-sticky__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.2;
}
.mobile-sticky__text strong { display: block; font-weight: 700; color: var(--text); font-size: 14px; }
.mobile-sticky__text span { color: var(--text-3); font-size: 12px; }
@media (max-width: 768px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 80px; }
}

/* ============= MOBILE MENU ============= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(7, 8, 12, 0.95);
  backdrop-filter: blur(20px);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
}
.mobile-menu__links a {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

/* ============= MOBILE CARD LAYOUT (icon left, text right) ============= */
@media (max-width: 560px) {
  .pain-card,
  .benefit,
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
  }
  .pain-card__icon,
  .benefit__icon,
  .step__num {
    margin-bottom: 0;
    grid-row: span 2;
    width: 44px;
    height: 44px;
  }
  .pain-card h3,
  .benefit h3,
  .step h3 {
    font-size: 16px;
    margin: 4px 0 2px;
  }
  .pain-card p,
  .benefit p,
  .step p {
    font-size: 13.5px;
    line-height: 1.45;
    grid-column: 2;
  }
}

/* ============= ANIMATIONS ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============= THANKS/404/LEGAL PAGES ============= */
.page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.page__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.page__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 60px rgba(110, 231, 183, 0.4);
}
.page__icon svg { width: 44px; height: 44px; color: #04110b; }
.page h1 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.page p {
  color: var(--text-2);
  font-size: 17px;
  margin-bottom: 32px;
}
.page__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.page__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  text-align: left;
}
@media (max-width: 640px) { .page__cards { grid-template-columns: 1fr; } }
.page__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.page__card svg { width: 22px; height: 22px; color: var(--accent); margin-bottom: 10px; }
.page__card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.page__card p { font-size: 13.5px; color: var(--text-3); margin: 0; }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal h1 { font-size: 36px; margin-bottom: 24px; letter-spacing: -0.03em; }
.legal h2 { font-size: 22px; margin: 32px 0 14px; }
.legal h3 { font-size: 17px; margin: 20px 0 10px; }
.legal p, .legal li { color: var(--text-2); font-size: 15.5px; line-height: 1.65; margin-bottom: 10px; }
.legal ul, .legal ol { padding-left: 20px; list-style: disc; }
.legal ol { list-style: decimal; }
.legal strong { color: var(--text); }
.legal a { color: var(--accent); }

/* ============= UTILS ============= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============= ORDER MODAL ============= */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.order-modal.open { display: flex; }
.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,8,12,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.order-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 40px);
  background: #0d0f14;
  border: 1px solid rgba(110,231,183,.18);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(110,231,183,.05) inset;
  animation: order-pop .22s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
@keyframes order-pop {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
.order-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  color: var(--text-2);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.order-modal__close:hover { background: rgba(255,255,255,.08); color: var(--text); }
.order-modal__header {
  margin-bottom: 20px;
  padding-right: 40px;
}
.order-modal__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(110,231,183,.1);
  border: 1px solid rgba(110,231,183,.22);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.order-modal__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.25;
}
.order-modal__price {
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.5;
}
.order-modal__price strong {
  color: var(--text);
  font-weight: 600;
}

.order-form__field {
  margin-bottom: 14px;
}
.order-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.order-form__hint {
  color: var(--text-3);
  font-weight: 400;
  font-size: 12px;
  margin-left: 4px;
}
.order-form input[type="text"],
.order-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: var(--text);
  transition: border-color .15s, background .15s;
  box-sizing: border-box;
}
.order-form input[type="text"]:focus,
.order-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(110,231,183,.04);
}
.order-form input.error {
  border-color: #f472b6;
  background: rgba(244,114,182,.05);
}

/* ===== input с префиксом @ ===== */
.input-prefix {
  position: relative;
  display: flex;
  align-items: stretch;
}
.input-prefix__sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-3);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  user-select: none;
}
.input-prefix > input {
  flex: 1 1 auto;
  border-radius: 0 10px 10px 0 !important;
  border-left: 0 !important;
}
.input-prefix:focus-within .input-prefix__sign {
  border-color: var(--accent);
  background: rgba(110,231,183,.06);
  color: var(--accent);
}
.input-prefix > input.error + .input-prefix__sign,
.input-prefix:has(input.error) .input-prefix__sign {
  border-color: #f472b6;
  background: rgba(244,114,182,.05);
  color: #f472b6;
}

/* для квиза */
.quiz-form .input-prefix > input {
  padding: 12px 14px;
  font-size: 15px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  font-family: inherit;
  border-radius: 0 10px 10px 0;
  border-left: 0;
}
.quiz-form .input-prefix > input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(110,231,183,.04);
}
.order-form__err {
  font-size: 12px;
  color: #f472b6;
  margin-top: 5px;
  display: none;
}
.order-form__err.show { display: block; }
.order-form__err--global {
  text-align: center;
  margin: 10px 0 0;
}

.order-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-3);
  margin: 10px 0 14px;
  cursor: pointer;
}
.order-form__consent[hidden] { display: none; }
.order-form__consent--err {
  color: var(--accent);
}
.order-form__consent--err input[type="checkbox"] {
  outline: 2px solid #f472b6;
  outline-offset: 2px;
  border-radius: 3px;
}

.order-form__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--accent);
  text-align: center;
}
.order-form__loading[hidden] { display: none; }
.order-form__loading::before {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid rgba(110,231,183,.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
}
.order-form__consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.order-form__consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.order-form__consent code {
  background: rgba(255,255,255,.06);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.order-form__submit {
  margin-top: 4px;
  position: relative;
}
.order-form__submit:disabled {
  opacity: .85;
  cursor: wait;
}

/* ===== Loader-spinner на кнопке ===== */
.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.is-loading > * {
  visibility: hidden;
}
.btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border: 2.5px solid rgba(7, 8, 12, .25);
  border-top-color: #07080c;
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
  visibility: visible;
}
.btn--ghost.is-loading::after {
  border-color: rgba(110,231,183, .25);
  border-top-color: var(--accent);
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.order-form__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-3);
}
.order-form__footer svg { flex-shrink: 0; }

.honey {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Quiz step 5 price pill */
.quiz-price-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(110,231,183,.12), rgba(96,165,250,.08));
  border: 1px solid rgba(110,231,183,.22);
  border-radius: 12px;
  text-align: center;
}
.quiz-price-pill strong {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
}
.quiz-price-pill span {
  font-size: 12.5px;
  color: var(--text-3);
}

.quiz-form__err--global {
  text-align: center;
  margin: 10px 0 0;
  display: none;
  font-size: 12px;
  color: #f472b6;
}
.quiz-form__err--global.show { display: block; }

/* Trial card clickable */
button.trial-card {
  font: inherit;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080c;
  padding: 14px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 10px 30px rgba(110,231,183,.25);
}
button.trial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(110,231,183,.32);
}
button.trial-card svg { width: 20px; height: 20px; }

@media (max-width: 520px) {
  .order-modal { padding: 0; align-items: flex-end; }
  .order-modal__dialog {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    padding: 22px 20px 20px;
  }
}

body.modal-open { overflow: hidden; }

/* ============= SECTION CTA ============= */
.section-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.section-cta .btn { min-width: 260px; justify-content: center; }

/* ============= PRICING TRIAL LINK (мелкая ссылка под тарифами) ============= */
.pricing-trial-link {
  margin-top: 28px;
  text-align: center;
}
.pricing-trial-link__btn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-3);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: color .15s;
  text-decoration: underline;
  text-decoration-color: rgba(148,163,184,.3);
  text-underline-offset: 3px;
}
.pricing-trial-link__btn:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ============= APPS ============= */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.app-card {
  background: #0d0f14;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .18s, background .18s, transform .18s;
}
.app-card:hover {
  border-color: rgba(96,165,250,.3);
  background: rgba(96,165,250,.04);
  transform: translateY(-3px);
}
.app-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(96,165,250,.16), rgba(110,231,183,.12));
  color: #e6e8ee;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.app-card__icon svg { width: 26px; height: 26px; }
.app-card__platform {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 2px;
}
.app-card__name {
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.app-card__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-top: auto;
}
.app-link {
  display: block;
  padding: 9px 10px;
  background: rgba(96,165,250,.08);
  border: 1px solid rgba(96,165,250,.2);
  border-radius: 8px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.app-link:hover {
  background: rgba(96,165,250,.15);
  border-color: rgba(96,165,250,.4);
}
.app-link--wide { padding: 9px 10px; }

@media (max-width: 960px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .apps-grid { grid-template-columns: 1fr; }
  .app-card { padding: 20px 18px; }
}
