:root {
  --bg: #050505;
  --bg-alt: #0c0c0c;
  --surface: #111;
  --border: #1f1f1f;
  --blue: #1287ff;
  --blue-dark: #0d6dd1;
  --text: #fff;
  --muted: #b8b8b8;
  --light: #f6f6f6;
  --light-dark: #ececec;
  --radius: 10px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(var(--maxw), 92%);
  margin-inline: auto;
}

/* HEADER */
.site-header {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 135, 255, 0.22), transparent 70%),
    rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0;
  box-shadow:
    0 6px 18px rgba(18, 135, 255, 0.3),
    0 14px 36px rgba(18, 135, 255, 0.18);
  animation: header-pulse 4.5s ease-in-out infinite;
  overflow: hidden;
}
.site-header::before,
.site-header::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.site-header::before {
  top: 0;
  left: -20%;
  right: -20%;
  height: 100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(18, 135, 255, 0.18), transparent 50%);
  animation: header-orbit 8s linear infinite;
  z-index: -1;
}
.site-header::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, transparent 35%, rgba(120, 200, 255, 0.95) 50%, transparent 65%, transparent 100%);
  background-size: 200% 100%;
  animation: header-sweep 3.4s linear infinite;
}
@keyframes header-pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(18, 135, 255, 0.3), 0 14px 36px rgba(18, 135, 255, 0.18); }
  50%      { box-shadow: 0 6px 24px rgba(18, 135, 255, 0.5), 0 18px 48px rgba(18, 135, 255, 0.28); }
}
@keyframes header-sweep {
  from { background-position: -100% 0; }
  to   { background-position: 200% 0; }
}
@keyframes header-orbit {
  0%   { transform: translateX(-10%); }
  50%  { transform: translateX(10%); }
  100% { transform: translateX(-10%); }
}
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header::before,
  .site-header::after { animation: none; }
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.logo { height: 96px; width: auto; display: block; transform: translateY(18px); }
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  transition: color .15s ease;
}
.main-nav .active,
.main-nav a:hover { color: var(--blue); }

/* BUTTONS */
.btn {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border: 0;
  padding: 14px 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-small { padding: 10px 18px; font-size: 0.8rem; }
.btn-outline {
  background: transparent;
  border: 2px solid #8f8f8f;
  padding: 12px 22px;
}
.btn-outline:hover { background: #fff; color: #000; border-color: #fff; }

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)),
    url('1a47d9d7-164f-4ca2-bc42-fe4ac45fbb52%20(1).jpg') center/cover no-repeat;
  min-height: 78vh;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 36px;
  background: radial-gradient(ellipse at 50% 50%, rgba(18, 135, 255, 0.38), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%);
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.hero-card { max-width: 620px; }
.hero-eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 1rem;
  margin: 0 0 16px;
}
.hero-logo { display: none; }
.hero-eyebrow-mobile { display: none; }
.hero-h1-mobile { display: none; }

.mobile-bar { display: none; }
@media (max-width: 760px), (max-height: 500px) and (orientation: landscape) {
  .mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px;
    background:
      radial-gradient(ellipse 100% 120% at 50% 0%, rgba(18, 135, 255, 0.35), transparent 70%),
      rgba(0, 0, 0, 0.96);
    border-bottom: 2px solid var(--blue);
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: 0 4px 18px rgba(18, 135, 255, 0.32);
  }
  .mobile-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.15;
  }
  .mobile-brand-name {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.15;
  }
  .mobile-brand-name + .mobile-brand-name { margin-top: 1px; }
  .mobile-brand-blue { color: var(--blue); }

  .mobile-menu-toggle {
    appearance: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 7px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .2s ease;
  }
  .mobile-menu-toggle[aria-expanded="true"] { border-color: var(--blue); }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 10px 4px;
  }
  .mobile-nav a:hover, .mobile-nav a.active { color: var(--blue); }
  .mobile-nav .btn { margin-top: 8px; align-self: flex-start; }
}

