/* ============================================================
   PrepWorks, Design System
   Brand: Charcoal + Orange | "Precision Without Compromise"
   Target keyword: Laser Cleaning Yorkshire
   ============================================================ */

:root {
  --black:        #0a0a0a;
  --dark:         #0a0a0a;
  --dark-mid:     #0a0a0a;
  --card-bg:      #1c1c20;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,140,0,0.3);
  --orange:       #f97316;
  --orange-dark:  #ea6c10;
  --orange-glow:  rgba(249,115,22,0.3);
  --orange-soft:  rgba(249,115,22,0.08);
  --charcoal:     #1c1c1e;
  --white:        #ffffff;
  --off-white:    #e8e9ed;
  --muted:        #888899;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   0.22s ease;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.6);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--off-white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Typography */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.12; color: var(--white); letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--muted); line-height: 1.78; }

.orange { color: var(--orange); }
.white  { color: var(--white); }
.lead   { font-size: 1.1rem; color: var(--off-white); }

/* Layout */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--sm{ padding: 64px 0; }
.section--dark { background: var(--dark-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--black { background: var(--black); border-top: 1px solid var(--border); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  flex-shrink: 0;
}
.logo-prep  { color: var(--white); }
.logo-slash {
  color: var(--white);
  font-weight: 900;
  margin: 0 1px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 12px var(--orange), 0 0 28px var(--orange-glow);
  color: var(--orange);
}
.logo-works { color: var(--orange); }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__links a {
  padding: 8px 11px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--muted);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); background: rgba(255,255,255,0.05); }

.nav__cta { display: flex; align-items: center; gap: 10px; }
/* Hide phone number in nav at medium widths to prevent wrapping */
@media (max-width: 1180px) { .nav__cta a[href^="tel:"] { display: none; } }
.nav__region {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav__region svg { color: var(--orange); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--dark); border-top: 1px solid var(--border); padding: 16px 0;
}
.nav__mobile a {
  padding: 12px 24px; font-size: 1rem; font-weight: 500;
  color: var(--muted); display: block; transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile.open { display: flex; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-size: 0.9rem; font-weight: 700;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: all var(--transition); white-space: nowrap; text-decoration: none;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn--primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--orange-glow);
}
.btn--outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn--outline:hover {
  border-color: var(--orange); color: var(--orange);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.nav .btn--primary { border-radius: 100px; padding: 10px 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 24px 80px;
  background: var(--black);
}
.hero__bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 75% 45%, rgba(249,115,22,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(249,115,22,0.05) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero__inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}

/* Hero badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange); font-size: 0.72rem; font-weight: 700;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 22px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

/* Hero wordmark */
.hero__wordmark {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 0;
}
.hw-prep  { color: var(--white); }
.hw-slash {
  color: var(--orange);
  text-shadow: 0 0 20px var(--orange), 0 0 50px var(--orange-glow);
  animation: slash-pulse 3s ease-in-out infinite;
  display: inline-block; margin: 0 3px;
}
@keyframes slash-pulse {
  0%,100% { text-shadow: 0 0 20px var(--orange), 0 0 50px var(--orange-glow); }
  50%     { text-shadow: 0 0 8px var(--orange), 0 0 20px var(--orange-glow); }
}
.hw-works { color: var(--orange); }

.hero__tagline {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.hero__tagline::before, .hero__tagline::after {
  content: ''; flex: 1; max-width: 28px; height: 2px; background: var(--orange);
}

.hero h1 { margin-bottom: 20px; }
.hero p.hero__desc {
  font-size: 1.05rem; color: var(--muted); max-width: 500px;
  margin-bottom: 36px; line-height: 1.8;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stat { }
.hero__stat-val {
  font-size: 1.9rem; font-weight: 900; color: var(--white);
  letter-spacing: -0.05em; line-height: 1; margin-bottom: 3px;
}
.hero__stat-val span { color: var(--orange); }
.hero__stat-lbl { font-size: 0.75rem; color: var(--muted); font-weight: 500; }

/* Hero layout, reference style */
.hero__inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: end; position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  letter-spacing: -0.04em; line-height: 0.9;
  margin-bottom: 0;
}
.hero--page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 20px;
}
.hero--page .hero__inner { align-items: flex-start; padding-top: 20px; }
.hero__rule {
  width: 72px; height: 4px; background: var(--white);
  border-radius: 2px; margin: 28px 0;
}
.hero__tagline-big {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 900; font-style: italic;
  color: var(--orange); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 40px;
}
.hero__right { display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 4px; }
.hero__right .hero__desc { font-size: 1rem; line-height: 1.75; margin-bottom: 32px; max-width: 420px; }
.hero__stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 28px;
}
.hero__stat-item { padding: 18px 16px; border-right: 1px solid var(--border); }
.hero__stat-item:last-child { border-right: none; }
.hero__stat-val {
  font-size: 1.7rem; font-weight: 900; color: var(--white);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.hero__stat-lbl { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* Hero ticker */
.hero__ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; padding: 13px 0; background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
}
.ticker-track {
  display: inline-flex; gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero visual */
.hero__visual { display: block; }
.hero__card {
  width: 100%; max-width: 440px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(249,115,22,0.1);
  position: relative;
}
.hero__card-top {
  aspect-ratio: 16/10;
  background:
    radial-gradient(circle at 50% 35%, rgba(249,115,22,0.2) 0%, transparent 55%),
    linear-gradient(160deg, #1a1a1e 0%, #0d0d0d 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* Animated laser line */
.laser-line {
  position: absolute;
  width: 2px; height: 160px;
  background: linear-gradient(to bottom, transparent 0%, var(--orange) 30%, #fff8 50%, var(--orange) 70%, transparent 100%);
  filter: blur(1.5px);
  box-shadow: 0 0 16px var(--orange), 0 0 40px var(--orange-glow);
  animation: laser-flicker 2.5s ease-in-out infinite;
  border-radius: 2px;
}
@keyframes laser-flicker {
  0%,100%{opacity:1;} 43%{opacity:.9;} 45%{opacity:.5;} 47%{opacity:1;}
}
.laser-surface {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 5%, rgba(249,115,22,0.4) 30%, rgba(249,115,22,0.6) 50%, rgba(249,115,22,0.4) 70%, transparent 95%);
  filter: blur(2px);
}
.hero__card-bottom {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.hcb-left { display: flex; align-items: center; gap: 10px; }
.hcb-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.6); animation: blink 1.5s ease-in-out infinite;
}
.hcb-label { font-size: 0.8rem; font-weight: 600; color: var(--off-white); }
.hcb-sub   { font-size: 0.68rem; color: var(--muted); }
.hcb-badge {
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange); font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark-mid);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-bar__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--muted); white-space: nowrap;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: var(--border); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { margin-bottom: 52px; }
.sec-head--c { text-align: center; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 10px;
}
.sec-tag::before {
  content: ''; width: 18px; height: 2px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}
.sec-head p { margin-top: 14px; max-width: 520px; font-size: 1rem; }
.sec-head--c p { margin: 14px auto 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.svc-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.svc-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px var(--orange-glow);
}
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--orange-soft); border: 1px solid rgba(249,115,22,0.18);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--orange); margin-bottom: 18px;
}
.svc-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.svc-card p  { font-size: 0.875rem; margin-bottom: 18px; }
.svc-link {
  font-size: 0.82rem; font-weight: 700; color: var(--orange);
  display: inline-flex; align-items: center; gap: 5px; transition: gap var(--transition);
}
.svc-card:hover .svc-link { gap: 9px; }

