/* ============================================
   SHOP-IX · PREMIUM LANDING CSS
   Light/Dark · Responsive · Animations
   ============================================ */

:root {
  /* LIGHT THEME (default) */
  --bg: #FFFFFF;
  --bg-soft: #F5F7FF;
  --surface: #FFFFFF;
  --surface-2: #F5F7FF;
  --text: #071B5F;
  --text-soft: #4A5780;
  --text-mute: #8794B5;
  --primary: #184BE6;
  --primary-soft: #E8EEFF;
  --accent: #D6FF3F;
  --accent-dark: #B8E020;
  --border: #E1E6F2;
  --border-soft: #EEF1FA;
  --shadow-sm: 0 2px 6px rgba(7, 27, 95, .04);
  --shadow: 0 8px 30px rgba(7, 27, 95, .08);
  --shadow-lg: 0 20px 60px rgba(7, 27, 95, .14);
  --grad: linear-gradient(135deg, #184BE6 0%, #5B7BFF 100%);
  --grad-accent: linear-gradient(135deg, #D6FF3F 0%, #B8E020 100%);
  --grad-text: linear-gradient(135deg, #184BE6 0%, #5B7BFF 50%, #9D7BFF 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container: 1280px;
  --nav-h: 68px;
  --announce-h: 36px;
  --t: 350ms cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --bg: #050A1F;
  --bg-soft: #071B5F;
  --surface: #0A1230;
  --surface-2: #071B5F;
  --text: #FFFFFF;
  --text-soft: #B7C2E0;
  --text-mute: #6E7BA0;
  --primary: #4A6FFF;
  --primary-soft: #182C6E;
  --accent: #D6FF3F;
  --accent-dark: #B8E020;
  --border: #1A2554;
  --border-soft: #11193D;
  --shadow-sm: 0 2px 6px rgba(0,0,0,.2);
  --shadow: 0 8px 30px rgba(0,0,0,.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);
  --grad: linear-gradient(135deg, #4A6FFF 0%, #7B95FF 100%);
  --grad-text: linear-gradient(135deg, #4A6FFF 0%, #7B95FF 50%, #C3B0FF 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background var(--t), color var(--t);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }

/* ========== TYPOGRAPHY ========== */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-eyebrow.accent { color: #071B5F; background: var(--accent); }
.section-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-title.white { color: #fff; }
.section-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 720px;
}
.section-sub.white { color: rgba(255,255,255,.82); }
.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(24, 75, 230, .35);
}
.btn-primary:hover {
  background: #0F3DD6;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(24, 75, 230, .5);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-ghost-light {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ========== ANNOUNCEMENT BAR ========== */
.announce {
  height: var(--announce-h);
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.announce-track {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-left: 100%;
  height: 100%;
}
.announce-track .dot { opacity: .5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(150%) blur(20px);
  -webkit-backdrop-filter: saturate(150%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--t);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--text);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 8px;
  font-size: 18px;
  margin-right: 4px;
}
.logo-text { display: inline-block; }
.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--t);
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all var(--t);
  transform: translateX(-50%);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--t);
}
.lang-btn:hover { border-color: var(--primary); color: var(--text); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 160px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t);
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  transition: background var(--t);
  text-align: left;
}
.lang-menu button:hover { background: var(--surface-2); }
.lang-check { opacity: 0; color: var(--primary); font-weight: 700; }
.lang-menu button.active .lang-check { opacity: 1; }

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all var(--t);
}
.theme-toggle:hover { border-color: var(--primary); color: var(--text); }
.theme-toggle .ico-sun, .theme-toggle .ico-moon { transition: all var(--t); }
[data-theme="light"] .theme-toggle .ico-sun { display: none; }
[data-theme="dark"] .theme-toggle .ico-moon { display: none; }

.burger { display: none; flex-direction: column; gap: 4px; padding: 10px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--announce-h));
  padding: 80px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.05);
  z-index: -3;
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(255,255,255,.6) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,.85) 100%);
}
[data-theme="dark"] .hero-overlay {
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(24,75,230,.3) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5,10,31,.6) 0%, rgba(5,10,31,.92) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(24,75,230,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,75,230,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  z-index: -1;
  animation: float 12s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--accent); bottom: -50px; left: 10%; animation-delay: -4s; opacity: .35; }
