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

:root {
  --gold: #F8B22D;
  --gold-light: #FFCA5A;
  --gold-dim: rgba(248, 178, 45, 0.12);
  --red: #FF1D24;
  --red-dim: rgba(255, 29, 36, 0.1);
  --black: #000;
  --surface: #111;
  --surface-2: #181818;
  --surface-3: #222;
  --border: rgba(255,255,255,0.08);
  --text: #f0f0f0;
  --text-muted: #c0c0c0;
  --text-dim: #777;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-gold: 0 0 40px rgba(248, 178, 45, 0.12);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Barlow', sans-serif;
  --max-w: 1200px;
  --section-gap: 120px;
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(248,178,45,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 10px; }
.btn-xl { padding: 20px 48px; font-size: 1.1rem; border-radius: 12px; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.footer-logo-img {
  height: 24px;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 0.875rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(0,0,0,0.96);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }
.mobile-menu .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* ── Split layout ── */
.hero-split {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

/* ── Animated headline ── */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.h1-word {
  display: inline-block;
  margin-right: 0.22em;
}

.hero-sub-left {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.7;
}

.hero-proof-left {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 32px;
  margin-top: 40px;
  max-width: 500px;
}

/* ── Right visual ── */
.hero-visual {
  flex-shrink: 0;
  width: 460px;
  position: relative;
}

/* Glow behind card */
.visual-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(248,178,45,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Content OS card ── */
.cos-card {
  background: rgba(14,14,14,0.92);
  border: 1px solid rgba(248,178,45,0.22);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 24px 64px rgba(0,0,0,0.6),
    0 0 60px rgba(248,178,45,0.06);
  position: relative;
  z-index: 1;
}

.cos-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.25);
}

.cos-window-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.cos-window-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.cos-window-dots span:nth-child(1) { background: #FF5F57; }
.cos-window-dots span:nth-child(2) { background: #FFBD2E; }
.cos-window-dots span:nth-child(3) { background: #28CA41; }

.cos-title-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  flex: 1;
  justify-content: center;
}

.cos-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.cos-time {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.cos-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cos-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  opacity: 0;
  transform: translateX(16px);
  animation: cosItemIn 0.5s ease forwards;
  animation-delay: var(--item-delay, 1s);
}

@keyframes cosItemIn {
  to { opacity: 1; transform: translateX(0); }
}

.cos-item-icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}
.icon-script   { background: rgba(248,178,45,0.1); color: var(--gold); border: 1px solid rgba(248,178,45,0.18); }
.icon-thumb    { background: rgba(96,165,250,0.1); color: #60a5fa;      border: 1px solid rgba(96,165,250,0.18); }
.icon-repurpose{ background: rgba(167,139,250,0.1); color: #a78bfa;     border: 1px solid rgba(167,139,250,0.18); }
.icon-post     { background: rgba(34,197,94,0.1);  color: #22c55e;      border: 1px solid rgba(34,197,94,0.18); }

.cos-item-info {
  flex: 1;
  min-width: 0;
}
.cos-item-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}
.cos-item-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}

.cos-status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}
.status-done   { background: rgba(34,197,94,0.1);  color: #22c55e;  border: 1px solid rgba(34,197,94,0.2); }
.status-active { background: rgba(248,178,45,0.12); color: var(--gold); border: 1px solid rgba(248,178,45,0.2); animation: activePulse 2s ease-in-out infinite; }
.status-queued { background: rgba(96,165,250,0.1);  color: #60a5fa;  border: 1px solid rgba(96,165,250,0.2); }

@keyframes activePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

.cos-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
}

.cos-ai-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.cos-typing-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
}
.cos-typing-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}
.cos-cursor {
  color: var(--gold);
  font-size: 0.75rem;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Platform floating badges ── */
.platform-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.7);
  z-index: 2;
  animation: floatBob 4s ease-in-out infinite;
}

.pf-tiktok { top: -18px; left: -24px; animation-delay: 0s; }
.pf-yt     { top: -14px; right: -20px; animation-delay: 0.8s; }
.pf-li     { bottom: 48px; left: -28px; animation-delay: 1.6s; }
.pf-ig     { bottom: 24px; right: -22px; animation-delay: 2.4s; }

.pf-tiktok svg { color: #fff; }
.pf-yt svg     { color: #FF0000; }
.pf-li svg     { color: #0A66C2; }
.pf-ig svg     { color: #E1306C; }

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

/* ── Third orb ── */
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(248,178,45,0.08), transparent 70%);
  top: 20%; right: 5%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,29,36,0.28), transparent 70%);
  top: -200px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(248,178,45,0.22), transparent 70%);
  bottom: -100px; left: -100px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(248,178,45,0.25);
  border-radius: 100px;
  background: rgba(248,178,45,0.06);
}
.dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-proof, .hero-proof-left {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 32px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.proof-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== PROBLEM STRIP ===== */
.problem-strip {
  padding: 36px 0;
  background: var(--surface);
  border-top: 1px solid rgba(255,29,36,0.25);
  border-bottom: 1px solid rgba(255,29,36,0.25);
}
.strip-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: center;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== SECTION BASE ===== */
.section { padding: var(--section-gap) 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  background: var(--gold-dim);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-grid .featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: 0 40px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  border-color: rgba(248,178,45,0.3);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: rgba(248,178,45,0.25);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(248,178,45,0.05) 100%);
}