/* Make entire service card clickable, stretched link overlay */
.svc-card .svc-link { position: static; }
.svc-card .svc-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

/* Service card image thumbnail */
.svc-card__img {
  height: 155px;
  margin: -30px -30px 22px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.52;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.svc-card:hover .svc-card__img img {
  opacity: 0.72;
  transform: scale(1.05);
}

/* ============================================================
   WHY
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-feats { display: flex; flex-direction: column; gap: 16px; }
.why-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--card-bg); border: 1px solid var(--border);
  border-left: 2px solid transparent;
  border-radius: var(--radius); transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.why-feat:hover { border-color: rgba(249,115,22,0.2); border-left-color: var(--orange); transform: translateX(4px); }
.why-feat__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--orange-soft); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.why-feat__title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-feat__desc  { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.stat-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
}
.stat-card .val {
  font-size: 2rem; font-weight: 900; color: var(--orange);
  letter-spacing: -0.05em; line-height: 1; margin-bottom: 6px;
}
.stat-card .lbl { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.stat-card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(249,115,22,0.07), var(--card-bg));
  border-color: rgba(249,115,22,0.18);
}
.stat-card--wide .val {
  font-size: 1.2rem; color: var(--off-white); font-weight: 600;
  font-style: italic; letter-spacing: 0; line-height: 1.5;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px;
}
.ind-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 18px; text-align: center;
  transition: all var(--transition); display: block; text-decoration: none;
}
.ind-card:hover {
  border-color: rgba(249,115,22,0.3); background: var(--orange-soft); transform: translateY(-3px);
}
.ind-card__icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  background: var(--orange-soft); border: 1px solid rgba(249,115,22,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--orange); transition: background var(--transition), border-color var(--transition);
}
.ind-card:hover .ind-card__icon {
  background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.3);
}
.ind-card__name { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ind-card__desc { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 38px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: 0.25;
}
.proc-step {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 18px; text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.proc-step:hover {
  border-color: rgba(249,115,22,0.25); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 24px rgba(249,115,22,0.06);
}
.proc-num {
  width: 44px; height: 44px; background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.95rem; margin: 0 auto 18px;
  box-shadow: 0 0 18px var(--orange-glow);
}
.proc-step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.proc-step p  { font-size: 0.82rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.testi-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 14px; right: 22px;
  font-size: 5.5rem; line-height: 1; font-weight: 900;
  color: var(--orange); opacity: 0.08; pointer-events: none;
  font-family: Georgia, 'Times New Roman', serif;
}
.testi-card:hover {
  border-color: rgba(249,115,22,0.2); transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.testi-stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 0.92rem; color: var(--off-white); line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: var(--white); flex-shrink: 0;
}
.testi-name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.testi-role { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-size: 0.92rem; font-weight: 600; color: var(--white);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-chev {
  width: 18px; height: 18px; color: var(--muted); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-ans { max-height: 280px; }
.faq-ans-inner { padding: 0 22px 18px; font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--dark-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band__inner {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.cta-band__inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band__inner p  { margin-top: 10px; font-size: 0.97rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black); border-top: 1px solid var(--border); padding: 60px 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px;
}
.footer__brand p { font-size: 0.85rem; margin-top: 14px; max-width: 260px; }
.footer__hdg {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact-row {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.85rem; color: var(--muted); margin-bottom: 10px;
}
.footer__contact-row svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.78rem; color: var(--muted); }
.footer__bot-links { display: flex; gap: 18px; }
.footer__bot-links a { font-size: 0.78rem; color: var(--muted); }
.footer__bot-links a:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 130px 24px 72px; background: var(--black);
  position: relative; overflow: hidden;
}
.page-hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 40% 70% at 15% 50%, rgba(249,115,22,0.07) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--muted); margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p.page-lead { font-size: 1.08rem; max-width: 600px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.cinfo-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; display: flex; gap: 14px; align-items: flex-start;
}
.cinfo-icon {
  width: 40px; height: 40px; background: var(--orange-soft); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0;
}
.cinfo-title { font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.cinfo-val   { font-size: 0.875rem; color: var(--muted); }
.form-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.form-grp { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-lbl {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--off-white); margin-bottom: 7px;
}
.form-inp, .form-sel, .form-txt {
  width: 100%; background: var(--dark); border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 14px; font-size: 0.875rem;
  color: var(--white); font-family: var(--font); transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-inp:focus, .form-sel:focus, .form-txt:focus { outline: none; border-color: var(--orange); }
.form-inp::placeholder, .form-txt::placeholder { color: rgba(136,136,153,0.5); }
.form-txt { resize: vertical; min-height: 110px; }
.form-sel {
  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='%23888899' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.form-sel option { background: var(--dark); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  display: block;
}
.about-visual:hover img {
  transform: scale(1.03);
  opacity: 0.92;
}
.vals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.val-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
}
.val-card h4 { font-size: 0.875rem; color: var(--orange); margin-bottom: 6px; }
.val-card p  { font-size: 0.78rem; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th {
  background: var(--card-bg); padding: 11px 18px; text-align: left;
  font-size: 0.75rem; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border);
}
.cmp-table td {
  padding: 13px 18px; font-size: 0.85rem; border-bottom: 1px solid var(--border); color: var(--muted);
}
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table td:first-child { font-weight: 600; color: var(--white); }
.tick { color: #4ade80; } .cross { color: #f87171; }

/* ============================================================
   SERVICE DETAIL (services page)
   ============================================================ */
.svc-detail { padding: 72px 0; border-bottom: 1px solid var(--border); }
.svc-detail:last-child { border-bottom: none; }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.svc-detail-grid.rev { direction: rtl; }
.svc-detail-grid.rev > * { direction: ltr; }
.svc-visual {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.svc-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(249,115,22,0.14) 0%, transparent 65%);
}
.svc-visual span { position: relative; z-index: 1; }
.svc-feats { list-style: none; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 9px; }
.svc-feats li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.875rem; color: var(--muted);
}
.svc-feats li::before {
  content: '';
  width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.svc-tag {
  background: var(--orange-soft); border: 1px solid rgba(249,115,22,0.2);
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  padding: 3px 11px; border-radius: 100px; letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { gap: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-detail-grid.rev { direction: ltr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  /* Homepage hero */
  .hero { padding: 72px 20px 56px; min-height: unset; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .hero__visual { display: none; }
  .hero__rule { margin: 16px 0; }
  .hero__tagline-big { font-size: clamp(1.6rem, 8vw, 2.8rem); margin-bottom: 24px; }
  .hero__right .hero__desc { margin-bottom: 20px; }
  .hero__stats-row { grid-template-columns: repeat(3,1fr); margin-bottom: 20px; }
  /* Page hero (service / location pages) */
  .page-hero { padding: 88px 20px 48px; }
  .page-hero h1 { font-size: clamp(1.75rem, 6vw, 3rem); }
  .page-hero p.page-lead { font-size: 0.95rem; }
  /* Trust bar */
  .trust-bar__inner { gap: 14px; }
  .trust-item { font-size: 0.78rem; }
  /* Nav */
  .nav__links, .nav__region { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
  /* Misc */
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .vals-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  /* Homepage hero actions */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__actions .btn--outline { display: none; }
  /* Page hero CTA buttons, stack full-width, hide phone btn */
  .page-hero .btn--outline { display: none; }
  .page-hero .btn--primary { width: 100%; justify-content: center; text-align: center; }
  /* Misc */
  .process-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .trust-sep { display: none; }
}

/* ============================================================
   CONVERSION COMPONENTS (homepage)
   ============================================================ */

/* Sticky mobile CTA bar, disabled sitewide */
.mobile-cta-bar { display: none !important; }

/* Guarantee badge */
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 100px; padding: 8px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--orange); margin-top: 20px;
}

/* Problem / Solution band */
.problem-band {
  background: var(--black);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.problem-band__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
}
.problem-band__col { display: flex; flex-direction: column; gap: 14px; }
.problem-band__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.problem-band__item--pain  { border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.04); }
.problem-band__item--solution { border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.04); }
.pb-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.pb-text strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.pb-text span   { font-size: 0.8rem; color: var(--muted); }
.problem-band__arrow { font-size: 2rem; color: var(--orange); font-weight: 900; flex-shrink: 0; }
@media (max-width: 768px) {
  .problem-band__inner { grid-template-columns: 1fr; }
  .problem-band__arrow { text-align: center; transform: rotate(90deg); }
}

/* Hero phone link */
.hero__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
  margin-top: 12px; transition: color var(--transition);
}
.hero__phone:hover { color: var(--orange); }
.hero__phone svg { flex-shrink: 0; }