.hero-orb-3 { width: 250px; height: 250px; background: #9D7BFF; top: 40%; left: 30%; animation-delay: -8s; opacity: .25; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214,255,63,.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .7; }
}
.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title span { display: block; }
.hero-title-accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-micro {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 40px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 540px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
  font-weight: 600;
}

/* HERO PHONE MOCKUP */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 320px;
  height: 640px;
  background: #0A1230;
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow: 0 30px 80px rgba(7, 27, 95, .35), 0 0 0 1px rgba(255,255,255,.08) inset;
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-1deg); }
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #050A1F 0%, #0A1230 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px 0;
  font-size: 12px;
  font-weight: 600;
}
.phone-app { padding: 14px 18px; height: 100%; display: flex; flex-direction: column; }
.phone-greet { font-size: 18px; font-weight: 800; margin-top: 12px; }
.phone-subgreet { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.phone-tabs {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  overflow: hidden;
}
.phone-tab {
  white-space: nowrap;
  padding: 4px 0;
  font-weight: 600;
}
.phone-tab.active { color: var(--accent); border-bottom: 2px solid var(--accent); }
.phone-cards { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.phone-card {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  align-items: center;
  animation: cardIn .8s ease-out backwards;
}
.phone-card-1 { animation-delay: .2s; }
.phone-card-2 { animation-delay: .4s; }
.phone-card-3 { animation-delay: .6s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.phone-card-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.phone-card-meta { flex: 1; min-width: 0; }
.phone-card-title { font-size: 12px; font-weight: 700; }
.phone-card-sub { font-size: 10px; color: rgba(255,255,255,.5); }
.phone-card-price {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}
.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 6px;
  font-size: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 8px;
}
.phone-bottom-nav span { opacity: .5; }
.phone-bottom-nav span.active { opacity: 1; }

.float-bubble {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  animation: float 5s ease-in-out infinite;
}
.bubble-1 { top: 10%; left: -40px; animation-delay: 0s; }
.bubble-2 { top: 50%; right: -60px; animation-delay: -2s; }
.bubble-3 { bottom: 10%; left: -30px; animation-delay: -4s; }
.bubble-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.bubble-title { font-weight: 700; color: var(--text); }
.bubble-sub { color: var(--text-mute); font-size: 11px; }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-soft);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 5;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  background: var(--text-soft);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: .3; }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-items: center;
}
.marquee-track span { display: inline-block; }
.marquee-track span:nth-child(even) { opacity: .4; }

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head .section-eyebrow { margin-bottom: 16px; }
.section-head .section-sub { margin: 0 auto; }

/* HOW IT WORKS */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--t);
  z-index: -1;
}
.how-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.how-card:hover .how-num { color: var(--primary); }
.how-num {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-mute);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--t);
}
.how-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
}
.how-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.how-card p { color: var(--text-soft); font-size: 14px; }

/* ========== TEMPLATES GALLERY ========== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all var(--t);
}
.chip:hover { border-color: var(--primary); color: var(--text); }
.chip-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.tpl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.tpl-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--t);
}
.tpl-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.tpl-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.tpl-card:hover .tpl-card-img { transform: scale(1.08); }
.tpl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #fff;
}
.tpl-card-cat {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 4px;
}
.tpl-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}
.tpl-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.tpl-card-price {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,.95);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
}
.tpl-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.tpl-cta p { color: var(--text-soft); }

/* ========== BROWSE STORES ========== */
.stores-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.store-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  cursor: pointer;
}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.store-cover {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.store-body { padding: 16px; }
.store-name {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text);
}
.store-handle { font-size: 12px; color: var(--text-mute); margin-bottom: 12px; }
.store-stats {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 600;
}
.store-stats span { display: flex; align-items: center; gap: 4px; }
.stores-cta { text-align: center; margin-top: 40px; }

/* ========== AI MATCHING (DARK) ========== */
.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, #02061A 100%);
  color: #fff;
  overflow: hidden;
}
.section-dark .section-sub.white { color: rgba(255,255,255,.75); }
.matching-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(24,75,230,.4) 0%, transparent 60%),
    radial-gradient(50% 40% at 10% 100%, rgba(214,255,63,.15) 0%, transparent 60%);
  z-index: 0;
}
.section-dark > .container { position: relative; z-index: 1; }
.match-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.match-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all var(--t);
}
.match-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-6px);
  border-color: var(--accent);
}
.match-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.match-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}
.match-card p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 16px; }
.match-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(214,255,63,.15);
  color: var(--accent);
  border-radius: 100px;
  letter-spacing: .05em;
}

