/* ========================================================================
   Best in West Mechanical Repairs — Styles
   ======================================================================== */

/* ========== CUSTOM PROPERTIES ========== */
:root {
  --red: #C8102E;
  --red-dark: #A00D24;
  --red-light: #E8304A;
  --black: #0B0A09;
  --dark: #141312;
  --dark-card: #1A1918;
  --gray-dark: #2A2A2A;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --white: #F5F5F5;
  --pure-white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --navbar-height: 80px;
  --navbar-height-shrunk: 65px;
  --container-max: 1200px;
  --radius: 6px;
  --radius-sm: 4px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

/* ========== LAYOUT ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

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

/* Red accent divider between sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

.section--alt + .section::before,
.section + .section--alt::before {
  display: none;
}

/* ========== UTILITY CLASSES ========== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: 3rem;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn--primary {
  background: var(--red);
  color: var(--pure-white);
  border: 2px solid var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-dark);
}

.btn--outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--pure-white);
  color: var(--red);
  border: 2px solid var(--pure-white);
  font-weight: 700;
}

.btn--white:hover {
  background: transparent;
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn--white-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--white-outline:hover {
  border-color: var(--pure-white);
  transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: height var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.navbar--scrolled {
  height: var(--navbar-height-shrunk);
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  animation: logoEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.navbar__logo-img {
  height: 56px;
  width: auto;
  transition: all var(--transition-base);
  filter: drop-shadow(0 0 0 transparent);
}

.navbar--scrolled .navbar__logo-img {
  height: 44px;
}

.navbar__logo:hover .navbar__logo-img {
  filter: drop-shadow(0 0 12px rgba(200, 16, 46, 0.4));
  transform: scale(1.05);
}

/* Footer logo */
.footer__logo-img {
  height: 64px;
  width: auto;
  transition: all var(--transition-base);
  filter: drop-shadow(0 0 0 transparent);
}

.footer__logo-img:hover {
  filter: drop-shadow(0 0 15px rgba(200, 16, 46, 0.5));
  transform: scale(1.05);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width var(--transition-base);
}

.navbar__links a:hover {
  color: var(--white);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
}

.navbar__mobile-cta {
  display: none;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  position: relative;
  overflow: hidden;
}

/* Red vertical accent line */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 35%;
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: 0.3;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

.hero__badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

.hero__logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(200, 16, 46, 0.2));
}

.hero__title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  display: block;
  position: relative;
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero image frame */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--dark-card), var(--gray-dark));
  border-radius: var(--radius);
  overflow: hidden;
}

.hero__frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 9, 0.6) 0%, transparent 50%);
  z-index: 1;
  border-radius: var(--radius);
  pointer-events: none;
}

/* Floating stat cards */
.hero__stat {
  position: absolute;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}

.hero__stat--rating {
  bottom: -20px;
  left: -30px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--gray-dark);
  backdrop-filter: blur(10px);
  color: var(--white);
  animation: float 4s ease-in-out infinite;
}

.hero__stat--rating svg {
  color: #F5A623;
}

.hero__stat--turnaround {
  top: -15px;
  right: -25px;
  background: var(--red);
  color: var(--pure-white);
  animation: float 4s ease-in-out infinite 1s;
}

.hero__stat-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========== HERO — CINEMATIC VIDEO VARIANT ========== */
.hero--cinematic {
  justify-content: center;
  align-items: center;
  background-image: none;
}

.hero--cinematic::before {
  display: none;
}

/* Video background layer */
.hero--cinematic .hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--cinematic .hero__poster,
.hero--cinematic .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--cinematic .hero__poster {
  z-index: 1;
  transition: opacity 0.8s ease;
}

.hero--cinematic .hero__video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Once video is playing, crossfade from poster */
.hero--cinematic.hero--video-playing .hero__poster {
  opacity: 0;
  pointer-events: none;
}

.hero--cinematic.hero--video-playing .hero__video {
  opacity: 1;
}

/* Dark gradient scrim */
.hero--cinematic .hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to bottom,
      rgba(11, 10, 9, 0.4) 0%,
      rgba(11, 10, 9, 0.1) 40%,
      rgba(11, 10, 9, 0.3) 70%,
      rgba(11, 10, 9, 0.85) 100%
    );
  pointer-events: none;
}

