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

:root {
  --red:       #cc0000;
  --red-dim:   #990000;
  --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, var(--red), #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; }

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

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

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

.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 on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero entrance: pure CSS stagger, fires on page load ── */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.hero-text .eyebrow {
  animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.1s;
}
.hero-text h1 {
  animation: heroUp 0.85s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.26s;
}
.hero-sub {
  animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.44s;
}
.hero-actions {
  animation: heroUp 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.58s;
}
.hero-trust {
  animation: heroUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.72s;
}
.hero-image {
  animation: heroScaleIn 1s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.36s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  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-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); }

.btn-large { padding: 18px 40px; font-size: 1rem; border-radius: 10px; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0;
  border: none;
  transition: gap var(--transition);
}
.btn-service:hover { gap: 14px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-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.7rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.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);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active-section { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active-section::after { width: 100%; }

.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;
  transition: var(--transition);
}

.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; gap: 0; 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
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(180,0,0,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(100,0,0,0.06) 0%, transparent 70%),
    var(--black);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 80px;
}

.hero-text .eyebrow { margin-bottom: 20px; }

.hero-text h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-lt);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--gray);
  flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--red); font-size: 0.75rem; }
.trust-dot {
  width: 4px; height: 4px;
  background: var(--gray);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Subtle hero bottom edge line */
#hero {
  position: relative;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(204,0,0,0.25) 50%, transparent 100%);
  pointer-events: none;
}

/* Hero photo */
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-lg);
  /* Embossed / blended look */
  filter: contrast(1.05) brightness(0.95);
}
.photo-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5), inset -40px 0 80px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* ============================================================
   PROOF BAR — Animated Premium
   ============================================================ */
.proof-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d 0%, #161616 50%, #0d0d0d 100%);
  border-top: 1px solid rgba(204,0,0,0.25);
  border-bottom: 1px solid rgba(204,0,0,0.25);
  padding: 0 24px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}
.proof-bar:hover {
  border-top-color: rgba(204,0,0,0.55);
  border-bottom-color: rgba(204,0,0,0.55);
}
.proof-bar::after {
  content: 'View All Case Studies →';
  position: absolute;
  bottom: 6px;
  right: 28px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(204,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.proof-bar:hover::after { opacity: 1; }

/* Shimmer sweep */
.proof-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(204,0,0,0.04), transparent);
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0%   { left: -60%; }
  100% { left: 110%; }
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 32px 16px;
  position: relative;
  transition: background var(--transition);
}
.proof-item:hover { background: rgba(204,0,0,0.04); }

.proof-icon {
  font-size: 1rem;
  color: var(--red);
  opacity: 0.7;
  margin-bottom: 4px;
  transition: opacity var(--transition), transform var(--transition);
}
.proof-item:hover .proof-icon { opacity: 1; transform: scale(1.15); }

.proof-num-wrap { position: relative; }

.proof-num {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
  display: block;
  /* Count-up animation */
  transition: color 0.3s ease;
}
.proof-item:hover .proof-num { color: #ff2222; }

.proof-label {
  font-size: 0.68rem;
  color: var(--gray);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.proof-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
  flex-shrink: 0;
  align-self: stretch;
  margin: 16px 0;
}

/* ============================================================
   ABOUT — Embossed portrait
   ============================================================ */
#about {
  padding: 120px 0;
  background: var(--bg-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-col { position: relative; }

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Embed into page */
  box-shadow:
    0 0 0 1px rgba(204,0,0,0.15),
    0 32px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.about-photo-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  display: block;
  /* Desaturate and darken so light bg blends into dark site */
  filter: contrast(1.05) brightness(0.75) saturate(0.7);
  mix-blend-mode: luminosity;
}

/* Dark overlay to unify tones */
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.25);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

