/* ============================================================
   ORANGE FALCON — Global Design System
   Theme: Orange (#ff6600, #ff8c00) + Black (#000, #0a0a0a)
   Stack: Three.js + GSAP + Custom CSS
   ============================================================ */

:root {
  --orange: #ff6600;
  --orange-bright: #ff8c00;
  --orange-glow: rgba(255, 102, 0, 0.6);
  --orange-subtle: rgba(255, 102, 0, 0.15);
  --black: #000000;
  --black-rich: #0a0a0a;
  --black-card: #111111;
  --black-glass: rgba(10, 10, 10, 0.85);
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.7);
  --font-main: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
  --radius-sm: 8px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

h1, h2, h3 { font-family: var(--font-display); }

/* ── Custom Cursor ── */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  opacity: 0.6;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 24px; height: 24px; }
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 60px; height: 60px; }

/* ── Loader ── */
/* ── Three.js Canvas ── */
#three-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Header / Navbar ── */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  transition: var(--transition);
}
#main-header.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,102,0,0.2);
  padding: 0.8rem 3rem;
}
#main-header.hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-logo { text-decoration: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--white-dim);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px var(--orange);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.6rem !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 100px !important;
  box-shadow: 0 0 20px var(--orange-glow);
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 40px var(--orange-glow); }

.nav-employee-login {
  padding: 0.5rem 1.2rem !important;
  background: transparent !important;
  color: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 100px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: color 0.3s, border-color 0.3s, background 0.3s !important;
}
.nav-employee-login::after { display: none !important; }
.nav-employee-login:hover {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.06) !important;
  transform: none !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
  clip-path: inset(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.05) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  z-index: 1;
  clip-path: inset(0);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 820px;
  padding: 0 3rem;
  margin: 0 0 0 5vw;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
}
.hero-title .accent { color: var(--orange); }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 0 3rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(30px);
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  background: linear-gradient(135deg, #ff7a00, #ff6600);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(255,102,0,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.18);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 50px rgba(255,102,0,0.65), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-primary:hover::before { left: 130%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

/* ── Scroll indicator ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(0.7); } }

/* ── Section Base ── */
.section {
  position: relative;
  z-index: 1;
  padding: 8rem 3rem;
  background: var(--black);
}
.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--orange);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--white-dim);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

/* ── Glass Cards ── */
.glass-card {
  background: rgba(17,17,17,0.7);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,102,0,0.09), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,102,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glass-card:hover {
  border-color: rgba(255,102,0,0.25);
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,102,0,0.12), 0 0 60px rgba(255,102,0,0.06);
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover::after { opacity: 1; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.service-card {
  padding: 2.8rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: left;
}
.service-card-icon {
  width: 52px; height: 52px;
  margin: 0 0 2rem;
  position: relative;
  background: rgba(255,102,0,0.1);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: var(--transition);
}
.service-card-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-card-icon {
  background: rgba(255,102,0,0.18);
  border-color: rgba(255,102,0,0.5);
  box-shadow: 0 0 24px rgba(255,102,0,0.25);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.service-card:hover h3 { color: var(--orange); }
.service-card p { color: var(--white-dim); font-size: 0.93rem; line-height: 1.75; }
.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255,102,0,0.12);
  border: 1px solid rgba(255,102,0,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.stats-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  z-index: 1;
}
.stat-item {
  background: var(--black-card);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.4s;
  position: relative;
}
.stat-item:hover { background: rgba(255,102,0,0.06); }
.stat-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.6rem;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.75rem; color: var(--white-dim); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

/* ── Feature/Benefit rows ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.feature-visual:hover img { transform: scale(1.06); }
.feature-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,102,0,0.15), transparent 60%);
  pointer-events: none;
}
.feature-text .section-label { display: block; }
.feature-text h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em; }
.feature-text p { color: var(--white-dim); line-height: 1.8; margin-bottom: 2rem; }

/* ── Check list ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 5px;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.process-step-card {
  padding: 2rem;
  position: relative;
}
.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,102,0,0.12);
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.process-step-card:hover .step-number { color: rgba(255,102,0,0.3); }
.process-step-card h4 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.process-step-card p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.7; }

/* ── Testimonials ── */
.testimonial-card {
  padding: 2.5rem;
}
.testimonial-quote {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; color: var(--orange); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 0.3rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: var(--orange); }

/* ── Partner logos ── */
.partner-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  filter: brightness(0) invert(0.4);
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s;
}
.partner-logo:hover { filter: brightness(0) invert(1); }

/* ── Contact Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--white-dim); text-transform: uppercase; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(255,102,0,0.6);
  background: rgba(255,102,0,0.04);
  box-shadow: 0 0 0 3px rgba(255,102,0,0.12), 0 0 20px rgba(255,102,0,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

/* ── Service checkboxes ── */
.services-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.3rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  font-size: 0.88rem;
  color: var(--white-dim);
  user-select: none;
}
.checkbox-item:hover {
  border-color: rgba(255,102,0,0.4);
  background: rgba(255,102,0,0.05);
  color: var(--white);
}
.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.checkbox-item input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}
.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 5px; height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.checkbox-item:has(input:checked) {
  border-color: rgba(255,102,0,0.5);
  background: rgba(255,102,0,0.08);
  color: var(--white);
}
@media (max-width: 480px) {
  .services-checkboxes { grid-template-columns: 1fr; }
}

