/* ============================================================
   BiohazardCleaners UK — Industrial Design System
   Branch: claude-design-1-biohazard
   ============================================================ */

/* ---- Custom properties ---- */
:root {
  --bg:          #0E0F11;
  --bg-elev:     #16181B;
  --bg-panel:    #1D2024;
  --line:        #2A2E33;
  --line-strong: #3A3F45;
  --fg:          #F4F2ED;
  --fg-dim:      #A9ADB3;
  --fg-mute:     #6B7076;
  --yellow:      #FFD20A;
  --yellow-dim:  #CFAB08;
  --orange:      #FF5B1F;
  --red:         #E0332A;
  --green:       #2ECC71;

  --font-display: 'Archivo', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html, body { overflow-x: hidden; scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Hazard stripe utility ---- */
.hazard-stripe-thin {
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 8px, #0E0F11 8px 16px);
}

/* ---- Typography ---- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 85%;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.overline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */

/* Status bar */
.header-top {
  background: #000;
  color: var(--fg-dim);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.header-top a { transition: color 0.15s; }
.header-top a:hover { color: var(--yellow); }
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(46,204,113,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(46,204,113,0);   }
  100% { box-shadow: 0 0 0 0   rgba(46,204,113,0);   }
}

/* Sticky main nav */
.header-main {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--yellow);
  display: grid; place-items: center;
  color: #000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  transition: background 0.15s;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo:hover .logo-mark { background: #fff; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 85%;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.logo-sub {
  display: block;
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 3px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
}

/* Nav links */
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 8px 0;
  position: relative;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--yellow); }
.main-nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

/* Phone CTA */
.phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-cta:hover { border-color: var(--yellow); color: var(--yellow); }
.phone-icon {
  width: 18px; height: 18px;
  background: var(--yellow);
  color: #000;
  display: grid; place-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
.phone-icon svg { width: 12px; height: 12px; }
.phone-label { color: var(--fg-mute); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  transition: all 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
  z-index: 49;
  padding: 24px 32px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .mobile-phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--yellow);
  padding: 16px 0 0;
  letter-spacing: -0.01em;
  border-bottom: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 85%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
  border: none;
  transition: all 0.15s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--yellow); color: #000; }
.btn-primary:hover { background: #fff; transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--yellow); }
.btn-primary:active { transform: translate(0,0); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-sm { padding: 10px 16px; font-size: 12px; }

/* ============================================================
   FORMS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.req { color: var(--yellow); }
.input, .select-field, .textarea {
  background: #0A0B0D;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  padding: 14px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--fg-mute); }
.input:focus, .select-field:focus, .textarea:focus {
  border-color: var(--yellow);
  background: #000;
}
.input.error, .select-field.error, .textarea.error { border-color: var(--red); }
.field-err {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 16px;
}
.textarea { resize: vertical; min-height: 88px; }
.select-field {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23FFD20A' stroke-width='2' fill='none' stroke-linecap='square'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.select-field option { background: #0A0B0D; color: var(--fg); }

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }

/* Form footer */
.form-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-assurance {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}
.form-assurance .tick {
  width: 14px; height: 14px;
  background: var(--yellow);
  color: #000;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 900;
  flex-shrink: 0;
}

/* Honeypot */
.hp-field { display: none !important; }

/* Form messages */
#form-message {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 12px 14px;
  margin-top: 16px;
  letter-spacing: 0.04em;
  display: none;
}
#form-message.success { background: rgba(46,204,113,0.1); border: 1px solid #2ECC71; color: #2ECC71; }
#form-message.error   { background: rgba(224,51,42,0.1);  border: 1px solid var(--red); color: var(--red); }

/* Form success state */
.form-success-state {
  text-align: center;
  padding: 32px 16px;
  display: none;
}
.form-success-state.visible { display: block; }
.success-hex {
  width: 64px; height: 64px;
  background: var(--yellow);
  color: #000;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.success-hex svg { width: 28px; height: 28px; }
.form-success-state h4 {
  font-family: var(--font-display);
  font-weight: 900; font-stretch: 85%;
  text-transform: uppercase;
  font-size: 24px; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.form-success-state p { color: var(--fg-dim); max-width: 340px; margin: 0 auto 20px; font-size: 14px; line-height: 1.6; }
.ref-code {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-dim);
  padding: 8px 14px;
  border: 1px dashed var(--line-strong);
}
.ref-code span { color: var(--yellow); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    repeating-linear-gradient(-45deg, rgba(255,210,10,0.035) 0 2px, transparent 2px 40px),
    linear-gradient(180deg, #0E0F11 0%, #16181B 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 56px 0 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-left { padding-top: 24px; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  border: 1px solid var(--line-strong);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 22px; height: 22px;
  background: var(--yellow);
  display: grid; place-items: center;
  color: #000;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
}
.hero-eyebrow .txt {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-dim);
}

/* Headline */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900; font-stretch: 85%;
  letter-spacing: -0.02em; line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(44px, 5.8vw, 84px);
  margin-bottom: 24px;
}
.hero h1 .accent-yellow { color: var(--yellow); }
.hero h1 .strikeline {
  display: inline-block; position: relative;
}
.hero h1 .strikeline::after {
  content: '';
  position: absolute; left: -4px; right: -4px; bottom: 0.12em; height: 0.18em;
  background: var(--yellow); z-index: -1;
}
.hero-sub {
  font-size: 18px; color: var(--fg-dim);
  max-width: 520px; margin-bottom: 32px; line-height: 1.55;
}

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
.hero-stat {
  padding: 20px 0 20px 16px;
  border-right: 1px solid var(--line);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900; font-stretch: 85%;
  font-size: 32px; line-height: 1; margin-bottom: 6px;
}
.stat-num .unit { color: var(--yellow); }
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-mute);
}

