/*
Theme Name: VideoPartners
Description: High-End Custom Theme for Video Production Agency. Dark aesthetic, smooth transitions, and native custom fields.
Author: Antigravity
Version: 1.0
*/

/* ===========================
   Variables
   =========================== */
:root {
  --color-bg: #000000;
  --color-bg-alt: #111111;
  --color-text: #ffffff;
  --color-text-muted: #aaaaaa;
  --color-accent: #c0c0c0;
  --font-family-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-height: 80px;
  --space-x: 1.25rem;
  --container-max: 1200px;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-accent);
}

/* Mobile-first typography — fluid scaling prevents overflow on small screens */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75em;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.5rem, 8vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow-wrap: break-word;
  word-break: break-word;
}
h2 {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  text-transform: none;
  font-weight: 700;
  margin-top: 2em;
}
h2:first-child,
h2:first-of-type:not(:nth-child(n+2)) {
  margin-top: 0;
}
h3 { font-size: clamp(1.15rem, 4vw, 1.5rem); }

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   Layout Utilities (Mobile-first)
   =========================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  padding-left: clamp(1rem, 5vw, var(--space-x));
  padding-right: clamp(1rem, 5vw, var(--space-x));
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.container--narrow {
  max-width: 800px;
}

.pt-0 { padding-top: 0 !important; }
.text-center { text-align: center; }

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Fallback: make visible after 1s even if JS doesn't fire */
  animation: reveal-fallback 0s 1s forwards;
}

@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* ===========================
   Header (Mobile-first)
   =========================== */
.vp-header {
  position: absolute; /* Reverted to absolute as requested */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 1.5rem;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.vp-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 var(--space-x);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Logo */
.vp-header__logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.vp-header__logo a,
.vp-header__logo a.custom-logo-link {
  display: flex;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  color: inherit;
}
.vp-header__logo img {
  height: 28px;
  width: auto;
  display: block;
}
.vp-header__site-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
}

/* Nav — mobile overlay by default */
.vp-header__nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
  z-index: 1050;
}
.vp-header__nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vp-header__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.vp-header__nav ul li {
  position: relative;
}
.vp-header__nav ul li a {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.2s ease;
}
.vp-header__nav ul li a:hover {
  color: var(--color-accent);
}

/* Dropdowns — stacked on mobile */
.vp-header__nav ul li ul.sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  background: transparent;
  border: none;
  padding: 0.5rem 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vp-header__nav ul li ul.sub-menu li {
  width: 100%;
}
.vp-header__nav ul ul.sub-menu a {
  font-size: 0.9rem;
  padding: 0.6rem 0;
  opacity: 0.7;
}
.vp-header__nav ul ul.sub-menu a:hover {
  opacity: 1;
}

/* Right actions */
.vp-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.vp-header__cta {
  display: none !important; /* Hidden on mobile by default */
}
.btn--small {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
}

/* Mobile Nav Actions (inside overlay) */
.vp-header__nav-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.vp-header__nav-cta {
  display: inline-block;
}

/* Hamburger — visible on mobile */
.vp-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.vp-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.vp-header__hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.vp-header__hamburger.active span:nth-child(2) { opacity: 0; }
.vp-header__hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Page Transitions */
main {
  transition: opacity 0.4s ease-in-out;
}
main.fade-out { opacity: 0; }
main.fade-in  { opacity: 1; }

/* ===========================
   Hero
   =========================== */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-video-bg video,
.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}

/* Ensure full brightness in fullscreen */
.hero-video-bg video:fullscreen,
.hero-video-bg video:-webkit-full-screen,
.hero-video-bg video:-moz-full-screen,
.hero-video-bg video:-ms-fullscreen,
.hero-video-bg img:fullscreen,
.hero-video-bg img:-webkit-full-screen,
.hero-video-bg img:-moz-full-screen,
.hero-video-bg img:-ms-fullscreen {
  opacity: 1 !important;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 115vh;
  min-width: 200vh;
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
  pointer-events: none;
  animation: hero-subtle-zoom 20s infinite alternate;
  transition: opacity 0.3s ease;
}

.hero-video-bg iframe:fullscreen,
.hero-video-bg iframe:-webkit-full-screen,
.hero-video-bg iframe:-moz-full-screen,
.hero-video-bg iframe:-ms-fullscreen {
  opacity: 1 !important;
}

@keyframes hero-subtle-zoom {
  from { transform: translate(-50%, -50%) scale(1.15); }
  to   { transform: translate(-50%, -50%) scale(1.22); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.65rem, 11vw, 6.5rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 400;
  color: var(--color-accent);
}

.play-fullscreen-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}
.play-fullscreen-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* ===========================
   Page / Section Elements
   =========================== */
