/* ============================================================
   IMPORT BASE VARIABLES (mirrors style-v2.css tokens)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #cc0000;
  --black:     #000000;
  --bg-1:      #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --border:    rgba(255,255,255,0.08);
  --white:     #ffffff;
  --gray:      #888888;
  --gray-lt:   #bbbbbb;
  --font:      'Inter', sans-serif;
  --display:   'Bebas Neue', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --max-w:     1160px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

/* Page-load red accent bar */
html::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #cc0000, #ff4444);
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  animation: pageLoad 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes pageLoad {
  0%   { transform: scaleX(0); opacity: 1; }
  80%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--gray-lt); max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: #e60000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,0,0,0.35); }
.btn-large { padding: 18px 40px; font-size: 1rem; border-radius: 10px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo { font-family: var(--display); font-size: 1.9rem; letter-spacing: 0.04em; }
.logo span { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--gray-lt); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }

.nav-cta-btn {
  font-size: 0.85rem; font-weight: 700; padding: 10px 22px;
  background: var(--red); color: var(--white); border-radius: 7px;
  transition: background var(--transition), box-shadow var(--transition); white-space: nowrap;
}
.nav-cta-btn:hover { background: #e60000; box-shadow: 0 4px 16px rgba(204,0,0,0.3); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-nav { display: none; background: var(--bg-2); border-top: 1px solid var(--border); padding: 20px 24px 28px; }
.mobile-nav ul { display: flex; flex-direction: column; margin-bottom: 20px; }
.mobile-nav ul li a { display: block; padding: 13px 0; font-size: 1rem; font-weight: 500; color: var(--gray-lt); border-bottom: 1px solid var(--border); }
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-cta { width: 100%; justify-content: center; }
.mobile-nav.open { display: block; }

/* ============================================================
   HERO — entrance animations
   ============================================================ */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cs-hero-inner .eyebrow {
  animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.1s;
}
.cs-hero-inner h1 {
  animation: heroUp 0.85s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.25s;
}
.cs-hero-inner > p {
  animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.42s;
}
.hero-stats {
  animation: heroUp 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.58s;
}

/* ============================================================
   HERO
   ============================================================ */
#cs-hero {
  padding: 160px 0 80px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(180,0,0,0.1) 0%, transparent 60%), var(--black);
  border-bottom: 1px solid var(--border);
}

.cs-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cs-hero-inner h1 {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.cs-hero-inner p {
  font-size: 1.1rem;
  color: var(--gray-lt);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}

.hs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 36px;
  flex: 1;
  min-width: 120px;
  transition: background var(--transition);
}
.hs:hover { background: rgba(204,0,0,0.05); }

