/* ========================================
   RCD GROUP v2 — Industrial Modern
   Charcoal + Safety Orange + Steel Blue
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@700;800;900&display=swap');
:root {
  /* Core Palette */
  --charcoal: #111111;
  --charcoal-light: #1A1A1A;
  --charcoal-mid: #222222;
  --charcoal-soft: #2A2A2A;
  --orange: #FF5500;
  --orange-hover: #FF6E2B;
  --orange-glow: rgba(255, 85, 0, 0.15);
  --orange-glow-strong: rgba(255, 85, 0, 0.3);
  --steel: #2A6A8F;
  --steel-light: #3A8AB8;
  --steel-glow: rgba(42, 106, 143, 0.15);
  --white: #FFFFFF;
  --off-white: #F0F0F0;
  --gray-100: #E5E5E5;
  --gray-200: #CCCCCC;
  --gray-300: #999999;
  --gray-400: #666666;
  --gray-500: #444444;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  /* Spacing & Sizing */
  --max-w: 1240px;
  --nav-h: 80px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.3);
  --shadow-orange: 0 8px 30px rgba(255, 85, 0, 0.25);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: all 0.35s var(--ease);
}
/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
button { font-family: var(--font-body); }
/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--t);
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(255,85,0,0.3);
}
.nav-logo .logo-sub {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 0.85rem;
  margin-left: -0.25rem;
}
/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 8px;
  transition: var(--t);
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-cta-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(255,85,0,0.25);
}
.nav-cta-btn:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange) !important;
}
/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
/* ========================================
   HERO — Full-Bleed Epic
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.5) 40%, rgba(17,17,17,0.85) 100%),
    linear-gradient(90deg, rgba(17,17,17,0.8) 0%, transparent 60%);
}
/* Subtle grid overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 85, 0, 0.12);
  border: 1px solid rgba(255, 85, 0, 0.25);
  color: var(--orange);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  max-width: 800px;
}
.hero h1 .text-orange { color: var(--orange); }
.hero h1 .text-steel { color: var(--steel-light); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--gray-200);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-300);
  font-weight: 500;
}
.trust-item svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn svg { width: 20px; height: 20px; }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,85,0,0.3);
}
.btn-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,85,0,0.4);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal-mid);
  transform: translateY(-2px);
}
/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 7rem 2rem;
  position: relative;
}
.section-dark { background: var(--charcoal); }
.section-darker { background: var(--charcoal-light); }
.section-light { background: var(--off-white); color: var(--charcoal); }
.section-white { background: var(--white); color: var(--charcoal); }
.section-gradient {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-label svg {
  width: 16px; height: 16px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  opacity: 0.7;
}
/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--charcoal-light);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 3.5rem 2rem;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border-dark);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--gray-300);
  font-weight: 500;
}
/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,85,0,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg {
  width: 24px; height: 24px;
  color: var(--orange);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--gray-300);
  font-size: 0.92rem;
  line-height: 1.7;
}
/* Light section cards */
.section-light .service-card,
.section-white .service-card {
  background: var(--white);
  border-color: var(--border-light);
}
.section-light .service-card:hover,
.section-white .service-card:hover {
  border-color: rgba(255,85,0,0.15);
  box-shadow: var(--shadow-card), 0 8px 30px rgba(255,85,0,0.06);
}
.section-light .service-card h3,
.section-white .service-card h3 { color: var(--charcoal); }
.section-light .service-card p,
.section-white .service-card p { color: var(--gray-400); }
/* ========================================
   PHOTO GRID
   ======================================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/11;
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.photo-card:hover img { transform: scale(1.06); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,17,17,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.photo-card:hover .photo-overlay { opacity: 1; }
.photo-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.photo-overlay p {
  font-size: 0.82rem;
  color: var(--gray-200);
}
/* ========================================
   SPLIT SECTIONS
   ======================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img {
  width: 100%; height: 450px;
  object-fit: cover;
}
/* Orange corner accent */
.split-img::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.split-content .section-label { text-align: left; }
.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.split-content > p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}
/* Check list */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.check-icon {
  width: 24px; height: 24px; min-width: 24px;
  background: var(--orange-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-icon svg {
  width: 14px; height: 14px;
  color: var(--orange);
}
.section-light .check-list li,
.section-white .check-list li { color: var(--gray-500); }
/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--t);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(255,85,0,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray-200);
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), #FF8844);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}
.testimonial-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-info p {
  font-size: 0.78rem;
  color: var(--gray-400);
}
/* ========================================
   INDUSTRIES (Dark Section Cards)
   ======================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.industry-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--t);
}
.industry-card:hover {
  background: rgba(255,85,0,0.06);
  border-color: rgba(255,85,0,0.2);
  transform: translateY(-4px);
}
.industry-icon {
  width: 56px; height: 56px;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.industry-icon svg {
  width: 26px; height: 26px;
  color: var(--orange);
}
.industry-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.industry-card p {
  font-size: 0.78rem;
  color: var(--gray-400);
}
/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: 7rem 2rem;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.5), rgba(17,17,17,0.45));
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.cta-content p {
  color: var(--gray-200);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-phone {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.cta-phone:hover { color: var(--orange-hover); }
/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  overflow: hidden;
  background: var(--charcoal);
}
.page-header-bg {
  position: absolute;
  inset: 0;
}
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--charcoal) 0%, rgba(17,17,17,0.7) 100%);
}
.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.page-header p {
  font-size: 1.2rem;
  color: var(--gray-200);
  line-height: 1.75;
}
/* ---- Bright page header variant ---- */
.page-header-bright .page-header-bg img {
  opacity: 0.65;
}
.page-header-bright .page-header-bg::after {
  background: linear-gradient(180deg, rgba(17,17,17,0.3) 0%, rgba(17,17,17,0.4) 100%);
}
/* ========================================
   FORMS
   ======================================== */
