/* ============================================================
   SAS MEDIA HOUSE — Main Stylesheet
   Brand: Burnt Orange #C4622D | Charcoal #1E1E1E | White #FFFFFF
   Fonts: Cormorant Garamond (display) | Montserrat (body)
   ============================================================ */

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

/* ─── PERFORMANCE HINTS ─────────────────────────────────────── */
html { scroll-behavior: smooth; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
.fxhero-stage, .navbar, .page-loader { will-change: transform; }
.fxhero-bg { will-change: opacity; }
.service-card, .why-card, .pricing-card, .portfolio-card { will-change: transform; }

:root {
  --orange:      #C4622D;
  --orange-light:#D97840;
  --orange-dark: #A04E22;
  --gold:        #E8B84B;
  --gold-light:  #F2CA6E;
  --charcoal:    #1E1E1E;
  --dark:        #141414;
  --card-bg:     #252525;
  --card-border: #313131;
  --white:       #FFFFFF;
  --off-white:   #F5F0EB;
  --gray-text:   #A0A0A0;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Montserrat', system-ui, sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* Aliases used in inner-page inline styles */
  --light:       #FFFFFF;
  --text-muted:  #A0A0A0;
  --text-subtle: rgba(255,255,255,0.65);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;
  --shadow-orange: 0 0 40px rgba(196, 98, 45, 0.25);
  --radius:      12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ─── SELECTION ─────────────────────────────────────────────── */
::selection { background: var(--orange); color: var(--white); }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 120px 0; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 11px;
  height: 11px;
  background: var(--orange);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: width 0.15s ease, height 0.15s ease, background 0.15s ease,
              border 0.15s ease, box-shadow 0.15s ease;
  will-change: left, top;
}
.cursor-ring { display: none; }
body.cursor-hover .cursor-dot {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1.5px solid var(--orange);
  box-shadow: 0 0 14px rgba(196, 98, 45, 0.45), inset 0 0 6px rgba(196, 98, 45, 0.15);
}

/* ─── PAGE LOADER ───────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }
.loader-logo { width: 180px; margin: 0 auto 2rem; animation: loaderPulse 1.5s ease-in-out infinite; }

@keyframes loaderPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

.loader-bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.05s linear;
}
.loader-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(196, 98, 45, 0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo-img { height: 44px; width: auto; transition: opacity var(--transition); }
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--orange);
  transition: left var(--transition), right var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { left: 0; right: 0; }

.nav-cta {
  color: var(--orange) !important;
  border: 1px solid var(--orange);
  padding: 0.5rem 1.25rem !important;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange); color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE OVERLAY MENU ───────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-overlay::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  border-radius: 2px;
}
.mobile-close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.7;
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-close:hover { opacity: 1; transform: rotate(90deg); }

.mobile-overlay-inner { padding-left: 2rem; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mob-item { overflow: hidden; }
.mob-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color var(--transition), padding-left var(--transition);
  transform: translateY(100%);
}
.mobile-overlay.open .mob-link { transform: translateY(0); }
.mob-link::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(to right, rgba(196,98,45,0.18) 0%, rgba(196,98,45,0.07) 55%, transparent 100%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mob-link:hover::before { width: calc(100% + 4rem); }
.mob-link:hover { color: var(--white); padding-left: 1.5rem; }
.mob-cta { color: var(--orange) !important; }

.mob-footer {
  position: absolute;
  bottom: 2.5rem; left: 4rem;
  font-size: 0.75rem;
  color: var(--gray-text);
  line-height: 1.8;
}
.mob-footer a { color: var(--orange); }

/* Stagger transitions for mobile items */
.mob-item:nth-child(1) .mob-link { transition-delay: 0.05s; }
.mob-item:nth-child(2) .mob-link { transition-delay: 0.1s; }
.mob-item:nth-child(3) .mob-link { transition-delay: 0.15s; }
.mob-item:nth-child(4) .mob-link { transition-delay: 0.2s; }
.mob-item:nth-child(5) .mob-link { transition-delay: 0.25s; }
.mob-item:nth-child(6) .mob-link { transition-delay: 0.3s; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover { background: var(--orange-light); box-shadow: 0 8px 30px rgba(196,98,45,0.4); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary i { transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ─── SECTION SHARED STYLES ─────────────────────────────────── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1.5rem;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%; width: 1rem; height: 1px;
  background: var(--orange);
  transform: translateY(-50%);
}
.section-tag::before { left: 0; }
.section-tag::after  { right: 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Background elements */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,98,45,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,98,45,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,98,45,0.18) 0%, transparent 70%);
  right: -100px; top: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,98,45,0.1) 0%, transparent 70%);
  left: -50px; bottom: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

