/* ============================================================
   PROMPTKIT FOR WEBSITE BUILDERS — styles.css
   Design System: Linear × Framer, dark-first, premium
   ============================================================ */

/* Logo image styling */
.navbar-logo-img {
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000;
  display: block;
}

.navbar-brand-text {
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

/* ── GOOGLE FONTS are loaded via HTML <link> ── */

/* ══════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
══════════════════════════════════════════════ */
:root {
  /* Colors */
  --bg-primary:      #0D0D12;
  --bg-secondary:    #15151C;
  --bg-light:        #FAFAF8;
  --bg-card:         #15151C;
  --bg-bonus:        #111119;

  --brand:           #4F46E5;
  --brand-hover:     #6366F1;
  --accent:          #C4F82A;
  --accent-dark:     #A8D91F;
  --success:         #34D399;
  --warning:         #F59E0B;

  --text-body:       #94A3B8;
  --text-heading:    #FFFFFF;
  --text-muted:      #64748B;
  --text-subtle:     #475569;
  --text-on-accent:  #0A0A0F;

  --border:          rgba(255,255,255,0.08);
  --border-hover:    rgba(255,255,255,0.14);
  --border-brand:    rgba(79,70,229,0.5);

  --shadow-brand:    0 8px 30px rgba(79,70,229,0.15);
  --shadow-card:     0 4px 20px rgba(0,0,0,0.4);
  --shadow-glow:     0 0 60px rgba(79,70,229,0.2);

  /* Typography */
  --font-sans:       'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:       'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing scale */
  --s4:  4px;
  --s8:  8px;
  --s12: 12px;
  --s16: 16px;
  --s24: 24px;
  --s32: 32px;
  --s48: 48px;
  --s64: 64px;
  --s96: 96px;
  --s128:128px;

  /* Border radius */
  --r8:   8px;
  --r16:  16px;
  --r999: 999px;

  /* Transitions */
  --t-fast:   150ms ease-out;
  --t-normal: 250ms ease-out;
  --t-slow:   400ms ease-out;
}

/* ══════════════════════════════════════════════
   2. RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r8);
}

/* ══════════════════════════════════════════════
   3. LAYOUT UTILITIES
══════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px)  { .container { padding: 0 clamp(24px, 4vw, 48px); } }
@media (min-width: 1024px) { .container { padding: 0 clamp(48px, 5vw, 80px); } }
@media (min-width: 1440px) { .container { padding: 0 80px; } }

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section-alt {
  background-color: #0A0A0F;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-sub {
  color: var(--text-body);
  font-size: clamp(15px, 2vw, 18px);
  margin-top: var(--s16);
  max-width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .section { padding: clamp(96px, 10vw, 128px) 0; }
}

/* ══════════════════════════════════════════════
   4. TYPOGRAPHY
══════════════════════════════════════════════ */
h1, h2, h3, h4 {
  color: var(--text-heading);
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(30px, 6vw, 56px); font-weight: 700; }
h2 { font-size: clamp(24px, 4.5vw, 40px); font-weight: 700; }
h3 { font-size: clamp(15px, 2.5vw, 18px); font-weight: 600; line-height: 1.3; }

p { line-height: 1.6; }

.eyebrow-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s16);
}

/* ══════════════════════════════════════════════
   5. BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  padding: 12px 24px;
  border-radius: var(--r8);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  min-height: 44px;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background-color: var(--accent);
  color: var(--text-on-accent);
  border: 1.5px solid transparent;
}
.btn-primary:hover {
  background-color: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(196,248,42,0.25);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98) translateY(0); }

.btn-secondary {
  background-color: transparent;
  color: var(--text-heading);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background-color: rgba(255,255,255,0.04);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  min-height: 36px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  min-height: 52px;
}

.btn-text-link {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
  transition: color var(--t-fast);
  padding: 4px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.btn-text-link:hover { color: var(--text-heading); }

/* Pulsing glow animation for primary CTA */
.btn-pulse {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,248,42,0); }
  50%       { box-shadow: 0 0 0 12px rgba(196,248,42,0.12), 0 4px 24px rgba(196,248,42,0.2); }
}

/* ══════════════════════════════════════════════
   6. ANNOUNCEMENT BAR
══════════════════════════════════════════════ */
.announcement-bar {
  background-color: #111119;
  border-bottom: 1px solid var(--border);
  padding: 10px clamp(40px, 6vw, 56px) 10px clamp(16px, 4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  z-index: 100;
  transition: max-height var(--t-normal), padding var(--t-normal), opacity var(--t-normal);
  overflow: hidden;
  max-height: 80px;
  text-align: center;
  line-height: 1.4;
}

.announcement-bar.dismissed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border: none;
}