/* Breathing red glow overlay */
.hero--cinematic .hero__glow {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
}

.hero--cinematic.hero--idle .hero__glow {
  animation: heroGlowBreath 3s ease-in-out infinite;
}

@keyframes heroGlowBreath {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Play button fallback */
.hero--cinematic .hero__play-btn {
  position: absolute;
  z-index: 10;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform var(--transition-base), background var(--transition-base);
}

.hero--cinematic .hero__play-btn:hover {
  transform: scale(1.1);
  background: var(--red);
}

.hero--cinematic .hero__play-btn[hidden] {
  display: none;
}

/* Centered text overlay */
.hero--cinematic .hero__overlay {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  padding-top: var(--navbar-height);
  max-width: 800px;
}

.hero--cinematic .hero__logo {
  width: 160px;
  margin-bottom: 2rem;
}

.hero--cinematic .hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--gray-light);
  margin-bottom: 0.75rem;
}

.hero--cinematic .hero__title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--pure-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero--cinematic .hero__subline {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray-light);
  letter-spacing: 3px;
  margin-bottom: 2.5rem;
}

.hero--cinematic .hero__ctas {
  justify-content: center;
}

/* White outline button variant */
.btn--outline-white {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  border-color: var(--pure-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ========== HERO — PARTICLE VARIANT ========== */
/* ---------- Scroll-Frame Hero ---------- */
.hero--scroll-frame {
  height: 500vh;
  position: relative;
  overflow: hidden;
  background: var(--black);
  background-image: none;
  padding: 0;
  display: block;
}

.hero--scroll-frame::before {
  display: none;
}

/* Hide navbar initially so scroll-frames.js can reveal it */
body:has(.hero--scroll-frame) > .navbar {
  opacity: 0;
}

.hero__scroll-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#heroFrameCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  will-change: contents;
}

/* Left/right content animate independently via JS */
.hero--scroll-frame .hero__content-left,
.hero--scroll-frame .hero__content-right {
  will-change: opacity, transform;
}

/* Override child opacity:0 — scroll-frame animates parents instead */
.hero--scroll-frame .hero__tag,
.hero--scroll-frame .hero__heading .word,
.hero--scroll-frame .hero__desc,
.hero--scroll-frame .hero__buttons {
  opacity: 1;
  transform: none;
}

/* Legacy particle hero (kept for reference) */
.hero--particle {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: transparent;
  background-image: none;
  padding: 0;
  display: block;
}

.hero--particle::before {
  display: none;
}

body:has(.hero--particle) > .navbar {
  opacity: 0;
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Vignette overlay */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, transparent 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.95) 100%);
}

/* Top fade */
.hero__fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
}

/* Bottom fade */
.hero__fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
}

/* Side accent lines */
.hero__accent-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(212,25,32,0.15), transparent);
  opacity: 0;
}

.hero__accent-line--left {
  left: 48px;
}

.hero__accent-line--right {
  right: 48px;
}

/* Assembling status text */
.hero__status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(212,25,32,0.6);
  opacity: 0;
  pointer-events: none;
}

/* Content — positioned in lower-left of hero */
.hero__content-grid {
  position: absolute;
  top: 63%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0 41px;
  max-width: 599px;
}

/* Tag line */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D41920;
  margin-bottom: 11px;
  opacity: 0;
}

.hero__tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: #D41920;
}

/* Heading */
.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 59px);
  font-weight: 900;
  line-height: 1.0;
  color: #F5F0EB;
}

.hero__heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
}

/* Description */
.hero__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,235,0.55);
  max-width: 420px;
  margin-top: 9px;
  margin-bottom: 14px;
  opacity: 0;
}

/* Buttons */
.hero__buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
}

/* ---------- Flow Button ---------- */
.btn-flow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  border-radius: 100px;
  background: transparent;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-flow:active {
  transform: scale(0.95);
}

/* Primary variant */
.btn-flow--primary {
  color: #F5F0EB;
  border: 1.5px solid rgba(245,240,235,0.4);
}

.btn-flow--primary:hover {
  border-color: transparent;
  border-radius: 12px;
}

/* Ghost variant */
.btn-flow--ghost {
  color: #F5F0EB;
  border: 1.5px solid rgba(245,240,235,0.2);
}

