:root {
  --black: #0a0a0a;
  --highlight: #ffffff;
  --highlight-dim: #cccccc;
  --white: #f5f0e8;
  --gray: #1c1c1c;
  --gray-mid: #2e2e2e;
  --gray-light: #888;
  --danger: #ff4500;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 12px; height: 12px;
  background: var(--highlight);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
}
body:hover .cursor { opacity: 1; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--highlight);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--white); }
.logo img {
  display: block;
  height: 166px;
  width: auto;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.scrolled .logo img {
  height: 88px;
}

@media (max-width: 700px) {
  .logo img { height: 134px; }
  nav.scrolled .logo img { height: 106px; }
}

.nav-links {
  display: flex; gap: 40px; list-style: none;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-family: 'DM Mono', monospace;
}
.nav-links a:hover { color: var(--highlight); }


.nav-cta {
  background: var(--highlight);
  color: var(--black);
  padding: 10px 24px;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: #e8e8e8; transform: translateY(-1px); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,255,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,69,0,0.05) 0%, transparent 60%);
}

/* Animated grid */
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Electric bolt SVG background */
.bolt-bg {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 55vw; max-width: 800px;
  opacity: 0.06;
  animation: boltPulse 3s ease-in-out infinite;
}
@keyframes boltPulse {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.1; }
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
  position: relative;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.20rem, 12vw, 10.5rem);
  line-height: 0.825;
  letter-spacing: -0.01em;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { color: var(--highlight); font-style: normal; }
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  color: transparent;
}

.hero-sub {
  margin-top: 32px;
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
  position: relative;
}

.hero-actions {
  margin-top: 44px;
  display: flex; gap: 20px; align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
  position: relative;
}

.btn-primary {
  background: var(--highlight);
  color: var(--black);
  padding: 16px 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
}
.btn-primary:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255,255,255,0.35);
}

.btn-ghost {
  color: var(--white);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--highlight); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-stats {
  position: absolute;
  right: 60px; bottom: 80px;
  display: flex; flex-direction: column; gap: 30px;
  opacity: 0;
  animation: fadeLeft 0.8s 1s forwards;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--highlight);
  line-height: 1;
}
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}

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

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--highlight);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.3);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--black);
  white-space: nowrap;
  padding: 0 40px;
}
.marquee-dot {
  color: rgba(0,0,0,0.35);
  margin-right: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SERVICES ─── */
#services {
  padding: 120px 60px;
  position: relative;
}
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 70px;
}
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.section-desc {
  max-width: 320px;
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--gray);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: #222; }
.service-card:hover::before { opacity: 1; }

.service-card .accent-line {
  width: 40px; height: 3px;
  background: var(--highlight);
  margin-bottom: 30px;
  transition: width 0.4s;
}
.service-card:hover .accent-line { width: 70px; }

.service-icon {
  font-size: 2rem; margin-bottom: 20px;
}
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  color: var(--white);
}
.service-desc {
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-price {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--highlight);
  text-transform: uppercase;
}
.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(255,255,255,0.06); }

/* ─── WHY US ─── */
#why {
  padding: 120px 60px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 0.85;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: -20px; left: -20px;
  pointer-events: none;
}
.why-badge {
  background: var(--highlight);
  color: var(--black);
  padding: 28px 36px;
  display: inline-block;
  margin-bottom: 4px;
}
.why-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
}
.why-badge-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

.why-items {
  display: flex; flex-direction: column; gap: 0;
}
.why-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-mid);
  display: flex; gap: 24px; align-items: flex-start;
}
.why-item:first-child { border-top: 1px solid var(--gray-mid); }
.why-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--highlight);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.why-item-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 1rem;
}
.why-item-text {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ─── PROCESS ─── */
#process {
  padding: 120px 60px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 70px;
}
.step {
  padding: 44px 32px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 3px;
  background: var(--highlight);
  transition: width 0.5s ease;
}
.step:hover::after { width: 100%; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.step-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.step-text {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ─── SERVICE AREA ─── */
#service-area {
  padding: 120px 60px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
#service-area::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

/* Left: info + area list */
.service-area-info {}

.service-area-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-mid);
}
.area-pin {
  width: 40px; height: 40px;
  background: var(--highlight);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  margin-top: 2px;
}
.area-address-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.area-address-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

.service-area-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 32px;
}
.service-area-desc strong { color: var(--white); font-weight: 500; }
.service-area-desc a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
}
.service-area-desc a:hover {
  color: var(--highlight-dim);
  font-weight: 500;
}

