/* ── Variables ── */
:root {
  --white:      #FFFFFF;
  --off-white:  #F8F7FF;
  --black:      #080612;
  --gray:       #6B7280;
  --gray-l:     #E8E3F5;
  --purple:     #7C3AED;
  --purple-l:   #A78BFA;
  --purple-ll:  #EDE9FE;
  --gradient:   linear-gradient(135deg, #7C3AED, #C026D3);
  --shadow-sm:  0 2px 12px rgba(124,58,237,0.08);
  --shadow-md:  0 4px 32px rgba(124,58,237,0.12);
  --nav-h:      64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  background: var(--white);
  color: var(--black);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ── */
h1, h2, h3 { line-height: 1.1; }

/* ── Layout ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-sm {
  0%, 100% { transform: rotate(var(--rot,0deg)) translateY(0); }
  50%       { transform: rotate(var(--rot,0deg)) translateY(-8px); }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gradient);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700; font-size: 16px;
  border: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: .88; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  color: var(--black);
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 600; font-size: 16px;
  border: 1.5px solid var(--gray-l);
  transition: border-color .2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--purple); }

/* Gradient-border button (nav CTA) */
.btn-gb {
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
  background: var(--white);
  color: var(--black);
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 700; font-size: 14px;
  border: none;
  transition: opacity .2s;
  white-space: nowrap;
  z-index: 0;
}
.btn-gb::before {
  content: '';
  position: absolute; inset: -1.5px;
  border-radius: 100px;
  background: var(--gradient);
  z-index: -1;
}
.btn-gb:hover { opacity: .88; }

.btn-sm { padding: 10px 22px; font-size: 14px; }

/* White button on gradient bg */
.btn-white {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  color: var(--purple);
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700; font-size: 18px;
  border: none;
  transition: opacity .2s, transform .2s;
}
.btn-white:hover { opacity: .92; transform: translateY(-2px); }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-ll);
  color: var(--purple);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 600;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ── Gradient text ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-l);
  gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700;
  flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  padding: 6px 8px;
}
.nav-link {
  font-size: 14px; color: var(--gray); font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-link:hover { color: var(--black); background: rgba(0,0,0,0.06); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-login { font-size: 14px; color: var(--gray); font-weight: 500; transition: color .2s; }
.nav-login:hover { color: var(--black); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; color: var(--gray); font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  background: none; border: none; cursor: pointer;
  transition: color .2s, background .2s; white-space: nowrap;
  font-family: inherit;
}
.nav-dropdown-btn:hover { color: var(--black); background: rgba(0,0,0,0.06); }
.nav-dropdown-btn .chev { transition: transform .2s; }
.nav-dropdown.open .nav-dropdown-btn .chev { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 8px; min-width: 160px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s; z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block; padding: 10px 16px;
  font-size: 14px; color: var(--dark);
  border-radius: 10px; transition: background .15s; white-space: nowrap;
}
.nav-dropdown-item:hover { background: rgba(0,0,0,0.05); }

/* Nav compact on scroll */
.nav--scrolled .nav-links,
.nav--scrolled .nav-login,
.nav--scrolled .lang-sw { display: none !important; }
.nav--scrolled .nav-logo span { display: none; }

/* Language switcher */
.lang-sw { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; }
.lang-sw a { color: var(--gray); transition: color .2s; padding: 2px 4px; border-radius: 4px; }
.lang-sw a:hover, .lang-sw a.active { color: var(--purple); }
.lang-sw span { color: var(--gray-l); }

/* Hamburger */
.hamburger {
  background: transparent;
  border: 1.5px solid var(--gray-l);
  width: 38px; height: 38px;
  border-radius: 10px;
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--purple); }
.ham-line { width: 16px; height: 1.5px; background: var(--gray); border-radius: 2px; transition: all .2s; }

/* Nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 98;
  background: rgba(0,0,0,0.4);
}
.nav-backdrop.visible { display: block; }

/* Mobile drawer - side panel */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 99;
  width: min(300px, 85vw);
  background: var(--white);
  border-left: 1px solid var(--gray-l);
  padding: 80px 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-drawer[hidden] { display: flex !important; transform: translateX(100%); pointer-events: none; }
.mobile-drawer:not([hidden]) { transform: translateX(0); }
.drawer-link {
  display: block; padding: 13px 0;
  font-size: 17px; font-weight: 500;
  color: var(--gray);
  border-bottom: 1px solid var(--gray-l);
  transition: color .2s;
}
.drawer-link:hover { color: var(--black); }
.drawer-cta { margin-top: 16px; justify-content: center; width: 100%; }
.drawer-lang-sw {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-l);
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
}
.drawer-lang-sw a { color: var(--gray); padding: 2px 4px; border-radius: 4px; }
.drawer-lang-sw a.active { color: var(--purple); }
.drawer-lang-sw span { color: var(--gray-l); }

