/* ═══════════════════════════════════════════════════════════════
   OPC AI PROFITLAB — Premium Design System v4.0
   Theme: Dark Glassmorphism + Gradient Accent
   Domain: go.breaths.live
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  /* Core palette */
  --ink: #0a0e1a;
  --ink-light: #111827;
  --ink-card: #151b2e;
  --text: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --paper: #f8fafc;
  --paper-warm: #fefce8;
  --white: #ffffff;

  /* Brand colors */
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-dark: #7c3aed;
  --purple-glow: rgba(139, 92, 246, 0.25);
  --gold: #fbbf24;
  --gold-light: #fde68a;
  --gold-dark: #f59e0b;
  --gold-glow: rgba(251, 191, 36, 0.2);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0a0e1a 0%, #1e1145 40%, #0f172a 100%);
  --grad-purple: linear-gradient(135deg, #8b5cf6, #6d28d9);
  --grad-gold: linear-gradient(135deg, #fbbf24, #f59e0b);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  --grad-card: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, rgba(139,92,246,0) 100%);
  --grad-mesh: radial-gradient(ellipse at 20% 50%, rgba(139,92,246,0.15) 0%, transparent 50%),
               radial-gradient(ellipse at 80% 20%, rgba(251,191,36,0.1) 0%, transparent 50%),
               radial-gradient(ellipse at 50% 80%, rgba(99,102,241,0.1) 0%, transparent 50%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(139,92,246,0.3);
  --shadow-gold-glow: 0 0 30px rgba(251,191,36,0.3);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 800px;
  --gutter: 24px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.6s;
}


/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: #070a14;
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(139, 92, 246, 0.22), transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 30%, rgba(251, 191, 36, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 20, 0.78) 0%, rgba(7, 10, 20, 0.94) 700px, #070a14 100%),
    url('assets/BANNER.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto, 100% auto, 100% 100%, 100% auto;
  background-attachment: scroll;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}

button, a, summary {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 4px;
  border-radius: 4px;
}

p {
  margin: 0 0 var(--space-md);
  color: var(--text-secondary);
  max-width: 66ch;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-md);
  font-weight: 800;
  text-wrap: balance;
  color: var(--white);
}

h1 { font-size: clamp(38px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.02em; }
h4 { font-size: 18px; font-weight: 700; }

img {
  max-width: 100%;
  display: block;
  height: auto;
}

hr {
  border: 0;
  border-top: 1px solid var(--glass-border);
  margin: var(--space-md) 0;
}

[hidden] { display: none !important; }

::selection {
  background: var(--purple);
  color: white;
}


/* ── Layout ── */
.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  max-width: var(--wrap-narrow);
}


/* ── Skip Link ── */
.skip {
  position: fixed;
  left: 16px;
  top: -100px;
  background: var(--purple);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 100;
  font-weight: 600;
  font-size: 14px;
}
.skip:focus { top: 16px; }


/* ══════════════════════════════════════
   HEADER — Sticky Glass Nav
   ══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--duration-normal) var(--ease-out);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--white);
  position: relative;
  transition: transform 0.2s ease, filter 0.3s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.55)) drop-shadow(0 0 12px rgba(56, 189, 248, 0.3));
  transition: transform 0.3s var(--ease-spring), filter 0.3s ease;
  animation: markPulse 3.5s ease-in-out infinite;
}

.brand:hover img {
  transform: scale(1.08) rotate(4deg);
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.85)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
}

/* ── Neon Flowing Light Animation for Brand Logo ── */
.neon-text {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #e0e7ff 15%,
    #a78bfa 30%,
    #38bdf8 50%,
    #fbbf24 70%,
    #e0e7ff 85%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonFlow 3.8s linear infinite, neonPulse 3s ease-in-out infinite;
}

.neon-text b,
.brand b {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #a78bfa 0%, #38bdf8 35%, #fbbf24 70%, #a78bfa 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonFlow 3.8s linear infinite;
  display: inline-block;
}

@keyframes neonFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes neonPulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(167, 139, 250, 0.35)) drop-shadow(0 0 12px rgba(56, 189, 248, 0.18));
  }
  50% {
    filter: drop-shadow(0 0 9px rgba(251, 191, 36, 0.5)) drop-shadow(0 0 18px rgba(167, 139, 250, 0.45));
  }
}

@keyframes markPulse {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.55)) drop-shadow(0 0 12px rgba(56, 189, 248, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.65)) drop-shadow(0 0 18px rgba(167, 139, 250, 0.45));
  }
}