.page-title {
  font-size: clamp(2rem, 8vw, 3rem);
}
.page-header,
.service-header {
  padding-top: calc(var(--header-height) + 3rem);
}
.section-heading {
  margin-bottom: 0.75rem;
}
.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 60ch;
}

/* ===========================
   Grids (Mobile-first, single column)
   =========================== */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.case-gallery-grid {
  column-count: 1;
  column-gap: 1.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ===========================
   Case Cards
   =========================== */
.case-card {
  display: block;
  background: var(--color-bg-alt);
  border-radius: 4px;
  overflow: hidden;
}
.case-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #222;
  overflow: hidden;
}
.case-media img,
.case-media video,
.case-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.case-media video,
.case-media iframe { opacity: 0; border: none; }
.case-card:hover .case-media video,
.case-card:hover .case-media iframe { opacity: 1; }

.case-info { padding: 1.5rem; }
.case-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.case-client {
  color: var(--color-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===========================
   Single Case V2
   =========================== */
.case-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .case-v2-grid {
    grid-template-columns: 1fr 300px;
  }
}

.case-v2-main {
  max-width: 800px;
}

.case-v2-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 3rem;
  display: inline-block;
}

.case-v2-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
}

.case-v2-content > * {
  margin-left: 0 !important;
  padding-left: 0 !important;
  max-width: 100%;
}

.case-v2-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.case-v2-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 900px) {
  .case-v2-sidebar {
    padding-top: 0;
    border-top: none;
    position: sticky;
    top: 5rem;
  }
}

.case-v2-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.case-v2-meta-value {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

.case-v2-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-v2-tag {
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
}

/* Staggered Gallery */
.case-v2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.case-v2-gallery-item {
  overflow: hidden;
  border-radius: 4px;
}

.case-v2-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.case-v2-gallery-item:hover img {
  transform: scale(1.05);
}

/* Mobile: single column, images show at natural ratio */
.case-v2-gallery-item {
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .case-v2-gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 2rem;
  }

  .gallery-item--small {
    grid-column: span 3;
    aspect-ratio: 4 / 3;
  }

  .gallery-item--large {
    grid-column: span 6;
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 1024px) {
  .gallery-item--small {
    grid-column: span 2;
    aspect-ratio: 3 / 4; /* portrait-friendly for vertical shots */
  }

  .gallery-item--large {
    grid-column: span 4;
    aspect-ratio: 16 / 9;
  }
}


/* ===========================
   Forms
   =========================== */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 1rem;
  background: var(--color-bg-alt);
  border: 1px solid #333;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ===========================
   Buttons
   =========================== */
.btn, .button {
  display: inline-block;
  background: var(--color-text);
  color: var(--color-bg);
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover, .button:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

/* ===========================
   Subscription / Service
   =========================== */
.subs-price {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 1rem 0 0.5rem;
}
.subs-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0;
}
.subs-timeline {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.subs-features {
  list-style: none;
  margin: 2rem 0;
}
.subs-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.subs-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}
.subs-cta-box,
.quote-box {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #333;
}
.custom-quote-cta {
  padding-top: 3rem;
}

/* ===========================
   Footer (Mobile-first)
   =========================== */
.vp-footer {
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}
.vp-footer__inner {
  padding: 0 var(--space-x);
  margin: 0 auto;
  max-width: var(--container-max);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.vp-footer__breadcrumbs {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}
.vp-footer__breadcrumbs a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.vp-footer__breadcrumbs a:hover {
  color: var(--color-accent);
}
.vp-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.vp-footer__brand {
  max-width: 100%;
}
.vp-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}
.vp-footer__site-name {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.vp-footer__tagline {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.vp-footer__brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 0.2rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.vp-footer__brand-cta:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.vp-footer__brand-cta span { transition: transform 0.3s ease; }
.vp-footer__brand-cta:hover span { transform: translateX(4px); }

.vp-footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.vp-footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.vp-footer__nav a {
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.25s ease;
  position: relative;
  display: inline-block;
}
.vp-footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.vp-footer__nav a:hover { color: var(--color-accent); }
.vp-footer__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.vp-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.vp-footer__link {
  font-size: 0.95rem;
  position: relative;
}
.vp-footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.vp-footer__link:hover::after { transform: scaleX(1); transform-origin: left; }

.vp-footer__socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.vp-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.vp-footer__socials a:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-3px);
}

.vp-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.vp-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.vp-footer__legal-links a { color: var(--color-text-muted); }
.vp-footer__legal-links a:hover { color: var(--color-text); }
.vp-footer__sep { opacity: 0.5; }

.vp-footer__back-to-top {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  align-self: flex-start;
}
.vp-footer__back-to-top:hover {
  color: var(--color-text);
  transform: translateY(-2px);
}

/* ===========================
   Media Queries — min-width
   =========================== */

/* Tablet & Up (768px+) */
@media (min-width: 768px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 2rem; }

  .hero-subtitle { font-size: 1.5rem; }
  .page-title   { font-size: 4rem; }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .section { padding: 8rem 0; }

  .cases-grid         { grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); }
  .two-col-grid       { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .case-gallery-grid  { column-count: 2; }

  .subs-cta-box,
  .quote-box          { padding: 3rem; }

  .vp-footer          { padding: 5rem 0 2rem; }
  .vp-footer__inner   { padding-left: 2rem; padding-right: 2rem; }
}

