/* ============================================
   Spalato Consulting v2 — Brutaliste dark
   Tokens from spalatoconsulting-sanity
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --primary: #FF3D00;
  --primary-50: #FFF0EB;
  --primary-100: #FFE0D6;
  --primary-200: #FFC2AD;
  --primary-300: #FFA385;
  --primary-400: #FF855C;
  --primary-500: #FF6633;
  --primary-600: #FF3D00;
  --primary-700: #CC3100;
  --primary-800: #992500;

  --accent: #FFD600;
  --accent-50: #FFFCE6;
  --accent-300: #FFED66;
  --accent-500: #FFD600;

  --bg: #09090b;
  --surface: #111111;
  --surface-darker: #0D0D0D;
  --card: #141414;
  --border: #1f1f1f;
  --border-highlight: #2a2a2a;

  --text: #ffffff;
  --text-dim: #a1a1aa;
  --text-muted: #71717a;

  --green: #22c55e;
  --red: #ef4444;

  /* Shadows */
  --shadow-brutal: 6px 6px 0px 0px rgba(255,61,0,0.3);
  --shadow-brutal-hover: 8px 8px 0px 0px rgba(255,214,0,0.7);
  --shadow-brutal-white: 6px 6px 0px 0px rgba(255,255,255,0.1);

  /* Typography */
  --font: 'Space Grotesk', sans-serif;
  --nav-h: 81px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); overflow-x: hidden; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section--alt { background: var(--surface); }

/* --- Grid Background (fixed, full page) --- */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* --- Halos (ambient glow) --- */
.halo-field {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.halo--primary {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 61, 0, 0.5) 0%, transparent 70%);
  top: -200px; left: -200px;
  opacity: 0.3;
  animation: floatSlow 20s ease-in-out infinite;
}
.halo--accent {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.4) 0%, transparent 70%);
  top: 20%; right: -150px;
  opacity: 0.25;
  animation: floatReverse 25s ease-in-out infinite;
}
.halo--purple {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
  bottom: 25%; left: -100px;
  opacity: 0.2;
  animation: floatSlow 22s ease-in-out infinite;
}
.halo--blue {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  bottom: 10%; right: -80px;
  opacity: 0.15;
  animation: floatReverse 28s ease-in-out infinite;
}
.halo--accent-mid {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.3) 0%, transparent 70%);
  top: 55%; left: 20%;
  opacity: 0.18;
  animation: floatSlow 24s ease-in-out infinite;
}
.halo--primary-low {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(255, 61, 0, 0.35) 0%, transparent 70%);
  bottom: 40%; right: 10%;
  opacity: 0.2;
  animation: floatReverse 22s ease-in-out infinite;
}
.halo--purple-right {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  top: 70%; right: 25%;
  opacity: 0.15;
  animation: floatSlow 26s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 40px) scale(0.95); }
  75% { transform: translate(-40px, -20px) scale(1.05); }
}
@keyframes floatReverse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-40px, 30px) scale(1.05); }
  50% { transform: translate(30px, -40px) scale(1.1); }
  75% { transform: translate(20px, 20px) scale(0.9); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* --- Section labels (eyebrow with vertical bar) --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: var(--primary);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 48px;
}

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

.gradient-text {
  background: linear-gradient(90deg, #ff3d00 0%, #ff6b00 50%, #ffd600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons (brutaliste: no border-radius) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-radius: 0;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  font-size: 0.875rem;
  box-shadow: var(--shadow-brutal);
}
.btn--primary:hover {
  background: var(--primary-700);
  box-shadow: var(--shadow-brutal-hover);
  transform: translate(-2px, -2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  padding: 16px 32px;
  border: 2px solid var(--border-highlight);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-brutal);
  transform: translate(-2px, -2px);
}

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--xl { padding: 20px 48px; font-size: 1rem; }

.btn .material-symbols-outlined { font-size: 1.1em; }

/* --- Badge --- */
.badge {
  display: inline-block;
  background: rgba(255, 61, 0, 0.08);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  border: 1px solid rgba(255, 214, 0, 0.25);
  border-radius: 0;
  margin-bottom: 24px;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(9, 9, 11, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-svg {
  height: 40px;
  width: auto;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.logo-sub { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); }

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav__links a { color: var(--text-dim); transition: color 0.2s, border-color 0.2s; padding-bottom: 4px; border-bottom: 2px solid transparent; }
.nav__links a:hover { color: var(--text); border-bottom-color: var(--primary); }

.nav__toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 999;
}
.nav__mobile a { color: var(--text-dim); }
.nav__mobile a:hover { color: var(--text); }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile--open { display: flex; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero .container { max-width: 1320px; }

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__right { order: -1; text-align: center; }
}

.hero__left { max-width: 700px; }

.hero__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  padding: 32px 24px;
  position: relative;
}

.hero__photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.hero__photo-wrap::before {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 2px solid var(--accent);
  z-index: -1;
}

.hero__photo {
  width: 280px;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  border: 2px solid var(--primary);
  display: block;
}

.hero__name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero__tagline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__creds {
  list-style: none;
  text-align: left;
  width: 100%;
  border-left: 2px solid var(--primary);
  padding-left: 16px;
  margin-top: 8px;
}

.hero__creds li {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.4;
}

.hero__creds li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.75rem;
}