@keyframes hero-logo-in {
  from { opacity: 0; transform: translateY(-12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hero-logo-pulse {
  0%, 100% { filter: drop-shadow(0 3px 14px rgba(18, 135, 255, 0.5)) drop-shadow(0 0 28px rgba(18, 135, 255, 0.25)); }
  50%      { filter: drop-shadow(0 4px 18px rgba(18, 135, 255, 0.7)) drop-shadow(0 0 40px rgba(18, 135, 255, 0.38)); }
}
@keyframes hero-content-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px), (max-height: 500px) and (orientation: landscape) {
  .hero-eyebrow-desktop { display: none; }
  .hero-eyebrow-mobile { display: block; }
  .hero-h1-desktop { display: none; }
  .hero-h1-mobile { display: block; }
  .hero img.hero-logo { display: none; }
  .hero-card {
    animation: hero-content-in 0.9s ease-out 0.15s both;
  }
}
@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .hero img.hero-logo, .hero-card { animation: none; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 18px;
  font-weight: 900;
}
.hero h1 span { color: var(--blue); }
.hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #e6e6e6;
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-cta { display: inline-flex; flex-direction: column; align-items: stretch; gap: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { display: none; transition: opacity .3s ease, transform .3s ease; }
.hero-scroll.is-hidden { opacity: 0; transform: translateY(10px); pointer-events: none; }
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50%      { transform: translateY(8px); opacity: 1; }
}
.google-reviews.hero-reviews,
.google-reviews.compact.hero-reviews {
  margin: 18px 0 0;
  background: transparent;
  border: 0;
  padding: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.google-reviews.hero-reviews:hover { border: 0; transform: translateY(-2px); }
/* HERO TRUST ROW (Google + Facebook) */
.hero-trust {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  max-width: 480px;
  margin: 0;
}
.hero-trust-google,
.hero-trust-fb {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: 6px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.hero-trust-google:hover,
.hero-trust-fb:hover { transform: translateY(-1px); opacity: 0.92; }
.hero-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.hero-trust-icon svg { width: 100%; height: 100%; display: block; }
.hero-trust-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 3px;
}
.hero-trust-stars {
  color: #ffb400;
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-trust-label {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-trust-sub {
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-trust-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  align-self: stretch;
  min-height: 38px;
}

.google-reviews-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
.google-reviews-logo svg { width: 100%; height: 100%; display: block; }

/* SECTIONS */
section { scroll-margin-top: 80px; }

.kicker {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin: 0 0 12px;
}
.kicker.center { text-align: center; }

h2 {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.01em;
}
h2 span { color: var(--blue); }

.section-title {
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 40px;
  font-weight: 900;
  color: #fff;
}
.section-title.left { text-align: left; margin-bottom: 24px; }

/* ABOUT */
.about {
  padding: clamp(60px, 8vw, 96px) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 135, 255, 0.18), transparent 60%),
    var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.9fr;
  gap: clamp(32px, 4.5vw, 56px);
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  align-self: center;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content { max-width: 520px; }
.about-content .kicker { margin-bottom: 14px; }
.about-content h2 { margin-bottom: 22px; }
.about-content p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
}
.about-content p:last-child { margin-bottom: 0; }

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 22px;
}
.feature-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fff;
}
.feature-icon {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.feature-icon svg { width: 100%; height: 100%; }

/* FAQ */
.faq {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 135, 255, 0.18), transparent 60%),
    var(--bg-alt);
  padding: clamp(60px, 8vw, 96px) 0;
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 36px;
  background: radial-gradient(ellipse at 50% 50%, rgba(18, 135, 255, 0.38), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}
.faq::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 36px;
  background: radial-gradient(ellipse at 50% 50%, rgba(18, 135, 255, 0.38), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--blue); }
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '–'; }
.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SERVICES */
.services {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 135, 255, 0.18), transparent 60%),
    var(--bg);
  color: var(--text);
  padding: clamp(60px, 8vw, 96px) 0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 36px;
  background: radial-gradient(ellipse at 50% 50%, rgba(18, 135, 255, 0.38), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}
.services::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 36px;
  background: radial-gradient(ellipse at 50% 50%, rgba(18, 135, 255, 0.38), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}
.services .section-title { color: #fff; }
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
}
.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left .25s ease;
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  transform: translateY(-50%);
  transition: width .25s ease;
}
@media (hover: hover) {
  .service-item:hover { padding-left: 28px; }
  .service-item:hover::before { width: 18px; }
}
.service-icon {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }
.service-item h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}
.service-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* WORK / CAROUSEL */
.work {
  padding: clamp(60px, 8vw, 96px) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 135, 255, 0.18), transparent 60%),
    #000;
}
.work-lede {
  text-align: center;
  max-width: 640px;
  margin: -22px auto 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}