/* Social proof strip in hero */
.hero__social-proof { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero__stars { color: #f97316; font-size: 0.95rem; letter-spacing: 1px; }
.hero__proof-text { font-size: 0.82rem; color: var(--muted); }
.hero__proof-text strong { color: var(--off-white); }

/* Hero proof card (right column) */
.hero__proof-card {
  width: 100%; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(249,115,22,0.08);
}
.hero__proof-top {
  padding: 24px 28px 20px; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, transparent 60%);
}
.hero__proof-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hero__proof-rating-stars { color: #f97316; font-size: 1rem; letter-spacing: 1px; }
.hero__proof-rating-text { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.hero__proof-quote {
  font-size: 0.95rem; color: var(--off-white); font-style: italic;
  line-height: 1.65; margin: 0 0 10px; font-weight: 500;
}
.hero__proof-author { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.hero__proof-stats {
  display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border);
}
.hero__proof-stat {
  padding: 18px 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.hero__proof-stat:nth-child(2n) { border-right: none; }
.hero__proof-stat:nth-child(3), .hero__proof-stat:nth-child(4) { border-bottom: none; }
.hero__proof-stat-val {
  font-size: 1.7rem; font-weight: 900; color: var(--orange);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 3px;
}
.hero__proof-stat-lbl { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.hero__proof-trust { padding: 18px 22px; display: flex; flex-direction: column; gap: 9px; }
.hero__proof-trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.82rem; color: var(--off-white); font-weight: 500;
}
.hero__proof-trust-icon {
  width: 18px; height: 18px; background: rgba(34,197,94,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero__proof-trust-icon svg { display: block; }

/* Urgency bar in CTA */
.urgency-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 20px; font-size: 0.82rem; color: var(--muted);
}
.urgency-dot {
  width: 7px; height: 7px; background: #22c55e;
  border-radius: 50%; box-shadow: 0 0 6px #22c55e; flex-shrink: 0;
}

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: 0.9rem; }
.compare-table th {
  padding: 14px 20px; text-align: left; font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); border-bottom: 1px solid var(--border);
}
.compare-table th:first-child { color: var(--off-white); }
.compare-table th.col-us { color: var(--orange); }
.compare-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  color: var(--muted); vertical-align: middle;
}
.compare-table td:first-child { font-weight: 600; color: var(--off-white); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-tick { color: #22c55e; font-size: 1rem; font-weight: 800; }
.compare-cross { color: #ef4444; font-size: 1rem; font-weight: 800; }
.compare-warn  { color: #f59e0b; font-size: 1rem; }
@media (max-width: 600px) {
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.8rem; }
}

/* Area card icon box */
.area-card__icon {
  width: 44px; height: 44px; margin: 0 auto 12px;
  background: var(--orange-soft); border: 1px solid rgba(249,115,22,0.15);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--orange); transition: background var(--transition);
}
.svc-card:hover .area-card__icon { background: rgba(249,115,22,0.15); }

/* ============================================================
   SCROLL ANIMATIONS, premium spring curve
   ============================================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-anim].in { opacity: 1; transform: translateY(0) scale(1); }
[data-anim-d="1"] { transition-delay: 0.07s; }
[data-anim-d="2"] { transition-delay: 0.14s; }
[data-anim-d="3"] { transition-delay: 0.21s; }
[data-anim-d="4"] { transition-delay: 0.28s; }

/* ============================================================
   PREMIUM INTERACTIVE ENHANCEMENTS
   ============================================================ */

/* Nav solidifies on scroll */
.nav.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 40px rgba(0,0,0,0.6);
}

/* Hero glow, slow breathing pulse */
.hero__bg-glow {
  animation: glow-breathe 8s ease-in-out infinite alternate;
}
@keyframes glow-breathe {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.08) translateX(-2%); }
}

/* Service card, shimmer sweep + title colour on hover */
.svc-card { overflow: hidden; }
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.025), transparent);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; z-index: 0;
}
.svc-card:hover::before { left: 160%; }
.svc-card > * { position: relative; z-index: 1; }
.svc-card h3 { transition: color var(--transition); }
.svc-card:hover h3 { color: var(--orange); }