/* ─── Hero cheetah background ───────────────────────────────── */
.hero-cheetah-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.cheetah-run-img {
  position: absolute;
  height: 84vh;
  width: auto;
  top: 50%;
  filter: drop-shadow(0 0 80px rgba(196,98,45,0.07));
  animation: cheetahRun 13s cubic-bezier(0.37, 0, 0.63, 1) 1.2s infinite;
  will-change: transform, opacity;
}
@keyframes cheetahRun {
  0%   { transform: translateY(-50%) translateX(95vw);   opacity: 0;    }
  10%  { opacity: 0.11; }
  50%  { transform: translateY(-50%) translateX(-5vw);   opacity: 0.14; }
  90%  { opacity: 0.11; }
  100% { transform: translateY(-50%) translateX(-110vw); opacity: 0;    }
}

/* Hero layout */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* Hero content (centered) */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(20px);
}
.label-dash {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.ht-line {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
}
.ht-accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 580px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
}
.hstat { text-align: center; }
.hstat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hstat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.hstat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* Hero visual (right) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  transform-style: preserve-3d;
  will-change: transform;
}
.cheetah-glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(196,98,45,0.3) 0%, transparent 65%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.8; }
  50%       { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}
.cheetah-wrap {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(40px);
}
.cheetah-img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 60px rgba(196,98,45,0.35));
  animation: cheetahProwl 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform, filter;
}
@keyframes cheetahProwl {
  /* Idle settle */
  0%   { transform: translate(0,    0px)   scale(1)    rotate(0deg);    filter: drop-shadow(0 20px 60px rgba(196,98,45,0.35)); }
  /* Slight crouch — weight shifts back */
  10%  { transform: translate(-4px, 5px)   scale(0.97) rotate(-0.6deg); filter: drop-shadow(0 14px 48px rgba(196,98,45,0.28)); }
  /* First lunge forward */
  28%  { transform: translate(8px, -14px)  scale(1.06) rotate(0.9deg);  filter: drop-shadow(0 36px 82px rgba(196,98,45,0.54)); }
  /* Peak surge — cheetah coming toward you */
  44%  { transform: translate(14px,-20px)  scale(1.09) rotate(0.4deg);  filter: drop-shadow(0 48px 100px rgba(196,98,45,0.62)); }
  /* Pull back — coiled energy */
  58%  { transform: translate(6px, -10px)  scale(1.04) rotate(-0.3deg); filter: drop-shadow(0 28px 68px rgba(196,98,45,0.44)); }
  /* Second burst */
  72%  { transform: translate(10px,-16px)  scale(1.07) rotate(0.5deg);  filter: drop-shadow(0 40px 90px rgba(196,98,45,0.56)); }
  /* Settle back to rest */
  100% { transform: translate(0,    0px)   scale(1)    rotate(0deg);    filter: drop-shadow(0 20px 60px rgba(196,98,45,0.35)); }
}