/* ══════════════════════════════════════
   NEON FLOWING HEADINGS & CTA TYPOGRAPHY
   ══════════════════════════════════════ */
.neon-hero,
.neon-title {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f8fafc 15%,
    #c4b5fd 30%,
    #38bdf8 48%,
    #fde68a 65%,
    #fbbf24 78%,
    #ffffff 92%,
    #f8fafc 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonHeadingFlow 5s linear infinite;
  filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.28)) drop-shadow(0 0 28px rgba(56, 189, 248, 0.12));
}

@keyframes neonHeadingFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 250% center;
  }
}

.neon-span {
  display: inline;
  background: linear-gradient(
    90deg,
    #c084fc 0%,
    #38bdf8 25%,
    #fbbf24 50%,
    #f472b6 75%,
    #c084fc 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonFlow 3.8s linear infinite;
  filter: drop-shadow(0 0 8px rgba(192, 132, 252, 0.4));
}

.desktop-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.desktop-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.desktop-nav a[aria-current] {
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.12);
}

.mobile-menu { display: none; }


/* ══════════════════════════════════════
   HERO SECTIONS
   ══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 80px 0 40px;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
  z-index: 0;
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
  color: var(--text-secondary);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.hero-note {
  font-size: 13px;
  margin-top: 24px !important;
  color: var(--text-muted) !important;
}


/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.button:hover::after {
  opacity: 1;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.primary {
  background: var(--grad-purple);
  color: white;
  box-shadow: 0 4px 16px rgba(139,92,246,0.4);
}

.primary:hover {
  box-shadow: 0 8px 30px rgba(139,92,246,0.5);
}

.gold {
  background: var(--grad-gold);
  color: #1a1a2e;
  box-shadow: 0 4px 16px rgba(251,191,36,0.35);
}

.gold:hover {
  box-shadow: 0 8px 30px rgba(251,191,36,0.5);
}

.outline {
  border-color: var(--glass-border);
  color: var(--text);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
}

.outline:hover {
  border-color: var(--purple-light);
  background: rgba(139,92,246,0.1);
}

.secondary {
  background: rgba(255,255,255,0.06);
  border-color: var(--glass-border);
  color: var(--text);
}

.secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.text-button {
  background: none;
  border: 0;
  color: var(--purple-light);
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  padding: 8px 0;
  cursor: pointer;
  transition: color var(--duration-fast);
}
.text-button:hover { color: var(--gold); }

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}


/* ── People / Founders ── */
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 14px 0;
}

.people figure { margin: 0; }

.people img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 40px 40px 16px 16px;
  border: 2px solid rgba(139,92,246,0.3);
  transition: border-color var(--duration-normal);
}

.people img:hover {
  border-color: var(--purple-light);
}

.people .lucky { padding-top: 60px; }

.people figcaption {
  padding: 14px 4px;
}

.people strong {
  display: block;
  font-size: 17px;
  color: var(--white);
}

.people figcaption span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}

.hero-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding: 24px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-bottom a {
  color: var(--gold);
  font-weight: 600;
}

.hero-bottom a:hover {
  color: var(--gold-light);
}


/* ══════════════════════════════════════
   SOCIAL PROOF BAR
   ══════════════════════════════════════ */
.social-proof-bar {
  padding: 32px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(139,92,246,0.04);
}