/* Testimonial, gradient wash on hover */
.testi-card:hover {
  background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, var(--card-bg) 55%);
}

/* Process step, ring pulse on number hover */
.proc-num { transition: box-shadow var(--transition); }
.proc-step:hover .proc-num {
  box-shadow: 0 0 0 6px rgba(249,115,22,0.14), 0 0 28px var(--orange-glow);
}

/* Why feat, icon glow on hover */
.why-feat__icon { transition: background var(--transition), box-shadow var(--transition); }
.why-feat:hover .why-feat__icon {
  background: rgba(249,115,22,0.18);
  box-shadow: 0 0 18px rgba(249,115,22,0.25);
}

/* Industry card, radial glow from top on hover */
.ind-card { position: relative; overflow: hidden; }
.ind-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(249,115,22,0.12), transparent 70%);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.ind-card:hover::before { opacity: 1; }

/* Stat cards, number glow on hover */
.stat-card .val { transition: text-shadow 0.3s ease, color var(--transition); }
.stat-card:hover .val { text-shadow: 0 0 28px rgba(249,115,22,0.45); }

/* Buttons, press scale + pill primary */
.btn { transition: all var(--transition); }
.btn:active { transform: scale(0.96) !important; transition-duration: 0.08s; }
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 36px rgba(249,115,22,0.4);
}
.btn--outline:hover { transform: translateY(-2px) scale(1.02); }

