/* ============================================================
   SAVAGE MEDIA — PORTFOLIO STYLESHEET
   Dark cinematic aesthetic. Bebas Neue headlines. Barlow body.
   ============================================================ */

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

:root {
  /* Core palette */
  --black:        #080808;
  --deep:         #0e0e0e;
  --surface:      #141414;
  --surface-2:    #1c1c1c;
  --border:       rgba(255,255,255,0.07);
  --border-hi:    rgba(255,255,255,0.14);

  /* Accent — electric amber/gold */
  --accent:       #e8a020;
  --accent-dim:   #b37a10;
  --accent-glow:  rgba(232,160,32,0.15);

  /* Text */
  --text-primary:   #f0ede6;
  --text-secondary: #8a887f;
  --text-muted:     #4a4843;

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

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

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

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

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

ul { list-style: none; }

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

.section {
  padding: 120px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

#nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 36px;
  width: auto;
}

.logo-fallback {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent);
  color: #000 !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
}

.mobile-link {
  display: block;
  padding: 18px 24px;
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 50vh;
  max-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(232,160,32,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(80,40,10,0.12) 0%, transparent 60%),
    var(--black);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 8px) 24px 16px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.hero-headline .accent {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
  /* Optional outlined effect: */
  /* color: transparent; */
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  display: none;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  padding: 24px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ── WORK / REEL ─────────────────────────────────────────── */
.work-section { background: var(--black); }

.reel-hero {
  margin-bottom: 64px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reel-label {
  margin-top: 12px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}

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

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }

.thumb-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.thumb-missing .thumb-placeholder { display: flex; }
.thumb-missing img { display: none !important; }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.play-btn svg {
  width: 48px;
  height: 48px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s;
}
.video-card:hover .play-btn { background: rgba(0,0,0,0.35); }
.video-card:hover .play-btn svg { opacity: 1; transform: scale(1); }

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

.video-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.video-title {
  font-family: var(--font-cond);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.video-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}

.video-stat {
  margin-top: 10px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ── ANALYTICS STRIP ─────────────────────────────────────── */
.analytics-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 56px;
}

.analytics-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.analytics-copy h3 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.analytics-copy p {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

.analytics-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.analytics-screen {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
}
.analytics-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.analytics-screen-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.analytics-screen img:not([src=""]):not([src*="placeholder"]) + .analytics-screen-placeholder { display: none; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about-media {
  position: relative;
}

.about-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px dashed var(--border-hi);
}
.about-photo-wrap:not(:has(img[src*="james"])) .about-photo-placeholder { display: flex; }

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 42px;
  color: #000;
  line-height: 1;
}

.badge-text {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  line-height: 1.2;
  padding: 0 8px;
}

.about-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-body strong {
  color: var(--text-primary);
  font-weight: 500;
}

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

.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-hi);
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}
.platform-pill:hover { border-color: var(--accent); color: var(--accent); }
.platform-pill svg { width: 16px; height: 16px; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-section { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}

.service-card {
  background: var(--surface);
  padding: 48px 44px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.service-card:hover { border-color: var(--border-hi); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.services-cta {
  text-align: center;
  padding: 48px;
  border: 1px solid var(--border);
}
.services-cta p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 300;
}

/* ── BRANDS ──────────────────────────────────────────────── */
.brands-section {
  padding: 24px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.brands-carousel {
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: brandScroll 40s linear infinite;
  width: max-content;
}

.brands-track:hover {
  animation-play-state: running;
}

.brands-track img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  min-height: 120px;
  transition: background 0.3s;
}
.brand-logo-cell:last-child { border-right: none; }
.brand-logo-cell:hover { background: var(--surface-2); }

.brand-logo-cell img {
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0.6);
  transition: filter 0.3s;
}
.brand-logo-cell:hover img { filter: brightness(0) invert(1); }

.brand-name-fallback {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: none;
}
.brand-placeholder-cell .brand-name-fallback { display: block; }

.niche-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.niche-tag {
  padding: 8px 18px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: default;
  transition: all 0.2s;
}
.niche-tag.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { background: var(--black); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  margin-bottom: 40px;
}
.calendly-btn svg { width: 18px; height: 18px; }
.calendly-btn:hover {
  background: var(--accent);
  color: #000;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.contact-detail-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  color: var(--text-primary);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a887f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group option { background: var(--surface); }

textarea { resize: vertical; min-height: 100px; }

.form-submit {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 64px 32px;
  border: 1px solid var(--border);
}
.form-success svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 16px; display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 36px; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); }

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img { height: 28px; }

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

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-links svg { width: 20px; height: 20px; display: block; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4),
  .stat-item:nth-child(5) { border-top: 1px solid var(--border); }

  .analytics-inner { grid-template-columns: 1fr; gap: 40px; }
  .analytics-screens { grid-template-columns: repeat(3, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 380px; }

  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logo-cell:nth-child(3) { border-right: none; }
  .brand-logo-cell:nth-child(n+4) { border-top: 1px solid var(--border); }

  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

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

  .hero-headline { font-size: clamp(56px, 16vw, 100px); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(5) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }

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

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

  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo-cell:nth-child(even) { border-right: none; }
  .brand-logo-cell:nth-child(n+3) { border-top: 1px solid var(--border); }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { justify-content: center; text-align: center; }

  .analytics-strip { padding: 36px 24px; }

  .about-badge { right: 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .video-grid { gap: 16px; }
  .service-card { padding: 32px 24px; }
}