/* ========== AUDIO & COMFORT ========== */
.audio-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.audio-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.audio-list li { display: flex; gap: 16px; align-items: flex-start; }
.audio-li-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.audio-list strong { display: block; color: var(--text); font-size: 16px; margin-bottom: 2px; }
.audio-list span { color: var(--text-soft); font-size: 14px; }
.audio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}
.audio-card img { width: 100%; height: 100%; object-fit: cover; }
.audio-bars {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 60px;
}
.audio-bars span {
  flex: 1;
  background: var(--accent);
  border-radius: 4px;
  animation: barBounce 1.2s ease-in-out infinite;
}
.audio-bars span:nth-child(1) { animation-delay: 0s; height: 30%; }
.audio-bars span:nth-child(2) { animation-delay: .1s; height: 50%; }
.audio-bars span:nth-child(3) { animation-delay: .2s; height: 70%; }
.audio-bars span:nth-child(4) { animation-delay: .3s; height: 90%; }
.audio-bars span:nth-child(5) { animation-delay: .4s; height: 60%; }
.audio-bars span:nth-child(6) { animation-delay: .5s; height: 80%; }
.audio-bars span:nth-child(7) { animation-delay: .6s; height: 40%; }
.audio-bars span:nth-child(8) { animation-delay: .7s; height: 100%; }
.audio-bars span:nth-child(9) { animation-delay: .8s; height: 60%; }
.audio-bars span:nth-child(10) { animation-delay: .9s; height: 75%; }
.audio-bars span:nth-child(11) { animation-delay: 1s; height: 45%; }
.audio-bars span:nth-child(12) { animation-delay: .15s; height: 85%; }
.audio-bars span:nth-child(13) { animation-delay: .25s; height: 55%; }
.audio-bars span:nth-child(14) { animation-delay: .35s; height: 70%; }
.audio-bars span:nth-child(15) { animation-delay: .45s; height: 35%; }
@keyframes barBounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.5); }
}
.audio-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