/* FAQ item, subtle left accent on open */
.faq-item.open {
  border-color: rgba(249,115,22,0.25);
  border-left: 2px solid var(--orange);
}

/* Footer brand logo glow on hover */
.footer__brand .nav__logo:hover .logo-slash {
  text-shadow: 0 0 20px var(--orange), 0 0 50px var(--orange-glow);
}

/* ============================================================
   AREA PILLS (areas-we-serve page)
   ============================================================ */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill {
  display: inline-block;
  padding: 8px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--off-white);
  text-decoration: none;
  transition: all var(--transition);
}
.area-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  aspect-ratio: 16/7; cursor: ew-resize; user-select: none; touch-action: pan-y;
  background: var(--card-bg);
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-before-img { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba-after-img  { z-index: 1; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: rgba(255,255,255,0.85); z-index: 3;
  transform: translateX(-50%); pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--orange); border-radius: 50%; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(249,115,22,0.3), 0 4px 20px rgba(0,0,0,0.6);
  pointer-events: none; transition: box-shadow 0.2s;
}
.ba-wrap:hover .ba-handle { box-shadow: 0 0 0 7px rgba(249,115,22,0.35), 0 6px 30px rgba(0,0,0,0.7); }
.ba-label {
  position: absolute; bottom: 16px; z-index: 5; pointer-events: none;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  border-radius: 6px; padding: 5px 13px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
}
.ba-label--before { left: 16px; color: #f87171; }
.ba-label--after  { right: 16px; color: #4ade80; }
.ba-hint {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 5; pointer-events: none; opacity: 1;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--off-white); background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  padding: 6px 14px; border-radius: 20px; margin-top: 36px;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}
.ba-wrap.dragging .ba-hint,
.ba-wrap.moved .ba-hint { opacity: 0; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; align-items: center;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 15px;
  font-size: 0.79rem; font-weight: 600; color: var(--off-white);
  transition: border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.trust-badge:hover { border-color: rgba(249,115,22,0.35); transform: translateY(-1px); }
.trust-badge svg { color: var(--orange); flex-shrink: 0; }
@media (max-width: 600px) {
  .trust-badges-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-badge { white-space: normal; font-size: 0.75rem; padding: 9px 12px; justify-content: flex-start; }
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.wa-btn {
  position: fixed; bottom: 24px; right: 20px;
  width: 52px; height: 52px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45); z-index: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.wa-btn::before {
  content: ''; position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.75; }
  100% { transform: scale(2);   opacity: 0; }
}

/* Services hub cards, fix layout on mobile */
@media (max-width: 600px) {
  .svc-card[style*="grid-template-columns:auto 1fr auto"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 18px 20px !important;
    align-items: flex-start !important;
  }
  .svc-card[style*="grid-template-columns:auto 1fr auto"] > div:last-child {
    display: none !important;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-bar {
  display: none !important;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #16161a; border-top: 1px solid rgba(255,255,255,0.09);
  padding: 14px 24px; z-index: 2000;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 0.81rem; color: var(--muted);
  transform: translateY(0); transition: transform 0.35s ease;
}
.cookie-bar.hidden { transform: translateY(110%); pointer-events: none; }
.cookie-bar p { flex: 1; min-width: 200px; line-height: 1.55; margin: 0; }
.cookie-bar a { color: var(--orange); text-decoration: none; }
.cookie-bar a:hover { text-decoration: underline; }
.cookie-bar__btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--orange); color: #fff; border: none;
  border-radius: 6px; padding: 8px 20px;
  font-size: 0.81rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--orange-dark); }
.cookie-decline {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 8px 14px; font-size: 0.81rem; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: var(--muted); color: var(--off-white); }

/* ============================================================
   MOBILE NAV CLOSE BUTTON
   ============================================================ */
.nav__mobile-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--off-white);
  font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 4px 8px;
  border-radius: 6px; transition: color var(--transition), background var(--transition);
}
.nav__mobile-close:hover { color: var(--orange); background: var(--orange-soft); }

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound-wrap {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px;
}
.notfound-num {
  font-size: clamp(6rem,18vw,12rem); font-weight: 900;
  line-height: 1; letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--orange), #fff 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.notfound-msg { font-size: 1.2rem; color: var(--off-white); margin-bottom: 10px; }