.areas-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 18px;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
}
.areas-list li {
  font-size: 0.83rem;
  color: var(--gray-light);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.areas-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--highlight);
  opacity: 0.5;
  flex-shrink: 0;
  clip-path: polygon(2px 0%, 100% 0%, calc(100% - 2px) 100%, 0% 100%);
}
.areas-list li:hover { color: var(--white); }

/* Right: map embed */
.service-area-map {
  position: relative;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
}
.service-area-map::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--highlight);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
.map-iframe-wrap {
  position: relative;
  padding-bottom: 72%;
  height: 0;
  overflow: hidden;
}
.map-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(175deg) saturate(0.6) brightness(0.85);
}
.map-facade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(rgba(20,20,20,0.4), rgba(20,20,20,0.4)),
    repeating-linear-gradient(0deg, var(--gray-mid) 0, var(--gray-mid) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, var(--gray-mid) 0, var(--gray-mid) 1px, transparent 1px, transparent 40px),
    var(--gray);
  background-blend-mode: normal, overlay, overlay, normal;
  opacity: 0.9;
}
.map-facade-btn {
  background: var(--highlight);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
}
.map-facade-btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}
.map-facade-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--gray-light);
  margin: 0;
}
.map-tag {
  position: absolute;
  top: 0; left: 0;
  background: var(--highlight);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

@media (max-width: 900px) {
  #service-area { padding: 80px 28px; }
  .service-area-grid { grid-template-columns: 1fr; gap: 44px; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: 120px 60px;
  background: var(--gray);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 70px;
}
.testimonial {
  background: var(--gray);
  padding: 44px 36px;
  position: relative;
}
.testimonial-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--highlight);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.93rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--highlight);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.author-name {
  font-weight: 500; font-size: 0.9rem;
}
.author-loc {
  font-size: 0.75rem;
  color: var(--gray-light);
  font-family: 'DM Mono', monospace;
}
.stars {
  color: var(--highlight);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ─── GOOGLE REVIEWS ─── */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-mid);
}
.reviews-summary-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.reviews-summary-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-score-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--highlight);
  line-height: 1;
}
.reviews-score-count {
  font-size: 0.8rem;
  color: var(--gray-light);
  font-family: 'DM Mono', monospace;
  margin-top: 4px;
}
.reviews-cta { margin-left: auto; }

.review-skeleton { pointer-events: none; }
.skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, var(--gray-mid) 25%, #3a3a3a 50%, var(--gray-mid) 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.4s ease-in-out infinite;
  margin-bottom: 14px;
}
.skeleton-line.w-30 { width: 30%; height: 16px; margin-bottom: 22px; }
.skeleton-line.w-70 { width: 70%; margin-bottom: 0; }
.skeleton-line.w-100 { width: 100%; }
@keyframes skeletonPulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--highlight);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: none;
  padding: 0;
  margin-left: 6px;
  text-decoration: underline;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .reviews-summary { gap: 20px; }
  .reviews-cta { margin-left: 0; }
}

/* ─── GOOGLE REVIEWS (section) ─── */
#reviews {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 10% 0%, rgba(255,255,255,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 15%, rgba(255,69,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
#reviews::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
#reviews > * {
  position: relative;
}

/* ─── CTA BAND ─── */
#cta {
  padding: 100px 60px;
  background: var(--highlight);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: 'CALL NOW';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20vw;
  color: rgba(0,0,0,0.06);
  right: -20px; top: 50%;
  transform: translateY(-50%);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.cta-inner {
  display: flex; justify-content: space-between; align-items: center;
  position: relative;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: var(--black);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.cta-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 20px;
}
.cta-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.cta-phone:hover { opacity: 0.7; }
.cta-phone-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  text-align: right;
}
.btn-dark {
  background: var(--black);
  color: var(--highlight);
  padding: 16px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: #050505;
  padding: 60px 60px 36px;
  border-top: 1px solid var(--gray-mid);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--highlight);
  letter-spacing: 0.08em;
}
.footer-logo span { color: var(--white); }
.footer-tagline {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-top: 8px;
  font-family: 'DM Mono', monospace;
}
.footer-links {
  display: flex; gap: 80px;
}
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--gray-mid);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-light);
  font-family: 'DM Mono', monospace;
}
.footer-licensed {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--gray-light);
}
.footer-qr-code {
  padding-top: 10px;
  scale: 75%;
}
.licensed-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── WORK CAROUSEL ─── */
#work {
  padding: 120px 0;
  overflow: hidden;
}
.work-header {
  padding: 0 60px;
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px;
}
.carousel-controls {
  display: flex; gap: 10px; align-items: center;
}
.carousel-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--gray-mid);
  background: transparent;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  font-size: 1rem;
}
.carousel-btn:hover {
  border-color: var(--highlight);
  background: var(--highlight);
  color: var(--black);
}
.carousel-counter {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  min-width: 52px;
  text-align: center;
}