.proof-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-number {
  font-size: 32px;
  font-weight: 900;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

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


/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.paper {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-heading {
  margin-bottom: 56px;
  max-width: 700px;
}


/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-grid > * { min-width: 0; }


/* ── Checklist ── */
.checklist {
  padding: 0;
  list-style: none;
  margin: 24px 0;
}

.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-weight: 800;
  font-size: 16px;
}


/* ── Book Scene (Product Mockup) ── */
.book-scene {
  position: relative;
  min-height: 430px;
  padding: 18px 100px 15px 0;
}

.book {
  position: relative;
  z-index: 2;
  width: 300px;
  min-height: 400px;
  background: linear-gradient(145deg, #1e1545, #16103a);
  color: #fff;
  box-shadow:
    12px 24px 45px rgba(0,0,0,0.4),
    inset 7px 0 0 rgba(255,255,255,0.05),
    0 0 40px rgba(139,92,246,0.15);
  border-radius: 3px 12px 12px 3px;
  padding: 30px 26px;
  transform: rotate(-5deg);
  transition: transform var(--duration-slow) var(--ease-out);
}

.book:hover {
  transform: rotate(-3deg) translateY(-4px);
}

.book-brand {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--purple-light);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.book-title {
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.book-line {
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  margin: 20px 0;
  border-radius: 2px;
}

.book p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.book-bottom {
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: rgba(255,255,255,0.5);
  margin-top: auto;
}

.sheet {
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 1;
  background: var(--ink-card);
  padding: 28px 22px;
  width: 250px;
  min-height: 340px;
  transform: rotate(7deg);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: transform var(--duration-slow) var(--ease-out);
}

.sheet:hover {
  transform: rotate(5deg) translateY(-4px);
}

.sheet > span {
  font-size: 11px;
  color: var(--purple-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sheet h3 {
  font-size: 21px;
  margin-top: 16px;
}

.sheet p {
  font-size: 12px;
  margin: 14px 0 5px;
  color: var(--text-muted);
}

.sheet hr {
  margin: 8px 0;
  border-color: var(--glass-border);
}

.sheet small {
  font-size: 9px;
  color: var(--text-muted);
}


/* ══════════════════════════════════════
   DEMO / INTERACTIVE SECTION
   ══════════════════════════════════════ */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.demo-grid > * { min-width: 0; }

.demo-box,
.form-panel {
  background: var(--ink-card);
  padding: 36px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.small {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.small a {
  text-decoration: underline;
  color: var(--purple-light);
}


/* ── Form Elements ── */
label {
  display: block;
  font-size: 14px;
  font-weight: 650;
  margin: 0 0 8px;
  color: var(--text);
}

input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  margin-bottom: 20px;
  min-height: 48px;
  font-size: 15px;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

textarea {
  resize: vertical;
  line-height: 1.6;
}

textarea[readonly] {
  background: rgba(139,92,246,0.06);
  border-color: rgba(139,92,246,0.15);
}

#prompt-area { margin-top: 24px; }
#prompt-status, #brief-status { margin: 16px 0 0; }


/* ══════════════════════════════════════
   PATHS / CHOOSE YOUR WAY
   ══════════════════════════════════════ */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.paths article {
  padding: 40px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  transition: all var(--duration-normal) var(--ease-out);
}

.paths article:hover {
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 8px 32px rgba(139,92,246,0.1);
  transform: translateY(-4px);
}

.paths .path-service {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(139,92,246,0.02));
}

.path-label {
  font-size: 12px;
  color: var(--purple-light);
  display: block;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.paths h3 { font-size: 28px; }

.paths p {
  min-height: 80px;
  color: var(--text-secondary);
}


/* ══════════════════════════════════════
   SECTION HEADINGS & TEXT READABILITY
   ══════════════════════════════════════ */
.section-heading {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-heading p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 68ch;
  margin: 0 auto;
}


/* ══════════════════════════════════════
   SKILLS / 5 STEPS LIST — LUXURY CARDS
   ══════════════════════════════════════ */
.skills {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skills li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  background: rgba(21, 27, 46, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.skills li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--purple-light), var(--purple-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skills li:hover {
  background: rgba(30, 41, 69, 0.85);
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.skills li:hover::before {
  opacity: 1;
}

.step {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(109, 40, 217, 0.5));
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.skills h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--white);
  line-height: 1.3;
}

.skills p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  color: var(--text-secondary);
}

.output {
  font-size: 13.5px;
  color: #ddd6fe;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  text-align: left;
  white-space: normal;
  max-width: 320px;
  line-height: 1.45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  justify-self: end;
}

.output::before {
  content: '🎯';
  font-size: 14px;
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   OFFER / PRICING
   ══════════════════════════════════════ */
.offer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}

.offer-grid > * { min-width: 0; }

.deliverables { margin-top: 36px; }

.deliverables > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.deliverables strong {
  font-size: 15px;
  color: var(--text);
}

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

.price-box {
  padding: 44px;
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, rgba(139,92,246,0.1), var(--ink-card));
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--grad-purple);
  border-radius: 2px;
}

.price {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price span {
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
  -webkit-text-fill-color: var(--text-muted);
}

.price-box .button {
  width: 100%;
  margin-top: 8px;
}

.price-box .small {
  margin-top: 16px;
  margin-bottom: 0;
}


/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
}

.faq details {
  border-bottom: 1px solid var(--glass-border);
  padding: 18px 0;
}

.faq details:first-child { padding-top: 0; }

.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  min-height: 44px;
  padding: 10px 32px 10px 0;
  line-height: 1.5;
  color: var(--text);
  list-style: none;
  position: relative;
  transition: color var(--duration-fast);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 300;
  color: var(--purple-light);
  transition: transform var(--duration-normal);
}

.faq details[open] summary::after {
  content: '−';
}

.faq summary:hover {
  color: var(--purple-light);
}

.faq details p {
  font-size: 14px;
  padding-top: 8px;
  color: var(--text-secondary);
}


/* ══════════════════════════════════════
   CLOSING CTA
   ══════════════════════════════════════ */
.closing {
  padding: 80px 0;
  text-align: center;
  background: var(--grad-hero);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}

.closing > .wrap {
  position: relative;
  z-index: 1;
}

.closing h2 {
  margin-bottom: 28px;
}


/* ══════════════════════════════════════
   LIVE PAGE
   ══════════════════════════════════════ */
.live-hero { padding-bottom: 70px; }
.live-hero .lead { max-width: 660px; }

.video-panel {
  position: relative;
  background: var(--ink-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  color: white;
  border: 1px solid var(--glass-border);
}

.video-panel > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.video-panel > div {
  position: absolute;
  bottom: 0;
  padding: 32px;
  width: 100%;
  background: linear-gradient(transparent, var(--ink) 40%);
}

.video-panel h2 {
  font-size: 30px;
  margin: 8px 0 20px;
}

.video-panel span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* ── Dual YouTube Video Showcase Grid ── */
.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 36px 0 48px;
}

@media (max-width: 860px) {
  .video-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.video-card {
  background: var(--ink-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 16px 44px rgba(139, 92, 246, 0.2);
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.video-card-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(139, 92, 246, 0.3);
  letter-spacing: 0.02em;
}

.badge-status {
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.35;
}

.video-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}

.video-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.video-card-actions .button {
  padding: 10px 18px;
  font-size: 13px;
}

.guide-box {
  background: var(--ink-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.reading-list {
  padding-left: 22px;
}

.reading-list li {
  padding: 12px 0 12px 8px;
  color: var(--text-secondary);
}

.reading-list strong {
  color: var(--text);
}


/* ══════════════════════════════════════
   CONSULTATION PAGE
   ══════════════════════════════════════ */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.consult-grid > * { min-width: 0; }
.consult-grid h2 { font-size: 30px; }

.consult-grid aside {
  position: sticky;
  top: 120px;
}

.form-panel > p {
  font-size: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#brief-output {
  border-top: 1px solid var(--glass-border);
  margin-top: 28px;
  padding-top: 24px;
}

.service-price {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  margin-top: 32px;
}

.service-price strong {
  display: block;
  font-size: 32px;
  margin: 10px 0;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-price p {
  font-size: 14px;
}


/* ══════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════ */
.bank-details {
  overflow-wrap: anywhere;
}

.bank-details dt {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 18px;
}

.bank-details dd {
  margin: 4px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

#bank-qr {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 16px 0;
}

.consent-label input {
  width: 20px;
  min-height: 20px;
  margin: 4px 0;
  accent-color: var(--purple);
}

#checkout-price {
  font-size: 32px;
  font-weight: 800;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ══════════════════════════════════════
   INFO / PROSE PAGE
   ══════════════════════════════════════ */
.prose h1 { font-size: clamp(36px, 4vw, 50px); }
.prose h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  color: var(--purple-light);
}
.prose p { font-size: 15px; color: var(--text-secondary); }
.hero:has(.narrow) { padding-bottom: 60px; }


/* ══════════════════════════════════════
   TRUST BADGES
   ══════════════════════════════════════ */
.trust-bar-section {
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
}

.trust-bar-section .trust-row {
  padding: 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--purple-light);
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   VALUE STACK
   ══════════════════════════════════════ */
.value-stack {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(251,191,36,0.04));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.value-total {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.value-price {
  font-size: 48px;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
}


/* ══════════════════════════════════════
   LEAD CAPTURE
   ══════════════════════════════════════ */
.lead-capture {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(251,191,36,0.06), rgba(139,92,246,0.08));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.lead-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto 0;
}

.lead-form input {
  flex: 1;
  margin-bottom: 0;
}

.lead-form .button {
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   SLOGAN CALLOUT
   ══════════════════════════════════════ */
.slogan {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 32px;
}

.slogan strong {
  font-size: 18px;
  line-height: 1.55;
  display: block;
  color: var(--white);
}

.slogan p {
  font-size: 12px;
  margin: 10px 0 0;
  max-width: 55ch;
}


/* ══════════════════════════════════════
   STARTER HERO VARIANT
   ══════════════════════════════════════ */
.starter-hero { padding-bottom: 64px; }
.starter-hero .product-grid { gap: 60px; }
.starter-hero h1 { font-size: clamp(34px, 4vw, 56px); }


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--glass-border);
  background: #080c18;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.35fr 1fr;
  gap: 36px;
  padding-top: 40px;
  padding-bottom: 32px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-grid > div > a:not(.brand):not(.footer-art) {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

.footer-grid > div > a:not(.brand):not(.footer-art):hover {
  color: var(--purple-light);
  transform: translateX(2px);
}

.footer-grid p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.55;
}

.footer-art {
  display: block;
  width: 140px;
  max-width: 100%;
  padding: 0;
  margin: 0 0 14px;
}

.footer-art img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color var(--duration-fast), opacity var(--duration-fast);
}

.footer-art:hover img {
  opacity: 0.95;
  border-color: rgba(139, 92, 246, 0.35);
}

.footer-cal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cal-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.16);
  color: var(--purple-light);
  border: 1px solid rgba(139, 92, 246, 0.28);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.footer-cal-link.vip .cal-badge {
  background: rgba(251, 191, 36, 0.16);
  color: var(--gold);
  border-color: rgba(251, 191, 36, 0.35);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
}


/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ── Floating Glow Orbs (Background Decoration) ── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}

.glow-orb-purple {
  background: var(--purple);
  width: 300px;
  height: 300px;
}

.glow-orb-gold {
  background: var(--gold);
  width: 200px;
  height: 200px;
}
/* ══════════════════════════════════════
   OPC AI PROFITLAB LUXURY SYSTEM
   ══════════════════════════════════════ */
.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.15);
  margin-bottom: 20px;
}

.luxury-badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple-light);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}