/* Speed streaks behind cheetah */
@keyframes streakFly {
  0%   { transform: translateX(120%); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.7; }
  100% { transform: translateX(-150%); opacity: 0; }
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37,37,37,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196,98,45,0.3);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
}
.float-card i { color: var(--orange); font-size: 1rem; }
.fc-1 { top: 8%;  right: 5%;  animation: floatA 3.2s ease-in-out infinite; }
.fc-2 { bottom: 30%; left: -5%; animation: floatB 3.8s ease-in-out infinite 0.6s; }
.fc-3 { bottom: 5%;  right: 10%; animation: floatA 2.9s ease-in-out infinite 1.1s; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
}
.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.scroll-dot {
  position: absolute;
  width: 1px;
  top: 0;
  height: 40%;
  background: var(--orange);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -40%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(40px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,98,45,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-orange);
}
.service-card:hover::before { opacity: 1; }

.sc-icon {
  width: 52px; height: 52px;
  background: rgba(196,98,45,0.12);
  border: 1px solid rgba(196,98,45,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.sc-icon i { color: var(--orange); font-size: 1.2rem; }
.service-card:hover .sc-icon {
  background: rgba(196,98,45,0.2);
  box-shadow: 0 0 20px rgba(196,98,45,0.2);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.service-card p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.75; margin-bottom: 1.25rem; }
.sc-features { display: flex; flex-direction: column; gap: 0.4rem; }
.sc-features li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding-left: 1rem;
  position: relative;
}
.sc-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
}
/* cursor-tracked glow */
.sc-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(196,98,45,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.service-card:hover .sc-glow { opacity: 1; }

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: gap var(--transition), color var(--transition);
}
.sc-link:hover { color: var(--gold); gap: 14px; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateX(-40px);
}
.about-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2E2E2E;
  border: 1px solid rgba(196,98,45,0.40);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 0 60px rgba(196,98,45,0.28), 0 0 0 1px rgba(196,98,45,0.22);
}
.about-logo-img { width: 100%; max-width: 280px; position: relative; z-index: 1; }
.about-logo-glow { display: none; }
.about-accent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.aag-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition);
}
.aag-item:hover { border-color: rgba(196,98,45,0.4); }
.aag-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.aag-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateX(40px);
}
.about-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.about-body { font-size: 0.92rem; color: var(--gray-text); line-height: 1.85; }

.about-pillars { display: flex; flex-direction: column; gap: 1.25rem; }
.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.pillar:hover { border-color: rgba(196,98,45,0.35); transform: translateX(4px); }
.pillar-icon {
  width: 40px; height: 40px;
  background: rgba(196,98,45,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon i { color: var(--orange); font-size: 0.95rem; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.pillar p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.65; }

/* ─── WHY SAS ───────────────────────────────────────────────── */
.why-sas { background: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(40px);
}
.why-card:hover {
  border-color: rgba(196,98,45,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(196,98,45,0.12);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  transition: color var(--transition);
}
.why-card:hover .why-num { color: rgba(196,98,45,0.25); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.why-card p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.75; }
.why-icon-wrap {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  transition: opacity var(--transition);
}
.why-icon-wrap i { color: var(--orange); font-size: 1.4rem; }
.why-card:hover .why-icon-wrap { opacity: 0.4; }

/* ─── PORTFOLIO ─────────────────────────────────────────────── */
.portfolio { background: var(--dark); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(40px);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,98,45,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.port-featured {
  grid-column: span 1;
  border-color: rgba(196,98,45,0.3);
  background: linear-gradient(135deg, rgba(196,98,45,0.08) 0%, var(--card-bg) 60%);
}
.port-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.port-icon {
  width: 56px; height: 56px;
  background: rgba(196,98,45,0.12);
  border: 1px solid rgba(196,98,45,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.port-icon i { color: var(--orange); font-size: 1.4rem; }
.portfolio-card:hover .port-icon { background: rgba(196,98,45,0.2); box-shadow: 0 0 20px rgba(196,98,45,0.2); }

.port-industry {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.port-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.port-body p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.75; margin-bottom: 1.5rem; }

.port-results { display: flex; flex-direction: column; gap: 0.6rem; }
.port-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.port-result:last-child { border-bottom: none; }
.pr-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--orange);
}
.pr-label {
  font-size: 0.72rem;
  color: var(--gray-text);
  text-align: right;
}

/* Hover overlay */
.port-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196,98,45,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}
.port-hover-overlay p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}
.portfolio-card:hover .port-hover-overlay { opacity: 1; }

/* ─── PRICING ───────────────────────────────────────────────── */
.pricing { background: var(--charcoal); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(40px);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,98,45,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.pc-featured {
  border-color: rgba(232,184,75,0.45);
  background: linear-gradient(160deg, rgba(232,184,75,0.08) 0%, var(--card-bg) 55%);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(232,184,75,0.15), 0 24px 60px rgba(0,0,0,0.3);
}
.pc-featured:hover { transform: scale(1.03) translateY(-6px); }
.pc-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 6px 6px;
}

.pc-header { margin-bottom: 2rem; }
.pc-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}
.pc-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.pc-currency {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  padding-bottom: 6px;
}
.pc-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
}
.pc-period {
  font-size: 0.8rem;
  color: var(--gray-text);
  padding-bottom: 8px;
}
.pc-tagline { font-size: 0.82rem; color: var(--gray-text); line-height: 1.5; }