.btn-flow--ghost:hover {
  border-color: transparent;
  border-radius: 12px;
}

/* Text */
.btn-flow__text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: transform 800ms ease-out;
}

.btn-flow:hover .btn-flow__text {
  transform: translateX(12px);
  color: #fff;
}

/* Expanding circle behind text */
.btn-flow__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  opacity: 0;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-flow--primary .btn-flow__circle {
  background: #D41920;
}

.btn-flow--ghost .btn-flow__circle {
  background: rgba(245,240,235,0.12);
}

.btn-flow:hover .btn-flow__circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* Arrows */
.btn-flow__arrow {
  position: absolute;
  z-index: 9;
  transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-flow__arrow--left {
  left: -25%;
  stroke: #F5F0EB;
}

.btn-flow:hover .btn-flow__arrow--left {
  left: 16px;
  stroke: #fff;
}

.btn-flow__arrow--right {
  right: 16px;
  stroke: #F5F0EB;
}

.btn-flow:hover .btn-flow__arrow--right {
  right: -25%;
  stroke: #fff;
}

/* Ensure all content after hero scrolls over it */
.hero--scroll-frame ~ *,
.hero--particle ~ * {
  position: relative;
  z-index: 5;
}

.hero--scroll-frame ~ .brands,
.hero--particle ~ .brands {
  background-color: var(--black);
}

.hero--scroll-frame ~ .section,
.hero--particle ~ .section {
  background-color: var(--black);
}

.hero--scroll-frame ~ .section.section--alt,
.hero--particle ~ .section.section--alt {
  background-color: var(--dark);
}

.hero--scroll-frame ~ .stats,
.hero--particle ~ .stats {
  background-color: var(--black);
}

.hero--scroll-frame ~ .cta-banner,
.hero--particle ~ .cta-banner {
  background: var(--red);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

.hero--scroll-frame ~ .footer,
.hero--particle ~ .footer {
  background: var(--dark);
}

/* Scroll-frame hero — mobile */
@media (max-width: 768px) {
  .hero--scroll-frame {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .hero__scroll-wrap {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .hero__content-grid {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    padding: 40vw 23px 0 15px;
    max-width: 100%;
    z-index: 10;
  }

  .hero__accent-line {
    display: none;
  }

  .hero__heading {
    font-size: 26px;
    line-height: 1.1;
    max-width: 60%;
  }

  .hero__tag {
    position: absolute;
    top: calc(-40vw + 100px);
    left: 15px;
    font-size: 8px;
    letter-spacing: 3px;
    margin-bottom: 0;
  }

  .hero__desc {
    font-size: 15px;
    line-height: 1.5;
    margin: 12px -23px 0;
    padding: 16px 23px 8px;
    max-width: none;
    background: #0a0a0a;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 -23px;
    padding: 4px 23px 20px;
    background: #0a0a0a;
  }

  .btn-flow {
    padding: 10px 16px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }

  .hero__vignette {
    display: none;
  }

  .hero__fade-bottom {
    height: 100%;
    background: linear-gradient(to top, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.2) 65%, transparent 86%);
  }
}

/* Particle hero — tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__content-grid {
    gap: 1.5rem;
    padding: 0 32px 48px;
  }

  .hero__heading {
    font-size: clamp(32px, 5vw, 56px);
  }
}

/* ========== SERVICES GRID ========== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

/* Red top border hover effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover .service-card__icon svg {
  transform: scale(1.1);
  color: var(--red);
  stroke: var(--red);
}

.service-card__number {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  color: var(--red);
  transition: background var(--transition-base), color var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--red);
  color: var(--pure-white);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base), color var(--transition-base), stroke var(--transition-base);
}

.service-card__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== SERVICE AREA ========== */
.area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Abstract map */
.area__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--dark-card);
  border-radius: var(--radius);
  border: 1px solid var(--gray-dark);
  overflow: hidden;
}

.area__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.8) brightness(0.7) contrast(1.2);
  transition: filter var(--transition-base);
}

.area__map:hover iframe {
  filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}

/* Suburb list */
.area__suburbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.area__suburb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.area__suburb:hover {
  transform: translateX(4px);
  border-color: var(--red);
}

.area__suburb-icon {
  color: var(--red);
  flex-shrink: 0;
}

