:root {
  --red: #dc2626;
  --red-dark: #991b1b;
  --red-light: #fca5a5;
  --red-glow: rgba(220, 38, 38, 0.3);
  --black: #0a0a0a;
  --ink: #0d0d0d;
  --muted: #9ca3af;
  --line: #1f2937;
  --surface: #111111;
  --white: #ffffff;
  --amber: #f59e0b;
  --green: #22c55e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  --radius: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: "Aptos", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  --font-display: "Bahnschrift", "Aptos Display", "Trebuchet MS", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-sans);
  cursor: default;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ═══════════════════ CURSOR GLOW ═══════════════════ */
.cursor-glow {
  display: none;
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .cursor-glow { display: block; }
}

/* ═══════════════════ SCROLL PROGRESS ═══════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark), var(--red-light));
  transition: width 60ms linear;
}

/* ═══════════════════ HEADER ═══════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 62px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(1.8);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.brand { display: inline-flex; align-items: center; min-width: 140px; }

.brand-logo {
  width: clamp(132px, 14vw, 200px);
  height: auto;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  transition: all var(--transition);
}

.brand-logo:hover {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.1);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.main-nav { display: flex; align-items: center; gap: 4px; order: 1; }

.main-nav a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  transition: all var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: all var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { width: 60%; }

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  background: rgba(220, 38, 38, 0.1);
  outline: none;
}

.main-nav .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, #dc2626, #991b1b);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
}

.main-nav .nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.main-nav .nav-cta:hover::before { left: 100%; }

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

.main-nav .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

body.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════ THEME TOGGLE ═══════════════════ */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.theme-toggle:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

/* ═══════════════════ SECTION PADDING ═══════════════════ */
.section-pad {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 74px);
  scroll-margin-top: 72px;
}

main > section:not(.hero) { position: relative; }

main > section:not(.hero):not(.proof-strip)::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 5vw, 74px);
  right: clamp(18px, 5vw, 74px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(220, 38, 38, 0.1) 100%);
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.6;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px);
}

.hero-accent {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.08), transparent 70%);
  z-index: 1;
  animation: heroAccentPulse 6s ease-in-out infinite;
}

@keyframes heroAccentPulse {
  0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(3deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  min-height: 100vh;
  padding: clamp(120px, 16vw, 170px) clamp(18px, 5vw, 74px) clamp(80px, 10vw, 120px);
}

.hero-copy { max-width: 900px; }

.reveal-text { perspective: 800px; }

.reveal-text .eyebrow,
.reveal-text h1,
.reveal-text p {
  opacity: 0;
  transform: translateY(30px);
  animation: textReveal 0.8s ease forwards;
}

.reveal-text .eyebrow { animation-delay: 0.1s; }
.reveal-text h1 { animation-delay: 0.3s; }
.reveal-text .hero-lede { animation-delay: 0.5s; }

@keyframes textReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-trust, .hero-actions, .hero-micro {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.hero-trust { animation-delay: 0.7s; }
.hero-actions { animation-delay: 0.8s; }
.hero-micro { animation-delay: 0.9s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--black));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero .eyebrow,
.vision-mission .eyebrow,
.contact .eyebrow {
  color: var(--red-light);
}

h1 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: 0.82;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--white) 30%, var(--red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-wrap: balance;
}

.hero-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.55;
}

.hero-actions,
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ═══════════════════ BUTTONS ═══════════════════ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.button:hover { transform: translateY(-3px) scale(1.02); }

.button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(30deg);
}

.button:hover::after {
  left: 120%;
  transition: all 0.6s ease-in-out;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.35), inset 0 1px rgba(255, 255, 255, 0.15);
}

