/* ─── HONEYPOT ──────────────────────────────────────────── */
.form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; overflow-x: hidden; max-width: 100vw; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

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

/* ─── CSS ПЕРЕМЕННЫЕ ────────────────────────────────────── */
:root {
  --color-bg:         #07050F;
  --color-glow:       #1A0A3A;
  --color-accent:     #5B2D8E;
  --color-accent-lt:  #9B7FE8;
  --color-text:       #F0ECFF;
  --color-text-muted: rgba(232, 228, 240, 0.5);
  --color-text-dim:   rgba(232, 228, 240, 0.25);
  --color-border:     rgba(255, 255, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --color-gold:      #C9A84C;
  --color-gold-lt:   #E8C97A;
  --color-green:     #4ADE80;
  --color-blue-tg:   #229ED9;
  --color-bg-deep:   #06030F;
  --color-bg-bot:    #0F0820;
  --gradient-gold:   linear-gradient(135deg, #C9A84C, #E8C97A);
  --color-modal-bg:  #0D0B1A;
  --color-surface:   rgba(255, 255, 255, 0.03);
  --color-border-active: rgba(155, 127, 232, 0.5);
}

/* ─── BODY + ФОН ────────────────────────────────────────── */
body {
  position: relative;
  background-color: var(--color-bg-deep);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -5%, #3D1585 0%, #220B55 25%, #0F0530 50%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(100,45,180,0.15) 0%, transparent 60%);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  top: 0; left: 0; z-index: 0;
  width: 100%; height: 100%; content: '';
  background: radial-gradient(ellipse 40% 30% at 15% 60%, rgba(91, 45, 142, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

body::after {
  position: fixed;
  top: 0; left: 0; z-index: -1; display: block;
  width: 100%; height: 100%; content: '';
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ─── ТИПОГРАФИКА ───────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(28px, 5vw, 48px); letter-spacing: -0.5px; }
h2 { font-size: clamp(22px, 3vw, 36px); letter-spacing: -0.3px; }
h3 { font-size: clamp(16px, 2vw, 20px); }
p  { font-size: 15px; line-height: 1.6; color: var(--color-text-muted); }

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-lt);
  position: relative;
  padding-bottom: 8px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* ─── КОНТЕЙНЕР ─────────────────────────────────────────── */
.header__container,
.section-hero__container,
.section-trust__container,
.section-services__container,
.section-process__container,
.section-directions__container,
.section-why__container,
.section-faq__container,
.section-contact__container {
  width: 100%;
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/* ─── КНОПКИ ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-text);
  border: 1px solid transparent;
}

.btn--primary:hover { transform: translateY(-2px); opacity: 0.9; }

.btn--glow:hover { box-shadow: 0 0 24px rgba(91, 45, 142, 0.6); }

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--outline:hover { transform: translateY(-2px); border-color: var(--color-accent-lt); }

.btn--quiz {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 12px;
  padding: 8px 0;
  transition: opacity 0.2s ease;
  border: none;
  background: none;
}

.btn--quiz::before {
  content: '→';
  width: 24px;
  height: 24px;
  background: rgba(240,180,41,0.15);
  border: 0.5px solid rgba(240,180,41,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s ease;
}

.btn--quiz:hover { opacity: 0.8; }
.btn--quiz:hover::before { background: rgba(240,180,41,0.25); }

/* ─── HEADER ────────────────────────────────────────────── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 90; transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, backdrop-filter 0.3s ease; }
.header.is-hidden { top: -100px; }
.header.is-scrolled { background: rgba(6,3,15,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.header.menu-open { z-index: 95; }

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__nav { display: none; gap: 32px; }

.header__nav-link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.header__nav-link:hover { color: var(--color-text); }

.header__cta { display: none; }

.header__burger { display: flex; flex-direction: column; gap: 5px; padding: 6px; }

.header__burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger.is-open .header__burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__burger.is-open .header__burger-line:nth-child(2) { opacity: 0; }
.header__burger.is-open .header__burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: #07050F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    padding: 40px 24px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
    z-index: 94;
    visibility: hidden;
    transition: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    touch-action: none;
  }

  .header__nav.is-open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .header__nav a,
  .header__nav button:not(.nav__calc-btn) {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--color-text);
    text-decoration: none;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
  }

  .header__nav a:last-of-type {
    border-bottom: none;
  }

  .header__nav a:hover,
  .header__nav button:not(.nav__calc-btn):hover {
    color: var(--color-accent-lt);
  }

  .nav__calc-btn {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
  }
  .header__nav .btn--academy{width:100%;text-align:center;font-size:24px;border-radius:100px;justify-content:center;display:flex;align-items:center}
}

/* ─── CONTACT FORM ──────────────────────────────────────── */
.section-contact { padding-top: 80px; padding-bottom: 80px; background: rgba(255, 255, 255, 0.01); }

.section-contact__title { margin-top: 8px; margin-bottom: 40px; max-width: 560px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 720px; }

.contact-form__row { display: flex; flex-direction: column; gap: 20px; }

.contact-form__field { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.contact-form__label { font-size: 12px; font-weight: 500; letter-spacing: 0.5px; color: var(--color-text-muted); }

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: var(--color-text-dim); }

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus { outline: none; border-color: var(--color-accent); }

.contact-form__input.is-error,
.contact-form__select.is-error,
.contact-form__textarea.is-error { border-color: rgba(220, 80, 80, 0.6); }

.contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(232,228,240,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form__select option { background: var(--color-bg); color: var(--color-text); }

.contact-form__textarea { resize: vertical; min-height: 100px; }

.contact-form__submit { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }

.contact-form__success,
.contact-form__error {
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  text-align: center;
}

.contact-form__success {
  background: rgba(91, 45, 142, 0.15);
  border: 0.5px solid rgba(155, 127, 232, 0.3);
  color: var(--color-accent-lt);
}

.contact-form__error {
  background: rgba(220, 80, 80, 0.1);
  border: 0.5px solid rgba(220, 80, 80, 0.3);
  color: rgba(255, 180, 180, 0.9);
}


/* ─── @MEDIA 768px ──────────────────────────────────────── */
@media (min-width: 768px) {
  .header__nav { position: static; display: flex; opacity: 1; pointer-events: all; }
  .header__cta { display: inline-flex; }
  .header__burger { display: none; }

  .section-hero__container { flex-direction: row; align-items: center; gap: 48px; }
  .section-hero__content { flex: 1; }

  .section-hero__visuals { position: relative; flex: 1; flex-direction: row; min-height: 340px; }

  .ui-browser { position: absolute; top: 0; left: 0; max-width: 280px; }
  .ui-phone   { position: absolute; top: 40px; right: 0; max-width: 130px; }
  .ui-chat    { position: absolute; bottom: 0; left: 20px; max-width: 200px; }

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

  .services__scroll-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }
  .service-card { min-width: unset; }

  .process-timeline { flex-direction: row; }

  .process-step { flex: 1; flex-direction: column; padding-left: 0; padding-top: 56px; padding-bottom: 0; }
  .process-step::before { top: 18px; left: 36px; right: 0; bottom: auto; width: auto; height: 1px; }

  .process-step__number { top: 0; left: 0; }

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

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

  .contact-form__row { flex-direction: row; }
}

/* ─── @MEDIA 1200px ─────────────────────────────────────── */
@media (min-width: 1200px) {
  .services__scroll-wrap { grid-template-columns: repeat(5, 1fr); }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .bot-widget { bottom: 24px; right: 24px; }
  .bot-widget__toggle { width: 60px; height: 60px; }
  .bot-widget__bubble { max-width: 280px; }
}

/* ─── @MEDIA 767px (mobile) ─────────────────────────────── */
@media (max-width: 767px) {
  .section { padding: 48px 16px; }
  .section-hero { padding: 70px 16px 24px; gap: 16px; }
  .section__title { margin-bottom: 24px; }
  .section-label { margin-bottom: 6px; }
  .trust-bar__item { padding: 16px 8px; }
  .trust-bar__number { font-size: 26px; }
  .container { padding: 0 16px; width: 100%; max-width: 100%; }
  .services__scroll-wrap { -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding: 0 16px 16px; gap: 10px; }
  .services__scroll-hint { font-size: 11px; color: rgba(232,228,240,0.3); padding: 0 16px 8px; display: flex; align-items: center; gap: 4px; }
  .scroll-dots { display: flex; }
  .service-card { scroll-snap-align: start; padding: 14px 12px; min-width: 145px; max-width: 145px; height: auto; min-height: 0; }
  .service-card__icon { width: 24px; height: 24px; margin-bottom: 8px; }
  .service-card__title { font-size: 12px; line-height: 1.3; }
  .service-card__description { font-size: 11px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .process__step { gap: 10px; margin-bottom: 20px; }
  .faq-item__question { padding: 14px 0; font-size: 14px; }
  .contact-form { gap: 10px; }
  * { -webkit-overflow-scrolling: touch; }
  .section-hero::before, .section-hero::after, body::before, body::after { display: none; }
}

/* ─── ПРЕМИАЛЬНЫЕ АКЦЕНТЫ ────────────────────────────────── */
.text-gradient {
  background: linear-gradient(
    135deg, #C084FC 0%, #9B7FE8 40%,
    #F0ECFF 70%, #9B7FE8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.text-accent {
  color: var(--color-accent-lt);
  font-style: italic;
}

.trust__number {
  background: linear-gradient(135deg, #C084FC, #9B7FE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(155,127,232,0.4));
}

.nav__link {
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #9B7FE8, #C084FC);
  transition: width 0.3s ease;
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--color-accent-lt); }

.section + .section {
  position: relative;
}

.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 0.5px;
  background: linear-gradient(
    90deg, transparent,
    rgba(155,127,232,0.2), transparent
  );
}

/* ─── SHIMMER ─────────────────────────────────────────────── */
.section-label {
  background: linear-gradient(
    90deg,
    var(--color-accent-lt) 0%,
    #ffffff 40%,
    var(--color-accent-lt) 60%,
    #C084FC 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  animation: shimmer-slow 3s ease-in-out infinite;
  pointer-events: none;
}

.service-card::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(155,127,232,0.1),
    transparent
  );
  background-size: 200% 100%;
}

.service-card:hover::before {
  animation: shimmer 1s ease forwards;
}

/* ─── CURSOR GLOW ────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(91,45,142,0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media (max-width: 767px) {
  .cursor-glow { display: none; }
}

.text-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #FFD97D 40%, var(--color-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  display: block;
}

.section-hero .btn--primary {
  background: linear-gradient(135deg, #5B2D8E 0%, #7B3DBE 50%, #5B2D8E 100%);
  background-size: 200% auto;
  animation: shimmer-slow 3s linear infinite;
  box-shadow: 0 0 20px rgba(91,45,142,0.5), 0 0 40px rgba(91,45,142,0.2);
}

/* Hero mockup line widths */
.ui-line--40 { width: 40%; }
.ui-line--50 { width: 50%; }
.ui-line--55 { width: 55%; }
.ui-line--60 { width: 60%; }
.ui-line--80 { width: 80%; }

/* ─── NAV CALC BUTTON ─────────────────────────────────────────────────────── */
.nav__calc-btn {
  padding: 8px 18px;
  background: var(--color-accent);
  border: none;
  border-radius: 20px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  animation: navBtnPulse 2.5s ease-out infinite;
}

.nav__calc-btn:hover {
  background: #7340a8;
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .nav__calc-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 8px;
  }
}

@keyframes navBtnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(91, 45, 142, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(91, 45, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 45, 142, 0); }
}

.calc-trigger-btn.pulsing {
  animation: navBtnPulse 2.5s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .nav__calc-btn,
  .calc-trigger-btn.pulsing {
    animation: none;
  }
}

.bot--hidden { opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }

.bot-bubble--hidden { display: none; }

.bot-widget__bubble { position: relative; }

.bot-widget__bubble-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* ─── CONSENT CHECKBOX ──────────────────────────────────── */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 12px;
  user-select: none;
}

.consent-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(155,127,232,0.4);
  border-radius: 4px;
  background: rgba(155,127,232,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.consent-check:checked + .consent-box {
  background: #5B2D8E;
  border-color: #5B2D8E;
  color: #F0ECFF;
}

.consent-box .consent-tick {
  width: 12px;
  height: 10px;
  color: #F0ECFF;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.consent-check:checked + .consent-box .consent-tick {
  opacity: 1;
  transform: scale(1);
}

.consent-box--error {
  border-color: rgba(224,123,123,0.8);
  background: rgba(224,123,123,0.08);
}

.consent-text {
  font-size: 12px;
  color: rgba(240,236,255,0.4);
  font-family: var(--font-body);
  line-height: 1.5;
}

.consent-link {
  color: rgba(240,236,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.consent-link:hover { color: var(--color-accent-lt); }

.quick-form__submit--disabled { opacity: 0.4; cursor: not-allowed; }

.marquee-strip {
  overflow: hidden;
  padding: 1.4rem 0;
  margin-top: -1px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(155, 127, 232, 0.15);
  border-bottom: 1px solid rgba(155, 127, 232, 0.15);
  background: var(--color-bg);
}
.marquee-strip__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-strip__track span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(240, 236, 255, 0.55);
  flex-shrink: 0;
  transition: color 0.3s;
}
.marquee-strip__track span:hover { color: rgba(155, 127, 232, 0.9); }
.marquee-strip__dot { color: var(--color-accent-lt) !important; opacity: 0.6; font-size: 1rem !important; letter-spacing: 0 !important; }
.marquee-strip__track:hover { animation-play-state: paused; }
@media (max-width: 768px) {
  .marquee-strip { padding: 1rem 0; }
  .marquee-strip__track { animation-duration: 18s; gap: 2rem; }
  .marquee-strip__track span { font-size: 0.62rem; letter-spacing: 4px; }
  .section-hero__subtitle { margin-bottom: 1.5rem; }
  .section-hero__content { gap: 0.8rem; }
  .hero-orb { display: none; }
  .hero-bubbles { display: none; }
  .ui-browser,.ui-phone,.ui-chat{display:none}
  .section-hero__visuals{display:block;width:100%}
}
.btn--academy{background:linear-gradient(135deg,var(--color-accent),var(--color-accent-lt));color:var(--color-text);padding:.5rem 1.4rem;border-radius:100px;font-size:.75rem;letter-spacing:2px;text-decoration:none;transition:.3s;font-weight:500}
.btn--academy:hover{opacity:.85;transform:translateY(-1px)}