.work-lede + .carousel { margin-top: 12px; }
.work-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.work-header .section-title { margin: 0; }
.google-reviews.compact {
  margin: 0;
  padding: 14px 22px;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.google-reviews.compact .google-reviews-stars { font-size: 1.4rem; letter-spacing: 2px; }
.google-reviews.compact .google-reviews-count { font-size: 0.95rem; }
.google-reviews.compact .google-reviews-cta { font-size: 0.72rem; letter-spacing: 0.1em; margin-left: 4px; }
@media (max-width: 600px) {
  .google-reviews.compact { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

.carousel {
  position: relative;
  margin-inline: auto;
}
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px;
  border-radius: var(--radius);
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

.carousel-slide {
  margin: 0;
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.carousel-slide:hover img { transform: scale(1.03); }

.compare {
  --pos: 50%;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  -webkit-user-select: none;
  background: #000;
}
.compare-handle { touch-action: none; }
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: none;
}
.compare:hover img { transform: none; }
.compare-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); z-index: 2; }
.compare-after { z-index: 1; }
.compare-label {
  position: absolute;
  top: 12px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 5px 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.compare-label.before { left: 12px; }
.compare-label.after { right: 12px; }
.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  border: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.45), 0 0 0 9999px rgba(0,0,0,0);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 0;
}
.compare-handle::before,
.compare-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 3px;
  background: #fff;
  height: 50vh;
  max-height: 400px;
  pointer-events: none;
  transform: translateX(-50%);
}
.compare-handle::before { bottom: 100%; }
.compare-handle::after { top: 100%; }
.compare-handle svg { width: 22px; height: 22px; }
.compare-handle:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.carousel-slide figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .15s ease, transform .15s ease, opacity .2s ease;
}
.carousel-btn:hover { background: var(--blue); transform: translateY(-50%) scale(1.05); }
.carousel-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.carousel-btn[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }
.carousel-btn svg { width: 24px; height: 24px; }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #333;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, width .25s ease;
}
.carousel-dots button.active {
  background: var(--blue);
  width: 28px;
  border-radius: 5px;
}
.carousel-dots button:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

@media (min-width: 760px) {
  .carousel-slide { flex-basis: calc((100% - 16px) / 1.67); }
}
@media (min-width: 1100px) {
  .carousel-slide { flex-basis: calc((100% - 32px) / 2.5); }
}