.pc-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.pc-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.pc-features i { color: var(--orange); font-size: 0.75rem; flex-shrink: 0; }
.pc-featured .pc-features i { color: var(--gold); }

.pc-btn {
  display: block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.pc-btn:hover { border-color: var(--orange); color: var(--white); }
.pc-btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.pc-btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); }

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--gray-text);
}
.pricing-note a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateX(-40px);
}
.contact-intro { font-size: 0.92rem; color: var(--gray-text); line-height: 1.8; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
  color: var(--white);
}
.contact-item:hover { border-color: rgba(196,98,45,0.4); transform: translateX(4px); }
.ci-icon {
  width: 38px; height: 38px;
  background: rgba(196,98,45,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--orange); font-size: 0.9rem; }
.ci-text { display: flex; flex-direction: column; gap: 2px; }
.ci-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-text); }
.ci-value { font-size: 0.9rem; color: var(--white); }

.contact-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 0.9rem;
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}
.social-btn:hover {
  color: var(--white);
  border-color: var(--orange);
  background: rgba(196,98,45,0.12);
  transform: translateY(-3px);
}

/* Contact form */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  opacity: 0;
  transform: translateX(40px);
}
.form-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.req-note { font-size: 0.78rem; color: var(--gray-text); margin-bottom: 1.75rem; }
.req { color: var(--orange); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(196,98,45,0.05);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cb-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  cursor: none;
  user-select: none;
}
.cb-item input[type="checkbox"] { display: none; }
.cb-box {
  width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.cb-item input:checked + .cb-box { background: var(--orange); border-color: var(--orange); }
.cb-item input:checked + .cb-box::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 4px; height: 8px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

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

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success[hidden] { display: none; }
.fs-icon { font-size: 3rem; color: var(--orange); margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.form-success p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid rgba(196,98,45,0.15); }

.footer-main { padding: 5rem 0 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .footer-logo { height: 48px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.6rem; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a,
.footer-col li {
  font-size: 0.85rem;
  color: var(--gray-text);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-tagline { font-style: normal; }
.footer-tagline em { font-style: italic; color: var(--orange); }

/* ─── SCROLL REVEAL BASE STATES ─────────────────────────────── */
.about-visual,
.about-text,
.contact-info,
.contact-form-wrap { will-change: transform, opacity; }

/* ─── MAGNETIC BUTTON ───────────────────────────────────────── */
.magnetic-btn { will-change: transform; }

/* ─── RESPONSIVE — 1024px ───────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .port-featured  { grid-column: span 2; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand   { grid-column: span 2; }
  .hero-container { max-width: 800px; }
}

/* ─── RESPONSIVE — 768px ────────────────────────────────────── */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

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

  .hero-container { padding: 0 1.5rem; max-width: 680px; }
  .hero-desc { max-width: 440px; }
  .cheetah-run-img { height: 60vh; }

  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { transform: none; }
  .about-text   { transform: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pc-featured  { transform: none; }
  .pc-featured:hover { transform: translateY(-6px); }

  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info  { transform: none; }
  .contact-form-wrap { transform: none; }

  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-featured  { grid-column: span 1; }

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

  .footer-grid  { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }

  .section-pad  { padding: 80px 0; }
  .contact-form-wrap { padding: 1.75rem; }
}

/* ─── RESPONSIVE — 480px ────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .aag-item .aag-num { font-size: 1.3rem; }
  .about-accent-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
}

/* ─── PRINT ─────────────────────────────────────────────────── */
@media print {
  .navbar, .page-loader, .cursor-dot, .cursor-ring,
  .mobile-overlay, .scroll-hint { display: none !important; }
  body { background: white; color: black; cursor: auto; }
}

/* ══════════════════════════════════════════════════════════════
   FX HERO — scroll-driven full-screen slideshow hero
   ══════════════════════════════════════════════════════════════ */

/* overflow:clip clips visually without creating a scroll container — preserves position:sticky on children */
.fxhero { position: relative; background: var(--dark); overflow: clip; }

/* Scroll container — gives GSAP + CSS sticky its scroll distance */
.fxhero-scroll { position: relative; height: 500vh; }

/* Pinned stage */
.fxhero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}

/* Grid texture removed — kept empty for easy re-add */
.fxhero-grid-texture { display: none; }

/* Ghosted cheetah */
.fxhero-cheetah-wrap {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.fxhero-cheetah-run {
  position: absolute;
  height: 80vh; top: 50%;
  transform: translateY(-50%) translateX(95vw);
  opacity: 0;
  animation: fxCheetahRun 13s cubic-bezier(0.37,0,0.63,1) 2s infinite;
  filter: brightness(0.4) sepia(0.4);
}
@keyframes fxCheetahRun {
  0%   { transform: translateY(-50%) translateX(95vw);   opacity: 0; }
  10%  { opacity: 0.07; }
  50%  { transform: translateY(-50%) translateX(-5vw);   opacity: 0.11; }
  90%  { opacity: 0.07; }
  100% { transform: translateY(-50%) translateX(-110vw); opacity: 0; }
}

/* Per-section backgrounds */
.fxhero-bgs { position: absolute; inset: 0; z-index: 0; }
.fxhero-bg  { position: absolute; inset: 0; opacity: 0; will-change: opacity; }

/* Clean dark backgrounds — visual interest comes from the ghost image inside each */
#fxhBg0 { background: var(--dark); }
#fxhBg1 { background: var(--dark); }
#fxhBg2 { background: var(--dark); }
#fxhBg3 { background: var(--dark); }

/* Ghost image inside each background panel */
.fxhbg-img {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: brightness(4) saturate(0);
}
/* Section 0: no cheetah */
#fxhBg0 .fxhbg-img {
  opacity: 0;
  pointer-events: none;
}
/* Section 1: cheetah anchored bottom-right */
#fxhBg1 .fxhbg-img {
  width: 65vh; height: 65vh;
  right: 3vw; bottom: -3vh;
  opacity: 0.20;
  transform: none;
}
/* Section 2: no cheetah */
#fxhBg2 .fxhbg-img {
  opacity: 0;
  pointer-events: none;
}
/* Section 3: cheetah full-bleed bottom-right */
#fxhBg3 .fxhbg-img {
  width: 82vh; height: 82vh;
  right: -4vw; bottom: -6vh;
  opacity: 0.20;
  transform: none;
}