.hs span {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.hs small {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hs-div { width: 1px; background: var(--border); align-self: stretch; flex-shrink: 0; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { color: var(--white); border-color: var(--border); }
.filter-btn.active { color: var(--white); background: var(--red); border-color: var(--red); }

/* ============================================================
   CASE STUDY BLOCKS
   ============================================================ */
.cs-block {
  padding: 100px 0;
  background: var(--black);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.cs-block.cs-alt {
  transform: translateX(24px);
}
.cs-block.visible { opacity: 1; transform: translateX(0); }
.cs-block.cs-alt { background: var(--bg-1); }
.cs-block.filtered-out { display: none; }

.cs-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.cs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cs-layout.cs-reverse { direction: rtl; }
.cs-layout.cs-reverse > * { direction: ltr; }

/* Meta row */
.cs-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cs-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  background: rgba(204,0,0,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(204,0,0,0.2);
}
.cs-num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Headline */
.cs-text h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.cs-client {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.cs-narrative {
  font-size: 0.97rem;
  color: var(--gray-lt);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* What we built */
.cs-approach {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.cs-approach h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.cs-approach ul { display: flex; flex-direction: column; gap: 10px; }
.cs-approach li {
  font-size: 0.88rem;
  color: var(--gray-lt);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.cs-approach li i { color: var(--red); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }

/* Testimonial pull quote */
.cs-testimonial {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--bg-3);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  position: relative;
}
.cs-testimonial::before {
  content: '"';
  font-family: var(--display);
  font-size: 5rem;
  color: rgba(204,0,0,0.15);
  position: absolute;
  top: -12px; left: 20px;
  line-height: 1;
}
.cs-testimonial p {
  font-size: 0.92rem;
  color: var(--gray-lt);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 14px;
}
.cs-testimonial strong {
  font-size: 0.82rem;
  color: var(--white);
  display: block;
}

.cs-testi-light {
  background: var(--bg-2);
  border-color: rgba(204,0,0,0.4);
  margin-top: 0;
}

/* ============================================================
   METRICS COLUMN
   ============================================================ */
.cs-metrics-col { display: flex; flex-direction: column; gap: 24px; }

.cs-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.cs-metric {
  background: var(--bg-2);
  padding: 28px 24px;
  transition: background var(--transition);
}
.cs-metric:hover { background: var(--bg-3); }

.cs-metric.highlight {
  background: linear-gradient(135deg, #1a0000, #0d0000);
  grid-column: 1 / -1;
  border-top: 2px solid var(--red);
}
.cs-metric.highlight-alt { background: var(--bg-3); }

.cm-num {
  font-family: var(--display);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.cs-metric.highlight .cm-num { font-size: 3.8rem; color: var(--red); }

.cm-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.4;
}

/* Before / After */
.cs-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

.ba-col { background: var(--bg-2); padding: 20px; }

.ba-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.before-l { color: var(--gray); }
.after-l { color: var(--red); }

.ba-col p { font-size: 0.82rem; color: var(--gray-lt); line-height: 1.6; }

/* ============================================================
   MORE RESULTS — MINI CASES
   ============================================================ */
#more-results {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.mini-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-case {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.mini-case:hover { border-color: rgba(204,0,0,0.35); transform: translateY(-4px); }

.mini-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 14px;
}
.mini-client {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 3px;
}
.mini-role { font-size: 0.78rem; color: var(--gray); margin-bottom: 20px; }

.mini-stat {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.mini-stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.mini-case p { font-size: 0.87rem; color: var(--gray-lt); line-height: 1.75; }

/* ============================================================
   FINAL CTA
   ============================================================ */
#cs-cta {
  padding: 140px 0;
  background: var(--black);
  background-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(180,0,0,0.1) 0%, transparent 70%);
}

.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.cta-inner p { font-size: 1rem; color: var(--gray-lt); margin-bottom: 16px; line-height: 1.75; }
.cta-note { font-size: 0.85rem !important; color: var(--gray) !important; margin-bottom: 36px !important; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-logo { font-family: var(--display); font-size: 2rem; letter-spacing: 0.04em; margin-bottom: 6px; }
.footer-logo span { color: var(--red); }
.footer-left p { font-size: 0.78rem; color: var(--gray); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.85rem; color: var(--gray); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 16px; margin-bottom: 10px; justify-content: flex-end; }
.footer-socials a { font-size: 1.1rem; color: var(--gray); transition: color var(--transition); }
.footer-socials a:hover { color: var(--red); }
.footer-copy { font-size: 0.75rem; color: var(--gray); text-align: right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cs-layout { grid-template-columns: 1fr; gap: 48px; }
  .cs-layout.cs-reverse { direction: ltr; }
  .cs-metrics-col { order: -1; }
  .mini-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { border-radius: var(--radius); }
  .hs { padding: 20px 24px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  #cs-hero { padding: 120px 0 60px; }
  .cs-block { padding: 64px 0; }
  .cs-metrics-grid { grid-template-columns: 1fr; }
  .cs-metric.highlight { grid-column: 1; }
  .mini-cases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer-links { justify-content: center; }
  .footer-socials { justify-content: center; }
  .footer-copy { text-align: center; }
  .hero-stats { flex-wrap: wrap; border-radius: var(--radius); }
  .hs-div { display: none; }
  .hs { flex: none; width: 50%; border: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .cs-before-after { grid-template-columns: 1fr; }
  .hs { width: 100%; }
}

/* ============================================================
   FADE SLIDE UP ANIMATION
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cs-block {
  animation: none; /* JS handles via .visible class */
}
.cs-block.visible {
  animation: fadeSlideUp 0.8s ease forwards;
}

/* ============================================================
   CLIENT LOGO HEADER
   ============================================================ */
.cs-logo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cs-logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--red);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  overflow: hidden;
}

/* Logo image inside mark */
.cs-logo-img-wrap { padding: 6px; background: rgba(255,255,255,0.05); }
.cs-lh-img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.cs-lh-round { border-radius: 13px; }
.cs-lh-invert { filter: brightness(0) invert(1); opacity: 0.85; }
.cs-lh-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0.04em;
}

.cs-logo-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cs-logo-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}

.cs-logo-tagline {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   PLATFORM BADGES
   ============================================================ */
.cs-platforms {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.platform-badge:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.4); }
.platform-badge i { font-size: 0.75rem; }

.pb-instagram  { background: #E1306C; }
.pb-tiktok     { background: #010101; border: 1px solid #69C9D0; }
.pb-linkedin   { background: #0A66C2; }
.pb-youtube    { background: #FF0000; }
.pb-facebook   { background: #1877F2; }
.pb-spotify    { background: #1DB954; }

/* ============================================================
   LIVE EMBED WIDGET (replaces CSS phone frame)
   ============================================================ */
.cs-embed-wrap {
  margin-bottom: 28px;
}

.cs-embed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-lt);
  margin-bottom: 10px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-2);
}

.embed-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff3b3b;
  animation: pulseLive 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.embed-spotify-dot { background: #1DB954; }

@keyframes pulseLive {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.65); }
}

/* YouTube embed — 16:9 responsive */
.cs-yt-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}
.cs-yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Spotify embed */
.cs-spotify-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.cs-spotify-embed iframe { display: block; border: none; }

/* Small label under video/podcast */
.cs-embed-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  color: var(--gray);
  margin-top: 8px;
  padding-left: 2px;
}

/* Results dashboard card — for LinkedIn / Lead Gen brands */
.cs-results-dashboard {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.rd-header {
  padding: 16px 20px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.rd-platform {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0A66C2;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  flex-shrink: 0;
}
.rd-platform.rd-fb { background: #1877F2; }
.rd-name  { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.rd-handle { font-size: 0.74rem; color: var(--gray); margin-top: 1px; }

.rd-post-preview {
  padding: 14px 20px;
  font-size: 0.84rem;
  color: var(--gray-lt);
  line-height: 1.58;
  border-bottom: 1px solid var(--border);
  font-style: italic;
}

.rd-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.rd-stat {
  background: var(--bg-2);
  padding: 13px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rd-num {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.rd-lbl {
  font-size: 0.68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.rd-footer {
  padding: 10px 20px;
  font-size: 0.71rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   RESULT SPOTLIGHT
   ============================================================ */
.cs-result-spotlight {
  background: linear-gradient(135deg, #130000 0%, #0d0000 100%);
  border: 1px solid rgba(204,0,0,0.25);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 28px 24px 20px;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.cs-result-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(204,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray);
  margin-bottom: 6px;
}

.spotlight-number {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.spotlight-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ============================================================
   ANIMATED METRIC BARS
   ============================================================ */
.cm-bar-wrap {
  margin-top: 8px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.cm-bar {
  height: 100%;
  border-radius: 2px;
  background: var(--red);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-metric.highlight .cm-bar { background: var(--red); }
.cs-metric.highlight-alt .cm-bar { background: rgba(204,0,0,0.7); }

/* When parent block is visible, trigger bars */
.cs-block.visible .cm-bar { width: var(--bar-w, 60%); }

/* ============================================================
   TIMELINE STRIP
   ============================================================ */
.cs-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0;
}

.cs-tl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  text-align: center;
  position: relative;
}

.cs-tl-step.tl-before { background: rgba(255,255,255,0.02); }
.cs-tl-step.tl-system { background: rgba(204,0,0,0.08); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.cs-tl-step.tl-after  { background: rgba(204,0,0,0.05); }

.tl-icon {
  font-size: 1rem;
  margin-bottom: 5px;
}
.tl-before-icon { color: var(--gray); }
.tl-system-icon { color: var(--red); }
.tl-after-icon  { color: #22c55e; }

.tl-label {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 3px;
}
.cs-tl-step.tl-before .tl-label { color: var(--gray); }
.cs-tl-step.tl-system .tl-label { color: var(--red); }
.cs-tl-step.tl-after  .tl-label { color: #22c55e; }

.tl-text {
  font-size: 0.67rem;
  color: var(--gray-lt);
  line-height: 1.4;
}

/* Arrow between steps */
.cs-tl-arrow {
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 0.65rem;
  color: var(--gray);
  background: var(--border);
  width: 1px;
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADING ACCENT LINE
   ============================================================ */
.section-header h2::after,
.section-accent-line {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 12px auto 0;
  animation: accentExpand 0.8s ease forwards;
}

@keyframes accentExpand {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 768px) {
  .spotlight-number { font-size: 3rem; }
  .cs-yt-embed { border-radius: 8px; }
  .cs-timeline { flex-wrap: wrap; }
  .cs-tl-step { min-width: 33%; }
}

@media (max-width: 480px) {
  .cs-platforms { gap: 6px; }
  .platform-badge { font-size: 0.65rem; padding: 4px 10px; }
}

/* ============================================================
   ANALYTICS DASHBOARD CARD (Lead Gen)
   ============================================================ */
.cs-analytics-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.ac-header {
  padding: 16px 20px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.ac-platform {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #1877F2;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.ac-name  { font-weight: 700; font-size: 0.88rem; color: var(--white); line-height: 1.2; }
.ac-sub   { font-size: 0.72rem; color: var(--gray); margin-top: 2px; }
.ac-period {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--gray);
  background: var(--bg-3);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.ac-main-metric {
  padding: 16px 20px 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.ac-big-num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.ac-big-label {
  font-size: 0.8rem;
  color: var(--gray-lt);
  flex: 1;
  min-width: 80px;
}
.ac-trend {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.ac-up {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.25);
}

/* Bar chart rows */
.ac-bars {
  padding: 14px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.ac-bar-row {
  display: grid;
  grid-template-columns: 100px 1fr 44px;
  align-items: center;
  gap: 10px;
}
.ac-bar-label {
  font-size: 0.71rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-bar-track {
  height: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.ac-bar-fill {
  height: 100%;
  width: var(--fill, 50%);
  background: var(--color, var(--red));
  border-radius: 4px;
  animation: barGrow 1s ease-out forwards;
  transform-origin: left;
}
@keyframes barGrow {
  from { width: 0; }
  to   { width: var(--fill, 50%); }
}
.ac-bar-val {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  text-align: right;
}
.ac-bar-val.ac-good { color: #22c55e; }

.ac-footer {
  padding: 10px 20px;
  font-size: 0.71rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   AUTHENTIC LINKEDIN POST MOCKUP
   ============================================================ */
.cs-li-post {
  background: #1b1f23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.6);
  font-family: var(--font);
}

/* Author row */
.li-post-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px 10px;
}
.li-av-wrap {
  position: relative;
  flex-shrink: 0;
}
.li-av-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0A66C2;
  display: block;
}
.li-av-fallback {
  display: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0A66C2,#004182);
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1rem;
  color: #fff;
  border: 2px solid #0A66C2;
}
.li-av-company {
  position: absolute;
  bottom: -2px; right: -4px;
  width: 20px; height: 20px;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #1b1f23;
}
.li-av-company img { width: 100%; height: 100%; object-fit: contain; }

.li-post-author { flex: 1; min-width: 0; }
.li-pa-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e7e9ea;
  line-height: 1.2;
}
.li-degree {
  font-size: 0.75rem;
  font-weight: 400;
  color: #8b98a5;
}
.li-pa-title {
  font-size: 0.72rem;
  color: #8b98a5;
  margin-top: 2px;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.li-pa-time {
  font-size: 0.67rem;
  color: #8b98a5;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.li-globe { font-size: 0.6rem; }

.li-follow-pill {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #70b5f9;
  background: transparent;
  border: 1.5px solid #70b5f9;
  border-radius: 20px;
  padding: 5px 14px;
  cursor: default;
  white-space: nowrap;
}

/* Post text */
.li-post-body {
  padding: 4px 16px 12px;
  font-size: 0.84rem;
  color: #e7e9ea;
  line-height: 1.6;
}
.li-post-body p { margin-bottom: 8px; }
.li-post-body p:last-child { margin-bottom: 0; }
.li-bullets {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 4px 0;
}
.li-bullets span {
  display: block;
  padding-left: 4px;
  color: #c4cdd6;
}
.li-hashtags {
  font-size: 0.78rem !important;
  color: #70b5f9 !important;
  margin-top: 6px !important;
}

/* Analytics strip */
.li-analytics-strip {
  margin: 0 16px;
  padding: 7px 10px;
  background: rgba(10,102,194,0.1);
  border: 1px solid rgba(10,102,194,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: #8b98a5;
  margin-bottom: 10px;
}
.li-analytics-strip i { color: #70b5f9; font-size: 0.7rem; }
.li-analytics-strip strong { color: #70b5f9; font-weight: 600; cursor: default; }

/* Reactions */
.li-reactions-row {
  padding: 6px 16px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  color: #8b98a5;
}
.li-reaction-emojis { display: flex; align-items: center; font-size: 0.85rem; }
.li-react-count { color: #8b98a5; }
.li-comments-meta { margin-left: auto; color: #8b98a5; }
.li-comments-meta:hover { color: #70b5f9; cursor: default; }

/* Action bar */
.li-action-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.li-act-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 4px;
  font-size: 0.66rem;
  color: #8b98a5;
  background: none;
  border: none;
  cursor: default;
  transition: color 0.15s ease, background 0.15s ease;
  font-family: var(--font);
  font-weight: 600;
}
.li-act-btn:hover { color: #e7e9ea; background: rgba(255,255,255,0.04); }
.li-act-btn i { font-size: 1rem; }

/* ============================================================
   DYNAMIC / PREMIUM ENHANCEMENTS
   ============================================================ */

/* Eyebrow animated underline — consistent across all pages */
.eyebrow::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--red);
  width: 0;
  margin-top: 6px;
  border-radius: 2px;
  animation: eyebrowLine 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.3s;
}
@keyframes eyebrowLine {
  from { width: 0; }
  to   { width: 40px; }
}

/* Hero section ambient glow pulse */
#cs-hero {
  position: relative;
  overflow: hidden;
}
#cs-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,0.06) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* Hero stats — animated number reveal on hover */
.hs span {
  transition: color 0.3s ease;
}
.hs:hover span { color: var(--red); }

/* cs-block result spotlights — hover glow on big numbers */
.cs-result-spotlight h3 {
  transition: text-shadow 0.3s ease, color 0.3s ease;
}
.cs-result-spotlight:hover h3 {
  text-shadow: 0 0 20px rgba(204,0,0,0.3);
}

/* cs-text headline hover reveal */
.cs-text h2 {
  transition: letter-spacing 0.4s ease;
}

/* Case study visual media — hover lift */
.cs-visual {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.cs-block:hover .cs-visual {
  transform: translateY(-4px);
}

/* cs-cta section premium glow */
#cs-cta {
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
  background-image: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(180,0,0,0.1) 0%, transparent 70%);
}
#cs-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(204,0,0,0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: ctaGlow 5s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* Mini case card entrance */
.mini-case {
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.55s ease;
  opacity: 0;
}
.mini-case.visible { opacity: 1; }

/* Logo header subtle left border reveal */
.cs-logo-header {
  position: relative;
  transition: padding-left 0.3s ease;
}
.cs-logo-header::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.cs-block.visible .cs-logo-header::before {
  transform: scaleY(1);
}

/* Filter bar animated underline on active */
.filter-btn {
  position: relative;
}

/* Shimmer scan on embed badges */
.cs-embed-badge {
  position: relative;
  overflow: hidden;
}
.cs-embed-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: badgeShimmer 3s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%   { left: -60%; }
  100% { left: 110%; }
}

/* Proof bar on cases hero — hover treatment */
.hero-stats {
  transition: box-shadow 0.3s ease;
}
.hero-stats:hover {
  box-shadow: 0 0 0 1px rgba(204,0,0,0.2), 0 8px 32px rgba(0,0,0,0.3);
}