.luxury-mockup {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.75), 0 0 40px rgba(139, 92, 246, 0.25);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: block;
  margin: 0 auto;
}

.luxury-mockup:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.85), 0 0 50px rgba(139, 92, 246, 0.35);
}

.facets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.facet-card {
  background: rgba(21, 27, 46, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  backdrop-filter: blur(16px);
  transition: all 0.3s var(--ease-out);
}

.facet-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.15);
}

.facet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.facet-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--grad-purple);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.facet-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.facet-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.offer-stack-box {
  background: linear-gradient(145deg, rgba(30, 21, 69, 0.85), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(139, 92, 246, 0.2);
  margin: 36px 0;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
}

.stack-item:last-child {
  border-bottom: none;
}

.stack-item strong {
  color: var(--white);
  font-size: 15px;
}

.stack-value {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.stack-total {
  padding-top: 18px;
  margin-top: 10px;
  border-top: 2px dashed rgba(139, 92, 246, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stack-total-label {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
}

.stack-total-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
}

.steps-image-wrap {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.steps-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-card {
  background: rgba(16, 23, 41, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(139, 92, 246, 0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.15);
}

.case-study-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.case-study-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.case-study-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  transition: transform 0.4s ease;
}

.case-study-thumb:hover img {
  transform: scale(1.04);
}

.case-study-thumb .thumb-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(16, 23, 41, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.case-study-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.case-study-links .button.small-btn {
  padding: 9px 18px;
  font-size: 13.5px;
  min-height: 42px;
  font-weight: 600;
}


/* ══════════════════════════════════════
   FACETS CHECKLIST INTERACTIVE COMPONENT
   ══════════════════════════════════════ */
.facets-checklist-box {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(21, 27, 46, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  padding: 36px 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.facets-checklist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.facets-checklist-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: var(--white);
}

.facets-score-badge {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.3));
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: var(--gold);
  font-weight: 800;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.facets-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.facets-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.facets-check-item:hover {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.3);
}

.facets-check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.check-box-custom {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.facets-check-item input:checked + .check-box-custom {
  background: var(--purple);
  border-color: var(--purple-light);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

.facets-check-item input:checked + .check-box-custom::after {
  content: '✓';
  color: white;
  font-size: 15px;
  font-weight: 900;
}

.facets-check-item strong {
  display: block;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}

.facets-check-item span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.facets-success {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeIn 0.4s ease-out;
}

.facets-success-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.facets-success h4 {
  font-size: 17px;
  font-weight: 800;
  color: #34d399;
  margin: 0 0 6px 0;
}

.facets-success p {
  font-size: 14px;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.55;
}


/* ══════════════════════════════════════
   MOBILE STICKY CTA
   ══════════════════════════════════════ */
.sticky-cta {
  display: none;
}


/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤1000px)
   ══════════════════════════════════════ */
@media (max-width: 1000px) {
  .desktop-nav { gap: 4px; }
  .desktop-nav a { padding: 8px 10px; font-size: 13px; }
  .brand b { font-size: 11px; }

  .hero-grid,
  .product-grid { gap: 40px; }

  .book-scene {
    transform: scale(0.88);
    transform-origin: left center;
  }

  .offer-grid { gap: 50px; }
  .demo-grid, .consult-grid { gap: 40px; }

  .people figcaption span { font-size: 11px; }
  .hero h1 { font-size: 44px; }

  .proof-items { gap: 32px; }
}


/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤760px)
   ══════════════════════════════════════ */
@media (max-width: 760px) {
  .wrap { width: calc(100% - 32px); }

  .nav { min-height: 64px; }
  .brand { font-size: 18px; }
  .brand b { font-size: 10px; }

  .desktop-nav { display: none; }

  .mobile-menu { display: block; }

  .mobile-menu summary {
    font-size: 14px;
    cursor: pointer;
    min-height: 44px;
    padding: 10px 4px;
    color: var(--text-secondary);
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker { display: none; }

  .mobile-menu nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(20px);
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--glass-border);
  }

  .mobile-menu nav a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
  }

  .mobile-menu nav a:last-child { border-bottom: 0; }

  .mobile-menu nav a[aria-current] {
    color: var(--purple-light);
  }

  /* Hero */
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 36px; }

  .hero-grid,
  .product-grid,
  .demo-grid,
  .offer-grid,
  .faq-grid,
  .consult-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead { font-size: 16px; }
  .eyebrow { font-size: 12px; margin-bottom: 16px; }

  .people {
    max-width: 400px;
    gap: 16px;
    margin: 0 auto;
    width: 100%;
    padding-top: 8px;
  }

  .people .lucky { padding-top: 40px; }

  .people img {
    border-radius: 32px 32px 12px 12px;
  }

  .people figcaption span { font-size: 10px; }
  .people strong { font-size: 15px; }

  .hero-bottom {
    margin-top: 28px;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
  }

  .section { padding: 56px 0; }

  /* Book */
  .book-scene {
    transform: none;
    width: min(100%, 380px);
    min-height: 380px;
    padding-right: 60px;
    margin: 0 auto;
  }

  .book {
    width: 240px;
    min-height: 340px;
    padding: 24px 22px;
  }

  .book-title { font-size: 28px; }
  .book-brand { margin-bottom: 28px; }
  .book-bottom { font-size: 8px; }

  .sheet {
    width: 190px;
    min-height: 290px;
    padding: 22px 18px;
    right: 14px;
    transform: rotate(3deg);
  }

  .sheet h3 { font-size: 19px; }
  .sheet small { font-size: 8px; }

  /* Cards */
  .paths { grid-template-columns: 1fr; }
  .paths article { padding: 28px; }
  .paths p { min-height: 0; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .footer-col-brand, .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Forms */
  .demo-box, .form-panel { padding: 24px; }

  /* Luxury Elements Responsive */
  .facets-grid { grid-template-columns: 1fr; }
  .facets-checklist-box { padding: 24px 16px; border-radius: 16px; }
  .facets-checklist-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .facets-checklist-header h3 { font-size: 18px; }
  .facets-check-item { padding: 14px 12px; gap: 12px; }
  .facets-check-item strong { font-size: 15px; }
  .facets-check-item span { font-size: 13px; }
  .facets-success { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 16px; }
  .case-study-card { grid-template-columns: 1fr; text-align: left; }
  .offer-stack-box { padding: 24px 18px; }
  .stack-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .stack-value { align-self: flex-end; }

  /* Skills */
  .skills li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .skills .output {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: 100%;
    font-size: 13px;
    text-align: left;
    margin-top: 6px;
    border-radius: 10px;
    padding: 8px 14px;
  }

  .skills h3 { font-size: 18px; }

  /* Pricing */
  .price-box { padding: 28px; }

  .faq-grid { gap: 16px; }
  .faq summary { font-size: 15px; }

  .starter-hero { padding-bottom: 40px; }
  .starter-hero .product-grid { gap: 28px; }

  .closing { padding: 48px 0; }
  .closing h2 { font-size: 28px; }

  .consult-grid aside { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .video-panel { min-height: 0; }
  .video-panel h2 { font-size: 26px; }
  .live-hero { padding-bottom: 44px; }

  .prose h1 { font-size: 36px; }

  .deliverables > div { display: block; }
  .deliverables span { display: block; margin-top: 4px; }

  .hero:has(.narrow) { padding-bottom: 36px; }

  /* Social proof */
  .proof-items { gap: 24px; }
  .proof-number { font-size: 26px; }

  /* Value stack */
  .value-stack { padding: 32px 24px; }
  .value-price { font-size: 36px; }

  /* Lead capture */
  .lead-form {
    flex-direction: column;
  }

  /* Sticky CTA - Mobile */
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 12px 16px;
    background: rgba(10,14,26,0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

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

  .sticky-cta .button {
    flex: 1;
    min-height: 46px;
    font-size: 14px;
  }

  .sticky-cta-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--gold);
    white-space: nowrap;
  }

  /* Add bottom padding to body for sticky CTA */
  body { padding-bottom: 72px; }
}


@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


/* ══════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤380px)
   ══════════════════════════════════════ */
@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }

  .book { width: 210px; }
  .book-title { font-size: 24px; }
  .sheet { width: 160px; right: 5px; transform: rotate(3deg); }
  .book-scene { padding-left: 4px; }

  .button { font-size: 14px; padding: 12px 16px; }

  .brand { gap: 6px; }
  .brand img { width: 28px; height: 28px; }
  .brand b { font-size: 9px; }
}