.announcement-close {
  position: absolute;
  right: var(--s16);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  padding: var(--s8);
  border-radius: var(--r8);
  transition: color var(--t-fast), background var(--t-fast);
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.announcement-close:hover { color: var(--text-heading); background: rgba(255,255,255,0.05); }

/* ══════════════════════════════════════════════
   7. NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13,13,18,0.7);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-normal);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: var(--s16);
  overflow: visible;
}

@media (min-width: 768px) {
  .navbar-inner { height: 64px; gap: var(--s32); }
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--s8);
  font-size: clamp(12px, 3vw, 15px);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
  min-height: 44px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(200px, 55vw);
}
.navbar-logo:hover { opacity: 0.85; }

@media (min-width: 480px) { .navbar-logo { max-width: none; font-size: 14px; } }
@media (min-width: 768px) { .navbar-logo { font-size: 15px; } }

.logo-icon {
  font-size: 18px;
  line-height: 1;
}

.navbar-links {
  display: none;
  gap: var(--s32);
  margin: 0 auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--t-fast);
  padding: var(--s8) 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover { color: var(--text-heading); }

.navbar-cta {
  display: none;
  align-items: center;
  gap: var(--s16);
  margin-left: auto;
}

.navbar-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}

.mobile-menu-btn {
  margin-left: auto;
  color: var(--text-body);
  padding: var(--s8);
  border-radius: var(--r8);
  transition: color var(--t-fast), background var(--t-fast);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn:hover { color: var(--text-heading); background: rgba(255,255,255,0.05); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--s16) var(--s24) var(--s24);
  border-top: 1px solid var(--border);
  gap: var(--s4);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-nav.open {
  max-height: 400px;
  padding: var(--s16) var(--s24) var(--s24);
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  padding: var(--s12) 0;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color var(--t-fast);
}
.mobile-nav-link:hover { color: var(--text-heading); }
.mobile-nav-cta { margin-top: var(--s12); width: 100%; justify-content: center; }

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .navbar-cta { display: flex; }
  .mobile-menu-btn { display: none; }
  .mobile-nav { display: none !important; }
}

/* ══════════════════════════════════════════════
   8. HERO SECTION
══════════════════════════════════════════════ */
.hero-section {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.hero-h1 {
  font-size: clamp(30px, 5.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text-heading);
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-body);
  line-height: 1.65;
  max-width: min(480px, 100%);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s16);
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: var(--s12);
  padding-top: var(--s8);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

.trust-text {
  font-size: 14px;
  color: var(--text-muted);
}
.trust-text strong { color: var(--text-body); }

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 300px;
  width: 100%;
  overflow: visible;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(79,70,229,0.18) 0%, rgba(124,58,237,0.10) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(20px);
}

.browser-mockup {
  position: relative;
  z-index: 2;
  background: #1A1A24;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06), var(--shadow-brand);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: var(--s12);
  padding: 12px 16px;
  background: #111118;
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 6px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green  { background: #28C840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r999);
  padding: 4px 12px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-align: center;
}

.browser-content {
  display: flex;
  height: clamp(200px, 30vw, 280px);
}

.mockup-prompt-area {
  display: flex;
  width: 48%;
  border-right: 1px solid var(--border);
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  width: 60px;
  padding: var(--s8) 0;
  border-right: 1px solid var(--border);
  background: #0F0F17;
}

.sidebar-item {
  font-size: 9px;
  text-align: center;
  padding: var(--s8) var(--s4);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast);
}
.sidebar-item.active { color: var(--accent); }

.mockup-chat {
  flex: 1;
  padding: var(--s12);
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  overflow: hidden;
}

.chat-message { display: flex; flex-direction: column; gap: 4px; }

.msg-bubble {
  background: rgba(79,70,229,0.15);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 6px 6px 2px 6px;
  padding: var(--s8) var(--s12);
  font-size: 9px;
  color: #C4B5FD;
  line-height: 1.5;
}

.msg-indicator {
  display: flex;
  align-items: center;
  gap: var(--s8);
  font-size: 9px;
  color: var(--text-muted);
}

.ai-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 80%, 100% { opacity: 1; }
  40% { opacity: 0.2; }
}

/* Mini site mockup */
.mockup-preview {
  flex: 1;
  overflow: hidden;
  background: #0A0A12;
}

.mini-site { padding: var(--s8); height: 100%; }

.mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  margin-bottom: 8px;
}
.mini-logo { width: 32px; height: 8px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.mini-links { display: flex; gap: 4px; align-items: center; }
.mini-link { width: 20px; height: 5px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.mini-btn-sm { width: 28px; height: 12px; background: var(--accent); border-radius: 3px; opacity: 0.9; }

.mini-hero { padding: 8px; }
.mini-badge {
  width: 48px; height: 8px;
  background: rgba(196,248,42,0.2);
  border-radius: 10px;
  margin-bottom: 6px;
}
.mini-h1 { height: 10px; background: rgba(255,255,255,0.7); border-radius: 3px; margin-bottom: 4px; }
.mini-h1.short { width: 70%; }
.mini-sub { height: 6px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-bottom: 3px; }
.mini-sub.short { width: 55%; }
.mini-cta-row { display: flex; gap: 4px; margin-top: 8px; }
.mini-input { flex: 1; height: 12px; background: rgba(255,255,255,0.08); border-radius: 3px; border: 1px solid rgba(255,255,255,0.1); }
.mini-btn { width: 28px; height: 12px; background: var(--accent); border-radius: 3px; }
.mini-trust { display: flex; align-items: center; gap: 4px; margin-top: 6px; }
.mini-av { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); margin-left: -3px; border: 1px solid var(--bg-primary); }
.mini-av:first-child { margin-left: 0; }
.mini-trust-text { height: 5px; width: 40px; background: rgba(255,255,255,0.15); border-radius: 2px; }

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r8);
  padding: var(--s12) var(--s16);
  z-index: 3;
  max-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.floating-card code {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: #A5B4FC;
  line-height: 1.5;
  margin-top: 4px;
  white-space: normal;
}

.card-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.card-1 {
  bottom: -20px;
  left: -24px;
  transform: rotate(-3deg);
  animation: float-card-1 7s ease-in-out infinite;
}

.card-2 {
  top: 10px;
  right: -20px;
  transform: rotate(2.5deg);
  animation: float-card-2 8s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-6px); }
}
@keyframes float-card-2 {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50% { transform: rotate(2.5deg) translateY(6px); }
}

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: var(--s64); }
  .hero-visual { min-height: 460px; }
  .floating-card { display: block; }
}

@media (max-width: 1023px) {
  .floating-card { display: none; }
  .hero-visual { min-height: 280px; }
}