.hero__line {
  display: block;
  font-size: clamp(2.8rem, 6.5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero__accent {
  background: linear-gradient(90deg, #ff3d00, #ff6b00, #ffd600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  min-height: 2em;
}

/* Hero fade-in animations */
.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

.cursor {
  -webkit-text-fill-color: var(--accent);
  animation: blink 1s infinite;
  font-style: normal;
  font-weight: 400;
}

/* Scroll-triggered animations */
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contrast__card.scroll-fade:nth-child(2) { transition-delay: 0.05s; }
.contrast__card.scroll-fade:nth-child(3) { transition-delay: 0.1s; }
.contrast__card.scroll-fade:nth-child(4) { transition-delay: 0.15s; }
.contrast__card.scroll-fade:nth-child(5) { transition-delay: 0.2s; }

.services__card.scroll-fade:nth-child(2) { transition-delay: 0.1s; }
.services__card.scroll-fade:nth-child(3) { transition-delay: 0.2s; }

.process__step.scroll-fade:nth-child(2) { transition-delay: 0.1s; }
.process__step.scroll-fade:nth-child(3) { transition-delay: 0.15s; }
.process__step.scroll-fade:nth-child(4) { transition-delay: 0.2s; }

.results__card.scroll-fade:nth-child(2) { transition-delay: 0.1s; }
.results__card.scroll-fade:nth-child(3) { transition-delay: 0.2s; }

.hero__sub {
  margin: 28px 0 40px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 520px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

/* --- Proof bar --- */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.proof__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}

.proof__label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.proof__item { color: var(--text-dim); transition: color 0.2s; }
.proof__item:hover { color: var(--text); }

.proof__divider { width: 1px; height: 20px; background: var(--border-highlight); }

.proof__stat { display: flex; align-items: center; gap: 6px; }
.proof__stat .material-symbols-outlined { font-size: 1rem; color: var(--primary); }

/* --- Contrast (Problem/Solution) --- */
.contrast { padding: 100px 0; position: relative; z-index: 2; }

.contrast__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.contrast__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.contrast__header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.contrast__problem .contrast__header .material-symbols-outlined { color: var(--red); font-size: 1.8rem; }
.contrast__solution .contrast__header .material-symbols-outlined { color: var(--accent); font-size: 1.8rem; }

.contrast__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.contrast__card:hover {
  border-color: var(--border-highlight);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-white);
}

.contrast__card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.contrast__card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.5; }

.contrast__problem .contrast__card { border-left: 3px solid var(--red); }
.contrast__solution .contrast__card { border-left: 3px solid var(--accent); }

/* --- About (merged into hero) --- */

/* --- Services --- */
.services { padding: 100px 0; border-top: 1px solid var(--border); position: relative; z-index: 2; }

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

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

.services__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.services__card:hover {
  border-color: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal);
}

.services__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(255, 61, 0, 0.1);
  border: 1px solid rgba(255, 61, 0, 0.25);
  border-radius: 8px;
  margin-bottom: 20px;
}

.services__card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.services__subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.services__card p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }

.services__card ul {
  margin-bottom: 24px;
  flex: 1;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.services__card li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 6px 0 6px 20px;
  position: relative;
}
.services__card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
}

.services__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: all 0.2s;
}
.services__link:hover { color: var(--primary); gap: 12px; }
.services__link .material-symbols-outlined { font-size: 1.1rem; }

/* --- Process (staircase) --- */
.process { padding: 100px 0; border-top: 1px solid var(--border); position: relative; z-index: 2; }

.process__steps--stair {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

@media (min-width: 901px) {
  .process__steps--stair .process__step[data-step="1"] { margin-top: 0; }
  .process__steps--stair .process__step[data-step="2"] { margin-top: 40px; }
  .process__steps--stair .process__step[data-step="3"] { margin-top: 80px; }
  .process__steps--stair .process__step[data-step="4"] { margin-top: 120px; }
}

@media (max-width: 900px) {
  .process__steps--stair { grid-template-columns: 1fr; }
  .process__step { border-right: none !important; }
}

.process__step {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.process__step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-brutal);
  transform: translate(-2px, -2px);
}