/* TESTIMONIALS / CONTACT */
.testimonials-contact {
  padding: clamp(60px, 8vw, 96px) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 135, 255, 0.18), transparent 60%),
    var(--bg-alt);
}
.tc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 40px);
  max-width: 1200px;
  margin-inline: auto;
}
.google-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 0 0 24px;
  text-decoration: none;
  color: #fff;
  transition: border-color .2s ease, transform .2s ease;
}
.google-reviews:hover { border-color: var(--blue); transform: translateY(-3px); }
.google-reviews-stars {
  color: #ffb400;
  font-size: 2rem;
  letter-spacing: 4px;
  line-height: 1;
}
.google-reviews-count {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.google-reviews-cta {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-block { display: grid; gap: clamp(28px, 4vw, 48px); }
.quote-block p { color: var(--muted); }
.quote-lede { font-size: 1.05rem; line-height: 1.6; max-width: 480px; margin: 0 0 24px; }

.quote-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.quote-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.quote-perks svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-list li { margin: 0; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.contact-list a:hover { border-color: var(--blue); color: var(--blue); background: #161616; }
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 135, 255, 0.12);
  color: var(--blue);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-list-plain {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 4px 4px 0;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  align-self: start;
  line-height: 1.5;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid var(--border);
  color: #fff;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  border-radius: var(--radius);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #161616;
  box-shadow: 0 0 0 3px rgba(18, 135, 255, 0.18);
}
.quote-form textarea { resize: vertical; min-height: 160px; grid-column: 1 / -1; }
.quote-form .btn { margin-top: 8px; justify-self: stretch; padding: 18px 28px; font-size: 1rem; grid-column: 1 / -1; }
.quote-form .quote-fineprint { grid-column: 1 / -1; }
.quote-fineprint {
  margin: 8px 0 0 !important;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted) !important;
}

.quote-success-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(18, 135, 255, 0.18);
}
.quote-success-inline svg {
  width: 44px;
  height: 44px;
  color: var(--blue);
  flex-shrink: 0;
}
.quote-success-inline strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}
.quote-success-inline span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 18px;
  overflow: hidden;
  transition: width .25s ease;
  color: #fff;
}
.btn-tick svg { width: 18px; height: 18px; flex-shrink: 0; }
.quote-form .btn.is-sent {
  background: #fff;
  color: var(--blue);
  cursor: default;
}
.quote-form .btn.is-sent:hover { background: #fff; transform: none; }
.quote-form .btn.is-sent .btn-tick { width: 22px; color: var(--blue); }

@media (min-width: 760px) {
  .quote-block {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
    gap: clamp(36px, 5vw, 64px);
  }
  .quote-info { padding-right: 8px; }
  .quote-form {
    position: sticky;
    top: 100px;
    grid-template-columns: 1fr 1fr;
    gap: 22px 20px;
    padding: 44px;
  }
  .quote-form input[name="email"] { grid-column: 1 / -1; }
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: #000;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-wrap img { height: 44px; width: auto; }
.footer-wrap p { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .about-grid,
  .tc-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-media {
    aspect-ratio: 4 / 3;
    max-height: 360px;
    max-width: 480px;
    margin-inline: auto;
    align-self: auto;
  }
  .about-content { max-width: none; }
  .features { gap: 20px; }
}

@media (max-width: 760px), (max-height: 500px) and (orientation: landscape) {
  /* Hide header entirely on mobile */
  .site-header { display: none; }

  /* Tighter section padding so things feel less spaced out */
  .about,
  .services,
  .work,
  .faq,
  .testimonials-contact { padding: 48px 0; }
  .about { padding-top: 56px; }
  .about-media { display: none; }

  /* About: centred text + 2x2 features grid with icon above */
  .about-content {
    text-align: center;
    max-width: 460px;
    margin-inline: auto;
  }
  .about-content .kicker { letter-spacing: 0.16em; }
  .about-content h2 { margin-bottom: 18px; }
  .about-content p { font-size: 0.95rem; }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
    max-width: 460px;
    margin-inline: auto;
  }
  .features li {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
  }
  .feature-icon { width: 44px; height: 44px; }
  .feature-text {
    align-items: center;
    text-align: center;
    font-size: 0.95rem;
  }

  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    right: 4%;
    top: calc(100% + 6px);
    flex-direction: column;
    background: #000;
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: var(--radius);
    gap: 16px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 4px; }
  .logo { height: 44px; transform: none; }
  .nav-wrap { padding: 6px 0; }

  .hero { min-height: 78vh; min-height: 78svh; position: relative; }
  .hero-overlay {
    min-height: 78vh;
    min-height: 78svh;
    padding: 56px 0 48px;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.62);
  }
  .hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: max-content;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    font-weight: 800;
    opacity: 0.85;
    z-index: 3;
  }
  .hero-scroll svg { width: 22px; height: 22px; animation: hero-scroll-bounce 2s ease-in-out infinite; }
  .hero-card { max-width: 100%; text-align: center; }
  .hero-eyebrow {
    letter-spacing: 0.1em;
    font-size: 1.2rem;
    margin: 0 0 12px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 3.6rem);
    line-height: 0.98;
    margin: 0 0 24px;
  }
  .hero-lede {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 440px;
  }
  .hero-cta {
    align-self: stretch;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-actions { gap: 12px; justify-content: center; width: 100%; }
  .hero-actions .btn { flex: 1; text-align: center; padding: 16px 20px; font-size: 1rem; }
  .hero-trust {
    justify-content: center;
    margin: 0 auto;
    max-width: 440px;
    gap: 14px;
  }
  .hero-trust-icon { width: 26px; height: 26px; }
  .hero-trust-stars { font-size: 0.85rem; }
  .hero-trust-label { font-size: 0.88rem; }
  .hero-trust-sub { font-size: 0.7rem; }
  .hero-trust-divider { min-height: 36px; }
  .hero-reviews .google-reviews-stars { font-size: 1.55rem; letter-spacing: 4px; }
  .hero-reviews .google-reviews-logo { width: 32px; height: 32px; }

  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); margin-bottom: 26px; }

  .carousel-btn { width: 44px; height: 44px; }
  .carousel-btn.prev { left: 6px; }
  .carousel-btn.next { right: 6px; }
  .carousel-slide figcaption { left: 10px; bottom: 10px; padding: 4px 10px; font-size: 0.7rem; }
  .carousel-dots button { width: 12px; height: 12px; }
  .carousel-dots button.active { width: 32px; }

  .footer-wrap { flex-direction: column; text-align: center; }

  /* Services: 2-column grid of centred cards */
  .services .section-title { text-align: center; }
  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    border-top: 0;
    max-width: 480px;
    margin-inline: auto;
  }
  .service-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 12px;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
  }
  .service-item:hover { padding-left: 12px; }
  .service-item:hover::before { width: 0; }
  .service-icon { width: 38px; height: 38px; }
  .service-item h4 { font-size: 0.9rem; margin-bottom: 2px; line-height: 1.2; }
  .service-item p { font-size: 0.8rem; line-height: 1.4; }

  /* Bigger touch target on compare slider */
  .compare-handle { width: 54px; height: 54px; }
  .compare-handle::before, .compare-handle::after { width: 2px; }
  .compare-label { font-size: 0.66rem; padding: 4px 10px; top: 8px; }
  .compare-label.before { left: 8px; }
  .compare-label.after { right: 8px; }

  /* Tighter glow bands so they don't crowd content */
  .hero::after,
  .services::before,
  .services::after,
  .faq::before,
  .faq::after { height: 22px; filter: blur(5px); }

  /* Reviews badge below the title on small screens */
  .work-header { gap: 14px; flex-direction: column; }
  .work-lede { margin: -10px auto 22px; font-size: 0.95rem; }

  /* FAQ summary slightly smaller */
  .faq summary { font-size: 0.9rem; gap: 10px; }
  .faq details { padding: 14px 18px; }
  .faq details p { font-size: 0.9rem; }

  /* Quote section: strip the desktop "buff" styling on mobile */
  .quote-block { text-align: center; gap: 18px; grid-template-columns: 1fr; }
  .quote-block .kicker { text-align: center; letter-spacing: 0.16em; }
  .quote-block .section-title.left { text-align: center; }
  .quote-lede { margin-inline: auto; font-size: 0.98rem; }
  .quote-perks { display: none; }
  .contact-list { padding: 0; margin: 0 0 6px; max-width: 360px; margin-inline: auto; gap: 4px; }
  .contact-list li { text-align: center; margin: 0; }
  .contact-list a {
    background: transparent;
    border: 0;
    padding: 6px 0;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
  }
  .contact-list a:hover { background: transparent; border: 0; color: var(--blue); }
  .contact-icon { display: none; }
  .contact-list-plain { text-align: center; }
  .quote-form {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    gap: 14px;
    position: static;
    grid-template-columns: 1fr;
  }
  .quote-form input, .quote-form textarea { padding: 12px 14px; font-size: 16px; text-align: center; }
  .quote-form input::placeholder, .quote-form textarea::placeholder { text-align: center; }
  .quote-form .btn { justify-self: stretch; width: 100%; padding: 14px 22px; }
  .quote-fineprint { display: none; }
}

@media (max-width: 480px) {
  .container { width: 94%; }

  .hero h1 { font-size: 2.25rem; }
  .hero-eyebrow { font-size: 1.1rem; }
  .hero-lede { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { padding: 16px 20px; font-size: 0.95rem; width: 100%; }
  .hero-reviews .google-reviews-stars { font-size: 1.4rem; }

  .features { gap: 20px 14px; }
  .features li { gap: 8px; }
  .feature-icon { width: 40px; height: 40px; }
  .feature-text { font-size: 0.9rem; }

  .work-header .section-title { font-size: 1.55rem; }
  .google-reviews.compact { padding: 12px 16px; gap: 8px; }
  .google-reviews.compact .google-reviews-stars { font-size: 1.1rem; letter-spacing: 1px; }
  .google-reviews.compact .google-reviews-count { font-size: 0.8rem; }
  .google-reviews.compact .google-reviews-cta { font-size: 0.65rem; }

  .quote-block .section-title.left { font-size: 1.55rem; }

  .footer-wrap img { height: 40px; width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