/* Layout shell */
.fxhero-layout {
  position: relative; z-index: 3;
  height: 100vh;
  display: flex; flex-direction: column;
}

/* ── Top bar ── */
.fxhero-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 88px 3rem 0.5rem; flex-shrink: 0;
}
.fxhero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.fxhero-scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-family: var(--font-body);
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.fxhsi-line {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.fxhsi-dot {
  width: 100%; height: 40%;
  background: var(--orange);
  position: absolute; top: -40%;
  animation: fxScrollDot 1.9s ease-in-out infinite;
}
@keyframes fxScrollDot { 0% { top: -40%; } 100% { top: 140%; } }

/* ── Three-column content ── */
.fxhero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  padding: 0 3rem;
  min-height: 0;
}

/* ── Left labels ── */
.fxhero-col-left {
  height: 56vh; overflow: hidden;
  display: flex; align-items: center;
}
.fxhero-left-track { will-change: transform; width: 100%; }

.fxhero-litem {
  display: flex; flex-direction: column; gap: 3px;
  padding: 8px 0; opacity: 0.3; cursor: pointer;
  position: relative;
}
.fxhero-litem.fxh-on { opacity: 1; padding-left: 16px; }
.fxhero-litem.fxh-on::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px; background: var(--orange); border-radius: 50%;
}
.fxh-lnum {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--orange); text-transform: uppercase; line-height: 1;
}
.fxh-lname {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 1.4rem);
  font-weight: 700; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--white); line-height: 1;
}