/* Desktop Header + Footer (900px+) */
@media (min-width: 900px) {
  .vp-header__inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 2rem;
  }

  /* Switch nav from full-screen overlay to inline */
  .vp-header__nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .vp-header__nav ul {
    flex-direction: row;
    gap: 2.5rem;
  }
  .vp-header__nav ul li a {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  /* Dropdown menus */
  .vp-header__nav ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    padding: 0.75rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  /* Bridge to prevent "dead zone" between parent and dropdown */
  .vp-header__nav ul li ul.sub-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
  }

  .vp-header__nav ul li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .vp-header__nav ul ul.sub-menu a {
    display: block;
    padding: 0.55rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .vp-header__cta       { display: inline-flex !important; }
  .vp-header__hamburger { display: none; }
  .vp-header__nav-cta   { display: none !important; } /* Hide the mobile menu clone on desktop */

  /* Footer multi-column */
  .vp-footer__top    { grid-template-columns: 2fr 1fr 1fr; }
  .vp-footer__brand  { max-width: 380px; }
  .vp-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .vp-footer__back-to-top { align-self: center; }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
  .case-gallery-grid { column-count: 3; }
}
/* ===========================
   Explore Showcase (archive-case)
   =========================== */
.explore-showcase {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  background: var(--color-bg);
}

.showcase-item {
  position: relative;
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.showcase-item__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.showcase-item__bg video,
.showcase-item__bg iframe,
.showcase-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.08); /* Start slightly zoomed in */
  transition: transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.5s ease;
  will-change: transform, opacity;
}

/* Active State Animation for Background */
.showcase-item.is-active .showcase-item__bg video,
.showcase-item.is-active .showcase-item__bg iframe,
.showcase-item.is-active .showcase-item__image {
  transform: scale(1); /* Zoom out */
  opacity: 0.6; /* Brighten up */
}