/* 320px – very small phones */
@media (max-width: 360px) {
  .hero-h1 { font-size: 26px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .hero-actions .btn-text-link { justify-content: center; }
  .browser-content { height: 180px; }
  .mockup-sidebar { width: 44px; }
}

/* 375px – iPhone SE / standard */
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(26px, 8vw, 34px); }
  .hero-section { padding: 48px 0 32px; }
  .hero-sub { font-size: 15px; }
  .hero-actions .btn-lg { flex: 1; min-width: 0; justify-content: center; }
  .browser-content { height: 200px; }
}

/* 481px – large mobile */
@media (min-width: 481px) and (max-width: 767px) {
  .hero-h1 { font-size: clamp(32px, 7vw, 40px); }
  .browser-content { height: 240px; }
}

/* ══════════════════════════════════════════════
   9. SOCIAL PROOF STRIP
══════════════════════════════════════════════ */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0A0A0F;
  padding: var(--s24) 0;
}

.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 32px);
  flex-wrap: wrap;
  row-gap: 12px;
}

.proof-rating {
  display: flex;
  align-items: center;
  gap: var(--s12);
}

.stars { display: flex; gap: 2px; }

.proof-rating-text {
  font-size: 14px;
  color: var(--text-body);
}
.proof-rating-text strong { color: var(--text-heading); }

.proof-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

@media (max-width: 480px) {
  .proof-divider { display: none; }
  .proof-strip-inner { flex-direction: column; gap: 12px; }
  .proof-rating { justify-content: center; }
  .proof-badges { gap: 8px; }
  .proof-badge { font-size: 12px; }
}

.proof-badges {
  display: flex;
  gap: var(--s16);
  flex-wrap: wrap;
  justify-content: center;
}

.proof-badge {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s4) var(--s12);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r999);
}

/* ══════════════════════════════════════════════
   10. PROBLEM SECTION
══════════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s24);
}

@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: clamp(20px, 4vw, 32px);
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
  border-color: var(--border-hover);
}

.card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r8);
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-hover);
  margin-bottom: var(--s16);
  transition: color var(--t-fast), background var(--t-fast);
}

.problem-card:hover .card-icon {
  color: var(--accent);
  background: rgba(196,248,42,0.08);
  border-color: rgba(196,248,42,0.2);
}

.problem-card h3 { margin-bottom: var(--s8); font-size: 17px; }
.problem-card p { font-size: 15px; color: var(--text-body); }

/* ══════════════════════════════════════════════
   11. WHAT'S INSIDE (FEATURE CARDS)
══════════════════════════════════════════════ */
.whats-inside-split {
  display: flex;
  flex-direction: column;
  gap: var(--s48);
}

@media (min-width: 1024px) {
  .whats-inside-split {
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--s64);
  }
  .whats-inside-visual, .whats-inside-content {
    flex: 1;
  }
}

.feature-headline-wrapper {
  margin-bottom: var(--s32);
}

.feature-count-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(196,248,42,0.1);
  padding: 6px 16px;
  border-radius: var(--r999);
  margin-bottom: var(--s16);
  border: 1px solid rgba(196,248,42,0.25);
}

.feature-headline-wrapper h3 {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
}

.feature-bullets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s16);
}

@media (min-width: 640px) {
  .feature-bullets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-bullet-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r16);
  padding: var(--s24);
  display: flex;
  gap: var(--s16);
  align-items: flex-start;
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  position: relative;
  overflow: hidden;
}

.feature-bullet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, -20%), rgba(79,70,229,0.15), transparent 40%);
  opacity: 0;
  transition: opacity var(--t-normal);
  pointer-events: none;
}

.feature-bullet-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.02);
}

.feature-bullet-card:hover::before {
  opacity: 1;
}

.bullet-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--r12);
  background: rgba(79,70,229,0.1);
  border: 1px solid rgba(79,70,229,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: background var(--t-fast), border-color var(--t-fast);
}

.feature-bullet-card:hover .bullet-icon-wrapper {
  background: rgba(196,248,42,0.1);
  border-color: rgba(196,248,42,0.25);
}

.bullet-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-heading);
}

.bullet-text p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   12. COMPARISON GRID
══════════════════════════════════════════════ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s24);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; gap: var(--s32); }
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--s24);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.comparison-bad {
  border-color: rgba(239, 68, 68, 0.15);
}

.comparison-good {
  border-color: rgba(52, 211, 153, 0.2);
  box-shadow: 0 8px 32px rgba(52, 211, 153, 0.1);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(52,211,153,0.03) 100%);
}

.comparison-header {
  display: flex;
  align-items: center;
}

.comparison-badge {
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r999);
}

.comparison-badge.bad {
  background: rgba(239, 68, 68, 0.1);
  color: #FCA5A5;
}

.comparison-badge.good {
  background: rgba(52, 211, 153, 0.1);
  color: var(--success);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: var(--s16);
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s12);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
}

.comparison-good .comparison-list li {
  color: var(--text-heading);
  font-weight: 500;
}

.x-icon, .check-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   13. PRODUCT PREVIEW (TABS)
══════════════════════════════════════════════ */
.preview-tabs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  overflow: hidden;
}

.tab-list {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tab-list::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: clamp(12px, 2vw, 16px) clamp(14px, 3vw, 24px);
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  min-height: 48px;
  position: relative;
  flex-shrink: 0;
}

.tab-btn:hover { color: var(--text-body); background: rgba(255,255,255,0.02); }

.tab-btn.active {
  color: var(--text-heading);
  border-bottom-color: var(--accent);
}

.tab-panels { position: relative; }

.tab-panel {
  display: none;
  padding: clamp(16px, 3vw, 24px);
}

.tab-panel.active { display: block; }