.button.primary:hover {
  box-shadow: 0 16px 45px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.button.secondary {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

body[data-theme="light"] .button.secondary {
  color: var(--red-dark);
  border: 2px solid var(--red);
  background: transparent;
}

body[data-theme="light"] .button.secondary:hover {
  background: var(--red);
  color: var(--white);
}

/* ═══════════════════ HERO TRUST PILLS ═══════════════════ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 4px;
}

.trust-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(14px);
  transition: all var(--transition);
}

.trust-pill:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--red);
}

/* ═══════════════════ HERO MICRO ═══════════════════ */
.hero-micro {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  max-width: 600px;
}

.hero-micro strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
}

.hero-micro span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ═══════════════════ HERO DASHBOARD ═══════════════════ */
.hero-dashboard {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  animation: dashboardSlide 0.8s ease 0.6s both;
}

@keyframes dashboardSlide {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dashboard-label {
  color: var(--red-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dashboard-line {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-line strong { font-size: 1.1rem; }
.dashboard-line span { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; }

.dashboard-dots {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: dotPulse 2s ease-in-out infinite;
}

.dashboard-dots span:nth-child(2) { animation-delay: 0.2s; }
.dashboard-dots span:nth-child(3) { animation-delay: 0.4s; }
.dashboard-dots span:nth-child(4) { animation-delay: 0.6s; }
.dashboard-dots span:nth-child(5) { animation-delay: 0.8s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ═══════════════════ SCROLL INDICATOR ═══════════════════ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.2s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* ═══════════════════ STICKY CTA ═══════════════════ */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition);
}

.sticky-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.6);
}

.sticky-cta-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: stickyPulse 2.5s infinite;
}

.sticky-cta-icon svg { width: 18px; height: 18px; fill: white; }

@keyframes stickyPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.sticky-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
}

.sticky-cta-sub {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

/* ═══════════════════ PROOF STRIP ═══════════════════ */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.3), rgba(0, 0, 0, 0.3), rgba(34, 197, 94, 0.15));
}

.proof-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 160px;
  padding: 30px 24px;
  background: var(--surface);
  transition: all var(--transition);
  overflow: hidden;
}

.proof-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), transparent);
  transition: opacity var(--transition);
}

.proof-item:hover::before { opacity: 1; }

.proof-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.proof-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 0.8;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.proof-item:hover .proof-num { opacity: 1; }

.proof-content { position: relative; z-index: 1; }

.proof-content strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.proof-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.proof-arrow {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 1.3rem;
  color: var(--red);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition);
}

.proof-item:hover .proof-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════ WELCOME ═══════════════════ */
.welcome {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  background: var(--black);
}

.highlight-red {
  color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-white {
  color: var(--white);
}

.welcome-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all var(--transition);
}

.welcome-card:hover { border-color: rgba(220, 38, 38, 0.3); }

.welcome-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--red-light), var(--red), var(--red-dark));
}

.welcome-card p,
.section-heading p,
.about-panel p,
.vision-block p,
.contact-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.welcome-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  min-height: 400px;
}