.showcase-item__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.showcase-item__details {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.showcase-item__client {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-item__title {
  font-size: clamp(2.5rem, 10vw, 5rem);
  margin-bottom: 2.5rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-item__link {
  display: inline-block;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Active State Stagger Animations for Text */
.showcase-item.is-active .showcase-item__client {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.showcase-item.is-active .showcase-item__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.showcase-item.is-active .showcase-item__link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* ===========================
   Contact Page
   =========================== */
.contact-hero {
  background: var(--color-bg);
}

.contact-hero .hero-content {
  text-align: left;
}

.contact-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.contact-hero__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  opacity: 0.9;
}

.contact-hero__title {
  font-size: clamp(2.2rem, 10vw, 6.5rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-hero__title .text-accent {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-accent);
}

.form-status {
  margin-bottom: 2rem;
  font-weight: 600;
}

.form-status .success {
  color: var(--color-accent);
  background: rgba(163, 255, 0, 0.1);
  padding: 1rem;
  border-radius: 4px;
}

.form-status .error {
  color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
  padding: 1rem;
  border-radius: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
  }
}

.contact-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  max-width: 450px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-method {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-method__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.contact-method__link {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
}

.contact-socials {
  display: flex;
  gap: 1.5rem;
}

.contact-socials a {
  font-size: 1rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
}

.contact-socials a:hover {
  color: #fff;
  border-color: #fff;
}

/* Contact Form */
.vp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 540px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-accent);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 1.25rem;
  font-size: 1rem;
}

/* ===========================
   Video Optimization for Small Devices
   =========================== */
.showcase-item__bg,
.hero-video-bg {
  pointer-events: none; /* Prevent accidental interaction */
}

/* Mobile poster: replaces unplayable iframe on iOS/Android */
.hero-video-mobile-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  /* For full-screen vertical experience on mobile,
     iframes need to be scaled up to ensure coverage without black bars */
  .showcase-item__bg iframe,
  .hero-video-bg iframe {
    width: 300%;
    height: 100%;
    margin-left: -100%;
    object-fit: cover;
  }
}

.showcase-item--footer {
  height: auto;
  min-height: 50vh;
  display: block;
}

.showcase-item--footer .vp-footer {
  display: block;
  padding-top: 6rem;
}

/* ===========================
   Front Page Optimizations
   =========================== */
/* ===========================
   Front Page: About Us (Header-Aligned)
   =========================== */
.about-section {
  padding: 5rem 0;
  background: var(--color-bg);
}

.about-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-section__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  opacity: 0.8;
}

.about-section__heading {
  font-size: clamp(2.2rem, 10vw, 6.5rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
  color: #fff;
  text-transform: uppercase;
  max-width: 14ch;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.about-section__heading .text-accent {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-accent);
}

.about-section__content p {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  max-width: 45ch;
  margin: 2rem 0 0;
}

.service-pitch__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.service-related .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 2rem;
}

.section-subheading {
  font-size: 1rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-client-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.case-info {
  padding: 1.5rem;
}

.case-title {
  font-size: 1.25rem;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0;
}

.section-footer {
  margin-top: 4rem;
  text-align: center;
}

.btn--accent {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}

/* ===========================
   Process Section
   =========================== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.process-step {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .about-section { padding: 10rem 0; }
}

.process-step__number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  font-feature-settings: "tnum";
}

.process-step__title {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.process-step__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===========================
   Values / Why Us Section
   =========================== */
.why-us-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

@media (min-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item__icon {
  color: var(--color-accent);
}

.value-item__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.value-item__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ===========================
   Featured Service Section
   =========================== */
.featured-service-section {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background-image: var(--svc-bg, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.featured-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3));
  z-index: 1;
}

.featured-service-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.featured-service-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.featured-service-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.featured-service-excerpt {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: var(--color-accent, #e8c87a);
}

.cta-section__inner {
  text-align: center;
  padding: 4rem 0;
}

.cta-section__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cta-section__sub {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.65);
  margin-bottom: 3rem;
}

.cta-section__btn {
  background: #000;
  color: #fff;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

.cta-section__btn:hover {
  background: #111;
  transform: translateY(-2px);
}

/* ===========================
   Single Service Page
   =========================== */

/* Hero and Actions */
.hero-static-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Body Grid */
.service-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 960px) {
  .service-body__grid {
    grid-template-columns: 1fr 380px;
    gap: 6rem;
  }
}

/* Main Content Prose */
.service-prose {
  margin-bottom: 4rem;
}

.service-read-more {
  position: relative;
  max-height: 250px; /* Equivalent to roughly 200-300 chars + headings */
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-read-more.is-expanded {
  max-height: 5000px; /* Large enough to show all content */
}

.service-read-more__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-read-more.is-expanded .service-read-more__overlay {
  opacity: 0;
}

.service-read-more__trigger {
  margin-top: 1.5rem;
  background: none;
  border: none;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-read-more__trigger:hover {
  gap: 0.8rem;
}

.service-read-more__trigger::after {
  content: '→';
} 

.service-prose h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/* Features List */
.service-features__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.service-features__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-features__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-features__item::before {
  content: '→';
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Sidebar CTA Card */
.service-sidebar {
  position: sticky;
  top: 3rem;
}

.service-cta-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.service-cta-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-cta-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.service-cta-card__period {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.service-cta-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-cta-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.service-cta-card__timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-cta-card__timeline-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.service-cta-card__timeline-value {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

/* CTA Form inside the card */
.service-cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* Related Cases */
.cases-grid--three {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cases-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ===========================
   Modals (Custom Quote)
   =========================== */
.vp-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.vp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.vp-modal__panel {
  position: relative;
  z-index: 2;
  background: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 95%;
  max-width: 540px;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2.5rem 2.25rem 2.25rem;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vp-modal.is-active .vp-modal__panel {
  transform: translateY(0);
}

.vp-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.vp-modal__close {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.vp-modal__close:hover {
  background: var(--color-accent);
  color: #000;
  transform: rotate(90deg);
}

.vp-modal__title {
  font-size: 1.75rem;
  margin-bottom: 0;
}

.vp-modal__desc {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.vp-modal__meta {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.vp-modal__form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .vp-modal__form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.vp-modal__form .form-group {
  gap: 0.4rem;
}

.vp-modal__form textarea {
  min-height: 100px;
}

.vp-modal__panel {
  max-width: 540px;
}

/* ===========================
   Streamers (Marquees)
   =========================== */
.streamer-section {
  position: relative;
  background: var(--color-bg);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.streamer-section--accent {
  background: var(--color-bg-alt);
  border: none;
  padding: 2.5rem 0;
}

.streamer-container {
  display: flex;
  flex-direction: column; /* Stack rows */
  gap: 2rem; /* Space between rows */
  position: relative;
  padding: 2rem 0;
}

.streamer-container:hover .streamer-track {
  animation-play-state: paused;
}

/* Edge Fading Mask */
.streamer-container::before,
.streamer-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  z-index: 2;
  pointer-events: none;
}

.streamer-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.streamer-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.streamer-section--accent .streamer-container::before {
  background: linear-gradient(to right, var(--color-bg-alt), transparent);
}
.streamer-section--accent .streamer-container::after {
  background: linear-gradient(to left, var(--color-bg-alt), transparent);
}

.streamer-track {
  display: flex;
  align-items: center;
  animation: streamer-scroll 300s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.logo-track-slow {
  display: flex;
  align-items: center;
  animation: streamer-scroll 300s linear infinite !important;
  white-space: nowrap;
  width: max-content;
}

.logo-track-slow .streamer-item {
  margin-right: 4rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.logo-track-slow .streamer-item:hover {
  opacity: 0.6;
}

.streamer-track--reverse {
  animation-direction: reverse;
  animation-duration: 600s;
}

.streamer-item {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8); /* Higher contrast */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  user-select: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-right: 4rem; /* Use margin instead of gap for easier math */
}

/* Removed .streamer-item:hover visual effects */

.streamer-item--large {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.3s ease; /* Simplified transition */
  text-decoration: none; /* Ensure no underlines for <a> tags */
}

.streamer-item--solid {
  color: rgba(255, 255, 255, 0.9); /* Max visibility base */
}

.streamer-item--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7); /* Max visibility base */
}

.streamer-dot {
  font-size: 2.5rem; /* Slightly smaller for slash */
  font-weight: 300;
  color: var(--color-accent);
  opacity: 1;
  margin-right: 4rem;
}

.streamer-dot--outline {
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-accent);
  opacity: 0.9;
  margin-right: 4rem;
}

.streamer-container:hover .streamer-item--solid {
  color: #ffffff; /* pure white on hover */
}

.streamer-container:hover .streamer-item--outline {
  -webkit-text-stroke: 1px #ffffff; /* pure white on hover */
}
/* Removed complex item-specific hover state (skew/scale/color) */

@keyframes streamer-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33333333%); } /* Perfect 1/3 of the track */
}

/* --- Vertical Video Streamer (Updated for Manual Scroll) --- */
.video-card-streamer {
  padding: 4rem 0;
  background: var(--color-bg);
  position: relative;
  display: flex;
  flex-direction: column;
}

.streamer-steps {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 100;
}

.streamer-step {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.streamer-step:hover {
  border-color: #fff;
  transform: scale(1.2);
}

.streamer-step.active {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
  .streamer-steps {
    display: none; /* Hide on mobile/tablets to avoid clutter */
  }
}

.streamer-controls {
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-end;
}

.streamer-nav {
  display: flex;
  gap: 1rem;
}

.streamer-nav--center {
  justify-content: center;
  margin-top: 1.5rem;
}

.streamer-nav--right {
  justify-content: flex-end;
}

.streamer-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.streamer-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: scale(1.05);
}

.streamer-container {
  width: 100%;
  overflow: hidden;
}

.video-card-streamer .streamer-container--scrollable::before,
.video-card-streamer .streamer-container--scrollable::after {
  display: none; /* suppress marquee edge-fades on the scrollable carousel */
}

.video-card-streamer .streamer-container--scrollable {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--space-x); /* Container padding instead of track */
  scroll-padding-left: var(--space-x); /* Ensures cards snap to the padding edge */
}

.video-card-streamer .streamer-container--scrollable::-webkit-scrollbar {
  display: none;
}

.video-card-track {
  display: flex;
  align-items: center;
  padding: 0; /* Removed track padding */
  width: max-content;
}

.video-card {
  position: relative;
  flex: 0 0 calc(280px + (100vw - 1200px) * 0.05);
  max-width: 320px;
  aspect-ratio: 9/16;
  margin-right: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
  display: block;
  scroll-snap-align: start;
  user-select: none;
  -webkit-user-drag: none;
  scroll-snap-align: none;
}

@media (max-width: 1200px) {
  .video-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .streamer-controls {
    display: none; /* Hide buttons on mobile, use swipe */
  }
  .video-card {
    flex: 0 0 200px;
    margin-right: 1rem;
  }
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-card:hover img {
  transform: none;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

.video-card:hover .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
  .video-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

.video-card__play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 6px;
}

.video-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2rem 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  z-index: 1;
}

.video-card__client {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-card__client {
  opacity: 1;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
  filter: brightness(0.7);
}

.mosaic-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* UI Elements from Reference */
.mosaic-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mosaic-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 4px;
}

.mosaic-item:hover .mosaic-play {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.mosaic-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .mosaic-item--tall,
  .mosaic-item--large,
  .mosaic-item--square,
  .mosaic-item--standard {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 16/9;
  }
}

/* --- Video Lightbox --- */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-lightbox.is-active {
  opacity: 1;
}

.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.video-lightbox__content {
  position: relative;
  width: 90vw;
  max-width: 1400px;
  height: 80vh;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-lightbox.is-active .video-lightbox__content {
  transform: scale(1);
}

.video-lightbox.is-closing {
  opacity: 0;
}

.video-lightbox.is-closing .video-lightbox__content {
  transform: scale(0.9);
}

.video-lightbox__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.video-lightbox__video {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-lightbox__close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-lightbox__close:hover {
  transform: rotate(90deg);
}

.video-lightbox__footer {
  padding: 1.5rem 2rem;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.video-lightbox__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .video-lightbox__content {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .video-lightbox__inner {
    border-radius: 0;
  }
  .video-lightbox__close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    z-index: 10;
  }
}


.service-streamer__label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 3rem;
  display: block;
}

/* ========== Service Carousel ========== */
.service-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0 5rem;
}

.service-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 0 max(2rem, (100vw - 1200px) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar for clean look */
  -ms-overflow-style: none;
}

.service-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 400px;
  max-width: 85vw;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  background: var(--color-surface-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.carousel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  z-index: 2;
  opacity: 0.8;
}

.carousel-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 3;
}

.carousel-card__client {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 360px;
  }
}

@media (max-width: 768px) {
  .service-carousel-wrapper {
    padding: 1rem 0 3rem;
  }
  
  .service-carousel {
    gap: 1rem;
    padding: 0 1.5rem;
  }
  
  .carousel-card {
    flex: 0 0 280px;
    border-radius: 12px;
  }
  
  .carousel-card__info {
    padding: 1rem;
  }
  
  .carousel-card__client {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    flex: 0 0 260px;
  }
}
.flow-hero {
  margin-bottom: 0;
}

.flow-hero .hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.flow-hero .hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.flow-hero .hero-scroll:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(5px);
}

.flow-hero .hero-scroll svg {
  animation: flow-bounce 2s infinite;
}

@keyframes flow-bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn--accent {
  background: #fff;
  color: #000;
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Cinematic Pricing Section */
/* Flow Pricing Design (Card-Based) */
.flow-pricing {
  padding: 10rem 0;
  background: var(--color-bg);
}

.flow-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .flow-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    gap: 2.5rem;
  }
}

.flow-card {
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flow-card--featured {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
  .flow-card--featured {
    transform: scale(1.05);
    z-index: 2;
  }
}

.flow-card__header {
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 2rem;
}

.flow-card__plan {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
}

.flow-card__price {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  letter-spacing: -0.04em;
}

.price-sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0;
}

.flow-card__lead {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin: 1.5rem 0 0;
}

.flow-card__body {
  flex-grow: 1;
}

.flow-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-card__features li {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  letter-spacing: -0.01em;
}

.flow-card__features .arrow {
  color: #fff;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.flow-card:hover .arrow {
  transform: translateX(5px);
}

.flow-card__footer {
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
}

.flow-card__footer .btn {
  flex: 1;
  border-radius: 100px;
  padding: 1.25rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.flow-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.02);
}

/* Rebranding Updates for Hero/Intro */
.flow-intro-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 3rem;
}