.area__suburb-icon svg {
  width: 18px;
  height: 18px;
}

.area__suburb-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.area__suburb-time {
  font-size: 0.8rem;
  color: var(--gray);
  margin-left: auto;
  white-space: nowrap;
}

/* ========== WHY CHOOSE US ========== */
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why__feature {
  padding: 2rem;
  background: var(--dark-card);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition-base);
  cursor: pointer;
}

.why__feature:hover {
  border-color: var(--red);
}

.why__feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 10px;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.why__feature-icon svg {
  width: 22px;
  height: 22px;
}

.why__feature-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why__feature-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Why image panel */
.why__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--dark-card), var(--gray-dark));
  border-radius: var(--radius);
  overflow: hidden;
}

.why__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  pointer-events: none;
}

.why__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 9, 0.6) 0%, transparent 50%);
  z-index: 1;
  border-radius: var(--radius);
  pointer-events: none;
}

.why__image-stat {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-sm);
  display: flex;
  z-index: 2;
  align-items: center;
  gap: 0.75rem;
}

.why__image-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--red);
}

.why__image-stat-text {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.4;
}

/* ========== PROCESS TIMELINE ========== */
.process__timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 2rem;
}

/* Static connecting line — hidden once the animated .process__line takes over */
.process__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(2rem + 28px);
  right: calc(2rem + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--red-dark), var(--red));
  z-index: 0;
}

.process__timeline.active::before {
  display: none;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 200px;
  position: relative;
  z-index: 1;
}

.process__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--red);
  background: var(--dark);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.process__step:hover .process__circle {
  background: var(--red);
  color: var(--pure-white);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(200, 16, 46, 0.4);
}

.process__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  max-width: 180px;
}

/* ========== TESTIMONIALS ========== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color var(--transition-base);
  cursor: pointer;
}

.testimonial-card:hover {
  border-color: rgba(200, 16, 46, 0.3);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
  color: #F5A623;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--gray-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--red);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
  padding: 5rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner__title {
  font-size: 2.25rem;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}

.cta-banner__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner__buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ========== CONTACT SECTION ========== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 10px;
  color: var(--red);
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 20px;
  height: 20px;
}

.contact__info-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.contact__info-value {
  font-weight: 600;
  font-size: 1rem;
}

.contact__info-value a {
  transition: color var(--transition-fast);
}

.contact__info-value a:hover {
  color: var(--red);
}

/* Hours card */
.contact__hours {
  background: var(--dark-card);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}

.contact__hours-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.contact__hours-row:last-child {
  border-bottom: none;
}

.contact__hours-day {
  color: var(--gray-light);
}

.contact__hours-time {
  font-weight: 600;
}

.contact__hours-row--closed .contact__hours-time {
  color: var(--red);
}

/* Contact form */
.contact__form {
  background: var(--dark-card);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact__form-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact__form-group {
  margin-bottom: 1rem;
}

.contact__form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

.contact__form-group input,
.contact__form-group select,
.contact__form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--black);
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  color: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
  color: var(--gray);
}

.contact__form-group input:focus,
.contact__form-group select:focus,
.contact__form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.contact__form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact__form-group select option {
  background: var(--dark);
  color: var(--white);
}

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

.contact__form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.contact__form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact__form-feedback {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact__form-feedback--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.contact__form-feedback--error {
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: var(--red-light);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--gray-dark);
  padding: 4rem 0 0;
}

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

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.625rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid var(--gray-dark);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--pure-white);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