.code-block {
  background: #0A0A10;
  border: 1px solid var(--border);
  border-radius: var(--r8);
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s12) var(--s16);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.code-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: var(--s8);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--s4) var(--s12);
  border-radius: var(--r8);
  border: 1px solid var(--border);
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
  min-height: 44px;
}

.copy-btn:hover {
  color: var(--accent);
  border-color: rgba(196,248,42,0.3);
  background: rgba(196,248,42,0.05);
}

.copy-btn.copied {
  color: var(--success);
  border-color: rgba(52,211,153,0.3);
}

.code-block pre {
  padding: clamp(14px, 3vw, 24px);
  overflow-x: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.code-block pre code {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.8vw, 13px);
  line-height: 1.75;
  color: #A5B4FC;
  white-space: pre;
  display: block;
  min-width: max-content;
}

@media (max-width: 480px) {
  .code-header { flex-wrap: wrap; gap: 8px; }
  .code-label { font-size: 10px; }
  .copy-btn { font-size: 12px; padding: 4px 8px; min-height: 36px; }
}

/* ══════════════════════════════════════════════
   14. WHO IT'S FOR
══════════════════════════════════════════════ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 3vw, 24px);
}

@media (max-width: 360px) {
  .who-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
  .who-grid { grid-template-columns: repeat(4, 1fr); }
}

.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: clamp(20px, 4vw, 32px) clamp(16px, 3vw, 24px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s16);
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  min-width: 0;
}

.who-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
  border-color: var(--border-hover);
}

.who-icon {
  width: 56px; height: 56px;
  border-radius: var(--r16);
  background: rgba(79,70,229,0.1);
  border: 1px solid rgba(79,70,229,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818CF8;
  transition: all var(--t-fast);
}

.who-card:hover .who-icon {
  background: rgba(196,248,42,0.08);
  border-color: rgba(196,248,42,0.2);
  color: var(--accent);
}

.who-card h3 { font-size: 16px; }
.who-card p { font-size: 13px; color: var(--text-body); line-height: 1.55; }

/* ══════════════════════════════════════════════
   15. TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-carousel {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.testimonials-carousel::-webkit-scrollbar { display: none; }

.testimonials-track {
  display: flex;
  gap: var(--s24);
  padding-bottom: var(--s8);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r16);
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  scroll-snap-align: start;
  flex: 0 0 min(300px, 85vw);
  min-width: min(300px, 85vw);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.14);
}

.t-stars { display: flex; gap: 3px; }

.testimonial-card blockquote {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: var(--s12);
  border-top: 1px solid var(--border);
  padding-top: var(--s16);
}

.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-info { display: flex; flex-direction: column; gap: 2px; }
.t-info strong { font-size: 14px; color: var(--text-heading); }
.t-info span { font-size: 12px; color: var(--text-muted); }

@media (min-width: 768px) {
  .testimonials-carousel { overflow: visible; }
  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-card {
    flex: unset;
    min-width: unset;
  }
}

/* Swipe indicator for mobile */
@media (max-width: 767px) {
  .testimonials-carousel {
    padding-bottom: 4px;
    margin-left: calc(clamp(16px,4vw,24px) * -1);
    margin-right: calc(clamp(16px,4vw,24px) * -1);
    padding-left: clamp(16px,4vw,24px);
    padding-right: clamp(16px,4vw,24px);
  }
  .testimonials-track {
    padding-right: clamp(16px,4vw,24px);
  }
}

/* ══════════════════════════════════════════════
   16. BONUS SECTION
══════════════════════════════════════════════ */
.bonus-section {
  background: var(--bg-bonus);
  border-top: 1px solid rgba(196,248,42,0.1);
  border-bottom: 1px solid rgba(196,248,42,0.1);
  padding: var(--s64) 0;
}

.bonus-inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 32px);
  flex-wrap: wrap;
}

.bonus-icon {
  width: 56px; height: 56px;
  border-radius: var(--r16);
  background: rgba(196,248,42,0.08);
  border: 1px solid rgba(196,248,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.bonus-content {
  flex: 1;
  min-width: min(240px, 100%);
}

.bonus-headline {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-heading);
  margin-top: var(--s4);
  margin-bottom: var(--s8);
  letter-spacing: -0.02em;
  word-break: break-word;
}

.bonus-content p { font-size: clamp(13px, 2vw, 15px); color: var(--text-body); max-width: min(520px, 100%); }

@media (max-width: 640px) {
  .bonus-inner { flex-direction: column; text-align: center; align-items: center; }
  .bonus-icon { margin: 0 auto; }
  .bonus-content { text-align: center; }
  .bonus-content p { margin: 0 auto; }
  .bonus-inner > .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════
   17. PRICING
══════════════════════════════════════════════ */
.pricing-card-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: var(--r16);
  padding: clamp(24px, 5vw, 48px);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 60px rgba(79,70,229,0.12), 0 24px 64px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED, #C4F82A);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--s32);
}

.pricing-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  background: rgba(196,248,42,0.1);
  border: 1px solid rgba(196,248,42,0.25);
  border-radius: var(--r999);
  color: var(--accent);
  margin-bottom: var(--s16);
}

.pricing-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s16);
  margin-bottom: var(--s8);
}

.price-old {
  font-size: 24px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-size: clamp(40px, 10vw, 56px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-sub {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--s16);
  margin-bottom: var(--s32);
  padding: var(--s24) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s12);
  font-size: 15px;
  color: #CBD5E1;
}

.pricing-features li svg { flex-shrink: 0; margin-top: 1px; }

.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--s16);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  font-size: 13px;
  color: var(--text-muted);
  padding-top: var(--s4);
}

.guarantee-badge svg { color: var(--success); }