.service-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }

.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 2px;
}

.service-btn { align-self: flex-start; margin-top: auto; }

/* Featured card layout overrides */
.featured .service-icon { grid-row: span 1; }
.featured h3 { font-size: 1.4rem; }

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 24px;
  text-align: center;
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(248,178,45,0.28);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  padding-top: 12px;
  opacity: 0.5;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(248,178,45,0.04) 100%);
  pointer-events: none;
}
.product-card:hover {
  border-color: rgba(248,178,45,0.3);
  transform: translateY(-4px);
}

.product-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-icon {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-features span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
}

.product-meta {
  margin-top: auto;
}
.product-type {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

.product-btn { align-self: flex-start; margin-top: 8px; }

/* ===== WHO ===== */
.who-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.who-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}
.who-card:hover { border-color: rgba(248,178,45,0.25); }

.who-icon {
  width: 48px; height: 48px;
  color: var(--gold);
}
.who-icon svg { width: 100%; height: 100%; }

.who-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.who-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.who-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.who-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.who-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.who-not {
  text-align: center;
  padding: 20px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.who-not p {
  font-size: 0.875rem;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
}
.who-not strong { color: var(--text-muted); }

/* ===== BOOK CTA ===== */
.book-section { background: var(--black); }

.book-card {
  background: var(--surface);
  border: 1px solid rgba(248,178,45,0.2);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}

.orb-book {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,29,36,0.12) 0%, rgba(248,178,45,0.1) 50%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.book-card .tag { position: relative; z-index: 1; }

.book-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 16px 0;
  position: relative; z-index: 1;
}

.book-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative; z-index: 1;
}

