/* ============================================
   PUMP TEMPLATE — INDUSTRIAL DESIGN SYSTEM
   ============================================
   Direction: Industrial concrete aesthetic
   Heavy type, textured surfaces, diagonal cuts,
   gritty atmosphere, bold motion.
   ============================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Palette */
  --color-orange: #00e64d;
  --color-orange-dark: #00c441;
  --color-orange-glow: rgba(0, 230, 77, 0.15);
  --color-black: #0a0a0a;
  --color-charcoal: #141414;
  --color-dark: #1a1a1a;
  --color-mid: #2a2a2a;
  --color-steel: #3a3a3a;
  --color-concrete: #888888;
  --color-light: #cccccc;
  --color-off-white: #f0ece6;
  --color-white: #ffffff;

  /* Typography */
  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 4rem + 6vw, 10rem);
  --container: 1240px;
  --gap: 24px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 200ms;
  --dur-mid: 400ms;
  --dur-slow: 800ms;
  --dur-crawl: 1200ms;

  /* Depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--color-orange-glow);

  /* Diagonal */
  --skew-angle: -3deg;
  --skew-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-light);
  background: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(3.5rem, 2rem + 8vw, 8rem); }
h2 { font-size: clamp(2.2rem, 1.2rem + 4vw, 4rem); }
h3 { font-size: clamp(1.1rem, 0.9rem + 1vw, 1.5rem); }

p {
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
  color: var(--color-concrete);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.accent { color: var(--color-orange); }
.bold { font-weight: 700; color: var(--color-white); }

/* ── DIAGONAL SECTION DIVIDERS ── */
.diag-top {
  position: relative;
}

.diag-top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -5%;
  width: 110%;
  height: var(--skew-height);
  background: inherit;
  transform: skewY(var(--skew-angle));
  transform-origin: top left;
  z-index: 1;
}

.diag-bottom {
  position: relative;
}

.diag-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -5%;
  width: 110%;
  height: var(--skew-height);
  background: inherit;
  transform: skewY(var(--skew-angle));
  transform-origin: bottom right;
  z-index: 1;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1em 2.4em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out-expo),
              box-shadow var(--dur-mid) var(--ease-out-expo);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  padding-right: 3em;
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0% 100%);
  padding-left: 3em;
}

.btn-ghost:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all var(--dur-mid) var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px) saturate(1.5);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-white);
  letter-spacing: 0.06em;
  position: relative;
}

.nav-logo span {
  color: var(--color-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-concrete);
  transition: color var(--dur-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width var(--dur-mid) var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-orange);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: text-shadow var(--dur-mid);
}

.nav-phone:hover {
  text-shadow: 0 0 20px var(--color-orange-glow);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--color-orange);
  animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(0deg); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--dur-mid) var(--ease-out-expo),
              opacity var(--dur-fast),
              background var(--dur-fast);
}

.hamburger.active span { background: var(--color-orange); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-charcoal);
  z-index: 99;
  padding: 7rem 2.5rem 2.5rem;
  transition: right var(--dur-slow) var(--ease-out-expo);
  border-left: 1px solid var(--color-mid);
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-mid);
  transition: color var(--dur-fast), transform var(--dur-mid) var(--ease-out-expo);
}

.mobile-nav a:hover {
  color: var(--color-orange);
  transform: translateX(8px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid);
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, var(--color-orange-glow) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.6) 100%);
  z-index: 1;
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 106, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 20%, transparent 70%);
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(60px, 60px); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 6s ease-in infinite;
}

.particle:nth-child(1) { left: 15%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 35%; animation-delay: 1.2s; animation-duration: 5s; }
.particle:nth-child(3) { left: 55%; animation-delay: 2.5s; animation-duration: 8s; }
.particle:nth-child(4) { left: 72%; animation-delay: 0.8s; animation-duration: 6s; }
.particle:nth-child(5) { left: 88%; animation-delay: 3.1s; animation-duration: 7s; }
.particle:nth-child(6) { left: 25%; animation-delay: 4s; animation-duration: 5.5s; }
.particle:nth-child(7) { left: 65%; animation-delay: 1.8s; animation-duration: 9s; }
.particle:nth-child(8) { left: 45%; animation-delay: 3.5s; animation-duration: 6.5s; }

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 6rem;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-orange);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: hero-in 1s var(--ease-out-expo) 0.4s forwards;
}