/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .button {
    transition: none;
  }
  .button:hover { transform: none; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sticky-cta { transition: none; }
}


/* ══════════════════════════════════════
   PRINT
   ══════════════════════════════════════ */
@media print {
  .header, .sticky-cta, .mobile-menu { display: none; }
  body {
    background: white;
    color: #1a1a2e;
    padding-bottom: 0;
  }
  .hero { background: none; }
}

/* ══════════════════════════════════════
   CHECKOUT FORM & CRM LEAD CAPTURE STYLES
   ══════════════════════════════════════ */
.checkout-lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.field-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary, #94a3b8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-group input {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: #f8fafc;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field-group input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
  background: rgba(15, 23, 42, 0.95);
}

.field-group input::placeholder {
  color: #64748b;
  font-size: 14px;
}

/* Order Bump Box */
.order-bump-box {
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 2px dashed rgba(251, 191, 36, 0.6);
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  transition: transform 0.2s, border-color 0.2s;
}

.order-bump-box:hover {
  border-color: #fbbf24;
  transform: translateY(-1px);
}

.bump-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.bump-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.bump-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #f59e0b;
  margin-top: 3px;
  cursor: pointer;
}

.bump-content {
  font-size: 14px;
  line-height: 1.5;
  color: #e2e8f0;
}