/* Blend bottom into section bg */
.photo-blend-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--bg-1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Blend top edge */
.photo-blend-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 20%;
  background: linear-gradient(to bottom, var(--bg-1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Blend left edge */
.photo-blend-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 35%;
  background: linear-gradient(to right, var(--bg-1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Blend right edge */
.photo-blend-right {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 25%;
  background: linear-gradient(to left, var(--bg-1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Red accent line on right */
.about-photo-wrap::after {
  content: '';
  position: absolute;
  top: 15%; right: 0; bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: 0.5;
  z-index: 3;
}

.photo-tag {
  position: absolute;
  bottom: 24px;
  right: 20px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(204,0,0,0.4);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  letter-spacing: 0.06em;
  z-index: 4;
}

.about-copy h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.about-copy p {
  font-size: 1rem;
  color: var(--gray-lt);
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-copy p strong { color: var(--white); }

.about-pillars {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-lt);
  padding: 10px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition), color var(--transition);
}
.pillar-item:hover { border-color: rgba(204,0,0,0.4); color: var(--white); }
.pillar-item i { color: var(--red); font-size: 0.85rem; }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 120px 0;
  background: var(--bg-1);
}

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

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  border-color: rgba(204,0,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(204,0,0,0.1);
}

.service-card.featured {
  border-color: var(--red);
  background: linear-gradient(160deg, #1a0000 0%, #130000 40%, var(--bg-2) 100%);
}
.service-card.featured:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(204,0,0,0.12);
}

.service-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Big prominent number */
.service-num {
  font-family: var(--display);
  font-size: 5rem;
  color: rgba(204,0,0,0.18);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.service-card:hover .service-num { color: rgba(204,0,0,0.35); }
.service-card.featured .service-num { color: rgba(204,0,0,0.3); }
.service-card.featured:hover .service-num { color: rgba(204,0,0,0.5); }

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.service-tagline {
  font-size: 0.85rem;
  color: var(--red);
  font-style: italic;
  margin-bottom: 16px;
}

.service-for {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.service-for strong { color: var(--gray-lt); }

.service-delivers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.service-delivers li {
  font-size: 0.88rem;
  color: var(--gray-lt);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-delivers li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.6;
}

.service-outcome {
  background: rgba(0,0,0,0.3);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--gray-lt);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-outcome span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

/* ============================================================
   PROCESS — Click-to-expand steps
   ============================================================ */
#process {
  padding: 120px 0;
  background: var(--black);
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.process-step {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.3s ease;
  overflow: hidden;
}
.process-step:last-child { border-bottom: none; }

.step-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
}

.step-num {
  font-family: var(--display);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(204,0,0,0.2);
  transition: color 0.3s ease;
  min-width: 80px;
}

.step-content { flex: 1; }

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  transition: margin-bottom 0.3s ease;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.step-arrow {
  color: var(--gray);
  font-size: 0.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Active state */
.process-step.active {
  background: var(--bg-2);
}
.process-step.active .step-num { color: var(--red); }
.process-step.active .step-arrow { transform: rotate(180deg); color: var(--red); }
.process-step.active .step-content h4 { margin-bottom: 0; }
.process-step.active .step-content p {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
  color: var(--gray-lt);
}

.process-step:hover:not(.active) { background: rgba(255,255,255,0.02); }
.process-step:hover:not(.active) .step-num { color: rgba(204,0,0,0.35); }

/* ============================================================
   RESULTS / CASE STUDIES
   ============================================================ */
#results {
  padding: 120px 0;
  background: var(--bg-1);
}

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

.case-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover {
  border-color: rgba(204,0,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.case-card.featured-case { border-color: rgba(204,0,0,0.35); }

/* Brand logo area */
.case-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.case-logo {
  max-height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.case-logo-sq {
  border-radius: 8px;
  max-height: 48px;
  max-width: 48px;
  filter: none;
  opacity: 1;
}
.case-card:hover .case-logo { opacity: 1; }

.case-logo-fallback {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
}

/* Blenders text logo */
.case-logo-text-brand {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}
.case-logo-text-brand span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  font-family: var(--font);
  font-weight: 700;
  margin-top: 2px;
}

.case-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.case-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.case-role {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.case-result {
  margin-bottom: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.result-num {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--red);
  letter-spacing: 0.03em;
  line-height: 1;
}

.result-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.case-story {
  font-size: 0.88rem;
  color: var(--gray-lt);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}

.case-quote {
  font-size: 0.84rem;
  color: var(--gray-lt);
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 14px;
  line-height: 1.6;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.case-metrics span {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(204,0,0,0.12);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(204,0,0,0.2);
}

/* Platform badges on case cards */
.case-platforms {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cp {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  transition: transform 0.2s ease;
}
.cp:hover { transform: scale(1.15); }
.cp-instagram { background: #E1306C; }
.cp-tiktok    { background: #010101; border: 1px solid #69C9D0; }
.cp-linkedin  { background: #0A66C2; }
.cp-youtube   { background: #FF0000; }
.cp-facebook  { background: #1877F2; }
.cp-spotify   { background: #1DB954; }

/* "View All Case Studies" CTA below results grid */
.results-cta {
  text-align: center;
  margin-top: 48px;
}
.btn-cases {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  border: 2px solid rgba(204,0,0,0.4);
  color: var(--white);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.btn-cases:hover {
  border-color: var(--red);
  background: rgba(204,0,0,0.08);
  transform: translateY(-2px);
}

/* ============================================================
   CASE STUDY CARD CAROUSEL
   ============================================================ */
#results { padding: 120px 0 0; background: var(--bg-1); }

.ccc-outer {
  position: relative;
  margin-top: 60px;
  padding: 0 0 40px;
}

.ccc-viewport {
  overflow: hidden;
  padding: 24px 0 28px;
}

.ccc-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding: 0 max(40px, calc((100vw - 1160px) / 2 + 24px));
}

/* Card */
.ccc-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  min-width: 300px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.ccc-card:hover {
  border-color: rgba(204,0,0,0.35);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.ccc-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  min-height: 52px;
}

.ccc-logo {
  max-height: 36px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.ccc-card:hover .ccc-logo { opacity: 1; }
.ccc-logo-invert { filter: brightness(0) invert(1); }
.ccc-logo-sq {
  max-height: 44px;
  max-width: 44px;
  border-radius: 10px;
  filter: none;
  opacity: 1;
}
.ccc-logo-text {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}
.ccc-platforms { display: flex; gap: 6px; }

.ccc-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.ccc-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.ccc-result-row {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ccc-big-num {
  font-family: var(--display);
  font-size: 3.2rem;
  color: var(--red);
  letter-spacing: 0.03em;
  line-height: 1;
}
.ccc-big-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-top: 4px;
}

.ccc-story {
  font-size: 0.875rem;
  color: var(--gray-lt);
  line-height: 1.75;
  flex: 1;
}

.ccc-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ccc-metrics span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.18);
  padding: 4px 10px;
  border-radius: 20px;
}

.ccc-quote {
  font-size: 0.82rem;
  color: var(--gray-lt);
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 12px;
  line-height: 1.6;
}

.ccc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  transition: gap 0.2s ease;
  margin-top: auto;
}
.ccc-link:hover { gap: 13px; }

/* Arrows */
.ccc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--gray-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 10;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.ccc-arrow:hover {
  border-color: var(--red);
  background: rgba(204,0,0,0.12);
  color: var(--white);
  transform: translateY(-60%) scale(1.05);
}
.ccc-prev { left: 16px; }
.ccc-next { right: 16px; }

/* Dots */
.ccc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.ccc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  transition: background 0.3s ease, width 0.3s ease;
  cursor: pointer;
}
.ccc-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 3px;
}

/* ============================================================
   TESTIMONIALS — Auto Carousel
   ============================================================ */
#testimonials {
  padding: 120px 0 80px;
  background: var(--black);
}

.tc-outer {
  margin-top: 60px;
  position: relative;
}

.tc-viewport {
  overflow: hidden;
}

.tc-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tc-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2 + 24px));
}

/* Card */
.testi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.testi-card:hover {
  border-color: rgba(204,0,0,0.3);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.testi-card:hover::before { transform: scaleX(1); }

.testi-quote-mark {
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0.6;
  color: rgba(204,0,0,0.15);
  display: block;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 0.96rem;
  color: var(--gray-lt);
  line-height: 1.82;
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testi-initials {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testi-author > div:nth-child(2) { flex: 1; }
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.testi-author span {
  font-size: 0.74rem;
  color: var(--gray);
  font-weight: 500;
}

.testi-source {
  font-size: 1rem;
  color: var(--gray);
  margin-left: auto;
  flex-shrink: 0;
}

/* Controls */
.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.tc-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--gray-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.tc-arrow:hover {
  border-color: var(--red);
  background: rgba(204,0,0,0.1);
  color: var(--white);
}

.tc-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.tc-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 3px;
}

/* ============================================================
   WHO THIS IS FOR — moved to end
   ============================================================ */
#for-who {
  padding: 120px 0;
  background: var(--bg-1);
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Directional entrance for for-who columns */
.yes-col.fade-in  { transform: translateX(-28px); }
.no-col.fade-in   { transform: translateX(28px); }
.yes-col.fade-in.visible,
.no-col.fade-in.visible { transform: translateX(0); }

.for-col {
  border-radius: var(--radius-lg);
  padding: 40px;
}

.yes-col {
  background: var(--bg-2);
  border: 1px solid rgba(204,0,0,0.25);
}

.no-col {
  background: var(--bg-3);
  border: 1px solid var(--border);
}

.for-col-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.yes-col .for-col-header { color: var(--white); }
.yes-col .for-col-header i { color: var(--red); }
.no-col .for-col-header { color: var(--gray-lt); }
.no-col .for-col-header i { color: var(--gray); }

.for-col ul { display: flex; flex-direction: column; gap: 14px; }
.for-col li {
  font-size: 0.92rem;
  color: var(--gray-lt);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.for-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gray);
}
.yes-col li::before { background: var(--red); }

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 120px 0;
  background: var(--black);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { background: var(--bg-2); }

.faq-q {
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), color var(--transition);
}
.faq-q:hover { background: var(--bg-3); }
.faq-q.open { color: var(--red); border-bottom: 1px solid var(--border); }
.faq-q i { font-size: 0.75rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-q.open i { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 20px 28px 24px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: 0.92rem;
  color: var(--gray-lt);
  line-height: 1.85;
}

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

.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;
}

/* ============================================================
   DYNAMIC ANIMATIONS — site-wide
   ============================================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(204,0,0,0.25); }
}
@keyframes redLineExpand {
  from { width: 0; }
  to   { width: 48px; }
}

/* Floating proof icons */
.proof-icon { animation: floatY 3s ease-in-out infinite; }
.proof-item:nth-child(3) .proof-icon { animation-delay: 0.4s; }
.proof-item:nth-child(5) .proof-icon { animation-delay: 0.8s; }
.proof-item:nth-child(7) .proof-icon { animation-delay: 1.2s; }
.proof-item:nth-child(9) .proof-icon { animation-delay: 1.6s; }

/* Red animated accent line under eyebrow labels */
.eyebrow::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--red);
  width: 0;
  margin-top: 6px;
  border-radius: 2px;
  animation: redLineExpand 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.3s;
}

/* Pulse glow on the hero photo frame */
.photo-frame { animation: pulseGlow 4s ease-in-out infinite; }

/* Hover lift on pillar items */
.pillar-item {
  transition: transform 0.2s ease, color 0.2s ease;
}
.pillar-item:hover { transform: translateY(-3px); }
.pillar-item:hover i { color: var(--red); }

/* Subtle scale on service cards */
.service-card { transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }

/* Service card stagger entrance */
.service-card:nth-child(1).fade-in { transition-delay: 0s; }
.service-card:nth-child(2).fade-in { transition-delay: 0.12s; }
.service-card:nth-child(3).fade-in { transition-delay: 0.24s; }

/* CCC card stagger glow on hover */
.ccc-card:hover .ccc-big-num {
  text-shadow: 0 0 20px rgba(204,0,0,0.3);
  transition: text-shadow 0.3s ease;
}

/* For-who yes-col inner glow */
.yes-col {
  position: relative;
  overflow: hidden;
}
.yes-col::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  opacity: 0.6;
}

/* FAQ item reveal — left border sweep on open */
.faq-item { position: relative; overflow: hidden; }
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.faq-item:has(.faq-q.open)::before { transform: scaleY(1); }

/* Smooth scroll progress indicator */
@keyframes scrollProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Process step left border on active */
.process-step.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  border-radius: 0 2px 2px 0;
}
.process-step { position: relative; }

/* ============================================================
   FOOTER LOGO
   ============================================================ */
.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) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-photo-col { max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cases-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-featured { grid-column: span 2; }
  .for-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-wrap: wrap; justify-content: center; }
  .proof-divider { display: none; }
  .proof-item { min-width: 140px; flex: none; padding: 20px 24px; }
  /* Card carousel */
  .ccc-card { width: calc(50% - 12px); min-width: 260px; }
  /* Testi */
  .tc-slide { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  #hero { padding-top: 100px; min-height: auto; }
  .hero-text h1 { font-size: 2.8rem; }
  .section-header { margin-bottom: 48px; }
  .step-inner { grid-template-columns: auto 1fr auto; gap: 16px; padding: 24px 24px; }
  .step-num { font-size: 2.5rem; min-width: 56px; }
  .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; }
  .about-photo-wrap img { height: 420px; }
  /* Card carousel mobile */
  .ccc-card { width: calc(85vw); min-width: unset; }
  .ccc-track { padding: 0 24px; }
  /* Testi */
  .tc-slide { grid-template-columns: 1fr; padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 8px; }
  .for-col { padding: 28px 24px; }
  .testi-card { padding: 28px 20px; }
}

/* ── Mobile: reset directional fade to vertical only ── */
@media (max-width: 1024px) {
  .yes-col.fade-in,
  .no-col.fade-in { transform: translateY(24px); }
  .yes-col.fade-in.visible,
  .no-col.fade-in.visible { transform: translateY(0); }
}