/* ══════════════════════════════════════════════
   18. FAQ
══════════════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s8);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  overflow: hidden;
  transition: border-color var(--t-normal);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(79,70,229,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s12);
  padding: clamp(14px, 2.5vw, 20px) clamp(16px, 3vw, 24px);
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 500;
  color: var(--text-heading);
  text-align: left;
  transition: color var(--t-fast), background var(--t-fast);
  min-height: 60px;
  box-sizing: border-box;
}

.faq-question:hover { background: rgba(255,255,255,0.02); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--t-normal), color var(--t-fast);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding var(--t-normal);
  padding: 0 clamp(16px, 3vw, 24px);
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 clamp(16px, 3vw, 24px) clamp(16px, 3vw, 24px);
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   19. GUARANTEE
══════════════════════════════════════════════ */
.guarantee-section {
  padding: var(--s64) 0;
}

.guarantee-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s16);
}

.guarantee-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  margin-bottom: var(--s8);
}

.guarantee-inner h2 { letter-spacing: -0.02em; }
.guarantee-inner p { font-size: 16px; color: var(--text-body); }

/* ══════════════════════════════════════════════
   20. FINAL CTA
══════════════════════════════════════════════ */
.final-cta-section {
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 100%);
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(79,70,229,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s32);
  background: var(--bg-card);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: var(--r16);
  padding: clamp(24px, 5vw, 48px);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 60px rgba(79,70,229,0.12), 0 24px 64px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .final-cta-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--s64);
  }
}

.final-cta-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.final-cta-mockup {
  max-width: 100%;
  border-radius: var(--r8);
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--s16);
}

.final-price-main {
  display: flex;
  align-items: center;
  gap: var(--s16);
}

.final-price-after {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.final-price-tag-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.final-price-large {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 800;
  color: var(--text-heading);
}

.final-coupon-banner {
  background: rgba(196,248,42,0.1);
  border: 1px dashed rgba(196,248,42,0.3);
  border-radius: var(--r8);
  padding: var(--s12) var(--s16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
}

.coupon-banner-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.coupon-banner-content {
  display: flex;
  flex-direction: column;
}

.coupon-banner-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.coupon-banner-code {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════
   21. FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #080810;
  border-top: 1px solid var(--border);
  padding: var(--s64) 0 var(--s32);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s48);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--s48);
}

@media (min-width: 768px) {
  .footer-top { flex-direction: row; gap: var(--s64); }
}

.footer-brand {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s16);
}

@media (min-width: 768px) {
  .footer-brand { max-width: 280px; }
}

.footer-logo {
  font-size: 15px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 32px);
  flex: 1;
}

@media (min-width: 768px) {
  .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-heading);
  margin-bottom: var(--s16);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s12);
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: var(--s4) 0;
  min-height: unset;
}
.footer-link:hover { color: var(--text-body); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s12);
  padding-top: var(--s24);
  border-top: 1px solid var(--border);
}

@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-built {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.heart {
  color: #F87171;
  font-size: 14px;
}

/* ══════════════════════════════════════════════
   22. MOBILE STICKY BAR
══════════════════════════════════════════════ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(13,13,18,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: var(--s12) var(--s16);
  padding-bottom: max(var(--s12), env(safe-area-inset-bottom, 12px));
  transform: translateY(100%);
  transition: transform var(--t-slow);
  display: none;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s16);
}

.sticky-bar-price {
  display: flex;
  align-items: center;
  gap: var(--s8);
}

.sticky-old-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.sticky-new-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .mobile-sticky-bar { display: block; }
}

/* ══════════════════════════════════════════════
   23. SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero content animates immediately */
.hero-content { opacity: 0; transform: translateY(20px); animation: hero-enter 0.65s ease-out 0.1s forwards; }
.hero-visual  { opacity: 0; transform: translateY(24px); animation: hero-enter 0.65s ease-out 0.3s forwards; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   24. CUSTOM SCROLLBAR
══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.18); }

/* ══════════════════════════════════════════════
   25. SELECTION
══════════════════════════════════════════════ */
::selection {
  background: rgba(79,70,229,0.35);
  color: #fff;
}

/* ══════════════════════════════════════════════
   26. UTILITY
══════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ══════════════════════════════════════════════
   27. BODY SCROLL LOCK (for mobile menu)
══════════════════════════════════════════════ */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ══════════════════════════════════════════════
   28. GLOBAL OVERFLOW GUARDS
══════════════════════════════════════════════ */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

main, section, footer, nav, header {
  max-width: 100%;
  overflow-x: clip;
}

/* ══════════════════════════════════════════════
   29. COMPREHENSIVE BREAKPOINT PATCHES
══════════════════════════════════════════════ */

/* ── 320px – absolute minimum ── */
@media (max-width: 360px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 14px 20px; font-size: 15px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .inside-grid { grid-template-columns: 1fr !important; }
  .who-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 20px; }
  .price-current { font-size: 36px; }
  .price-old { font-size: 18px; }
  .announcement-bar span { font-size: 11px; }
  .faq-question { font-size: 13px; }
  .preview-tabs { border-radius: 12px; }
}

/* ── 481px–767px – large mobile ── */
@media (min-width: 481px) and (max-width: 767px) {
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .before-after { flex-direction: column; }
  .ba-divider { flex-direction: row; padding: 0 24px; }
  .ba-divider-line { flex: 1; width: auto; height: 1px; }
  .ba-divider-icon { margin: 0 12px; }
}

/* ── 768px–1024px – tablet ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { max-width: 440px; }
}

/* ── 1025px–1440px – laptop ── */
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .inside-grid { grid-template-columns: repeat(3, 1fr); }
  .who-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-track { grid-template-columns: repeat(3, 1fr); }
}