.welcome-media video {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020202;
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about { background: var(--black); }

.section-heading {
  max-width: 900px;
  margin-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-panel {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, #0d0d0d, #111111);
  transition: all var(--transition);
}

.about-panel:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.about-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.about-icon svg { width: 100%; height: 100%; fill: var(--red); }

.about-panel h3 { color: var(--white); }

/* ═══════════════════ STATS ═══════════════════ */
.stats {
  background: linear-gradient(135deg, #050505, #0a0a0a, #050505);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: rgba(220, 38, 38, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 40%, var(--red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus,
.stat-percent {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  vertical-align: super;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════ VISION MISSION ═══════════════════ */
.vision-mission {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.96), rgba(30, 8, 8, 0.92)),
    url("assets/duffron-profile-002.png") center / cover;
}

.vision-block p { color: rgba(255, 255, 255, 0.72); }

.mission-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-list li {
  position: relative;
  padding: 16px 16px 16px 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.5;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.mission-list li:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.25);
  transform: translateX(4px);
}

.mission-list li::before {
  content: "→";
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--red-light);
  font-weight: 900;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services {
  background:
    linear-gradient(180deg, #0d0d0d, var(--black)),
    repeating-linear-gradient(90deg, rgba(220, 38, 38, 0.03) 0 1px, transparent 1px 22px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  position: relative;
  color: inherit;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.service-card:hover,
.service-card:focus-visible,
.service-card.active {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(220, 38, 38, 0.05);
  outline: none;
}

.service-image {
  position: relative;
  overflow: hidden;
  background: #030303;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.75));
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.1) contrast(1.05);
}

.service-card:hover img { transform: scale(1.08); }

.service-number {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.service-video-cue {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-body {
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 20px;
}

.service-body .eyebrow { font-size: 0.72rem; }

.service-body p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.service-link {
  color: var(--red);
  font-weight: 800;
  font-size: 0.88rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-link::after { content: "→"; transition: transform var(--transition); }
.service-card:hover .service-link::after { transform: translateX(4px); }

.service-meta,
.solution-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-meta span,
.solution-chips span {
  padding: 5px 10px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 999px;
  color: var(--red-light);
  background: rgba(220, 38, 38, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ═══════════════════ MEDIA LAB ═══════════════════ */
.media-lab {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.03), transparent),
    var(--black);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 16px;
}

.video-tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.video-tile:hover {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.video-tile.large {
  grid-row: span 2;
  min-height: 620px;
}

.video-tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020202;
}

.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 10, 0.92));
}

.video-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 76px;
  z-index: 2;
  display: grid;
  gap: 6px;
  pointer-events: none;
}

.video-caption span {
  color: var(--red-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-caption strong {
  max-width: 600px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
}

/* ═══════════════════ DETAIL / SOLUTION SHOWCASE ═══════════════════ */
.detail {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.97), rgba(25, 8, 8, 0.95) 52%, rgba(60, 12, 12, 0.92)),
    url("assets/duffron-profile-000.png") center / cover;
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.detail-tabs button {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.detail-tabs button:hover {
  background: rgba(220, 38, 38, 0.12);
  color: var(--white);
}

.detail-tabs button.active {
  color: var(--white);
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.detail-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  margin-top: 28px;
}

.showcase-media {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.showcase-main {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.showcase-main video,
.showcase-gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020202;
}

.showcase-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.88));
}

.detail-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  font-weight: 700;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.showcase-gallery img,
.showcase-gallery video {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  object-fit: cover;
}

.showcase-content { display: grid; gap: 14px; }

.solution-intro,
.solution-process,
.solution-module {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.solution-intro {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 32px);
}

.solution-intro p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.65;
}

.solution-intro strong {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.4;
}

.solution-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.solution-process span {
  position: relative;
  min-height: 70px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
}

.solution-process span:last-child { border-right: 0; }

.solution-process span::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-light), var(--red));
}

.solution-module {
  display: grid;
  grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  padding: clamp(16px, 3vw, 24px);
}

.module-copy p,
.solution-list li { color: rgba(255, 255, 255, 0.72); line-height: 1.6; }

.module-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.solution-list {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.3);
}

.detail-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--red-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* ═══════════════════ PROFILE ═══════════════════ */
.profile { background: var(--black); }

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
}

.profile-card {
  position: relative;
  display: block;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--black);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.profile-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.5);
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.7s ease;
}

.profile-card:hover img { transform: scale(1.05); }

.profile-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9));
}

.profile-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 24px;
}

.profile-card strong { font-size: 1.3rem; }

.profile-card small {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.profile-stack {
  display: grid;
  gap: 12px;
}

.profile-stack span {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0d0d0d, #111111);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.profile-stack span:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateX(6px);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), #0d0d0d);
}

/* ═══════════════════ PARTNERS ═══════════════════ */
.partners {
  background: linear-gradient(180deg, var(--black), #0d0d0d);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.partners-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partners-track-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-logo {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  padding: 8px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition);
}

.partner-logo:hover {
  color: var(--white);
  border-color: rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.06);
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.97), rgba(50, 8, 8, 0.94) 58%, rgba(220, 38, 38, 0.8)),
    url("assets/duffron-profile-006.png") center / cover;
}

.contact-copy p,
.contact-copy address {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.contact-copy address {
  margin: 20px 0;
  font-style: normal;
  font-size: 0.95rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  transition: all var(--transition);
}

.contact-links a:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: var(--red);
  transform: translateY(-2px);
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.enquiry-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.88rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  background: rgba(5, 5, 10, 0.4);
  outline: none;
  transition: border-color var(--transition);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.enquiry-form option { color: var(--black); }
.enquiry-form textarea { resize: vertical; }

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 32px;
  padding: 44px clamp(18px, 5vw, 74px) 28px;
  color: rgba(255, 255, 255, 0.7);
  background: #050505;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 480px;
  line-height: 1.7;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--red-light);
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  text-align: center;
}

/* ═══════════════════ VIDEO PLAYER ═══════════════════ */
.video-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame video { cursor: pointer; }

.big-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: auto;
}

.big-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 60px rgba(220, 38, 38, 0.6);
}