/* ========== ANIMATIONS & KEYFRAMES ========== */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.6); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.9);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== RESPONSIVE: TABLET (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero__inner {
    gap: 3rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__logo {
    width: 140px;
  }

  .hero--cinematic .hero__title {
    font-size: 3.5rem;
  }

  .hero--cinematic .hero__logo {
    width: 140px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why__image {
    max-width: 500px;
  }

  .process__timeline {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .process__timeline::before {
    display: none;
  }

  .process__step {
    flex: 0 1 calc(50% - 1rem);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ========== RESPONSIVE: MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.85rem;
    margin-bottom: 2rem;
  }

  /* Navbar mobile */
  .navbar__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--dark);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    padding: calc(var(--navbar-height) + 2rem) 2rem 2rem;
    border-left: 1px solid var(--gray-dark);
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar__nav--open {
    transform: translateX(0);
  }

  .navbar__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
  }

  .navbar__backdrop--visible {
    display: block;
  }

  .navbar__links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .navbar__links a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    min-height: 44px;
    line-height: 2;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__mobile-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
  }

  /* Hero mobile */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 3rem 0;
    text-align: center;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__logo {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__frame {
    max-width: 320px;
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .hero__stat--rating {
    bottom: -15px;
    left: -10px;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .hero__stat--turnaround {
    top: -10px;
    right: -10px;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }

  /* Hero cinematic mobile */
  .hero--cinematic .hero__title {
    font-size: 2.5rem;
  }

  .hero--cinematic .hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 4px;
  }

  .hero--cinematic .hero__subline {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .hero--cinematic .hero__logo {
    width: 110px;
    margin-bottom: 1.5rem;
  }

  .hero--cinematic .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero--cinematic .hero__play-btn {
    width: 48px;
    height: 48px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  /* Services mobile */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-card {
    padding: 1rem 1.25rem;
  }

  .service-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-bottom: 0.6rem;
  }

  .service-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .service-card__number {
    font-size: 3rem;
  }

  .service-card__title {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .service-card__desc {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  /* Area mobile */
  .area__suburbs {
    grid-template-columns: 1fr;
  }

  /* Why Us mobile */
  .why__features {
    grid-template-columns: 1fr;
  }

  /* Process mobile */
  .process__timeline {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .process__step {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  /* Testimonials mobile */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* CTA Banner mobile */
  .cta-banner__buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner__buttons .btn {
    justify-content: center;
    width: 100%;
  }

  /* Contact mobile */
  .contact__form-row {
    grid-template-columns: 1fr;
  }

  /* Footer mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ========== SERVICES EXTRA LIST ========== */
.services__extra {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-dark);
}

.services__extra-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services__extra-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.services__extra-list span {
  font-size: 0.95rem;
  color: var(--gray-light);
  position: relative;
  padding-left: 1rem;
}

.services__extra-list span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ========== BRANDS STRIP ========== */
.brands {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brands__label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.brands__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  cursor: default;
}

.brands__logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.brands__item:hover .brands__logo {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .brands__grid {
    gap: 1.5rem 2rem;
  }
  .brands__logo {
    height: 24px;
    max-width: 90px;
  }
}

/* ========== FAQ ACCORDION ========== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-dark);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition-fast);
}

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

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition-base);
  color: var(--gray);
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  color: var(--red);
}

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

.faq__item--open .faq__answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(200, 16, 46, 0.6);
}

@media (max-width: 768px) {
  .floating-cta {
    width: 64px;
    height: 64px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* ========== STATS COUNTER ========== */
.stats {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .stats__number {
    font-size: 2.5rem;
  }
}

/* ========== PROCESS TIMELINE ANIMATION ========== */
.process__line {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gray-dark);
  z-index: 0;
}

.process__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__timeline.active .process__line::after {
  width: 100%;
}

.process__circle {
  transition: background-color 0.5s ease, box-shadow 0.5s ease, color 0.5s ease, transform var(--transition-base);
}

.process__timeline.active .process__circle {
  background: var(--red);
  color: var(--pure-white);
  box-shadow: 0 0 20px rgba(200, 16, 46, 0.3);
}

/* Staggered circle fills — nth-child accounts for .process__line being first child */
.process__timeline.active .process__step:nth-child(2) .process__circle {
  transition-delay: 0.3s;
}
.process__timeline.active .process__step:nth-child(3) .process__circle {
  transition-delay: 0.6s;
}
.process__timeline.active .process__step:nth-child(4) .process__circle {
  transition-delay: 0.9s;
}
.process__timeline.active .process__step:nth-child(5) .process__circle {
  transition-delay: 1.2s;
}

/* Hide the process line on tablet/mobile where the timeline wraps */
@media (max-width: 1024px) {
  .process__line {
    display: none;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .floating-cta {
    animation: none;
  }

  .hero--cinematic .hero__video {
    display: none !important;
  }

  .hero--cinematic .hero__glow {
    display: none !important;
  }

  .hero--cinematic .hero__poster {
    opacity: 1 !important;
  }
}
