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

:root {
  --bg: #0a0a14;
  --bg-2: #14142a;
  --card: #1a1a30;
  --border: #2a2a4a;
  --text: #ffffff;
  --muted: #a0a0c0;
  --accent: #6c63ff;
  --accent-2: #4facfe;
  --green: #00d4aa;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ───── NAV ───── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  max-width: 1180px; margin: 0 auto;
}
.logo {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.5px;
}
.logo span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; gap: 26px; align-items: center;
}
.nav-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 9px 18px; border-radius: 10px;
  color: #fff !important; font-weight: 600;
}

/* ───── HERO ───── */
.hero {
  position: relative;
  padding: 130px 0 80px;
  text-align: center;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
  z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -100px; left: -150px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--accent-2);
  top: 100px; right: -100px;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108, 99, 255, .15);
  border: 1px solid rgba(108, 99, 255, .4);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: #b4b4ff;
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-title {
  font-size: 68px; font-weight: 800;
  line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 30px rgba(108, 99, 255, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(108, 99, 255, .5);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  transition: all .2s;
}
.btn-ghost:hover { background: var(--card); color: #fff; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.hero-stats > div { text-align: center; }
.hero-stats b {
  font-size: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-weight: 800;
}
.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

/* ───── SECTIONS ───── */
.section-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 56px;
}

/* ───── TRIAL ───── */
.trial-section { padding: 80px 0; }
.trial-card {
  background: linear-gradient(180deg, rgba(108,99,255,.12), var(--card));
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(108, 99, 255, .25);
}
.trial-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 212, 170, .15);
  border: 1px solid rgba(0, 212, 170, .4);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: #b4ffe0;
  margin-bottom: 22px;
}
.trial-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}
.trial-btn-big {
  font-size: 18px !important;
  padding: 18px 40px !important;
  width: 100%;
  border: none;
  cursor: pointer;
}
.trial-btn-big:disabled { opacity: .6; cursor: wait; }

/* Форма регистрации */
.trial-form {
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.form-row {
  margin-bottom: 14px;
}
.form-row label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-row .req { color: #ff8080; }
.form-row input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s;
}
.form-row input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row input::placeholder { color: #555; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 16px 0 22px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}
.form-check input { margin-top: 3px; }
.form-check a { color: var(--accent-2); text-decoration: underline; }

/* "Как купить" — 3 шага */
.how-to-buy {
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,212,170,.08), var(--card));
  border: 1px solid rgba(0,212,170,.3);
  border-radius: 16px;
}
.htb-step {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
  font-size: 15px;
}
.htb-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.htb-num {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.htb-step a { color: var(--accent-2); text-decoration: underline; font-weight: 600; }

.trial-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.trial-result h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 6px;
}
.trial-result-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
/* Platform blocks (iOS / Android / Desktop) */
.platform-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
  transition: all .3s;
}
.platform-block.highlighted {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(108,99,255,.12), var(--bg));
  box-shadow: 0 8px 30px rgba(108,99,255,.18);
}
.platform-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.platform-icon { font-size: 36px; }
.platform-header h4 { font-size: 18px; font-weight: 700; margin: 0; }
.platform-header small { color: var(--muted); font-size: 13px; }
.platform-badge {
  margin-left: auto;
  background: linear-gradient(135deg, var(--green), var(--accent-2));
  color: #0a0a14;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.platform-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}
.platform-steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  flex-wrap: wrap;
}
.platform-steps li:last-child { border-bottom: none; }
.platform-steps li::before {
  content: counter(step);
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--muted);
}
.platform-block.highlighted .platform-steps li::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
}
.step-text {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
}
.step-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .15s;
}
.step-btn:hover {
  border-color: var(--accent);
  background: rgba(108,99,255,.1);
}
.step-btn-main {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #fff;
  padding: 10px 18px;
  box-shadow: 0 6px 20px rgba(108,99,255,.4);
}
.step-btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(108,99,255,.55);
}