.hero-sub {
  max-width: 520px;
  font-size: 1.15rem;
  color: var(--color-concrete);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-in 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-mid);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  color: var(--color-white);
  line-height: 1;
}

.hero-stat-number .accent { color: var(--color-orange); }

.hero-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-steel);
  margin-top: 0.3rem;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Scrolling badge */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: hero-in 0.8s var(--ease-out-expo) 1.4s forwards;
  opacity: 0;
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-steel);
}

.scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
  background: var(--color-mid);
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-orange);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ── ABOUT ── */
.about {
  padding: var(--section-pad) 0;
  background: var(--color-charcoal);
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.about-image img,
.about-image .placeholder-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.placeholder-img {
  background: linear-gradient(135deg, var(--color-dark), var(--color-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: -1rem;
  bottom: -1rem;
  border: 2px solid var(--color-orange);
  opacity: 0.2;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content h2 .stroke-text {
  -webkit-text-stroke: 1px var(--color-orange);
  color: transparent;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--color-dark);
  border: 1px solid var(--color-mid);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-light);
  transition: border-color var(--dur-mid), background var(--dur-mid);
}

.trust-pill:hover {
  border-color: var(--color-orange);
  background: rgba(0, 230, 77, 0.05);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--color-orange);
}

/* ── SERVICES ── */
.services {
  padding: var(--section-pad) 0;
  background: var(--color-black);
  position: relative;
  z-index: 2;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--color-orange);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-header.center .section-label::before {
  display: none;
}

.section-header p {
  max-width: 500px;
}

.section-header.center p {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-mid);
  border-right: none;
  background: var(--color-charcoal);
  transition: background var(--dur-mid) var(--ease-out-expo),
              transform var(--dur-mid) var(--ease-out-expo);
  overflow: hidden;
}

.service-card:last-child {
  border-right: 1px solid var(--color-mid);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out-expo);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--color-dark);
  transform: translateY(-4px);
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-mid);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color var(--dur-mid);
}

.service-card:hover .service-number {
  color: var(--color-orange);
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ── TEAM ── */
.team {
  padding: var(--section-pad) 0;
  background: var(--color-dark);
  position: relative;
  z-index: 2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  position: relative;
  overflow: hidden;
  background: var(--color-charcoal);
  transition: transform var(--dur-mid) var(--ease-out-expo);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.team-card-image img,
.team-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.team-card:hover .team-card-image img,
.team-card:hover .team-card-image .placeholder-img {
  transform: scale(1.06);
}

.team-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--color-charcoal) 0%, transparent 100%);
}

.team-card-info {
  padding: 1.2rem 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
  margin-top: -2rem;
}

.team-card-info h3 {
  text-transform: none;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.team-card-info p {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: 0;
}

/* ── CLIENTS / TRUST BAR ── */
.clients {
  padding: 4rem 0;
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-mid);
  border-bottom: 1px solid var(--color-mid);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: logo-scroll 25s linear infinite;
  width: max-content;
}

.logo-track img,
.logo-track .logo-placeholder {
  height: 36px;
  opacity: 0.35;
  filter: brightness(0) invert(1);
  transition: opacity var(--dur-mid);
  flex-shrink: 0;
}

.logo-track .logo-placeholder:hover {
  opacity: 0.8;
}

.logo-placeholder {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  white-space: nowrap;
  height: auto !important;
}

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

/* ── TESTIMONIALS ── */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-black);
  position: relative;
  z-index: 2;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-charcoal);
  border: 1px solid var(--color-mid);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  transition: border-color var(--dur-mid), transform var(--dur-mid) var(--ease-out-expo);
}

.testimonial-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-orange);
  line-height: 0.6;
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-mid);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.85rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-white);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--color-steel);
}

/* ── HOW IT WORKS ── */
.process {
  padding: var(--section-pad) 0;
  background: var(--color-charcoal);
  position: relative;
  z-index: 2;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--color-mid);
}