.bump-content strong {
  color: #fbbf24;
  font-size: 15px;
}

.bump-desc {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin: 4px 0 6px;
}

.bump-price {
  display: block;
  font-size: 13px;
  color: #38bdf8;
}

/* Order Summary Box */
.order-summary-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 16px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: #94a3b8;
}

.summary-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 6px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
}

.summary-row.total b {
  color: #fbbf24;
  font-size: 18px;
}

/* Copy Buttons */
.copy-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  color: #38bdf8;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.copy-pill:hover {
  background: rgba(56, 189, 248, 0.2);
  color: #ffffff;
}

.copy-pill.copied {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

/* Instant Success Delivery Card */
.success-card {
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.12) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 20px 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  animation: fadeIn 0.4s ease-out;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.success-card h3 {
  color: #34d399;
  font-size: 22px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  box-sizing: border-box;
}

.button.green {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.button.green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.next-steps-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px 20px;
  text-align: left;
  margin-top: 20px;
}

.next-steps-box h4 {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.next-steps-box ol {
  margin: 0;
  padding-left: 20px;
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.6;
}

.next-steps-box li {
  margin-bottom: 6px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   HEADER NAV CTA BUTTON
   ══════════════════════════════════════ */
.desktop-nav .nav-cta-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35) !important;
  margin-left: 8px !important;
}

.desktop-nav .nav-cta-btn:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.5) !important;
}