.book-details {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.book-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.check {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.book-card .btn-xl { position: relative; z-index: 1; }

.book-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 16px;
  position: relative; z-index: 1;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(248,178,45,0.25); }

.faq-item summary {
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 28px 22px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { display: inline-flex; align-items: center; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.footer-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal a { color: var(--text-dim); margin-left: 4px; }
.footer-legal a:hover { color: var(--text-muted); }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .featured { grid-column: span 2; display: flex; flex-direction: column; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { flex-wrap: wrap; justify-content: center; }
  .step { min-width: 200px; flex: 0 1 45%; }
  .step-arrow { display: none; }
}

@media (max-width: 1100px) {
  .hero-split { gap: 40px; }
  .hero-visual { width: 380px; }
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    padding-top: 20px;
  }
  .hero-visual {
    width: 100%;
    max-width: 480px;
    align-self: center;
  }
  .hero-proof-left { max-width: 100%; }
  .pf-tiktok { left: 0; }
  .pf-yt { right: 0; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-proof-left { flex-direction: column; gap: 20px; padding: 24px 28px; }
  .proof-divider { width: 48px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid .featured { grid-column: span 1; }

  .products-grid { grid-template-columns: 1fr; }

  .who-grid { grid-template-columns: 1fr; }
  .who-card { padding: 28px; }

  .book-card { padding: 48px 24px; }
  .book-details { gap: 16px; flex-direction: column; align-items: center; }

  .footer-mid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-mid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step { min-width: unset; flex: 1 1 100%; }
}

/* ===== SERVICE / PRODUCT LANDING PAGES ===== */

.sp-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.sp-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.sp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.sp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.sp-back:hover { color: var(--gold); }
.sp-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.sp-hero-content .hero-sub {
  text-align: left;
  margin: 0 0 40px;
}
.sp-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sp-includes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sp-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-include-item {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.sp-include-item:hover {
  border-color: rgba(248,178,45,0.25);
  transform: translateY(-3px);
}
.sp-include-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.sp-include-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.sp-include-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sp-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sp-outcome {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.sp-outcome-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.sp-outcome h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sp-outcome p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sp-process { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.sp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sp-step {
  background: var(--black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(248,178,45,0.25);
  font-family: var(--font-display);
  line-height: 1;
}
.sp-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.sp-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ===== SOCIAL CONTENT SYSTEM — SPLIT LAYOUT ===== */
.scs-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.scs-divider {
  background: var(--border);
  align-self: stretch;
}
.scs-col { display: flex; flex-direction: column; gap: 20px; }
.scs-col-header { margin-bottom: 8px; }
.scs-col-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 10px;
}
.scs-items { display: flex; flex-direction: column; gap: 16px; }
.scs-delivery-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  background: var(--gold-dim);
  border: 1px solid rgba(248,178,45,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.scs-delivery-note strong { color: var(--white); }
.scs-delivery-note .check { font-size: 1.1rem; flex-shrink: 0; }

@media (max-width: 1024px) {
  .sp-includes-grid { grid-template-columns: 1fr 1fr; }
  .sp-steps { grid-template-columns: 1fr 1fr; }
  .scs-split { grid-template-columns: 1fr; }
  .scs-divider { display: none; }
}
@media (max-width: 768px) {
  .sp-hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .sp-includes-grid { grid-template-columns: 1fr; }
  .sp-outcomes-grid { grid-template-columns: 1fr; }
  .sp-steps { grid-template-columns: 1fr; }
  .sp-hero-ctas { flex-direction: column; }
}

/* ===== LIGHT SECTIONS ===== */

.problem-strip,
.sp-includes,
.who-section {
  background: #f5f4f0;
}

/* Problem strip: keep the red border, just darken the text */
.problem-strip {
  border-top-color: rgba(255,29,36,0.18);
  border-bottom-color: rgba(255,29,36,0.18);
}
.problem-strip .strip-text {
  color: #1a1a1a;
}

/* sp-includes and who-section: standard dark dividers */
.sp-includes,
.who-section {
  border-top: 1px solid rgba(0,0,0,0.09);
  border-bottom: 1px solid rgba(0,0,0,0.09);
}

/* Section headers on light bg */
.sp-includes .section-header h2,
.who-section .section-header h2 {
  color: #000;
}
.sp-includes .section-header .section-sub,
.who-section .section-header .section-sub {
  color: #333;
}
.sp-includes .tag,
.who-section .tag {
  background: rgba(248,178,45,0.16);
  color: #8a5e00;
}

/* Cards inside sp-includes on light bg */
.sp-includes .sp-include-item {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.sp-includes .sp-include-item:hover {
  border-color: rgba(248,178,45,0.55);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.sp-includes .sp-include-item h4 { color: #000; }
.sp-includes .sp-include-item p  { color: #222; }
.sp-includes .sp-include-num     { color: #8a5e00; }

/* Cards inside who-section on light bg */
.who-section .who-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.who-section .who-card:hover {
  border-color: rgba(248,178,45,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.who-section .who-card h3  { color: #000; }
.who-section .who-card p   { color: #1a1a1a; }
.who-section .who-list li  { color: #1a1a1a; }
.who-section .who-not {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}
.who-section .who-not p        { color: #444; }
.who-section .who-not strong   { color: #111; }

/* Homepage also has a services section on light pages — tag on light */
.section-header .tag { /* keep in dark context as-is */ }

/* FAQ items — give more surface contrast */
.faq-item {
  background: var(--surface-2);
}
.faq-item[open] {
  background: var(--surface-2);
  border-color: rgba(248,178,45,0.3);
}

/* ===== PREVIEW CARDS (homepage service/product previews) ===== */
.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.preview-grid {
  display: grid;
  gap: 20px;
}

.services-preview-grid {
  grid-template-columns: repeat(4, 1fr);
}

.products-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.preview-card:hover {
  border-color: rgba(248,178,45,0.35);
  transform: translateY(-4px);
}

.featured-preview {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(248,178,45,0.05) 100%);
  border-color: rgba(248,178,45,0.2);
}

.preview-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.preview-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  flex-shrink: 0;
}
.preview-icon svg { width: 100%; height: 100%; }

.preview-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.featured-preview h3 { font-size: 1.2rem; }

.preview-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.preview-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.preview-stack {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: auto;
}

/* Product preview cards keep the product-icon style */
.preview-card .product-icon {
  font-size: 2rem;
}

/* ===== PRODUCTS SECTION (dark surface) ===== */
.products-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ===== LISTING PAGE HERO ===== */
.list-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.list-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.list-hero-content {
  position: relative;
  z-index: 1;
}
.list-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.list-hero .back-link:hover { color: var(--gold); }

.list-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.list-hero .hero-sub {
  max-width: 580px;
  margin: 0 0 40px;
  text-align: left;
}

/* ===== LISTING GRID ===== */
.list-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.list-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-preview { grid-column: span 2; }
  .products-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .list-services-grid { grid-template-columns: 1fr 1fr; }
  .list-products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .list-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .services-preview-grid { grid-template-columns: 1fr; }
  .featured-preview { grid-column: span 1; }
  .products-preview-grid { grid-template-columns: 1fr; }
  .list-services-grid { grid-template-columns: 1fr; }
  .list-products-grid { grid-template-columns: 1fr; }
  .list-hero { padding: 120px 0 60px; }
}