.flow-intro-lead {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 auto;
}

.flow-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

.pricing-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.pricing-card__desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.pricing-card__price {
  margin-bottom: 3rem;
}

.price-val {
  font-size: 2.5rem;
  font-weight: 800;
}

.price-period {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features li::before {
  content: "✓";
  color: var(--color-accent);
  margin-right: 1rem;
  font-weight: 400;
}

/* Benefits Section */
.benefit-item {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.benefit-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.cod-image-display {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}

.cod-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cod-glass-box {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 60%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  z-index: 2;
  transform: translateY(-50%);
}

.glass-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* FAQ Accordion */
.faq-accordion {
  margin-top: 4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-trigger {
  width: 100%;
  padding: 2rem 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon::before {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.active .faq-icon::before {
  content: "-";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 2rem;
}

.faq-content p {
  color: var(--color-text-muted);
}

/* Final CTA */
.cod-cta {
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.02));
  padding-bottom: 4rem;
}

.cta-title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .pricing-card--featured {
    transform: none;
    order: -1;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .cod-glass-box {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }
}

.benefit-item {
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-item:hover .benefit-icon {
  background: var(--color-accent);
  color: var(--color-bg);
  transform: scale(1.1);
}

.benefit-icon {
  transition: all 0.3s ease;
}

.cod-hero {
  margin-bottom: 0;
}

.logo-streamer.streamer-section--accent {
  background: var(--color-bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===========================
   About Page: Stunning & Wild (Header-Aligned)
   =========================== */
.about-wild-page {
  background: var(--color-bg);
  color: #fff;
  overflow-x: hidden;
}

/* Wild Hero */
.about-hero-wild {
  position: relative;
  height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay-wild {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, transparent 70%),
              radial-gradient(circle at bottom right, rgba(163, 255, 0, 0.04) 0%, transparent 60%);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.about-hero-wild__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 2rem;
  display: block;
  opacity: 0.9;
}

.about-hero-wild__title {
  font-size: clamp(2.5rem, 12vw, 7.5rem);
  line-height: 0.85;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  overflow-wrap: break-word;
  word-break: break-word;
}

.about-hero-wild__title span {
  display: block;
}

.line-2 {
  margin-left: 0; /* Aligned with header now */
}

.text-accent-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-accent);
}

/* Manifesto Section */
.about-manifesto {
  padding: 5rem 0;
}

.manifesto-huge {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 4rem;
  max-width: 16ch;
  color: rgba(255,255,255,0.4);
}

.manifesto-huge .text-white {
  color: #fff;
}

.manifesto-content p {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  max-width: 45ch;
  margin: 0;
}

/* Team Section */
.about-team {
  padding: 5rem 0;
  background: #050505;
}

.section-title-wild {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

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

.team-card {
  position: relative;
}

.team-card__image {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: grayscale(100%);
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-card__name {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.team-card__role {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  opacity: 0.8;
}

/* Method Section (Linear for Alignment) */
.about-method {
  padding: 5rem 0;
}

.method-linear-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.method-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.method-number {
  font-size: 0.85rem;
  font-weight: 950;
  color: var(--color-accent);
  opacity: 0.6;
}

.method-title {
  font-size: 2.5rem;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.method-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  max-width: 40ch;
}

/* Wild CTA */
.about-wild-cta {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .about-manifesto { padding: 12rem 0; }
  .about-team { padding: 10rem 0; }
  .about-method { padding: 12rem 0; }
  .about-wild-cta { padding: 15rem 0; }
}

.cta-wild-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 4rem;
}

.btn-wild {
  display: inline-block;
  background: var(--color-accent);
  color: #000;
  padding: 2rem 5rem;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-wild:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 60px rgba(163, 255, 0, 0.3);
}

/* Video Showcase Section */
.about-video-showcase {
  padding: 5rem 0 6rem;
}

.video-container-wild {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 40px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-container-wild:hover {
  transform: scale(1.02);
}

.video-wrapper-wild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper-wild iframe {
  width: 115%;
  height: 115% !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover !important;
}

/* ===========================
   Services Showcase (Alternating Layout)
   =========================== */
.services-showcase {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

@media (min-width: 1024px) {
    .services-showcase {
        gap: 0;
    }
}

.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

@media (min-width: 1024px) {
    .service-showcase {
        flex-direction: row;
        align-items: center;
        min-height: 80vh;
    }
    .service-showcase--reverse {
        flex-direction: row-reverse;
    }
}

.service-showcase__media-wrapper {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

@media (min-width: 1024px) {
    .service-showcase__media-wrapper {
        height: 80vh;
        aspect-ratio: auto;
    }
}

.service-showcase__media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-showcase__media img,
.service-showcase__media video,
.service-showcase__media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-showcase:hover .service-showcase__media img,
.service-showcase:hover .service-showcase__media video {
    transform: scale(1.05);
}

.service-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 20%, transparent 80%, var(--color-bg) 100%);
    z-index: 2;
    pointer-events: none;
    display: none;
}

@media (min-width: 1024px) {
    .service-showcase__overlay {
        display: block;
    }
}

.service-showcase__content {
    flex: 0 0 50%;
    padding: 2rem var(--space-x);
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .service-showcase__content {
        padding: 4rem 10%;
    }
}

.service-showcase__content-inner {
    max-width: 500px;
    position: relative;
}

.service-showcase__number {
    display: block;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.service-showcase__benefit {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: none; /* Benefit is more editorial */
}

.service-showcase__title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 0.3rem;
}

.service-showcase__desc p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.service-showcase__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    transition: color 0.3s ease;
}

.service-showcase__link svg {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-showcase__link:hover {
    color: var(--color-accent);
}

.service-showcase__link:hover svg {
    transform: translateX(10px);
}

/* Services Page CTA Section */
.services-cta {
    background-color: var(--color-bg);
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Legal Page Template
   =========================== */
.page-legal__header {
  padding-top: 8rem; /* Safe clearance for transparent absolute header */
  padding-bottom: 3rem;
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-legal__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-video-showcase { padding: 5rem 0 12rem; }
  .services-cta { padding: 10rem 0; }
  .page-legal__header { padding-top: 14rem; }
}

.page-legal__meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.page-legal__content {
  background-color: var(--color-bg);
  min-height: 50vh;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* ===========================
   Prose (Rich Text Styling)
   =========================== */
.prose {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1.05rem;
}
.prose h2, .prose h3, .prose h4 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  color: #fff;
}
.prose p, .prose ul, .prose ol {
  margin-bottom: 1.5em;
  color: var(--color-text-muted);
}
.prose a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 4px;
}
.prose a:hover {
  text-decoration-color: var(--color-accent);
}
.prose ul {
  padding-left: 1.5rem;
  list-style-type: square;
}

/* ===========================
   Services Page — Simple Panels
   =========================== */

/* Alternating panel list */
.svc-list {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .svc-list {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.svc-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .svc-item {
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
  }
  .svc-item--flip .svc-item__media { order: 2; }
  .svc-item--flip .svc-item__body  { order: 1; }
}

/* Media side */
.svc-item__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-alt);
}

@media (min-width: 768px) {
  .svc-item__media { aspect-ratio: 1 / 1; }
}

.svc-item__media img,
.svc-item__media video,
.svc-item__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.svc-item__placeholder {
  position: absolute;
  inset: 0;
  background: var(--color-bg-alt);
}

/* Body side */
.svc-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem var(--space-x);
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .svc-item__body { padding: 4rem 5rem; }
}




/* Number */
.svc-item__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

/* Benefit headline */
.svc-item__benefit {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 0.6rem;
  text-transform: none;
}

/* Service name */
.svc-item__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 1.5rem;
}

/* Excerpt */
.svc-item__desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 0 0 2rem;
  max-width: 38ch;
}

/* Link */
.svc-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  align-self: flex-start;
  padding-bottom: 0.25rem;
}
.svc-item__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.svc-item__link:hover { color: #fff; }
.svc-item__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.svc-item__link svg { transition: transform 0.25s ease; }
.svc-item__link:hover svg { transform: translateX(4px); }

/* CTA Strip */
.svc-cta {
  padding: 7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.svc-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-cta__heading {
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 1rem;
  text-transform: none;
}

.svc-cta__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 42ch;
  margin: 0 0 2.5rem;
}

/* Hero scroll button */
.svc-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.svc-hero__scroll:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(3px);
}
.svc-hero__scroll svg {
  animation: svc-bounce 1.8s ease-in-out infinite;
}
@keyframes svc-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* Service Navigator Tabs */
.svc-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: none; /* hidden on mobile */
}

@media (min-width: 768px) {
  .svc-nav { display: block; }
}

.svc-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-nav__inner::-webkit-scrollbar { display: none; }

.svc-nav__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.svc-nav__link:hover {
  color: #fff;
}
.svc-nav__link.is-active {
  color: #fff;
  border-bottom-color: var(--color-accent);
}

.svc-nav__num {
  font-size: 0.65rem;
  color: var(--color-accent);
  opacity: 0.7;
}


/* ===========================
   Flow Redesign
   =========================== */

/* Hero Adjustments */
.cod-hero .hero-badge {
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.cod-hero .hero-title {
  font-size: clamp(2.5rem, 12vw, 7.5rem);
  line-height: 0.85;
}

.cod-hero .text-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-accent);
}