/* ══════════════════════════════════════
   CHECKOUT PACKAGE SWITCHER & LUXURY VIETQR
   ══════════════════════════════════════ */
.package-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 24px;
}

.pkg-tab {
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pkg-tab:hover {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(15, 23, 42, 0.85);
}

.pkg-tab.active {
  border-color: #fbbf24;
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
}

.pkg-tab-title {
  font-size: 14px;
  font-weight: 700;
  color: #f8fafc;
}

.pkg-tab.active .pkg-tab-title {
  color: #fbbf24;
}

.pkg-tab-price {
  font-size: 16px;
  font-weight: 800;
  color: #38bdf8;
}

.qr-payment-wrapper {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .package-tabs {
    grid-template-columns: 1fr;
  }
  .qr-payment-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bank-details dd {
    justify-content: center;
  }
}

.qr-card {
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.qr-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 8px;
}

.qr-scan-guide {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.test-pay-btn {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid #10b981 !important;
  color: #34d399 !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
}

.test-pay-btn:hover {
  background: rgba(16, 185, 129, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}


/* ═══════════════════════════════════════════════════════════════
   LIVE PAGE: WORKSHOP HERO & VIDEO SHOWCASE DESIGN SYSTEM
   Optimized for PC (Desktop 1440px/1536px) & Mobile (360px-768px)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero 2-Column Grid Layout on Live ── */
.live-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
}

.live-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.trust-pill:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.35);
  color: #fff;
  transform: translateY(-1px);
}