/* ========== EVENTS ========== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.event-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--surface);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.event-date span:first-child { font-weight: 800; font-size: 22px; color: var(--text); }
.event-date span:last-child { font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--primary); margin-top: 2px; }
.event-body { padding: 20px; }
.event-city { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.event-card h3 { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.event-card p { font-size: 14px; color: var(--text-soft); margin-bottom: 16px; }
.event-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.event-price { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 20px; color: var(--text); }

/* ========== EDITOR ========== */
.editor-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.editor-dots { display: flex; gap: 6px; }
.editor-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.editor-dots span:nth-child(1) { background: #FF5F56; }
.editor-dots span:nth-child(2) { background: #FFBD2E; }
.editor-dots span:nth-child(3) { background: #27C93F; }
.editor-url {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-soft);
  font-family: monospace;
}
.editor-modes { display: flex; gap: 8px; font-size: 12px; font-weight: 600; color: var(--text-mute); }
.editor-modes span { padding: 4px 10px; border-radius: 6px; cursor: pointer; }
.editor-modes span.active { background: var(--primary); color: #fff; }

.editor-body { display: grid; grid-template-columns: 220px 1fr 220px; min-height: 540px; }
.editor-side, .editor-inspector { padding: 20px; border-right: 1px solid var(--border); background: var(--surface-2); }
.editor-inspector { border-right: 0; border-left: 1px solid var(--border); }
.ed-section { margin-bottom: 24px; }
.ed-section.active .ed-item { color: var(--text-soft); }
.ed-label { font-size: 10px; font-weight: 800; letter-spacing: .15em; color: var(--text-mute); margin-bottom: 10px; }
.ed-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
  transition: all var(--t);
  margin-bottom: 2px;
}
.ed-item:hover { background: var(--primary-soft); color: var(--primary); }
.ed-colors { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.ed-colors span {
  width: 24px; height: 24px; border-radius: 6px; cursor: pointer; transition: transform var(--t);
}
.ed-colors span:hover { transform: scale(1.2); }

.editor-canvas {
  padding: 20px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
}
.ed-block {
  position: relative;
  background: var(--surface);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--t);
}
.ed-block:hover { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(24,75,230,.15); }
.ed-hero { aspect-ratio: 16/6; }
.ed-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ed-mini { aspect-ratio: 4/3; }
.ed-handle {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--primary);
  border: 2px solid #fff;
  border-radius: 2px;
  opacity: 0;
  transition: opacity var(--t);
}
.ed-block:hover .ed-handle { opacity: 1; }
.ed-handle-tl { top: -5px; left: -5px; cursor: nw-resize; }
.ed-handle-tr { top: -5px; right: -5px; cursor: ne-resize; }
.ed-handle-bl { bottom: -5px; left: -5px; cursor: sw-resize; }
.ed-handle-br { bottom: -5px; right: -5px; cursor: se-resize; }
.ed-overlay {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.ed-overlay-pill {
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.ed-prop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
}
.ed-prop span { color: var(--text-mute); }
.ed-prop strong { color: var(--text); font-weight: 700; font-size: 12px; }
.editor-inspector .btn { margin-top: 16px; }

/* ========== PROOF / TESTIMONIALS ========== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--t);
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.proof-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.proof-card p { color: var(--text-soft); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-author img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent);
}
.proof-author strong { display: block; color: var(--text); font-size: 14px; }
.proof-author span { color: var(--text-mute); font-size: 12px; }

.press { margin-top: 80px; text-align: center; }
.press-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.press-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  opacity: .5;
}
.press-logos span {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-soft);
  letter-spacing: -0.02em;
  transition: opacity var(--t);
}
.press-logos span:hover { opacity: 1; }

/* ========== PRICING ========== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all var(--t);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card-popular {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(24,75,230,.4);
}
.price-card-popular:hover { transform: scale(1.05) translateY(-4px); }
.price-card-popular .price-name,
.price-card-popular .price-amount { color: #fff; }
.price-card-popular .price-desc { color: rgba(255,255,255,.85); }
.price-card-popular .price-list li { color: rgba(255,255,255,.95); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}
.price-name { font-size: 14px; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.price-amount { font-family: 'Manrope', sans-serif; display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.price-cur { font-size: 18px; font-weight: 700; color: var(--text); }
.price-num { font-size: 56px; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.price-per { font-size: 14px; color: var(--text-soft); }
.price-desc { color: var(--text-soft); font-size: 14px; margin-bottom: 24px; }
.price-list { list-style: none; margin-bottom: 24px; }
.price-list li { padding: 8px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border-soft); }
.price-card-popular .price-list li { border-color: rgba(255,255,255,.15); }
.price-list li:last-child { border-bottom: 0; }

/* ========== WAITLIST / SIGNUP ========== */
.section-waitlist {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.section-waitlist::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: var(--primary);
  filter: blur(120px);
  opacity: .15;
  border-radius: 50%;
}
.wait-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wait-perks { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.wait-perks li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.wait-perks span:first-child {
  width: 32px; height: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.wait-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 12px; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; }
.form-row input, .form-row select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  transition: all var(--t);
  outline: none;
}
.form-row input:focus, .form-row select:focus { border-color: var(--primary); background: var(--surface); }
.form-double { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pwd { position: relative; }
.pwd input { padding-right: 48px; }
.pwd-toggle {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--text-mute);
  transition: all var(--t);
}
.pwd-toggle:hover { background: var(--surface-2); color: var(--text); }
.pwd-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-mute);
}
.pwd-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.pwd-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--primary);
  transition: all var(--t);
}
.pwd-bar.weak::before { width: 25%; background: #FF4D4D; }
.pwd-bar.fair::before { width: 50%; background: #FFA500; }
.pwd-bar.good::before { width: 75%; background: var(--primary); }
.pwd-bar.strong::before { width: 100%; background: #00C853; }
.check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-soft); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--primary); }
.form-note { font-size: 12px; color: var(--text-mute); text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--primary-soft);
  border-radius: 12px;
  border: 1px solid var(--primary);
}
.form-success.show { display: block; }
.success-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 12px;
}
.form-success strong { display: block; color: var(--text); margin-bottom: 4px; font-size: 16px; }
.form-success span { color: var(--text-soft); font-size: 13px; }
.form-error {
  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.4);
  color: #FF4D4D;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  margin: 8px 0 4px;
}