/* ── Centre title ── */
.fxhero-col-center {
  display: grid; place-items: center;
  text-align: center;
  height: 56vh; overflow: hidden;
  position: relative;
}
.fxhero-featured {
  position: absolute; opacity: 0; visibility: hidden;
  width: 100%; pointer-events: none;
}
.fxhero-featured.fxhf-active { opacity: 1; visibility: visible; pointer-events: auto; }

.fxhero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--white); line-height: 0.95;
  text-transform: uppercase; margin: 0;
}
.fxhero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.1vw, 0.82rem);
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 1.4rem; font-weight: 500;
  max-width: 420px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* Word mask — stacked poster style */
.fxh-wm { display: block; overflow: hidden; line-height: 1.05; }
.fxh-w  { display: block; line-height: 1.05; }

/* ── Right labels ── */
.fxhero-col-right {
  height: 56vh; overflow: hidden;
  display: flex; align-items: center; justify-content: flex-end;
}
.fxhero-right-track { will-change: transform; width: 100%; }

.fxhero-ritem {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 3px; padding: 8px 0; opacity: 0.3; cursor: pointer;
  position: relative;
}
.fxhero-ritem.fxh-on { opacity: 1; padding-right: 16px; }
.fxhero-ritem.fxh-on::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}
.fxh-rname {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 1.4rem);
  font-weight: 700; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--white); line-height: 1; text-align: right;
}
.fxh-rsub {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; line-height: 1; text-align: right;
}

/* ── Bottom bar ── */
.fxhero-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem 2rem;
  flex-shrink: 0; gap: 2rem;
}
.fxhero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  font-weight: 400; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase; font-style: italic; flex: 1;
}
.fxhero-tagline em { color: var(--orange); font-style: italic; }