.notfound-sub { color: var(--muted); margin-bottom: 36px; }

/* ============================================================
   BLOG
   ============================================================ */

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--dark-mid);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card__thumb-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249,115,22,0.12) 0%, transparent 70%);
}
.blog-card__thumb svg { opacity: 0.25; }
.blog-card__cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 4px;
}
.blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; color: var(--muted); margin-bottom: 10px;
}
.blog-card__meta-dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.blog-card__title {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.02em;
}
.blog-card__excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-card__link {
  font-size: 0.82rem; font-weight: 700; color: var(--orange);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__link { gap: 9px; }

/* Blog filter tabs */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.blog-filter {
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--muted); font-size: 0.78rem; font-weight: 700;
  padding: 6px 16px; border-radius: 100px; cursor: pointer;
  transition: all var(--transition); letter-spacing: 0.03em;
  text-transform: uppercase;
}
.blog-filter.active,
.blog-filter:hover {
  background: var(--orange); border-color: var(--orange); color: #fff;
}

/* Individual blog post */
.blog-post { max-width: 760px; margin: 0 auto; }
.blog-post__header { margin-bottom: 40px; }
.blog-post__cat {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 12px; border-radius: 4px;
  margin-bottom: 16px;
}
.blog-post__meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--muted); margin-top: 16px;
}
.blog-post__meta-dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.blog-post h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); line-height: 1.15; margin-bottom: 0; }
.blog-post__hero-img {
  aspect-ratio: 16/7; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin: 32px 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249,115,22,0.1) 0%, transparent 70%),
              var(--card-bg);
  position: relative;
}
.blog-post__hero-img svg { opacity: 0.18; }
.blog-post__hero-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.blog-card__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 0;
}