/* Intro Statement */
.cod-intro {
  padding: 10rem 0;
  background: #000;
}

.cod-intro-heading {
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 3rem;
  overflow-wrap: break-word;
}

.cod-intro-lead {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Process Steps */
.cod-process {
  padding: 8rem 0;
  background: var(--color-bg);
}

.cod-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 5rem;
}

@media (min-width: 900px) {
  .cod-process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
  }
}

.process-item {
  position: relative;
  padding-top: 2rem;
}

.process-num {
  font-size: 8rem;
  font-weight: 1000;
  line-height: 1;
  color: #fff;
  opacity: 0.03;
  position: absolute;
  top: -2rem;
  left: -1rem;
  pointer-events: none;
}

.process-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.process-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Pricing Section */
.cod-pricing {
  background: #000;
  padding: 10rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 5rem;
}

@media (min-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card--featured {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-accent);
  padding: 4rem 2.5rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  z-index: 2;
}

.pricing-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--color-accent);
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

.pricing-card__title { font-size: 1.75rem; margin-bottom: 0.5rem; }
.pricing-card__desc { color: var(--color-text-muted); margin-bottom: 2rem; font-size: 0.95rem; }

.pricing-card__price { margin-bottom: 3rem; }
.price-val { font-size: 2.5rem; font-weight: 800; color: #fff; }
.price-period { color: var(--color-text-muted); font-size: 1rem; margin-left: 0.5rem; }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}

.pricing-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.pricing-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* FAQ Accordion Re-styling */
.cod-faq { background: #000; padding-bottom: 10rem; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
}

.faq-trigger {
  width: 100%;
  padding: 2rem 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon::after {
  content: "—";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-bottom: 0;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 2rem;
}

/* Final CTA */
.cod-cta {
  padding: 12rem 0;
  background: var(--color-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cod-cta .cta-title {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.cod-cta .cta-desc {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 4rem;
}

/* Reveal Helpers */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