.fxhero-progress {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.fxhero-pnums {
  display: flex; justify-content: space-between;
  width: 110px;
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.38);
}
.fxhp-cur { color: var(--white); }
.fxhero-pbar {
  width: 110px; height: 1px;
  background: rgba(255,255,255,0.18); position: relative;
}
.fxhero-pfill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%; background: var(--orange); height: 100%;
  transition: width 0.4s ease;
}
.fxhero-cta { flex-shrink: 0; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .fxhero-main { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .fxhero-col-left, .fxhero-col-right { display: none; }
  .fxhero-col-center { height: 62vh; }
  .fxhero-headline { font-size: clamp(2.4rem, 10vw, 3.5rem); }
}
@media (max-width: 768px) {
  .fxhero-top  { padding: 76px 1.5rem 0.5rem; }
  .fxhero-bottom {
    flex-direction: column; align-items: center;
    padding: 1rem 1.5rem 1.75rem; gap: 1rem; text-align: center;
  }
  .fxhero-tagline { text-align: center; font-size: 0.75rem; }
}

/* ══════════════════════════════════════════════════════════════
   INNER PAGES — shared styles for service / about / contact
   ══════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-hero-bg .hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,98,45,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,98,45,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-accent {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,98,45,0.13) 0%, transparent 65%);
  right: -80px; top: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gray-text); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); font-size: 0.65rem; }

.page-hero-content { max-width: 760px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.page-hero-title em { color: var(--orange); font-style: italic; }
.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 580px;
}

/* ─── INCLUDES GRID ─────────────────────────────────────────── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.include-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.include-item:hover { border-color: rgba(196,98,45,0.3); transform: translateY(-3px); }
.include-icon {
  width: 44px; height: 44px;
  background: rgba(196,98,45,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.include-icon i { color: var(--orange); font-size: 1rem; }
.include-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.include-text p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.65; }

/* ─── PROCESS STEPS ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  counter-reset: step-counter;
}
.process-step {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  counter-increment: step-counter;
  transition: border-color var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.process-step:hover { border-color: rgba(196,98,45,0.3); }
.process-step::before {
  content: counter(step-counter, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(196,98,45,0.22);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.process-step p { font-size: 0.83rem; color: var(--gray-text); line-height: 1.7; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; }
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(196,98,45,0.3); }
.faq-item.open  { border-color: rgba(196,98,45,0.4); }
.faq-q {
  padding: 1.35rem 3.5rem 1.35rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  user-select: none;
}
/* Horizontal bar — always visible */
.faq-q::after {
  content: '';
  position: absolute;
  right: 1.75rem; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 1.5px;
  background: var(--orange);
  transition: transform var(--transition), opacity var(--transition);
}
/* Vertical bar — forms a + when closed */
.faq-q::before {
  content: '';
  position: absolute;
  right: calc(1.75rem + 8.25px); top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 1.5px; height: 18px;
  background: var(--orange);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
/* When open: vertical bar rotates to disappear (becomes –) */
.faq-item.open .faq-q::before {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.75rem;
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.85;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 800px;
  padding: 0 1.75rem 1.35rem;
}

/* ─── TWO-COLUMN CONTENT GRID ───────────────────────────────── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.content-split .section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); }

/* ─── TARGET INDUSTRIES ─────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.industry-card {
  padding: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.industry-card:hover { border-color: rgba(232,184,75,0.4); transform: translateY(-4px); }
.industry-card i { color: var(--gold); font-size: 1.6rem; display: block; margin-bottom: 1rem; }
.industry-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; margin-bottom: 0.4rem; }
.industry-card p { font-size: 0.78rem; color: var(--gray-text); line-height: 1.6; }

/* ─── PAGE CTA SECTION ──────────────────────────────────────── */
.page-cta {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(196,98,45,0.12) 60%, rgba(232,184,75,0.06) 100%);
  border-top: 1px solid rgba(196,98,45,0.25);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,98,45,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,98,45,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-cta::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,98,45,0.1) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-radius: 50%;
  pointer-events: none;
}
.page-cta .container { position: relative; z-index: 1; }
.page-cta .section-title { margin-bottom: 1.5rem; }
.page-cta .section-subtitle { max-width: 540px; margin: 0 auto 2.5rem; }

/* ─── INTRO STAT BAR ────────────────────────────────────────── */
.stat-bar {
  display: flex;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 5rem;
}
.stat-bar-item {
  flex: 1;
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--card-border);
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.stat-bar-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-text); }

/* ─── INNER PAGE RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero { min-height: auto; padding: 8rem 0 3.5rem; }
  .page-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .content-split { grid-template-columns: 1fr; gap: 3rem; }
  .stat-bar { flex-direction: column; }
  .stat-bar-item { border-right: none; border-bottom: 1px solid var(--card-border); }
  .stat-bar-item:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .faq-list { gap: 0.5rem; }
  .page-cta-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: clamp(1.7rem, 9vw, 2.5rem); }
  .breadcrumb { font-size: 0.65rem; }
  .process-step { padding: 1.25rem; }
  .faq-q { font-size: 0.85rem; padding: 1rem 3rem 1rem 1.25rem; }
  .faq-a { padding: 0 1.25rem; font-size: 0.83rem; }
  .faq-item.open .faq-a { padding: 0 1.25rem 1.1rem; }
}