.pill-icon {
  font-size: 14px;
}

/* ── Cinema Spotlight Player in Hero (Fills right empty hero space) ── */
.cinema-spotlight-card {
  background: linear-gradient(180deg, rgba(30, 17, 69, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(139, 92, 246, 0.25);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.cinema-spotlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(251, 191, 36, 0.25);
}

.cinema-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(10, 14, 26, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cinema-dots {
  display: flex;
  gap: 6px;
}

.cinema-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cinema-dots .dot.red { background: #ef4444; }
.cinema-dots .dot.yellow { background: #f59e0b; }
.cinema-dots .dot.green { background: #10b981; }

.cinema-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #e2e8f0;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.cinema-badge {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fbbf24;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.cinema-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.cinema-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cinema-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(10, 14, 26, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cinema-info strong {
  display: block;
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
}

.cinema-info span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Video Showcase 2-Column Grid (PC/Desktop) ── */
.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.video-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(21, 27, 46, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.25);
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card-content {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 14px;
}

.video-card-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-tag.gold-badge {
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold);
  border-color: rgba(251, 191, 36, 0.3);
}

.badge-status {
  font-size: 12px;
  font-weight: 700;
  color: #34d399;
}

.badge-status.gold-status {
  color: var(--gold);
}

.video-card-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.video-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.video-takeaways {
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 4px 0;
}

.takeaway-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 8px;
}

.video-takeaways ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.video-takeaways li {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

.video-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

.video-card-actions .button {
  flex: 1 1 180px;
  min-height: 46px;
  font-size: 14px;
}

/* ── Preparation Guide 4-Step Grid ── */
.guide-box {
  background: linear-gradient(135deg, rgba(21, 27, 46, 0.8) 0%, rgba(30, 17, 69, 0.35) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.guide-step-card {
  background: rgba(10, 14, 26, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 18px;
  transition: all 0.2s ease;
}

.guide-step-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: rgba(10, 14, 26, 0.85);
}

.guide-step-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.guide-step-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.guide-step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ── Responsive Adaptations for Live Page ── */
@media (max-width: 991px) {
  .live-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .video-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .guide-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .guide-box {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .cinema-header {
    padding: 10px 14px;
  }
  
  .cinema-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cinema-footer .button {
    width: 100%;
  }

  .video-card-content {
    padding: 20px 18px;
  }

  .video-card-actions {
    flex-direction: column;
  }

  .video-card-actions .button {
    width: 100%;
  }

  .guide-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   IMAN GADZHI CRO & LUXURY PERSUASION COMPONENTS (go.breaths.live)
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. The Paradigm Shift: Old Way vs New Way Matrix ── */
.comparison-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.compare-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out);
}

.old-way-card {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.new-way-card {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, rgba(251, 191, 36, 0.04) 100%);
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.15);
}

.compare-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.old-tag {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.new-tag {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(251, 191, 36, 0.3));
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.5);
}

.compare-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.35;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

.compare-list li span.icon {
  flex-shrink: 0;
  font-size: 18px;
  margin-top: -2px;
}

/* ── 2. The 6 AI Directors Engine ── */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.director-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.director-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.director-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.director-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.director-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.director-role {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.director-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 3. The Irresistible Offer Value Stack ── */
.value-stack-container {
  background: linear-gradient(180deg, rgba(21, 27, 46, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  margin-top: 36px;
}

.value-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 28px 0;
}

.value-stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  gap: 16px;
}

.value-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-check-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.value-item-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 2px;
}

.value-item-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.value-item-price {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.value-summary-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(251, 191, 36, 0.08));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

.value-original {
  font-size: 15px;
  color: var(--text-secondary);
}

.value-original span {
  text-decoration: line-through;
  color: #f87171;
  font-weight: 700;
}

.value-today-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.value-today-price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── Mobile Responsive for Iman Components ── */
@media (max-width: 900px) {
  .comparison-matrix {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .directors-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .directors-grid {
    grid-template-columns: 1fr;
  }
  .value-stack-container {
    padding: 28px 18px;
  }
  .value-stack-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .value-summary-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