/* ── HERO ── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}
.hero-sub { font-size: 18px; color: var(--gray); max-width: 480px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; font-size: 14px; color: var(--gray); font-weight: 500; flex-wrap: wrap; }
.trust-dot { color: var(--gray-l); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
}
.hero-robot { width: 280px; height: 280px; object-fit: contain; }
.hero-cards {
  display: flex; gap: 16px; align-items: flex-start;
  flex-wrap: wrap; justify-content: center;
}
.social-card {
  width: 180px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: float-sm 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.social-card img { width: 100%; height: auto; display: block; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-stars { font-size: 15px; font-weight: 600; color: var(--black); white-space: nowrap; }
.platform-logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.platform-logos svg { width: 22px; height: 22px; fill: var(--gray); opacity: 0.7; }

/* ── HOW IT WORKS ── */
.how { padding: 100px 0; background: var(--white); }
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.step { position: relative; }
.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 80px; font-weight: 700;
  color: var(--purple-ll);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--gray); }
.how-mockup { text-align: center; }
.how-mockup img { width: 100%; max-width: 640px; margin: 0 auto; border-radius: 16px; box-shadow: var(--shadow-md); }

/* ── PLATFORMS ── */
.platforms { padding: 100px 0; background: var(--off-white); }
.platform-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-l);
  padding-bottom: 0;
}
.platform-tab {
  padding: 10px 14px;
  border: none; background: transparent;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.platform-tab:hover { color: var(--black); }
.platform-tab:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
.platform-tab.active { color: var(--purple); border-bottom-color: var(--purple); }
.platform-panel { display: none; animation: reveal-up .3s ease both; }
.platform-panel.active { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.platform-panel img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-md); }
.platform-panel p { font-size: 18px; color: var(--gray); line-height: 1.7; }

/* ── STATS ── */
.stats { padding: 80px 0; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; color: var(--purple);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: var(--gray); font-weight: 500; }