/* ── 1441px+ – wide desktop ── */
@media (min-width: 1441px) {
  .container { max-width: 1300px; }
  .hero-inner { gap: 80px; }
}

/* ── Touch device optimizations ── */
@media (hover: none) and (pointer: coarse) {
  .problem-card:hover,
  .inside-card:hover,
  .who-card:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
  }
  .btn-primary:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ── Prevent iOS font size inflate ── */
@media screen and (max-width: 767px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ── Sticky bar padding for notched phones ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-sticky-bar {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* ============================================================
   27. OPTIMIZED ADDITIONS FOR CRO, TRUST & PREMIUM UI
   ============================================================ */

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-normal);
}

.navbar {
  position: relative !important;
}

/* Announcement Bar CRO Upgrades */
.announcement-content {
  display: flex;
  align-items: center;
  gap: var(--s12);
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-timer {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(196, 248, 42, 0.1);
  padding: 2px 8px;
  border-radius: var(--r8);
  border: 1px solid rgba(196, 248, 42, 0.15);
}

.announcement-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1.5px solid var(--accent);
  transition: color var(--t-fast), border-color var(--t-fast);
}

.announcement-cta:hover {
  color: #fff;
  border-color: #fff;
}

/* Premium Countdown Timer Widget */
.countdown-timer {
  display: flex;
  align-items: center;
  gap: var(--s8);
}

.countdown-card {
  background: rgba(21, 21, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r8);
  padding: var(--s8) var(--s12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color var(--t-normal), box-shadow var(--t-normal);
}

.countdown-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(35px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(196, 248, 42, 0.15), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-normal);
}

.countdown-card:hover::after {
  opacity: 1;
}

.countdown-card:hover {
  border-color: rgba(196, 248, 42, 0.3);
  box-shadow: 0 0 12px rgba(196, 248, 42, 0.1);
}

.countdown-value {
  font-size: clamp(20px, 3.5vw, 24px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  font-family: var(--font-mono);
  text-shadow: 0 0 8px rgba(196, 248, 42, 0.25);
}

.countdown-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.countdown-col {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  font-family: var(--font-mono);
  animation: colon-blink 1.5s infinite;
}

@keyframes colon-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Digit Change Pop Animation */
.digit-pop {
  animation: digit-pulse 0.25s ease-out;
}

@keyframes digit-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); color: #fff; text-shadow: 0 0 15px var(--accent); }
  100% { transform: scale(1); }
}

/* Size modifier variations */
.countdown-large .countdown-card {
  min-width: 72px;
  padding: var(--s12) var(--s16);
}

.countdown-large .countdown-value {
  font-size: 30px;
}

.hero-urgency-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  margin-top: var(--s8);
}

.urgency-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: var(--s4);
}

/* Hero Trust Bullets */
.hero-trust-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  margin-top: var(--s8);
  padding: var(--s8) 0;
}

.trust-bullet {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
}

.trust-bullet svg {
  flex-shrink: 0;
}

/* Social Proof works-with & Logo pills */
.proof-works-with {
  display: flex;
  align-items: center;
  gap: var(--s16);
  flex-wrap: wrap;
}

.works-with-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.logo-pills {
  display: flex;
  align-items: center;
  gap: var(--s8);
  flex-wrap: wrap;
}

.logo-pill {
  background: rgba(21, 21, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--r999);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.logo-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

/* Custom indicators for the tools */
.pill-dot.lovable { background: #FF5A5F; box-shadow: 0 0 8px #FF5A5F; }
.pill-dot.bolt { background: #F59E0B; box-shadow: 0 0 8px #F59E0B; }
.pill-dot.cursor { background: #06B6D4; box-shadow: 0 0 8px #06B6D4; }
.pill-dot.claude { background: #E05638; box-shadow: 0 0 8px #E05638; }
.pill-dot.chatgpt { background: #10B981; box-shadow: 0 0 8px #10B981; }

/* Custom glow colors on hover for logo pills */
.logo-pill[data-brand="lovable"]:hover { border-color: rgba(255, 90, 95, 0.4); box-shadow: 0 4px 12px rgba(255, 90, 95, 0.12); }
.logo-pill[data-brand="bolt"]:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.12); }
.logo-pill[data-brand="cursor"]:hover { border-color: rgba(6, 182, 212, 0.4); box-shadow: 0 4px 12px rgba(6, 182, 212, 0.12); }
.logo-pill[data-brand="claude"]:hover { border-color: rgba(224, 86, 56, 0.4); box-shadow: 0 4px 12px rgba(224, 86, 56, 0.12); }
.logo-pill[data-brand="chatgpt"]:hover { border-color: rgba(16, 185, 129, 0.4); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12); }

/* Mockup floating animations & Neon glows */
.floating-mockup {
  animation: float-mockup 6s ease-in-out infinite;
}

@keyframes float-mockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.22) 0%, rgba(196, 248, 42, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
}

.mockup-container {
  position: relative;
  z-index: 1;
  border-radius: var(--r16);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  background: #000;
}

.whats-inside-mockup, .pricing-mockup, .final-cta-mockup {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform var(--t-slow);
}

.mockup-container:hover .whats-inside-mockup,
.mockup-container:hover .pricing-mockup,
.mockup-container:hover .final-cta-mockup {
  transform: scale(1.025);
}

/* What's Inside Split Layout & Bullet Cards */
.whats-inside-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s48);
  align-items: center;
  margin-top: var(--s24);
}

@media (min-width: 992px) {
  .whats-inside-split {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s64);
  }
}

.whats-inside-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.feature-headline-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--s12);
  margin-bottom: var(--s32);
}