.form-container { max-width: 600px; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--charcoal-mid);
  color: var(--white);
  transition: var(--t);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-500); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--charcoal-mid); }
/* Light bg forms */
.section-light .form-input,
.section-white .form-input,
.section-light .form-textarea,
.section-white .form-textarea,
.section-light .form-select,
.section-white .form-select {
  background: var(--white);
  border-color: var(--gray-100);
  color: var(--charcoal);
}
.section-light .form-input::placeholder,
.section-white .form-input::placeholder,
.section-light .form-textarea::placeholder,
.section-white .form-textarea::placeholder { color: var(--gray-300); }
/* File upload */
.form-file-upload {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--t);
  background: rgba(255,255,255,0.02);
}
.form-file-upload:hover {
  border-color: var(--orange);
  background: var(--orange-glow);
}
.form-file-upload input[type="file"] { display: none; }
.form-file-upload .upload-icon {
  margin-bottom: 0.75rem;
}
.form-file-upload .upload-icon svg {
  width: 40px; height: 40px;
  color: var(--orange);
  margin: 0 auto;
}
.form-file-upload p {
  color: var(--gray-300);
  font-size: 0.9rem;
}
.form-file-upload .text-orange { color: var(--orange); font-weight: 600; }
/* ========================================
   PROCESS STEPS
   ======================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%; right: 12%;
  height: 2px;
  background: var(--border-dark);
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px; height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-orange);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.6;
}
.section-light .process-steps::before { background: var(--gray-100); }
/* ========================================
   HIGHLIGHT BOX
   ======================================== */
.highlight-box {
  background: var(--orange-glow);
  border: 1px solid rgba(255,85,0,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.highlight-box .hl-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-box .hl-icon svg {
  width: 24px; height: 24px;
  color: var(--white);
}
.highlight-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.highlight-box p {
  font-size: 0.92rem;
  opacity: 0.75;
  line-height: 1.7;
}
.section-light .highlight-box,
.section-white .highlight-box {
  background: rgba(255,85,0,0.05);
  border-color: rgba(255,85,0,0.1);
}
.section-light .highlight-box h3,
.section-white .highlight-box h3 { color: var(--charcoal); }
.section-light .highlight-box p,
.section-white .highlight-box p { color: var(--gray-500); }
/* ========================================
   CAREER TIPS
   ======================================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tip-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--t);
}
.tip-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,85,0,0.15);
}
.tip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.tip-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.tip-card p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.7;
}
/* ========================================
   TIMELINE
   ======================================== */
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--steel));
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-3rem - 7px);
  top: 6px;
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--orange-glow);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.timeline-item p {
  font-size: 0.92rem;
  opacity: 0.65;
  line-height: 1.7;
}
/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--t);
}
.contact-info-card:hover {
  border-color: rgba(255,85,0,0.15);
  transform: translateX(4px);
}
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 22px; height: 22px;
  color: var(--orange);
}
.contact-info-card h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.contact-info-card a,
.contact-info-card .contact-detail {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.contact-info-card a:hover { color: var(--orange); }
/* Form card */
.form-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.form-card > p {
  color: var(--gray-400);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--charcoal-light);
  border-top: 1px solid var(--border-dark);
  padding: 4.5rem 2rem 2rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 320px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: var(--gray-400);
}
.footer-contact svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.footer-contact a { color: var(--gray-400); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: var(--gray-500);
}
/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }
/* Parallax hero */
.parallax-bg {
  will-change: transform;
}
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split.reverse { direction: ltr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem; }
  .hero-trust { gap: 1rem; }
  .section { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-header { padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .highlight-box { flex-direction: column; }
}
/* ========================================
   ABOUT: Founder Section
   ======================================== */
.founder-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}
.founder-photo {
  width: 300px; height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-photo::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.founder-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.founder-title {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.founder-content p {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-photo {
    width: 220px; height: 280px;
    margin: 0 auto;
  }
}