.carousel-track-wrap {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 60px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 4/3;
  cursor: none;
}
.carousel-slide:hover .slide-overlay { opacity: 1; }
.carousel-slide:hover .slide-img { transform: scale(1.04); }

/* Placeholder images via SVG gradients */
.slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.slide-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  transition: transform 0.6s ease;
  position: relative;
}
.slide-placeholder-icon {
  font-size: 2.8rem;
  opacity: 0.5;
}
.slide-placeholder-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.slide-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 6px;
}
.slide-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.1;
}
.slide-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.carousel-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 36px;
  padding: 0 60px;
}
.dot {
  width: 28px; height: 3px;
  background: var(--gray-mid);
  transition: background 0.3s, width 0.3s;
  cursor: none;
}
.dot.active {
  background: var(--highlight);
  width: 48px;
}

@media (max-width: 900px) {
  .work-header { padding: 0 28px; }
  .carousel-track { padding: 0 28px; }
  .carousel-slide { flex: 0 0 calc(85% - 10px); }
  .carousel-dots { padding: 0 28px; }
}

/* ─── MODAL ─── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--gray);
  width: 100%; max-width: 560px;
  margin: auto 0;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  border-top: 3px solid var(--highlight);
}
.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-header {
  padding: 36px 40px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 8px;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.modal-close {
  background: none;
  border: 1px solid var(--gray-mid);
  color: var(--gray-light);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: none;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.modal-close:hover {
  border-color: var(--highlight);
  color: var(--black);
  background: var(--highlight);
}
.modal-body {
  padding: 28px 40px 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex; flex-direction: column; gap: 7px;
}
.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--gray-mid);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: none;
}
.form-group select option { background: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--highlight);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group.full { grid-column: 1 / -1; }

.modal-submit input {
  background: var(--highlight);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  cursor: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  width: 100%;
  margin-top: 4px;
}
.modal-submit input:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}
.modal-submit input:disabled {
  opacity: 0.5;
  transform: none;
  cursor: not-allowed;
}
.modal-note {
  font-size: 0.75rem;
  color: var(--gray-light);
  text-align: center;
  font-family: 'DM Mono', monospace;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
/* Keep the iframe corners sharp to match site aesthetic */
.turnstile-wrap iframe {
  border-radius: 0 !important;
}
/* Error message shown if token is missing on submit */
.turnstile-error {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--danger);
  text-align: center;
  display: none;
  margin-top: -10px;
}
.turnstile-error.show { display: block; }

/* Success state */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  gap: 16px;
}
.modal-success.show { display: flex; }
.modal-form-wrap.hidden { display: none; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--highlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  margin-bottom: 8px;
}
.success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.success-text {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.65;
  max-width: 340px;
}

@media (max-width: 600px) {
  .modal-backdrop { padding: 12px; }
  .modal-header { padding: 24px 20px 0; }
  .modal-body { padding: 20px 20px 28px; }
  .modal-title { font-size: 1.8rem; }
  .modal-success { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── EMERGENCY BADGE ─── */
.emergency-badge {
  position: fixed;
  bottom: 36px; right: 36px;
  background: var(--danger);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 12px 20px 12px 16px;
  text-decoration: none;
  z-index: 200;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 0 30px rgba(255,69,0,0.4);
  animation: emergencyPulse 2.5s ease-in-out infinite;
  display: flex; align-items: center; gap: 10px;
}
.emergency-badge::before {
  content: '⚡';
  font-size: 1rem;
}
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,69,0,0.4); }
  50% { box-shadow: 0 0 50px rgba(255,69,0,0.7); }
}

@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  .nav-links { display: none; }
  #hero { padding: 0 28px 80px; }
  .hero-stats { right: 28px; bottom: 80px; }
  #services, #why, #process, #reviews, #cta, footer { padding-left: 28px; padding-right: 28px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; gap: 40px; align-items: flex-start; }
  .cta-right { align-items: flex-start; }
  .section-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; flex-wrap: wrap; }
  .hero-stats { display: none; }
}