.feature-count-badge {
  background: rgba(196, 248, 42, 0.1);
  color: var(--accent);
  border: 1px solid rgba(196, 248, 42, 0.25);
  padding: 6px 14px;
  border-radius: var(--r999);
  font-size: 13px;
  font-weight: 700;
  align-self: flex-start;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-bullets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s16);
}

@media (min-width: 640px) {
  .feature-bullets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-bullet-card {
  background: rgba(21, 21, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r12);
  padding: var(--s16);
  display: flex;
  gap: var(--s12);
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.feature-bullet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(80px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(196, 248, 42, 0.08), transparent 75%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-normal);
}

.feature-bullet-card:hover::before {
  opacity: 1;
}

.feature-bullet-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 248, 42, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.bullet-icon-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r8);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--t-fast), border-color var(--t-fast);
}

.feature-bullet-card:hover .bullet-icon-wrapper {
  background: rgba(196, 248, 42, 0.1);
  border-color: rgba(196, 248, 42, 0.2);
}

.bullet-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
  line-height: 1.2;
}

.bullet-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Pricing Grid & Urgency styling */
.pricing-container-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s48);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .pricing-container-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s64);
  }
}

.pricing-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.pricing-countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s6);
  margin: var(--s12) 0 var(--s4);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--s12);
  border-radius: var(--r12);
}

.pricing-countdown-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-timer {
  justify-content: center;
}

.pricing-timer .countdown-card {
  min-width: 50px;
  padding: var(--s4) var(--s8);
}

.pricing-timer .countdown-value {
  font-size: 18px;
}

.pricing-timer .countdown-label {
  font-size: 8px;
  margin-top: 1px;
}

.pricing-timer .countdown-col {
  font-size: 15px;
}

/* Final CTA Card Layout */
.final-cta-card {
  background: rgba(21, 21, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r16);
  padding: clamp(24px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s48);
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(79, 70, 229, 0.06), 0 24px 64px rgba(0, 0, 0, 0.3);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED, #C4F82A);
}

.final-cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(79, 70, 229, 0.06), transparent 70%);
  pointer-events: none;
}

@media (min-width: 992px) {
  .final-cta-card {
    grid-template-columns: 1.2fr 1fr;
    text-align: left;
    gap: var(--s64);
  }
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--s16);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 992px) {
  .final-cta-content {
    align-items: flex-start;
    text-align: left;
  }
}

.final-cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.final-cta-content p {
  font-size: 16px;
  color: var(--text-body);
}

.final-countdown-wrapper {
  display: flex;
  align-items: center;
  gap: var(--s12);
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  border-radius: var(--r12);
  margin-bottom: var(--s8);
}

@media (min-width: 992px) {
  .final-countdown-wrapper {
    justify-content: flex-start;
  }
}

.final-countdown-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-body);
}

.final-timer .countdown-card {
  min-width: 52px;
  padding: var(--s4) var(--s8);
  background: rgba(0, 0, 0, 0.3);
}

.final-timer .countdown-value {
  font-size: 16px;
}

.final-timer .countdown-label {
  font-size: 8px;
}

.final-timer .countdown-col {
  font-size: 14px;
}

.final-cta-visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  z-index: 1;
}

/* Responsive updates for proof strip works-with */
@media (max-width: 767px) {
.proof-works-with {
    flex-direction: column;
    align-items: center;
    gap: var(--s12);
  }
  .logo-pills {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════
   24. NEW OFFER & COUPON STYLES
══════════════════════════════════════════════ */
.navbar-price-group {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.navbar-price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.mobile-cta-note {
  font-size: 12px;
  color: var(--accent);
  text-align: center;
  margin-top: 4px;
  display: block;
}

/* Hero Section Price Display */
.hero-price-display {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s16);
  padding: var(--s16) var(--s20);
  background: rgba(21, 21, 28, 0.7);
  border: 1px solid var(--border-hover);
  border-radius: var(--r16);
  backdrop-filter: blur(12px);
  margin-bottom: var(--s8);
}

.price-launch-box {
  display: flex;
  flex-direction: column;
}

.price-launch-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-launch-row {
  display: flex;
  align-items: baseline;
  gap: var(--s8);
}

.hero-price-current {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-price-old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-coupon-box {
  display: flex;
  flex-direction: column;
  padding-left: var(--s16);
  border-left: 1px solid var(--border);
}

.coupon-label {
  font-size: 13px;
  color: var(--text-heading);
}

.coupon-code {
  color: var(--accent);
  font-family: var(--font-mono);
  background: rgba(196, 248, 42, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(196, 248, 42, 0.3);
}

.coupon-discount-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
}

/* CTA Wrapper & Notes */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions .cta-wrapper {
    width: auto;
  }
}

.cta-note {
  font-size: 12px;
  color: var(--text-muted);
}
.cta-note strong {
  color: var(--accent);
}

/* Premium Coupon Banner */
.coupon-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s12);
  padding: var(--s12) var(--s16);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.18) 0%, rgba(196, 248, 42, 0.1) 100%);
  border: 1px solid rgba(196, 248, 42, 0.35);
  border-radius: var(--r16);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin-top: var(--s12);
  margin-bottom: var(--s16);
  max-width: 100%;
  flex-wrap: wrap;
}

.coupon-banner-badge {
  font-size: 12px;
  font-weight: 800;
  color: #0A0A0F;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: var(--r999);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.coupon-banner-content {
  display: flex;
  align-items: center;
  gap: var(--s8);
  font-size: 13px;
  color: var(--text-heading);
  flex-wrap: wrap;
}

.coupon-banner-sub {
  color: var(--text-body);
}

.coupon-banner-code {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px dashed rgba(196, 248, 42, 0.5);
}