/* ── Footer ── */
footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,102,0,0.15);
  padding: 6rem 3rem 2.5rem;
  position: relative;
  z-index: 1;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 4rem;
}
.footer-brand .footer-logo { height: 44px; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--white-dim); font-size: 0.9rem; line-height: 1.8; max-width: 280px; }
.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--white-dim); font-size: 0.85rem; }

/* ── Animations / utilities ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }
.reveal-delay-5 { transition-delay: 0.52s; }

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

.glow-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,102,0,0.3));
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 0 16px rgba(255,102,0,0.7);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
  z-index: 1;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.52;
  z-index: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .section-label { margin-bottom: 0.8rem; }
.page-hero-content h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.03em; color: var(--white); line-height: 1; margin-bottom: 1.2rem; }
.page-hero-content p { font-size: 1.15rem; color: var(--white-dim); max-width: 600px; line-height: 1.7; }

/* ── About & Contact layout ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

/* ── Orange divider ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,102,0,0.4), transparent);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ── Responsive ── */

/* Tablet landscape */
@media (max-width: 1200px) {
  .hero-content { margin: 0 0 0 3vw; max-width: 700px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
}

/* Tablet */
@media (max-width: 1024px) {
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-split { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .about-img-float { display: none !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Typography scale */
  html { font-size: 15px; }

  /* Sections — !important overrides inline style="padding:..." */
  .section { padding: 4rem 1.25rem !important; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2.5rem; }

  /* Header */
  #main-header { padding: 1rem 1.25rem; }
  #main-header.scrolled { padding: 0.65rem 1.25rem; }

  /* Mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    padding: 2rem 1.25rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,102,0,0.2);
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* Hero — center on mobile */
  .hero { justify-content: center; }
  .hero-content {
    margin: 0 auto;
    padding: 0 1.25rem;
    text-align: center;
    max-width: 100%;
  }
  .hero-eyebrow { font-size: 0.7rem; }
  .hero-subtitle { margin: 0 auto 2.5rem; max-width: 100%; }
  .hero-actions { justify-content: center; gap: 1rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { padding: 0.9rem 1.8rem; font-size: 0.9rem; }
  .hero-metrics { justify-content: center !important; gap: 1.5rem; padding-top: 2rem; }
  .hero-metric { text-align: center !important; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 2rem 1.5rem; }
  .service-card-icon { margin: 0 0 1.25rem; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 2rem 1rem; }
  .stat-num { font-size: 2.4rem; }

  /* About */
  .about-split { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .about-img-main { aspect-ratio: 16/9; }
  .about-badge-float { left: 1rem; top: 1rem; }
  .about-img-float { display: none !important; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Certs */
  .cert-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.25rem !important; }

  /* Feature rows */
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse { direction: ltr; }

  /* Page hero (inner pages) */
  .page-hero { min-height: 55vh; padding: 7rem 1.25rem 3rem; }
  .page-hero-content { padding: 0 !important; }
  .page-hero-content h1 { font-size: clamp(2.4rem, 9vw, 4rem) !important; margin-bottom: 1rem; }
  .page-hero-content p { font-size: 1rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 1rem; }
  .process-step-card { padding: 1.5rem; }

  /* Footer */
  footer { padding: 4rem 1.25rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-brand p { max-width: 100%; }

  /* Buttons */
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: auto; }

  /* Hide desktop cursor on touch */
  #cursor, #cursor-ring { display: none; }
  body { cursor: auto; }

  /* Video hero — ensure full cover on narrow screens */
  .hero-bg-video, .page-hero-bg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* Reduce decorative shapes to avoid horizontal overflow */
  .shape-1 { width: 300px !important; height: 300px !important; right: -60px !important; }
  .shape-2 { width: 220px !important; height: 220px !important; left: -60px !important; }

  /* Page hero inner padding reduced */
  .page-hero { padding: 6rem 1.25rem 3rem !important; min-height: 50vh; }
  .page-hero-content { padding: 0 !important; }
  .page-hero-content h1 { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; }
  .page-hero-content p { font-size: 0.95rem; }

  /* Inline section padding overrides */
  footer { padding: 4rem 1.25rem 2rem !important; }
}

/* Small mobile */
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2rem; }
  .stat-item { padding: 1.5rem 0.75rem; }
  .hero-metrics { gap: 1rem; }
  .section-title { letter-spacing: -0.02em; }
  .cert-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { text-align: center; justify-content: center; }
  .section { padding: 3rem 1rem !important; }
  .nav-logo img { height: 38px; }
}