.big-play-btn span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
}

.is-playing .big-play-btn {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.7);
}

.video-control {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--white);
  background: rgba(8, 8, 15, 0.75);
  backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: auto;
}

.video-frame:hover .video-control,
.video-tile:hover .video-control,
.showcase-main:hover .video-control,
.video-frame:not(.is-playing) .video-control {
  opacity: 1;
  transform: translateY(0);
}

.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-left-color: var(--red);
  border-radius: 50%;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  animation: videoSpin 0.8s linear infinite;
}

@keyframes videoSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.is-loading .video-loader { opacity: 1; visibility: visible; }

.video-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.video-btn:hover { transform: scale(1.15); color: var(--red-light); }

.video-btn svg { width: 20px; height: 20px; fill: currentColor; }

.video-progress-container {
  flex-grow: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  transition: height 0.2s ease;
}

.video-progress-container:hover { height: 7px; }

.video-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--red);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.volume-slider {
  width: 0;
  opacity: 0;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: width 0.3s ease, opacity 0.2s ease;
}

.volume-container:hover .volume-slider,
.volume-slider:active { width: 50px; opacity: 1; }

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════ SCROLL REVEAL ═══════════════════ */
.reveal { transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════ FOCUS ═══════════════════ */
:focus-visible {
  outline: 2px solid rgba(220, 38, 38, 0.7);
  outline-offset: 2px;
}

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p { margin-bottom: 0; }

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-16px, -6px, 0); }
}