.platform-alt {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.platform-alt summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  list-style: none;
  padding: 6px 0;
}
.platform-alt summary::-webkit-details-marker { display: none; }
.platform-alt summary::before {
  content: '▸ ';
  color: var(--accent);
}
.platform-alt[open] summary::before { content: '▾ '; }

.platform-block-desktop {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.platform-block-desktop summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.platform-block-desktop summary::-webkit-details-marker { display: none; }

.trial-qr-toggle {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.trial-qr-toggle summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.trial-qr-toggle summary::-webkit-details-marker { display: none; }
.trial-qr-toggle .trial-qr {
  margin-top: 14px;
}
.trial-qr-toggle .trial-qr p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.trial-link-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.link-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.link-row {
  display: flex; gap: 8px;
}
.link-row input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 13px;
  font-family: 'SF Mono', 'Consolas', monospace;
}
.copy-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.copy-btn:hover { background: var(--accent-2); }

.trial-qr {
  text-align: center;
  margin-bottom: 20px;
}
.trial-qr img {
  width: 200px; height: 200px;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.trial-hint {
  background: rgba(255, 200, 0, .1);
  border: 1px solid rgba(255, 200, 0, .3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #ffd970;
  text-align: center;
}
.trial-hint a { color: var(--accent-2); }

.trial-error {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255, 80, 80, .15);
  border: 1px solid rgba(255, 80, 80, .4);
  border-radius: 10px;
  color: #ff8080;
  font-size: 14px;
  text-align: center;
}

.plan-permo {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .trial-card { padding: 32px 20px; }
  .trial-actions { grid-template-columns: 1fr; }
  .trial-qr img { width: 160px; height: 160px; }
}

/* ───── REF BANNER ───── */
.ref-banner {
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 99;
  background: linear-gradient(135deg, var(--green), var(--accent-2));
  color: #0a0a14;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0,212,170,.3);
}
.ref-banner b { font-weight: 800; }
@media (max-width: 600px) {
  .ref-banner { font-size: 12px; padding: 8px 12px; }
}

/* ───── BIG STEPS ───── */
.step-header {
  display: flex; align-items: center; gap: 22px;
  max-width: 720px;
  margin: 0 auto 36px;
}
.big-step {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 30px rgba(108, 99, 255, .4);
  flex-shrink: 0;
}
.step-header h2 { text-align: left; }
.step-header p { text-align: left; }

/* ───── APPS GRID ───── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.app-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all .3s;
  display: block;
}
.app-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(108,99,255,.1), var(--card));
  box-shadow: 0 14px 40px rgba(108,99,255,.25);
}
.app-icon {
  font-size: 56px;
  margin-bottom: 14px;
}
.app-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.app-platform {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.app-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 15px;
}

/* ───── UPGRADE SECTION ───── */
.upgrade-section { padding: 100px 0; background: var(--bg-2); }
.upgrade-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(108,99,255,.15), var(--card));
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(108, 99, 255, .25);
}
/* Цена «от 62 ₽» — большая */
.price-feature {
  text-align: center;
  margin-bottom: 28px;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.price-feature-label {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.price-feature-num {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 4px;
}
.price-feature-num span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-feature-sub {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}
.price-feature-hint {
  color: var(--muted);
  font-size: 12px;
}

.upgrade-perks {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  text-align: left;
}
.perk {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.perk-icon { font-size: 28px; flex-shrink: 0; }
.perk b { display: block; font-size: 16px; margin-bottom: 4px; }
.perk p { color: var(--muted); font-size: 13px; }

.upgrade-btn {
  width: 100%;
  font-size: 18px !important;
  padding: 18px !important;
  margin-bottom: 14px;
}
.upgrade-channel {
  display: block;
  color: var(--accent-2);
  font-size: 14px;
  text-decoration: underline;
}

/* ───── INSTALL ───── */
.install { padding: 100px 0; background: var(--bg-2); }
.steps {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 6px;
}
.step p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

.downloads {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.dl-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex; align-items: center; gap: 12px;
  transition: all .2s;
}
.dl-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: rgba(108, 99, 255, .08);
}
.dl-icon { font-size: 24px; }
.dl-text b { display: block; font-size: 14px; font-weight: 600; }
.dl-text small { color: var(--muted); font-size: 12px; }

.btn-tg {
  display: inline-flex; align-items: center; gap: 8px;
  background: #2aabee;
  color: #fff;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 8px;
}
.btn-tg:hover { background: #1c91ce; }
.hint {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(0, 212, 170, .1);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  font-size: 14px;
  color: #b4ffe0;
}

/* ───── WHY ───── */
.why { padding: 100px 0; }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all .3s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.f-icon { font-size: 36px; margin-bottom: 14px; }
.feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ───── PRICE ───── */
.price { padding: 100px 0; background: var(--bg-2); }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  position: relative;
}
.plan.featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(108,99,255,.1), var(--card));
  transform: scale(1.03);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
}
.plan-name { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
.plan-price {
  font-size: 56px; font-weight: 800;
  letter-spacing: -2px;
  margin: 14px 0;
  line-height: 1.1;
}
/* Маленьким делаем только период (/мес, /год) — но НЕ саму цену */
.plan-price .price-period {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 4px;
}
.plan ul { list-style: none; text-align: left; margin-bottom: 24px; }
.plan li { padding: 8px 0; color: #d0d0e0; font-size: 14px; }
.plan .btn-primary { display: block; }

.trial-note {
  text-align: center;
  margin-top: 36px;
  padding: 18px;
  background: rgba(0, 212, 170, .1);
  border: 1px solid rgba(0, 212, 170, .3);
  border-radius: 12px;
  color: #b4ffe0;
}

/* Promo code box */
.promo-box {
  max-width: 540px;
  margin: 0 auto 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.promo-box .link-label { margin-bottom: 10px; font-weight: 600; color: #fff; }
.promo-box .link-row input {
  text-transform: uppercase;
  font-weight: 600;
}
.promo-msg {
  margin-top: 10px;
  font-size: 13px;
  min-height: 18px;
}
.promo-msg.ok { color: #b4ffe0; }
.promo-msg.err { color: #ff8080; }

/* Цена с зачёркнутым старым вариантом */
.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.55em;
  font-weight: 500;
  margin-right: 10px;
  display: none;
  letter-spacing: 0;
}
.price-now {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: inherit;
  font-weight: inherit;
}

/* ───── FAQ ───── */
.faq { padding: 100px 0; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 18px 22px;
  max-width: 800px;
  margin: 0 auto 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: -2px;
  font-size: 22px;
  color: var(--accent);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq a { color: var(--accent-2); text-decoration: underline; }

/* ───── FOOTER ───── */
footer {
  background: var(--bg-2);
  padding: 50px 0 20px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 30px; flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom {
  text-align: center;
  color: #555;
  font-size: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ───── FLOATING CTA ───── */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(108, 99, 255, .5);
  z-index: 99;
  transition: transform .2s;
}
.floating-cta:hover { transform: scale(1.05); }

/* ───── MOBILE ───── */
@media (max-width: 768px) {
  .nav-links a:not(.btn-nav) { display: none; }
  .hero { padding: 100px 0 50px; }
  .hero-title { font-size: 42px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .section-title { font-size: 32px; }
  .section-sub { font-size: 16px; margin-bottom: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px; }
  .hero-stats b { font-size: 24px; }
  .step { padding: 24px; }
  .step h3 { font-size: 20px; }
  .feature { padding: 22px; }
  .plan-price { font-size: 52px; }
  .plan-price .price-period { font-size: 15px; }
  .plan.featured { transform: none; }
  .floating-cta { font-size: 14px; padding: 12px 18px; bottom: 16px; right: 16px; }
}