.process__num {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity 0.3s;
}
.process__step:hover .process__num {
  opacity: 0.5;
}

.process__step h3 { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.process__step p { font-size: 1rem; color: var(--text-dim); font-weight: 300; line-height: 1.6; transition: opacity 0.25s ease; }
.process__step:hover p { opacity: 0; }

.process__detail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card);
  border: 2px solid var(--primary);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}
.process__step:hover .process__detail {
  opacity: 1;
  pointer-events: auto;
}

.process__detail ul {
  padding: 0;
}

.process__detail li {
  font-size: 0.95rem;
  color: var(--text-dim);
  padding: 7px 0 7px 22px;
  position: relative;
  line-height: 1.6;
}
.process__detail li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.85rem;
}

/* --- Results --- */
.results { padding: 100px 0; border-top: 1px solid var(--border); position: relative; z-index: 2; }

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

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

.results__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.2s;
}
.results__card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-white);
}

.results__icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.results__card h3 { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.results__card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }

.results__stat {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  padding: 8px 20px;
  border: 1px solid rgba(255, 214, 0, 0.3);
  border-radius: 0;
}

/* --- Testimonials --- */
.testimonials { padding: 100px 0; border-top: 1px solid var(--border); position: relative; z-index: 2; }

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

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

.testimonials__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 28px;
}

.testimonials__card .material-symbols-outlined { font-size: 2rem; color: var(--primary); opacity: 0.5; margin-bottom: 16px; }
.testimonials__quote { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonials__author h4 { font-size: 0.9rem; font-weight: 700; }
.testimonials__author span { font-size: 0.8rem; color: var(--text-muted); }

/* --- Speaker --- */
.speaker { padding: 80px 0; border-top: 1px solid var(--border); position: relative; z-index: 2; }

.speaker__grid { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }

.speaker__item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dim);
  padding: 16px 32px;
  border: 1px solid var(--border);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.speaker__item:hover {
  color: var(--text);
  border-color: var(--primary);
  box-shadow: var(--shadow-brutal);
  transform: translate(-2px, -2px);
}

/* --- AI Creative (hero placement) --- */
.creative--hero {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
  background: var(--surface-darker);
}

.creative--hero .container { max-width: 1440px; }

.creative--hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}

.creative__reel--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.creative__video--lg {
  width: 100%;
  max-width: none;
}

.creative__reel-sub {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* --- AI Creative --- */
.creative { padding: 100px 0; border-top: 1px solid var(--border); position: relative; z-index: 2; }

.creative__header { margin-bottom: 48px; }

.creative__reel { margin-top: 16px; text-align: center; }

.creative__reel-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-dim);
}

.creative__video {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-brutal);
  margin: 0 auto;
  display: block;
}

.creative__cta { margin-top: 32px; }

/* --- YouTube --- */
.youtube { padding: 100px 0; border-top: 1px solid var(--border); text-align: center; position: relative; z-index: 2; }

.youtube__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 40px;
}

.youtube__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 24px 48px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.youtube__btn:hover {
  background: var(--primary-700);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-hover);
}
.youtube__btn .material-symbols-outlined {
  font-size: 1.4rem;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 4px;
}

/* --- FAQ --- */
.faq { padding: 100px 0; border-top: 1px solid var(--border); position: relative; z-index: 2; }

.faq__container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

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

.faq__list { border: 2px solid var(--border); }

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item--last { border-bottom: none; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 36px;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  background: var(--card);
  border: none;
  transition: background-color 0.3s;
}
.faq__q:hover { background: var(--surface); }

.faq__icon {
  font-size: 1.8rem;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item.open .faq__a { max-height: 500px; }

.faq__a-inner {
  padding: 0 36px 30px;
  font-size: 1.15rem;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.8;
}

/* --- CTA --- */
.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--primary);
  border-top: none;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn--primary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}
.cta .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.15);
  transform: translate(-2px, -2px);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 60px;
  padding-bottom: 24px;
  position: relative;
  z-index: 2;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 32px; } }

.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand .material-symbols-outlined { color: var(--primary); font-size: 1.5rem; }
.footer__name { font-size: 1.2rem; font-weight: 700; }
.footer__brand p { color: var(--text-dim); font-size: 0.88rem; max-width: 300px; }

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 0.88rem; color: var(--text-dim); transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--text-muted); transition: color 0.2s; }
.footer__legal a:hover { color: var(--text-dim); }

@media (max-width: 480px) {
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