/* Article body typography */
.blog-post__body { color: var(--muted); line-height: 1.85; }
.blog-post__body h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem); color: var(--white);
  margin: 40px 0 14px; letter-spacing: -0.02em;
}
.blog-post__body h3 {
  font-size: 1.1rem; color: var(--white); margin: 28px 0 10px;
}
.blog-post__body p { margin-bottom: 18px; }
.blog-post__body ul, .blog-post__body ol {
  padding-left: 20px; margin-bottom: 18px;
}
.blog-post__body li { margin-bottom: 7px; }
.blog-post__body strong { color: var(--off-white); font-weight: 700; }
.blog-post__body a { color: var(--orange); text-decoration: underline; text-decoration-color: rgba(249,115,22,0.35); }
.blog-post__body a:hover { text-decoration-color: var(--orange); }

/* Callout box inside articles */
.blog-callout {
  background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.2);
  border-left: 3px solid var(--orange); border-radius: var(--radius);
  padding: 18px 20px; margin: 28px 0;
}
.blog-callout p { margin: 0; color: var(--off-white); }

/* Key facts box */
.blog-facts {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; margin: 28px 0;
}
.blog-facts__title {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 14px;
}
.blog-facts ul { list-style: none; padding: 0; margin: 0; }
.blog-facts li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--off-white);
  display: flex; align-items: flex-start; gap: 10px;
}
.blog-facts li:last-child { border-bottom: none; }
.blog-facts li::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Related posts strip */
.blog-related { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }
.blog-related__title { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.blog-related__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}
.blog-related__card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  transition: border-color var(--transition);
}
.blog-related__card:hover { border-color: var(--border-hover); }
.blog-related__card-cat { font-size: 0.65rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.blog-related__card-title { font-size: 0.875rem; font-weight: 700; color: var(--white); line-height: 1.3; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .blog-related__grid { grid-template-columns: 1fr; }
  .blog-post__body h2 { margin-top: 28px; }
}