/* ── PRICING REVEAL ── */
.pricing { padding: 100px 0; background: var(--off-white); }
.pricing-teaser { text-align: center; margin-bottom: 40px; }
.pricing-teaser h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 24px; }
.pricing-cards { overflow: hidden; transition: max-height .4s ease; }
.billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 40px;
  font-size: 15px; font-weight: 600;
}
.toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute; inset: 0;
  background: var(--gray-l); border-radius: 100px;
  transition: background .2s; cursor: pointer;
}
.toggle-track::before {
  content: ''; position: absolute;
  width: 20px; height: 20px; left: 3px; bottom: 3px;
  background: var(--white); border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch input:checked + .toggle-track { background: var(--purple); }
.toggle-switch input:checked + .toggle-track::before { transform: translateX(22px); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  background: var(--white);
  border: 1.5px solid var(--gray-l);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.plan.featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
  position: relative;
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: white; font-size: 12px; font-weight: 700;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price strong { font-family: 'Instrument Serif', Georgia, serif; font-size: 48px; font-weight: 800; }
.plan-price span { font-size: 15px; color: var(--gray); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.plan-features li::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; }
.plan-cta { margin-top: auto; }
.plan-cta a { display: block; text-align: center; width: 100%; }
.plan-note { text-align: center; margin-top: 24px; font-size: 14px; color: var(--gray); }

/* ── SLOT MACHINE DISCOUNT ── */
.discount { padding: 100px 0; background: var(--purple-ll); }
.discount-header { text-align: center; margin-bottom: 48px; }
.discount-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 12px; }
.discount-header p { font-size: 17px; color: var(--gray); }

.slot-machine { max-width: 340px; margin: 0 auto; text-align: center; }
.slot-window {
  height: 88px; overflow: hidden;
  border: 2px solid var(--purple); border-radius: 18px;
  background: var(--white); box-shadow: 0 4px 24px rgba(124,58,237,.18);
  margin-bottom: 20px; position: relative;
}
.slot-window::before, .slot-window::after {
  content: ''; position: absolute; left: 0; right: 0; height: 20px; z-index: 2; pointer-events: none;
}
.slot-window::before { top: 0; background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent); }
.slot-window::after { bottom: 0; background: linear-gradient(to top, rgba(255,255,255,.7), transparent); }
#slot-reel { display: flex; flex-direction: column; }
.slot-item {
  height: 88px; display: none;
  align-items: center; justify-content: center; gap: 14px;
  font-size: 17px; font-weight: 700; color: var(--black);
}
.slot-item.active {
  display: flex;
  animation: slot-pop .12s ease;
}
@keyframes slot-pop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.slot-btn {
  background: var(--gradient); color: #fff; border: none;
  padding: 14px 40px; border-radius: 12px;
  font-size: 18px; font-weight: 700; cursor: pointer; width: 100%;
  transition: opacity .2s, transform .15s;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.slot-btn:hover { opacity: .92; transform: translateY(-1px); }
.slot-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.slot-result {
  display: none; flex-direction: column; align-items: center; gap: 12px;
  background: var(--gradient); border-radius: 20px; padding: 28px 24px;
  animation: reveal-up .3s ease both;
}
.slot-result.show { display: flex; }
.slot-code {
  font-family: 'Space Mono', monospace;
  font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 3px;
  background: rgba(255,255,255,.18); padding: 10px 22px; border-radius: 10px;
}
.slot-code-label { font-size: 13px; color: rgba(255,255,255,.85); }
.btn-slot {
  background: #fff; color: var(--purple);
  border-radius: 10px; padding: 11px 28px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: opacity .15s; display: inline-block;
}
.btn-slot:hover { opacity: .9; }
.discount-note { text-align: center; font-size: 13px; color: var(--gray); margin-top: 32px; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testimonial { display: flex; flex-direction: column; gap: 16px; }
.testimonial-stars { color: #F59E0B; font-size: 15px; }
.testimonial-text { font-size: 15px; color: var(--black); line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: white;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--gray); }

/* ── FINAL CTA ── */
.final-cta {
  padding: 120px 0;
  background: var(--gradient);
  text-align: center;
}
.final-cta h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800; color: white;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.final-cta p { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.7); }

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--off-white); }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-l); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left;
  background: transparent; border: none;
  font-size: 16px; font-weight: 600; color: var(--black);
  gap: 16px;
}
.faq-q:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
.faq-icon { font-size: 22px; color: var(--purple); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 15px; color: var(--gray); line-height: 1.7;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }

/* ── FOOTER ── */
.footer { background: var(--black); color: var(--white); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { width: 36px; }
.footer-brand strong { font-size: 17px; font-weight: 700; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom .lang-sw a { color: rgba(255,255,255,0.5); }
.footer-bottom .lang-sw a:hover, .footer-bottom .lang-sw a.active { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .flip-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-login, .desktop-only { display: none !important; }
  .nav-actions .lang-sw, .nav-actions .btn-gb { display: none !important; }
  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 56px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { align-items: center; }
  .hero-sub { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-robot { width: 200px; height: 200px; }
  .hero-cards { gap: 10px; overflow: hidden; max-width: 100%; }
  .social-card { width: 130px; }
  .social-card:nth-child(3) { display: none; }

  .trust-bar { padding: 16px 20px; gap: 16px; }
  .platform-logos { gap: 12px; }

  .how { padding: 64px 0; }
  .section-h2 { margin-bottom: 40px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step-num { font-size: 56px; }

  .platforms { padding: 64px 0; }
  .platform-tabs { flex-wrap: nowrap; overflow-x: visible; justify-content: space-between; }
  .platform-tab { padding: 10px 6px; flex: 1; }
  .platform-panel.active { grid-template-columns: 1fr; gap: 24px; }

  .stats { padding: 56px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .pricing { padding: 64px 0; }
  .plans-grid { grid-template-columns: 1fr; gap: 16px; max-width: 380px; margin: 0 auto; }
  .plan.featured { order: -1; }

  .discount { padding: 64px 0; }
  .slot-machine { max-width: 100%; }

  .testimonials { padding: 64px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  .final-cta { padding: 80px 0; }

  .faq { padding: 64px 0; }

  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}


/* ── PRICING PAGE ── */
.pricing-page-hero {
  padding: calc(var(--nav-h) + 80px) 0 60px;
  text-align: center;
  background: var(--off-white);
}
.pricing-page-hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pricing-page-hero p { font-size: 18px; color: var(--gray); max-width: 520px; margin: 0 auto; }
.pricing-standalone { padding-top: 60px; background: var(--white); }