/* Copy Coupon Button */
.copy-coupon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-heading);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-hover);
  padding: 6px 12px;
  border-radius: var(--r8);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.copy-coupon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

.copy-coupon-btn.copied {
  background: var(--success);
  border-color: var(--success);
  color: #0A0A0F;
}

.copy-coupon-btn.copy-sm {
  padding: 3px 8px;
  font-size: 11px;
}

/* Pricing Card Coupon Box */
.pricing-price-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-bottom: var(--s16);
}

.price-detail-row {
  display: flex;
  align-items: center;
  gap: var(--s8);
}

.price-detail-label {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-coupon-card {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  padding: var(--s12) var(--s16);
  background: rgba(79, 70, 229, 0.14);
  border: 1px dashed rgba(196, 248, 42, 0.4);
  border-radius: var(--r12);
  margin-bottom: var(--s20);
}

.coupon-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s12);
}

.coupon-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.coupon-code-pill {
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-code-pill code {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.after-coupon-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.badge-discount {
  font-size: 11px;
  font-weight: 700;
  color: #0A0A0F;
  background: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.pricing-benefits-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--s12);
}

.urgency-subnote {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
}

.sticky-coupon-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(196, 248, 42, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(196, 248, 42, 0.2);
}

/* ══════════════════════════════════════════════
   25. HERO PRICING CARD & PIXEL-PERFECT UI POLISH
══════════════════════════════════════════════ */
.hero-pricing-card {
  background: linear-gradient(135deg, rgba(21, 21, 28, 0.95) 0%, rgba(13, 13, 18, 0.98) 100%);
  border: 1px solid rgba(196, 248, 42, 0.35);
  border-radius: var(--r16);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(16px);
  margin-bottom: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-pricing-card:hover {
  border-color: rgba(196, 248, 42, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 30px rgba(196, 248, 42, 0.18);
  transform: translateY(-2px);
}

.hero-pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-launch-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(196, 248, 42, 0.12);
  border: 1px solid rgba(196, 248, 42, 0.3);
  padding: 4px 12px;
  border-radius: var(--r999);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-pricing-strikethrough-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-price-old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.75;
}

.hero-price-today {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
}

.hero-coupon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.18) 0%, rgba(196, 248, 42, 0.08) 100%);
  border: 1px dashed rgba(196, 248, 42, 0.45);
  padding: 14px 20px;
  border-radius: var(--r12);
  flex-wrap: wrap;
}

.coupon-text-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coupon-box-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.coupon-box-code {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(196, 248, 42, 0.3);
  letter-spacing: 0.08em;
}

.hero-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px;
  border-radius: var(--r8);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.hero-copy-btn:hover {
  background: rgba(196, 248, 42, 0.18);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 248, 42, 0.2);
}

.hero-copy-btn:active {
  transform: scale(0.97);
}

.hero-copy-btn.copied {
  background: var(--success);
  border-color: var(--success);
  color: #0A0A0F;
}

/* Visually Prominent Final Price (Strongest Visual Element) */
.hero-final-price-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 20px;
  background: rgba(196, 248, 42, 0.04);
  border: 1px solid rgba(196, 248, 42, 0.2);
  border-radius: var(--r12);
}

.final-price-tag-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.final-price-main-display {
  display: flex;
  align-items: center;
  gap: 16px;
}

.final-price-large {
  font-size: clamp(42px, 7vw, 56px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(196, 248, 42, 0.45), 0 0 4px rgba(196, 248, 42, 0.8);
}

.final-discount-chip {
  font-size: 13px;
  font-weight: 800;
  color: #0A0A0F;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: var(--r999);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(196, 248, 42, 0.3);
}

/* Glowing Countdown Cards (Larger Digits, Equal Sizes, Softer Glow) */
.hero-urgency-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}

.glowing-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.glowing-card {
  background: rgba(17, 17, 25, 0.95);
  border: 1px solid rgba(196, 248, 42, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 16px rgba(196, 248, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  flex: 1;
  min-width: 76px;
  max-width: 96px;
  min-height: 72px;
  border-radius: var(--r12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.glowing-card:hover {
  border-color: rgba(196, 248, 42, 0.6);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 24px rgba(196, 248, 42, 0.25);
  transform: translateY(-2px);
}

.glowing-card .countdown-value {
  font-size: clamp(26px, 4.5vw, 32px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 14px rgba(196, 248, 42, 0.4);
}

.glowing-card .countdown-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Primary CTA & Spacing (Item 12 & 13) */
.hero-actions {
  margin-top: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.full-width-cta {
  width: 100%;
}

.hero-primary-cta {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: var(--r12);
  box-shadow: 0 0 32px rgba(196, 248, 42, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(196, 248, 42, 0.55);
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  display: block;
  line-height: 1.4;
}

/* Trust Section (Proper Spacing Below CTA) */
.hero-trust-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.hero-trust-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-rating-text {
  font-size: 14px;
  color: var(--text-body);
}

.trust-rating-text strong {
  color: var(--text-heading);
}

.hero-trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-heading);
  font-weight: 500;
}

.trust-bullet svg {
  flex-shrink: 0;
}

/* Floating Animation for Right-Side Illustration (Item 18 & 19) */
@keyframes floatSubtle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-visual .browser-mockup {
  animation: floatSubtle 6s ease-in-out infinite;
}

@media (max-width: 767px) {
  .hero-pricing-card {
    padding: 18px;
  }
  .hero-coupon-box {
    padding: 12px 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .coupon-text-group {
    justify-content: space-between;
  }
  .hero-copy-btn {
    width: 100%;
    justify-content: center;
  }
  .glowing-card {
    min-width: 68px;
    height: 64px;
    padding: 8px 10px;
  }
}