/* Hero form card */
.hero-form-wrap { position: relative; }
.corner-tl {
  position: absolute; top: -10px; left: -10px;
  width: 80px; height: 10px;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 8px, #0E0F11 8px 16px);
}
.corner-tl-v {
  position: absolute; top: -10px; left: -10px;
  width: 10px; height: 80px;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 8px, #0E0F11 8px 16px);
}
.corner-br {
  position: absolute; bottom: -10px; right: -10px;
  width: 80px; height: 10px;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 8px, #0E0F11 8px 16px);
}
.corner-br-v {
  position: absolute; bottom: -10px; right: -10px;
  width: 10px; height: 80px;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 8px, #0E0F11 8px 16px);
}
.hero-form {
  background: var(--bg-panel);
  border: 1px solid var(--line-strong);
  padding: 32px;
}
.hero-form-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.hero-form-header h3 {
  font-family: var(--font-display);
  font-weight: 900; font-stretch: 85%;
  text-transform: uppercase; letter-spacing: -0.01em;
  font-size: 26px; line-height: 1; color: var(--fg);
}
.hero-form-header .form-sub {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-dim); margin-top: 8px;
}
.badge-24-7 {
  background: var(--yellow); color: #000;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px; white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-strip .container {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 24px; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding-right: 24px; border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; padding-right: 0; }
.trust-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--bg-panel);
  display: grid; place-items: center;
  color: var(--yellow); border: 1px solid var(--line-strong);
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-text {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-dim); line-height: 1.3;
}
.trust-text strong {
  color: var(--fg); display: block;
  font-weight: 700; font-size: 12px;
  margin-bottom: 2px; letter-spacing: 0.08em;
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
.section { padding: 96px 0; border-bottom: 1px solid var(--line); }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-bottom: 56px; align-items: end;
}
.section-head .overline {
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-head .overline .num { color: var(--yellow); font-weight: 700; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900; font-stretch: 85%;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-head h2 .accent         { color: var(--yellow); }
.section-head h2 .accent-orange  { color: var(--orange); }
.section-desc {
  color: var(--fg-dim); font-size: 16px;
  max-width: 440px; justify-self: end;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  position: relative; padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 0.2s;
  min-height: 180px;
  display: flex; flex-direction: column;
  justify-content: space-between; cursor: pointer;
}
.service-card:hover { background: var(--bg-elev); }
.card-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-mute); margin-bottom: 40px;
}
.card-icon {
  width: 36px; height: 36px;
  color: var(--yellow); margin-bottom: 16px;
  transition: color 0.2s;
}
.service-card:hover .card-icon { color: var(--fg-mute); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 900; font-stretch: 85%;
  text-transform: uppercase; letter-spacing: -0.01em;
  font-size: 20px; line-height: 1;
}
.card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: var(--fg-mute); transition: all 0.2s;
}
.service-card:hover .card-arrow { color: var(--yellow); transform: translate(2px,-2px); }
.service-card.urgent { background: #1A0F0E; }
.service-card.urgent::before {
  content: '24/7';
  position: absolute; top: 20px; right: 52px;
  background: var(--red); color: #fff;
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 700; letter-spacing: 0.1em; padding: 2px 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg-elev); }
.testi-scroll {
  display: flex; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.testi-scroll::-webkit-scrollbar { height: 4px; }
.testi-scroll::-webkit-scrollbar-thumb { background: var(--line-strong); }
.testi-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; flex-direction: column;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-weight: 900; font-size: 64px; line-height: 0.8;
  color: var(--yellow); display: block; margin-bottom: 16px;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { width: 14px; height: 14px; fill: var(--yellow); color: var(--yellow); }
.testi-quote {
  font-size: 15px; line-height: 1.6; color: var(--fg);
  margin-bottom: 20px; flex: 1; font-style: normal;
}
.testi-author-row {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.testi-author { font-weight: 600; font-size: 14px; color: var(--fg); }
.testi-location {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim);
  margin-top: 2px;
}
.testi-source {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
.testi-source::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.testi-source--google::before     { background: #4285F4; }
.testi-source--google             { color: #4285F4; }
.testi-source--trustpilot::before { background: #00b67a; }
.testi-source--trustpilot         { color: #00b67a; }
.testi-source--yell::before       { background: #e84118; }
.testi-source--yell               { color: #e84118; }
.testi-source--birdeye::before    { background: #0ea5e9; }
.testi-source--birdeye            { color: #0ea5e9; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #000; padding: 64px 0 0; color: var(--fg); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900; font-stretch: 85%;
  text-transform: uppercase; font-size: 22px;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.footer-brand-desc {
  color: var(--fg-dim); font-size: 14px;
  max-width: 320px; margin-bottom: 24px; line-height: 1.55;
}
.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 900; font-stretch: 85%;
  font-size: 32px; color: var(--yellow);
  letter-spacing: -0.01em; margin-bottom: 4px;
  transition: color 0.15s;
}
.footer-phone:hover { color: #fff; }
.footer-phone-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-dim);
}
.footer-col h5 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--fg); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-email-line { font-size: 14px; color: var(--fg-dim); margin-bottom: 10px; word-break: break-all; }
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute);
}
.footer-bottom a { transition: color 0.15s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   SCROLL FADE
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 64px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-desc { justify-self: start; max-width: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .phone-cta { display: none; }
  .hamburger { display: flex; }
  .trust-strip .container { grid-template-columns: repeat(2,1fr); }
  .trust-item { border-right: none; padding-right: 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-top { display: none; }
  .phone-cta { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 64px 0; }
  .testi-card { flex: 0 0 280px; }
  .hero-form { padding: 24px 20px; }
  .mobile-menu { padding: 20px; }
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: -40px; right: -40px;
  height: 16px; /* invisible bridge covers the gap between trigger and menu */
}
.nav-dropdown-btn {
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--fg); padding: 8px 0; display: flex; align-items: center; gap: 5px;
  cursor: pointer; background: none; border: none; font-family: inherit;
  position: relative; transition: color 0.15s;
}
.nav-dropdown:hover .nav-dropdown-btn { color: var(--yellow); }
.nav-dropdown-btn::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-btn::after { transform: scaleX(1); }
.nav-dropdown-btn svg { transition: transform 0.2s; width: 10px; height: 6px; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.mega-menu {
  display: flex; position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%); background: var(--bg-panel);
  border: 1px solid var(--line-strong); padding: 24px 28px 20px;
  gap: 32px; z-index: 200; min-width: 560px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.7);
  visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
  transition-delay: 300ms;
}
.nav-dropdown:hover .mega-menu {
  visibility: visible; opacity: 1; pointer-events: auto;
  transition-delay: 0ms;
}
.mega-col { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.mega-col-title {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow); font-weight: 700;
  padding-bottom: 10px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.mega-menu a {
  font-size: 13px; color: var(--fg-dim); padding: 5px 0; transition: color 0.15s, padding-left 0.12s;
  display: flex; align-items: center; gap: 7px; font-weight: 500;
  letter-spacing: 0; text-transform: none;
}
.mega-menu a::before { content: '›'; font-size: 12px; color: var(--line-strong); transition: color 0.15s, transform 0.12s; flex-shrink: 0; }
.mega-menu a:hover { color: var(--fg); padding-left: 4px; }
.mega-menu a:hover::before { color: var(--yellow); transform: translateX(2px); }

/* ============================================================
   SOCIAL ICONS
   ============================================================ */
.header-top-right { display: flex; align-items: center; gap: 16px; }
.social-links { display: flex; align-items: center; gap: 8px; }
.social-link { display: grid; place-items: center; width: 22px; height: 22px; color: var(--fg-mute); transition: color 0.15s; }
.social-link:hover { color: var(--yellow); }
.social-link svg { width: 13px; height: 13px; }
.footer-social { display: flex; gap: 10px; margin: 16px 0 20px; }
.footer-social .social-link { width: 32px; height: 32px; border: 1px solid var(--line); transition: all 0.15s; }
.footer-social .social-link:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-social .social-link svg { width: 15px; height: 15px; }

/* ============================================================
   HERO H2 / TAGLINE
   ============================================================ */
.hero-h2 {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow);
  margin-top: 10px; margin-bottom: 22px;
}
.hero-tagline {
  font-family: var(--font-display); font-weight: 900; font-stretch: 85%;
  letter-spacing: -0.02em; line-height: 1; text-transform: uppercase;
  font-size: clamp(26px, 3vw, 46px); margin-bottom: 24px; color: var(--fg-dim);
}
.hero-tagline .strikeline { display: inline-block; position: relative; }
.hero-tagline .strikeline::after {
  content: ''; position: absolute; left: -4px; right: -4px; bottom: 0.12em;
  height: 0.18em; background: var(--yellow); z-index: -1;
}
.hero-tagline .accent-yellow { color: var(--yellow); }

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section { padding: 96px 0; border-bottom: 1px solid var(--line); background: var(--bg-elev); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.intro-body p { font-size: 15px; color: var(--fg-dim); line-height: 1.75; margin-bottom: 18px; }
.intro-body p:last-child { margin-bottom: 0; }
.intro-body strong { color: var(--fg); }
.intro-right { display: flex; flex-direction: column; gap: 16px; }
.fact-block { background: var(--bg-panel); border: 1px solid var(--line); border-left: 3px solid var(--yellow); padding: 20px 24px; }
.fact-block p { font-size: 14px; color: var(--fg-dim); line-height: 1.65; }
.fact-block strong { color: var(--fg); display: block; margin-bottom: 8px; font-size: 14px; }

/* ============================================================
   SERVICE DETAIL SECTION
   ============================================================ */
.svc-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 56px; }
.svc-detail-card { background: var(--bg); padding: 36px 32px; transition: background 0.2s; }
.svc-detail-card:hover { background: var(--bg-elev); }
.svc-detail-card.full { grid-column: 1 / -1; }
.svc-detail-title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 85%;
  text-transform: uppercase; font-size: 19px; letter-spacing: -0.01em;
  margin-bottom: 14px; line-height: 1.05; color: var(--fg);
}
.svc-detail-card p { font-size: 14px; color: var(--fg-dim); line-height: 1.7; margin-bottom: 10px; }
.svc-detail-card p:last-child { margin-bottom: 0; }
.svc-detail-card strong { color: var(--fg); }
details.svc-detail-card summary.svc-detail-title {
  list-style: none; cursor: pointer; margin-bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
details.svc-detail-card summary.svc-detail-title::-webkit-details-marker { display: none; }
details.svc-detail-card summary.svc-detail-title::after {
  content: '+'; font-family: var(--font-mono); font-size: 22px; line-height: 1;
  color: var(--yellow); flex-shrink: 0; margin-top: 1px;
}
details.svc-detail-card[open] summary.svc-detail-title::after { content: '−'; }
.svc-detail-body { padding-top: 14px; }
@keyframes svc-body-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
details[open] .svc-detail-body { animation: svc-body-in 0.2s ease; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 56px; }
.process-step { background: var(--bg); padding: 32px 24px; transition: background 0.2s; }
.process-step:hover { background: var(--bg-elev); }
.process-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); font-weight: 700; margin-bottom: 20px; }
.process-step h3 { font-family: var(--font-display); font-weight: 900; font-stretch: 85%; text-transform: uppercase; font-size: 15px; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.1; }
.process-step p { font-size: 13px; color: var(--fg-dim); line-height: 1.65; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { background: var(--bg-elev); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.pricing-card { background: var(--bg-panel); border: 1px solid var(--line); padding: 28px; transition: border-color 0.15s; }
.pricing-card:hover { border-color: var(--line-strong); }
.pricing-service { font-family: var(--font-display); font-weight: 900; font-stretch: 85%; text-transform: uppercase; font-size: 14px; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.05; }
.pricing-range { font-family: var(--font-mono); font-size: 20px; font-weight: 700; color: var(--yellow); margin-bottom: 8px; }
.pricing-note { font-size: 13px; color: var(--fg-mute); line-height: 1.5; }
.pricing-disclaimer { margin-top: 28px; padding: 20px 24px; background: var(--bg-panel); border: 1px solid var(--line); border-left: 3px solid var(--yellow); font-size: 14px; color: var(--fg-dim); line-height: 1.7; }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section { padding: 96px 0; border-bottom: 1px solid var(--line); }
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.partners-body p { font-size: 15px; color: var(--fg-dim); line-height: 1.7; margin-bottom: 16px; }
.partners-body p:last-child { margin-bottom: 0; }
.partners-body strong { color: var(--fg); }
.partner-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.partner-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); padding: 6px 12px; border: 1px solid var(--line-strong); transition: all 0.15s; }
.partner-tag:hover { border-color: var(--yellow); color: var(--yellow); }
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stats-cell { background: var(--bg-panel); padding: 28px 24px; }
.stats-cell-num { font-family: var(--font-display); font-weight: 900; font-stretch: 85%; font-size: 36px; color: var(--yellow); letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.stats-cell-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.whyus-section { padding: 96px 0; background: var(--bg-elev); border-bottom: 1px solid var(--line); }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.whyus-body p { font-size: 15px; color: var(--fg-dim); line-height: 1.7; margin-bottom: 16px; }
.whyus-body strong { color: var(--fg); }
.commitment-list { display: flex; flex-direction: column; gap: 10px; margin-top: 0; }
.commitment-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--bg-panel); border: 1px solid var(--line); font-size: 14px; color: var(--fg-dim); line-height: 1.55; }
.commitment-tick { width: 18px; height: 18px; background: var(--yellow); color: #000; display: grid; place-items: center; font-size: 10px; font-weight: 900; flex-shrink: 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 80px 0; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(255,210,10,0.025) 0 2px, transparent 2px 40px); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 900; font-stretch: 85%; text-transform: uppercase; font-size: clamp(32px, 4vw, 52px); line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 24px; }
.cta-inner h2 .accent-yellow { color: var(--yellow); }
.cta-inner p { font-size: 17px; color: var(--fg-dim); line-height: 1.65; margin-bottom: 36px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE — NEW SECTION OVERRIDES
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid, .partners-grid, .whyus-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .svc-details-grid { grid-template-columns: 1fr; }
  .svc-detail-card.full { grid-column: 1; }
  .mega-menu { min-width: 380px; }
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-2x2 { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .header-top-right > span { display: none; }
  .mega-menu { left: -20px; transform: none; min-width: calc(100vw - 40px); }
}


/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 44px; height: 44px;
  background: var(--yellow); color: #000;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; pointer-events: auto;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(0);
}
#back-to-top.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
#back-to-top:hover { background: #fff; transform: translateY(-3px); }
#back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   LEGAL PAGES (privacy-policy, terms-and-conditions)
   ============================================================ */
.legal-body h2 {
  font-family: var(--font-display); font-weight: 900; font-stretch: 85%;
  text-transform: uppercase; font-size: 15px; letter-spacing: 0.04em;
  color: var(--yellow); margin: 40px 0 12px; padding-top: 8px;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-child { margin-top: 0; border-top: none; }
.legal-body p { font-size: 15px; color: var(--fg-dim); line-height: 1.75; margin-bottom: 12px; }
.legal-body ul { margin: 0 0 12px 20px; }
.legal-body ul li { font-size: 15px; color: var(--fg-dim); line-height: 1.75; margin-bottom: 4px; }
.legal-body a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--fg); }
