/* ═══════════════════════════════════════════
   EXCAVATION DEZO — main.css
   Version 1.0.0
═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --black:        #0a0a0a;
  --dark:         #111111;
  --dark2:        #161616;
  --dark3:        #1f1f1f;
  --dark4:        #2a2a2a;
  --gray-dark:    #444444;
  --gray:         #777777;
  --gray-light:   #aaaaaa;
  --white:        #f4f3ef;
  --white-pure:   #ffffff;
  --orange:       #f59e0b;
  --orange-dark:  #d97706;
  --orange-light: #fbbf24;
  --orange-glow:  rgba(245,158,11,0.15);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --radius:       0px;
  --shadow:       0 8px 40px rgba(0,0,0,0.5);
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.3);
  --transition:   all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--orange);
}
.section-eyebrow--dark { color: var(--gray-light); }
.section-eyebrow--dark::before { background: var(--gray-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-text {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.75;
  max-width: 520px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-eyebrow { justify-content: center; }
.section-header .section-subtitle { margin: 0 auto; }

.text-orange { color: var(--orange); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn--orange {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--white-pure);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--xl { padding: 18px 40px; font-size: 1.15rem; }
.btn--full { width: 100%; justify-content: center; }
.btn-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.75;
  display: block;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.site-nav.scrolled {
  height: 62px;
  border-bottom-color: rgba(245,158,11,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 5%;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-badge {
  width: 42px; height: 42px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-badge svg { width: 20px; height: 20px; color: var(--black); }
.logo-badge:hover { background: var(--orange-light); }
.logo-badge--sm { width: 36px; height: 36px; }
.logo-badge--sm svg { width: 16px; height: 16px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-text span { color: var(--orange); }
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--gray);
  font-weight: 400;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}
.nav-links a {
  color: var(--gray-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: left 0.25s, right 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 16px; right: 16px; }

/* Nav CTA */
.btn-call-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--black);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.btn-call-nav:hover { background: var(--orange-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════
   MOBILE CTA BAR
══════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 10px 16px;
  gap: 10px;
}
.btn-mobile {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-mobile.call { background: var(--orange); color: var(--black); }
.btn-mobile.quote {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,0.97) 40%, rgba(10,10,10,0.65) 100%),
    url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(245,158,11,0.07) 0%, transparent 60%);
}
.hero-accent-line {
  position: absolute;
  top: 0; bottom: 0; left: 55%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, var(--orange) 30%, var(--orange) 70%, transparent 95%);
  opacity: 0.12;
  transform: rotate(6deg);
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 100px;
}
.hero-content { max-width: 720px; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 7px 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  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(1.6); }
}
.hero-eyebrow span {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-title-sub {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--gray-light);
  font-weight: 700;
  line-height: 1.0;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* Badges */
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}
.badge svg { color: var(--orange); flex-shrink: 0; }

/* Buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.4s ease both;
}

/* Urgency bar */
.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,158,11,0.08);
  border-left: 3px solid var(--orange);
  padding: 10px 18px;
  font-size: 0.83rem;
  color: var(--gray-light);
  animation: fadeUp 0.8s 0.45s ease both;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 0.8s 0.6s ease both;
}
.scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
  white-space: nowrap;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 36px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--orange);
}
.stat-plus { font-size: 0.6em; vertical-align: super; }
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   DIFFERENTIATION
══════════════════════════════════════ */
.differentiation {
  padding: 100px 0;
  background: var(--black);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-content .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.diff-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.diff-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.diff-point-icon {
  width: 44px; height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.diff-point strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.diff-point p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* Cards */
.diff-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.diff-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
}
.diff-card--good {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.05);
}
.diff-card-header { margin-bottom: 16px; }
.diff-card-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.diff-card-badge--bad { background: rgba(255,255,255,0.05); color: var(--gray); }
.diff-card-badge--good { background: var(--orange); color: var(--black); }
.diff-card-list { display: flex; flex-direction: column; gap: 10px; }
.diff-card-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.diff-card-list--bad li { color: var(--gray); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.15); }
.diff-card-list--good li { color: var(--white); font-weight: 500; }
.diff-vs {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--orange);
  padding: 14px;
  background: var(--dark);
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  opacity: 0.4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 50px;
}
.service-card {
  background: var(--dark2);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--orange);
  transition: right 0.35s ease;
}
.service-card:hover { background: var(--dark3); }
.service-card:hover::before { right: 0; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--orange-glow);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.65;
}
.service-arrow {
  position: absolute;
  bottom: 24px; right: 28px;
  font-size: 1.2rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

.section-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-us {
  padding: 100px 0;
  position: relative;
  background: var(--black);
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(245,158,11,0.03) 0%, transparent 50%);
}
.why-us .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}
.why-card {
  background: var(--black);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}
.why-card:hover { background: var(--dark2); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--orange-glow);
  border: 1px solid rgba(245,158,11,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
}
.cta-band-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.06) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-band-text p {
  font-size: 1rem;
  color: var(--gray-light);
}
.cta-band-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--dark2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.contact-info > p {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--orange-glow);
  border: 1px solid rgba(245,158,11,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}
a.contact-value:hover { color: var(--orange); }
.rbq-badge-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  font-size: 0.82rem;
  color: var(--gray-light);
  font-weight: 500;
}
.rbq-badge {
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 3px 8px;
}

/* Form */
.contact-form-wrap {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f59e0b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--dark3); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-notice {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  color: var(--gray);
  margin-top: 4px;
}
.form-notice svg { color: var(--orange); flex-shrink: 0; }
.form-feedback {
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4px;
}
.form-feedback.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.form-feedback.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--dark); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.3fr;
  gap: 50px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}
.footer-rbq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  font-size: 0.88rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-list a::before {
  content: '→';
  color: var(--orange);
  font-size: 0.8rem;
}
.footer-list a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.5;
}
.footer-contact-list svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a:hover { color: var(--orange); }
.footer-cta-col p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-dark);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .diff-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(245,158,11,0.2);
    gap: 0;
  }
  .nav-links.open a {
    padding: 14px 5%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .hero { min-height: 90vh; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .diff-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
  .stats-grid { justify-content: center; }
  .stat-divider { display: none; }
  body { padding-bottom: 70px; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-badges { flex-direction: column; }
  .badge { width: fit-content; }
  .scroll-indicator { display: none; }
}