.process-step {
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--color-dark);
  border: 2px solid var(--color-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: border-color var(--dur-mid), background var(--dur-mid);
}

.step-icon:hover {
  border-color: var(--color-orange);
  background: rgba(0, 230, 77, 0.08);
}

.step-icon .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-orange);
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
}

/* ── BOOKING FORM ── */
.booking {
  padding: var(--section-pad) 0;
  background: var(--color-black);
  position: relative;
  z-index: 2;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 {
  margin-bottom: 1.5rem;
}

.booking-info p {
  margin-bottom: 2rem;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-mid);
}

.booking-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-orange);
  flex-shrink: 0;
}

.booking-contact-item a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-light);
  letter-spacing: 0.03em;
  transition: color var(--dur-fast);
}

.booking-contact-item a:hover {
  color: var(--color-orange);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-charcoal);
  border: 1px solid var(--color-mid);
  color: var(--color-white);
  outline: none;
  transition: border-color var(--dur-mid), box-shadow var(--dur-mid);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-steel);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px var(--color-orange-glow);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.booking-form .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--color-steel);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── FOOTER ── */
.footer {
  padding: 4rem 0 2rem;
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-mid);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--color-orange); }

.footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--color-orange);
}

.footer ul li { margin-bottom: 0.5rem; }

.footer ul li a {
  font-size: 0.9rem;
  color: var(--color-concrete);
  transition: color var(--dur-fast), transform var(--dur-mid);
  display: inline-block;
}

.footer ul li a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-network {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-mid);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-concrete);
}

.footer-network a {
  color: var(--color-orange);
  text-decoration: underline;
  transition: color var(--dur-fast);
}

.footer-network a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-mid);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-steel);
}

.footer-bottom a {
  color: var(--color-orange);
  text-decoration: underline;
}

/* ── SCROLL REVEALS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out-expo),
              transform var(--dur-slow) var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--dur-slow) var(--ease-out-expo),
              transform var(--dur-slow) var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--dur-slow) var(--ease-out-expo),
              transform var(--dur-slow) var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-out-expo),
              transform var(--dur-slow) var(--ease-out-expo);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 120ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 360ms; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO BG IMAGE/VIDEO ── */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* ── FLEET ── */
.fleet {
  padding: var(--section-pad) 0;
  background: var(--color-dark);
  position: relative;
  z-index: 2;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fleet-card {
  background: var(--color-charcoal);
  border: 1px solid var(--color-mid);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-mid), transform var(--dur-mid) var(--ease-out-expo);
}

.fleet-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform var(--dur-mid) var(--ease-out-expo);
}

.fleet-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
}

.fleet-card:hover::after {
  transform: scaleX(1);
}

.fleet-card.featured {
  border-color: var(--color-orange);
  background: rgba(0, 230, 77, 0.04);
}

.fleet-reach {
  font-size: clamp(3rem, 2rem + 3vw, 4.5rem);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.fleet-card h3 {
  margin-bottom: 0.5rem;
}

.fleet-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ── SERVICE IMAGE CARDS ── */
.services-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-image-card {
  background: var(--color-charcoal);
  border: 1px solid var(--color-mid);
  overflow: hidden;
  transition: border-color var(--dur-mid), transform var(--dur-mid) var(--ease-out-expo);
}

.service-image-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
}

.service-image-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.service-image-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

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

.service-image-card-content {
  padding: 1.5rem 2rem 2rem;
  position: relative;
}

.service-number-tag {
  font-size: 3rem;
  color: var(--color-mid);
  line-height: 1;
  position: absolute;
  top: -1.5rem;
  right: 1.5rem;
  transition: color var(--dur-mid);
}

.service-image-card:hover .service-number-tag {
  color: var(--color-orange);
}

.service-image-card-content h3 {
  margin-bottom: 0.5rem;
}

.service-image-card-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ── PROJECT GALLERY ── */
.projects {
  padding: var(--section-pad) 0;
  background: var(--color-charcoal);
  position: relative;
  z-index: 2;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out-expo);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.stagger.visible > *:nth-child(5) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 600ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 720ms; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    border-right: 1px solid var(--color-mid);
  }

  .services-image-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.gallery-wide {
    grid-column: span 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.gallery-wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-track::before { display: none; }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