/* ═══════════════════ REDUCED MOTION ═══════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════ RESPONSIVE – 1180px ═══════════════════ */
@media (max-width: 1180px) {
  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-stage { grid-template-columns: 1fr; }
  .showcase-media { position: static; }
  .showcase-main { min-height: 380px; }
  .solution-module { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-item:not(:last-child)::after { display: none; }
  .video-grid { grid-template-columns: 1fr; }
  .video-tile.large { min-height: 400px; }
}

/* ═══════════════════ RESPONSIVE – 900px ═══════════════════ */
@media (max-width: 900px) {
  .header-actions { flex-direction: row-reverse; }
  .nav-toggle { order: 3; display: block; }
  .theme-toggle { order: 2; font-size: 0; padding: 0; width: 44px; justify-content: center; }
  .theme-icon { font-size: 1.1rem; }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav { display: grid; }
  .main-nav a { width: 100%; }

  .hero-inner,
  .welcome,
  .vision-mission,
  .contact,
  .site-footer,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner { align-items: center; }
  .about-grid { grid-template-columns: 1fr; }
  .module-lists { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* ═══════════════════ RESPONSIVE – 680px ═══════════════════ */
@media (max-width: 680px) {
  .section-pad { padding: 56px 18px; }
  .hero-inner { padding: 110px 18px 90px; }

  h1 {
    font-size: clamp(3.5rem, 22vw, 5.5rem);
    letter-spacing: -1px;
  }

  .hero-dashboard { display: none; }

  .service-grid,
  .proof-strip,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: 0; }
  .detail-header { display: grid; }
  .detail-tabs { justify-content: flex-start; }
  .showcase-main { min-height: 280px; }
  .showcase-gallery { grid-template-columns: 1fr 1fr; }

  .solution-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-process span:nth-child(2) { border-right: 0; }
  .solution-process span:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

  .welcome-media,
  .welcome-media video { min-height: 280px; }

  .video-tile,
  .video-tile.large { min-height: 260px; }

  .hero-scroll-indicator { display: none; }
  .sticky-cta-sub { display: none; }
  .sticky-cta-btn { padding: 10px 18px; }

  body[data-theme="dark"] { background: var(--black); }

  body[data-theme="light"] { background: #f5f5f5; }
}

/* ═══════════════════ LIGHT THEME ═══════════════════ */
body[data-theme="light"] {
  --page-bg: #f8f8f8;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-solid: #ffffff;
  --text: #1a1a1a;
  --soft-text: #6b7280;
  --hairline: rgba(0, 0, 0, 0.08);
  --hero-shade: rgba(245, 245, 245, 0.85);
  --section-bg: #ffffff;
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
  color: var(--text);
  background: var(--page-bg);
}

/* ── Base sections ── */
body[data-theme="light"] .welcome,
body[data-theme="light"] .about,
body[data-theme="light"] .services,
body[data-theme="light"] .media-lab,
body[data-theme="light"] .profile,
body[data-theme="light"] .partners {
  background: var(--section-bg);
}

body[data-theme="light"] h2 { color: #1a1a1a; }
body[data-theme="light"] h3 { color: #1a1a1a; }

body[data-theme="light"] .eyebrow { color: var(--red-dark); }

body[data-theme="light"] .section-heading p,
body[data-theme="light"] .welcome-card p,
body[data-theme="light"] .about-panel p,
body[data-theme="light"] .vision-block p,
body[data-theme="light"] .contact-copy p {
  color: var(--soft-text);
}

/* ── Header ── */
body[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .main-nav a { color: #6b7280; }
body[data-theme="light"] .main-nav a:hover,
body[data-theme="light"] .main-nav a:focus-visible {
  color: var(--red);
  background: rgba(220, 38, 38, 0.06);
}

body[data-theme="light"] .main-nav a::after { background: var(--red); }

body[data-theme="light"] .theme-toggle { 
  color: var(--text); 
  background: #ffffff;
  border-color: var(--card-border);
}
body[data-theme="light"] .theme-toggle:hover { 
  color: var(--white); 
  background: var(--red);
  border-color: var(--red);
}

body[data-theme="light"] .nav-toggle { 
  border-color: var(--card-border); 
  background: #ffffff;
}
body[data-theme="light"] .nav-toggle span { background: #1a1a1a; }

/* ── Brand ── */
body[data-theme="light"] .brand-logo {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* ── Section dividers ── */
body[data-theme="light"] main > section:not(.hero):not(.proof-strip)::before {
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.12), transparent);
}

/* ── Hero ── */
body[data-theme="light"] .hero {
  background: var(--page-bg);
  color: #1a1a1a;
}

body[data-theme="light"] .hero-overlay {
  background: linear-gradient(90deg, rgba(248, 248, 248, 0.95) 0%, rgba(248, 248, 248, 0.4) 50%, rgba(220, 38, 38, 0.06) 100%);
}

body[data-theme="light"] .hero-noise {
  opacity: 0.3;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 8px);
}

body[data-theme="light"] .hero-accent {
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.06), transparent 70%);
}

body[data-theme="light"] .hero-video { opacity: 0.6; }

body[data-theme="light"] .hero::after {
  background: linear-gradient(180deg, transparent, var(--page-bg));
}

body[data-theme="light"] .hero .eyebrow { color: var(--red-dark); }
body[data-theme="light"] .hero-lede { color: #374151; }

body[data-theme="light"] h1 {
  background: linear-gradient(135deg, #1a1a1a 30%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

body[data-theme="light"] .hero-micro {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .hero-micro strong { color: #1a1a1a; }
body[data-theme="light"] .hero-micro span { color: #6b7280; }

body[data-theme="light"] .trust-pill {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: #374151;
}

body[data-theme="light"] .trust-pill:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--red);
  color: var(--red);
}

body[data-theme="light"] .hero-scroll-indicator span { color: rgba(0, 0, 0, 0.4); }
body[data-theme="light"] .scroll-arrow { border-color: rgba(0, 0, 0, 0.2); }
body[data-theme="light"] .scroll-arrow::before { background: var(--red); }

/* ── Hero dashboard ── */
body[data-theme="light"] .hero-dashboard {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .dashboard-label { color: var(--red-dark); }

body[data-theme="light"] .dashboard-line {
  border-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .dashboard-line strong { color: #1a1a1a; }
body[data-theme="light"] .dashboard-line span { color: #6b7280; }

body[data-theme="light"] .dashboard-dots { border-color: rgba(0, 0, 0, 0.06); }

/* ── Proof strip ── */
body[data-theme="light"] .proof-strip {
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.15), rgba(0, 0, 0, 0.08), rgba(34, 197, 94, 0.08));
}

body[data-theme="light"] .proof-item { 
  background: #ffffff; 
  box-shadow: none;
}

body[data-theme="light"] .proof-item::before {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), transparent);
}

body[data-theme="light"] .proof-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .proof-num { color: var(--red); }

body[data-theme="light"] .proof-content strong { color: #1a1a1a; }
body[data-theme="light"] .proof-content p { color: #6b7280; }

body[data-theme="light"] .proof-arrow { color: var(--red); }

/* ── Welcome ── */
body[data-theme="light"] .welcome-card {
  background: #ffffff;
  border-color: var(--card-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .welcome-card::before {
  background: linear-gradient(180deg, var(--red-light), var(--red), var(--red-dark));
}

body[data-theme="light"] .welcome-media {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ── About ── */
body[data-theme="light"] .about-panel {
  background: #ffffff;
  border-color: var(--card-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body[data-theme="light"] .about-panel:hover {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .about-icon {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.15);
}

body[data-theme="light"] .about-icon svg { fill: var(--red); }

/* ── Stats ── */
body[data-theme="light"] .stats {
  background: linear-gradient(135deg, #f0f0f0, #fafafa);
  border-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .stat-number {
  background: linear-gradient(135deg, #1a1a1a 40%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body[data-theme="light"] .stat-label { color: #6b7280; }

body[data-theme="light"] .stat-item:not(:last-child)::after {
  background: rgba(0, 0, 0, 0.1);
}

/* ── Vision Mission ── */
body[data-theme="light"] .vision-mission {
  background:
    linear-gradient(135deg, rgba(245, 245, 245, 0.98), rgba(250, 240, 240, 0.95)),
    url("assets/duffron-profile-002.png") center / cover;
  color: #1a1a1a;
}

body[data-theme="light"] .vision-mission .eyebrow { color: var(--red-dark); }
body[data-theme="light"] .vision-block p { color: #6b7280; }

body[data-theme="light"] .mission-list li {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
  color: #374151;
}

body[data-theme="light"] .mission-list li:hover {
  background: rgba(220, 38, 38, 0.06);
  border-color: rgba(220, 38, 38, 0.2);
}

body[data-theme="light"] .mission-list li::before { color: var(--red); }

/* ── Services ── */
body[data-theme="light"] .services {
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

body[data-theme="light"] .service-card {
  background: #ffffff;
  border-color: var(--card-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body[data-theme="light"] .service-card:hover,
body[data-theme="light"] .service-card:focus-visible,
body[data-theme="light"] .service-card.active {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .service-body .eyebrow { color: var(--red-dark); }
body[data-theme="light"] .service-body p { color: #6b7280; }
body[data-theme="light"] .service-link { color: var(--red); }

body[data-theme="light"] .service-meta span,
body[data-theme="light"] .solution-chips span {
  color: var(--red-dark);
  background: rgba(220, 38, 38, 0.06);
  border-color: rgba(220, 38, 38, 0.15);
}

/* ── Media Lab ── */
body[data-theme="light"] .media-lab {
  color: #1a1a1a;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.02), transparent), #ffffff;
}

body[data-theme="light"] .video-tile {
  background: #ffffff;
  border-color: var(--card-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .video-tile:hover {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .video-tile::after {
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.95));
}

body[data-theme="light"] .video-caption span { color: var(--red-dark); }
body[data-theme="light"] .video-caption strong { color: #1a1a1a; }

/* ── Detail ── */
body[data-theme="light"] .detail {
  background:
    linear-gradient(135deg, rgba(248, 248, 248, 0.98), rgba(250, 240, 240, 0.95) 52%, rgba(255, 245, 245, 0.92)),
    url("assets/duffron-profile-000.png") center / cover;
  color: #1a1a1a;
}

body[data-theme="light"] .detail .eyebrow { color: var(--red-dark); }
body[data-theme="light"] .detail-header h2 { color: #1a1a1a; }

body[data-theme="light"] .detail-tabs button {
  color: #6b7280;
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .detail-tabs button:hover {
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
}

body[data-theme="light"] .detail-tabs button.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--red);
}

body[data-theme="light"] .solution-intro,
body[data-theme="light"] .solution-process,
body[data-theme="light"] .solution-module {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .solution-intro p,
body[data-theme="light"] .module-copy p,
body[data-theme="light"] .solution-list li { color: #4b5563; }

body[data-theme="light"] .solution-intro strong { color: #1a1a1a; }

body[data-theme="light"] .solution-process span {
  color: #374151;
  border-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .solution-process span::after {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

body[data-theme="light"] .solution-list {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .detail-kicker { color: var(--red-dark); }

body[data-theme="light"] .showcase-main {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .showcase-main::after {
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.9));
}

body[data-theme="light"] .showcase-gallery img,
body[data-theme="light"] .showcase-gallery video {
  border-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .detail-badge { color: #1a1a1a; }
body[data-theme="light"] .detail-list li::before { background: var(--amber); }

/* ── Profile ── */
body[data-theme="light"] .profile-grid a.profile-card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .profile-stack span {
  background: #ffffff;
  border-color: var(--card-border);
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

body[data-theme="light"] .profile-stack span:hover {
  border-color: rgba(220, 38, 38, 0.25);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.04), #ffffff);
}

/* ── Partners ── */
body[data-theme="light"] .partner-logo {
  border-color: var(--card-border);
  color: #6b7280;
  background: #ffffff;
}

body[data-theme="light"] .partner-logo:hover {
  color: var(--red);
  border-color: rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.04);
}

/* ── Contact ── */
body[data-theme="light"] .contact {
  background:
    linear-gradient(135deg, rgba(248, 248, 248, 0.98), rgba(250, 240, 240, 0.95) 58%, rgba(255, 235, 235, 0.9)),
    url("assets/duffron-profile-006.png") center / cover;
  color: #1a1a1a;
}

body[data-theme="light"] .contact .eyebrow { color: var(--red-dark); }

body[data-theme="light"] .contact-copy p,
body[data-theme="light"] .contact-copy address { color: #4b5563; }

body[data-theme="light"] .contact-links a {
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .contact-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

body[data-theme="light"] .enquiry-form {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .enquiry-form label { color: #374151; }

body[data-theme="light"] .enquiry-form input,
body[data-theme="light"] .enquiry-form select,
body[data-theme="light"] .enquiry-form textarea {
  color: #1a1a1a;
  background: #ffffff;
  border-color: var(--card-border);
}

body[data-theme="light"] .enquiry-form input::placeholder,
body[data-theme="light"] .enquiry-form textarea::placeholder { color: #9ca3af; }

body[data-theme="light"] .enquiry-form select option { color: #1a1a1a; }

/* ── Footer ── */
body[data-theme="light"] .site-footer {
  background: #f0f0f0;
  color: #6b7280;
  border-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .footer-links a:hover {
  color: var(--red);
  background: rgba(0, 0, 0, 0.03);
}

body[data-theme="light"] .footer-bottom {
  border-color: rgba(0, 0, 0, 0.06);
}

/* ── Misc overrides ── */
body[data-theme="light"]::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
}

body[data-theme="light"] .big-play-btn { box-shadow: 0 0 30px rgba(220, 38, 38, 0.3); }

body[data-theme="light"] .button.secondary {
  color: var(--red-dark);
  border: 2px solid var(--red);
  background: transparent;
}

body[data-theme="light"] .button.secondary:hover {
  background: var(--red);
  color: var(--white);
}

body[data-theme="light"] .welcome {
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.02), transparent), #ffffff;
}

body[data-theme="light"] .about {
  background: #ffffff;
}

body[data-theme="light"] .profile {
  background: #ffffff;
}

body[data-theme="light"] .partners {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .detail-list li { color: #4b5563; }
body[data-theme="light"] .detail-list li::before { background: var(--amber); }

body[data-theme="light"] .video-control {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .video-btn { color: #1a1a1a; }
body[data-theme="light"] .video-btn:hover { color: var(--red); }

body[data-theme="light"] .video-progress-container { background: rgba(0, 0, 0, 0.1); }
body[data-theme="light"] .video-progress-bar { background: var(--red); }

body[data-theme="light"] .volume-slider { background: rgba(0, 0, 0, 0.1); }
body[data-theme="light"] .volume-slider::-webkit-slider-thumb { background: var(--red); }

body[data-theme="light"] .video-loader {
  border-color: rgba(0, 0, 0, 0.08);
  border-left-color: var(--red);
}

body[data-theme="light"] .gallery-video {
  border-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .profile-card { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); }

body[data-theme="light"] .profile-card-overlay {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9));
}

body[data-theme="light"] .profile-card small { color: #6b7280; }

body[data-theme="light"] .service-image::after {
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.6));
}

body[data-theme="light"] .service-number { color: rgba(0, 0, 0, 0.5); }
body[data-theme="light"] .service-video-cue {
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
}