/* ========== PAYMENTS ========== */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--t);
}
.pay-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.pay-logo {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 20px;
}
.pay-yookassa { background: #FFDD2D; color: #000; }
.pay-tbank { background: #FFDD2D; color: #000; }
.pay-card p { color: var(--text-soft); margin-bottom: 20px; }
.pay-card ul { list-style: none; }
.pay-card ul li { padding: 6px 0; color: var(--text); font-size: 14px; }

/* ========== FAQ ========== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--t);
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  transition: all var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--t);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--text-soft); line-height: 1.7; }

/* ========== FINAL CTA ========== */
.section-final {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
  background: #02061A;
}
.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(24,75,230,.4) 0%, transparent 60%),
    radial-gradient(30% 30% at 20% 30%, rgba(214,255,63,.15) 0%, transparent 50%),
    radial-gradient(30% 30% at 80% 70%, rgba(157,123,255,.2) 0%, transparent 50%);
}
.section-final > .container { position: relative; z-index: 1; }
.final-pill {
  display: inline-block;
  background: rgba(214,255,63,.15);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  margin-bottom: 24px;
  border: 1px solid rgba(214,255,63,.3);
}
.final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-tag { color: var(--text-soft); font-size: 14px; margin: 16px 0 20px; line-height: 1.6; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: var(--text-soft);
  transition: all var(--t);
}
.socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.foot-h { font-weight: 800; font-size: 13px; color: var(--text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer a { display: block; color: var(--text-soft); font-size: 14px; padding: 4px 0; transition: color var(--t); }
.footer a:hover { color: var(--primary); }
.store-btn {
  display: inline-block;
  padding: 8px 14px;
  background: var(--text);
  color: var(--bg) !important;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.pay-mini { display: flex; flex-direction: column; gap: 6px; }
.pay-mini span {
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  align-self: flex-start;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 95, .7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .4s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.95);
  color: var(--text);
  border-radius: 50%;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow);
}
.modal-img {
  aspect-ratio: 9/16;
  max-height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-body { padding: 24px; }
.modal-tag { font-size: 11px; font-weight: 800; letter-spacing: .15em; color: var(--primary); margin-bottom: 8px; }
.modal-body h3 { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.modal-body p { color: var(--text-soft); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.modal-list { list-style: none; margin-bottom: 24px; }
.modal-list li { padding: 6px 0; color: var(--text); font-size: 14px; }
.modal-ctas { display: flex; flex-direction: column; gap: 8px; }

/* ========== REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transition: all .8s cubic-bezier(.4,0,.2,1); transition-delay: var(--d, 0ms); }
.reveal[data-reveal="up"] { transform: translateY(40px); }
.reveal[data-reveal="down"] { transform: translateY(-40px); }
.reveal[data-reveal="left"] { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal.in { opacity: 1; transform: translate(0, 0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; gap: 40px; }
  .hero-visual { display: flex; justify-content: center; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .match-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .audio-wrap { grid-template-columns: 1fr; gap: 40px; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card-popular { transform: none; order: -1; }
  .price-card-popular:hover { transform: translateY(-4px); }
  .wait-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .editor-body { grid-template-columns: 180px 1fr 180px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-110%);
    transition: transform var(--t);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .lang-btn span { display: none; }
  .nav-actions .btn { display: none; }
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 80px; min-height: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .how-grid { grid-template-columns: 1fr; }
  .match-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-double { grid-template-columns: 1fr; }
  .editor-body { grid-template-columns: 1fr; }
  .editor-side, .editor-inspector { border: 0; border-bottom: 1px solid var(--border); }
  .float-bubble { display: none; }
  .phone { width: 280px; height: 560px; }
  .tpl-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .scroll-cue { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas .btn { flex: 1; }
  .tpl-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card { padding: 24px 20px; }
  .modal { padding: 12px; }
  .editor-modes { display: none; }
}

/* ========== RTL SUPPORT (ARABIC) ========== */
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-stats .stat { text-align: right; }
[dir="rtl"] .lang-menu { left: 0; right: auto; }
[dir="rtl"] .float-bubble.bubble-1 { left: auto; right: -40px; }
[dir="rtl"] .float-bubble.bubble-2 { right: auto; left: -60px; }
[dir="rtl"] .float-bubble.bubble-3 { left: auto; right: -30px; }
[dir="rtl"] .form-double { direction: rtl; }
[dir="rtl"] .ed-overlay { direction: ltr; }
[dir="rtl"] .audio-bars { direction: ltr; }

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