/* ============================================================
   VOID STUDIO — Dallas Wallpaper Installation Team
   Dark-mode-first | Electric teal | Geometric precision
   JetBrains Mono + Inter | Glassmorphism | Diagonal cuts
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  /* === VOID Palette === */
  --void: #0a0a0f;
  --void-2: #111118;
  --void-3: #1a1a24;
  --void-4: #24243a;
  --surface: #16161f;
  --surface-2: #1e1e2a;
  --surface-glass: rgba(22, 22, 31, 0.72);
  --teal: #00e5c8;
  --teal-dim: #00b89e;
  --teal-glow: rgba(0, 229, 200, 0.15);
  --teal-bright: #33ffdd;
  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.12);
  --white: #f0f0f5;
  --white-dim: #b8b8cc;
  --white-muted: #6e6e8a;
  --danger: #ff4d6a;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 229, 200, 0.3);

  /* === Geometry === */
  --radius: 0px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-panel: 6px;

  /* === Depth === */
  --glow-sm: 0 0 20px rgba(0, 229, 200, 0.06);
  --glow-md: 0 0 40px rgba(0, 229, 200, 0.08), 0 0 80px rgba(0, 229, 200, 0.04);
  --glow-lg: 0 0 60px rgba(0, 229, 200, 0.12), 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-hard: 8px 8px 0 rgba(0, 229, 200, 0.08);
  --shadow-drop: 0 20px 60px rgba(0, 0, 0, 0.5);

  /* === Type === */
  --mono: "JetBrains Mono", "Fira Code", monospace;
  --sans: "Inter", -apple-system, sans-serif;

  /* === Layout === */
  --max-w: 1400px;
  --max-w-narrow: 860px;
  --gutter: clamp(20px, 4vw, 60px);
  --section-pad: clamp(100px, 12vh, 180px);

  /* === Motion === */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --speed: 0.35s;
  --speed-slow: 0.6s;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-dim);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 0 0 0.4em;
  line-height: 1;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(32px, 4.5vw, 62px);
}
h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* === ANIMATED GRADIENT BORDER UTILITY === */
.glow-border {
  position: relative;
}
.glow-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--teal), var(--purple), var(--teal));
  background-size: 300% 300%;
  animation: borderShift 6s ease infinite;
  z-index: -1;
  opacity: 0.5;
}
@keyframes borderShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* === TOP BAR === */
.top-bar {
  background: var(--void);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.top-bar .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-bar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}
.top-bar a {
  color: var(--white-muted);
  transition: color var(--speed) var(--ease);
}
.top-bar a:hover {
  color: var(--teal);
}
.top-bar span {
  color: var(--white-muted);
  opacity: 0.5;
}

/* === HEADER — Floating dark glass === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: all var(--speed) var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo img {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  filter: brightness(1.2);
}
.logo div {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color var(--speed) var(--ease);
  position: relative;
}
.nav-links a:not(.btn):hover {
  color: var(--teal);
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--speed) var(--ease);
}
.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: var(--mono);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--teal);
}
.close-nav {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 32px;
}

/* === BUTTONS — Sharp, electric === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all var(--speed) var(--ease);
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: translateY(101%);
  transition: transform var(--speed) var(--ease);
  z-index: -1;
}
.btn:hover {
  color: var(--void);
  border-color: var(--teal);
}
.btn:hover::before {
  transform: translateY(0);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}
.btn-primary {
  background: var(--teal);
  color: var(--void);
  border-color: var(--teal);
}
.btn-primary::before {
  background: var(--white);
}
.btn-primary:hover {
  color: var(--void);
  border-color: var(--white);
}
.btn-secondary {
  border-color: var(--white-muted);
  color: var(--white);
}
.btn-white {
  background: var(--teal);
  color: var(--void);
  border-color: var(--teal);
}
.btn-white:hover {
  background: var(--white);
  border-color: var(--white);
}
.btn-dark {
  background: var(--teal);
  color: var(--void);
  border-color: var(--teal);
}
.btn-outline-white {
  border-color: var(--white-muted);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--void);
  border-color: var(--white);
}
.btn-ghost {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-ghost:hover {
  background: var(--teal);
  color: var(--void);
}
.btn-tertiary {
  border-color: var(--white-muted);
  color: var(--white-dim);
}
.btn-tertiary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* === HERO — Full-bleed with scan-line effect === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-start;
  padding: 20px 0 60px;
  overflow: hidden;
  background: var(--void);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.6) contrast(1.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      var(--void) 0%,
      transparent 30%,
      transparent 60%,
      var(--void) 100%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    );
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 0.3em;
  line-height: 0.92;
}
.hero-text {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 52ch;
  margin: 24px 0 40px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "//";
  color: var(--teal);
  opacity: 0.5;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--white-dim);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--teal);
}
.breadcrumb span {
  opacity: 0.3;
}

/* === SECTIONS — Diagonal-cut rhythm === */
.section {
  padding: var(--section-pad) 0;
  position: relative;
  background: var(--void);
}
.section-light {
  background: var(--void-2);
}
.section-paper {
  background: var(--void-3);
}
.section-cream-2 {
  background: var(--void-3);
}
.section-dark {
  background: var(--void);
}
.section-darker {
  background: #060609;
}
.section-white {
  background: var(--surface);
}

/* Diagonal section dividers */
.section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
  pointer-events: none;
}
.section:first-of-type::before {
  display: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 20px;
  font-weight: 500;
}
.section-label::before {
  content: ">";
  color: var(--teal);
  opacity: 0.4;
  font-weight: 700;
}
.section-dark .section-label,
.section-darker .section-label {
  color: var(--teal);
}
.section-title {
  max-width: 18ch;
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.text-center .section-title {
  margin-left: auto;
  margin-right: auto;
}
.text-center .section-label {
  justify-content: center;
}
.section-subtitle {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--white-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* === FADE-IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(30px) skewY(0.5deg);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.no-js .fade-in {
  opacity: 1;
  transform: none;
}

/* === SPLIT LAYOUTS — Offset grid with vertical line === */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
}
.split::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--teal), transparent);
  opacity: 0.2;
}
.split-reverse .split-content {
  order: 2;
}
.split-content h2 {
  text-transform: uppercase;
}
.split-content p {
  color: var(--white-muted);
  line-height: 1.8;
}
.split-content ul {
  padding: 0;
  margin-top: 24px;
}
.split-content ul li {
  position: relative;
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.01em;
}
.split-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--teal);
  font-weight: 700;
}
.split-image {
  position: relative;
}
.split-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: saturate(0.85) contrast(1.05);
  transition: filter var(--speed-slow) var(--ease);
}
.split-image:hover img {
  filter: saturate(1) contrast(1.1);
}
.split-image::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--teal);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity var(--speed) var(--ease);
}
.split-image:hover::before {
  opacity: 0.4;
}
.split-image::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 40%;
  height: 40%;
  background: var(--teal-glow);
  filter: blur(40px);
  z-index: -1;
}

/* === CARDS — Glass panels with animated border === */
.cards-grid {
  display: grid;
  gap: 2px;
}
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--teal);
  transition: height var(--speed) var(--ease);
}
.card:hover {
  background: var(--surface-2);
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
}
.card:hover::before {
  height: 100%;
}
.card:hover h3,
.card:hover h4 {
  color: var(--teal);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  background: var(--void);
  transition: all var(--speed) var(--ease);
}
.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--speed);
}
.card:hover .card-icon {
  background: var(--teal);
  border-color: var(--teal);
}
.card:hover .card-icon svg {
  stroke: var(--void);
}
.card h3 {
  margin-bottom: 12px;
  transition: color var(--speed);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--white-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.75;
}
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  transition: gap var(--speed) var(--ease);
}
.card:hover .card-link {
  gap: 14px;
}
.card-dark {
  background: var(--void-2);
  border-color: var(--border);
}
.card-dark:hover {
  background: var(--void-3);
}

.card-num {
  font-family: var(--mono);
  font-size: 48px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 700;
  opacity: 0.3;
}
.card:hover .card-num {
  opacity: 1;
}

/* === STATS — Oversized mono counters === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 48px 28px;
  text-align: left;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child {
  border-right: none;
}
.stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.6s var(--ease);
}
.stat:hover::after {
  width: 100%;
}
.stat .num {
  font-family: var(--mono);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--white);
  display: block;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat .label {
  color: var(--white-muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 14px;
  display: block;
}

/* === GALLERY — Tight grid with glitch hover === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.gallery-grid.gallery-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid.gallery-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1);
  transition: all 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.15);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(10, 10, 15, 0.85) 100%
  );
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--speed) var(--ease);
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* === PROCESS — Numbered steps with connecting line === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: proc;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.15;
}
.process-step {
  counter-increment: proc;
  padding: 48px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--speed) var(--ease);
}
.process-step:last-child {
  border-right: none;
}
.process-step:hover {
  background: var(--surface);
}
.process-step::before {
  content: counter(proc, decimal-leading-zero);
  display: block;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 56px;
  color: var(--teal);
  line-height: 1;
  font-weight: 700;
  opacity: 0.2;
  transition: opacity var(--speed) var(--ease);
}
.process-step:hover::before {
  opacity: 0.6;
}
.process-step h3 {
  margin-bottom: 12px;
  font-size: 16px;
}
.process-step p {
  color: var(--white-muted);
  font-size: 13px;
  margin: 0;
  line-height: 1.8;
}

/* === LOGO STRIP === */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip img {
  width: 100%;
  max-width: 180px;
  min-height: 52px;
  opacity: 0.68;
  filter: grayscale(1) invert(1);
  transition: all 0.4s var(--ease);
  margin: 0 auto;
  padding: 18px 16px;
  object-fit: contain;
}
.logo-strip img:hover {
  opacity: 1;
  filter: grayscale(0) invert(0);
}

/* === REVIEWS === */
.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.reviews-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.reviews-score {
  font-family: var(--mono);
  font-size: 56px;
  line-height: 1;
  color: var(--white);
  font-weight: 700;
}
.reviews-meta {
  font-size: 13px;
  color: var(--white-muted);
}
.reviews-meta strong {
  color: var(--white);
}
.reviews-stars-lg {
  display: inline-flex;
  gap: 3px;
  color: var(--teal);
}
.reviews-stars-lg svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.reviews-source-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.reviews-source-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--speed) var(--ease);
}
.review-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--sans);
  font-size: 72px;
  color: var(--teal);
  opacity: 0.06;
  line-height: 1;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--void);
  background: var(--teal);
  letter-spacing: -0.01em;
}
.review-avatar.av-bronze {
  background: #f59e0b;
}
.review-avatar.av-sage {
  background: #10b981;
}
.review-avatar.av-gold {
  background: var(--teal);
}
.review-avatar.av-ink {
  background: var(--white);
  color: var(--void);
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.review-author-meta {
  font-size: 11px;
  color: var(--white-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--teal);
}
.review-stars svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.review-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--white-dim);
  margin: 0;
}
.review-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--white-dim);
}
.review-source-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
}
.review-source-icon.src-google {
  background: #4285f4;
}
.review-source-icon.src-yelp {
  background: #d32323;
}
.review-source-icon.src-houzz {
  background: #7ac142;
}
.review-source-icon.src-thumbtack {
  background: #009fd9;
}
.review-source-icon.src-direct {
  background: var(--purple);
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--teal);
  font-weight: 600;
}
.review-verified svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.cards-grid.reviews-grid {
  gap: 2px;
}

/* === FAQ — Terminal-style accordion === */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 0;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--speed) var(--ease);
  text-transform: uppercase;
}
.faq-q:hover {
  color: var(--teal);
}
.faq-q svg {
  flex: 0 0 auto;
  transition: transform 0.4s var(--ease);
  color: var(--teal);
}
.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  color: var(--white-muted);
  font-size: 14px;
  line-height: 1.85;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 0 28px;
}

/* === RFP FORM — Glass panel on void === */
.rfp-section {
  background: var(--void);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.rfp-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}
.rfp-section .section-title {
  color: var(--white);
}
.rfp-section .section-subtitle {
  color: var(--white-muted);
}
.rfp-form {
  max-width: 780px;
  margin: 56px auto 0;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 56px;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 14px;
  transition: all var(--speed) var(--ease);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300e5c8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--void);
}
.form-group select option {
  background: var(--void);
  color: var(--white);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-muted);
  opacity: 0.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow:
    0 0 0 2px var(--teal-glow),
    var(--glow-sm);
}
.file-upload-area {
  border: 1px dashed var(--border);
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all var(--speed) var(--ease);
}
.file-upload-area:hover {
  border-color: var(--teal);
  background: var(--teal-glow);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-upload-area p {
  color: var(--white-muted);
  font-size: 13px;
  margin: 6px 0;
}
.file-list {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
}
.consent-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--white-muted);
}
.consent-group input {
  width: auto;
  margin-top: 4px;
}
.consent-group a {
  color: var(--teal);
  text-decoration: underline;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success.show {
  display: block;
}

/* === FOOTER — Minimal grid === */
.site-footer {
  background: var(--void);
  color: var(--white-muted);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}
.footer-col h3 {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-muted);
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: var(--white-muted);
  transition: all var(--speed) var(--ease);
}
.footer-col a:hover {
  color: var(--teal);
  transform: translateX(4px);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--white-muted);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* === MODALS === */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.sticky-cta .btn {
  min-height: 40px;
}
.sticky-cta .sticky-call {
  box-shadow: none;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal-overlay.open {
  display: flex;
}
.modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 56px;
  max-width: 760px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}
.modal-content h2 {
  color: var(--white);
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 10px;
}
.modal-content > p {
  color: var(--white-muted);
  margin-bottom: 24px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 20px;
  transition: all var(--speed) var(--ease);
}
.modal-close:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.newsletter-modal .modal-content {
  max-width: 500px;
}
.newsletter-intro {
  color: var(--white-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 26px;
  max-width: 400px;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner p {
  font-size: 12px;
  color: var(--white-muted);
  margin: 0 0 14px;
  line-height: 1.65;
}
.cookie-banner a {
  color: var(--teal);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* === TAGLINE ROW — Ticker-style === */
.tagline-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--void-2);
  overflow: hidden;
}
.tagline-row .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tagline-row .item {
  display: inline-flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  white-space: nowrap;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.tagline-row .item:last-child {
  border-right: none;
}
.tagline-row .dot {
  width: 4px;
  height: 4px;
  background: var(--teal);
  margin: 0 12px;
}

/* === PROSE (privacy etc) === */
.prose h2 {
  font-size: 22px;
  margin-top: 1.8em;
  text-transform: uppercase;
}
.prose ul {
  padding-left: 24px;
  margin-bottom: 1em;
  list-style: none;
}
.prose li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--white-dim);
  padding-left: 16px;
  position: relative;
}
.prose li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-bottom: 1px solid var(--border);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step {
    border-bottom: 1px solid var(--border);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }
  .split::after {
    display: none;
  }
  .split-reverse .split-content {
    order: 0;
  }
  .cards-grid-3,
  .cards-grid-4,
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid::before {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
    align-items: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .rfp-form {
    padding: 32px 22px;
  }
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .sticky-cta .btn {
    flex: 1;
    padding-left: 12px;
    padding-right: 12px;
  }
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 72px;
    max-width: none;
  }
  .tagline-row .container {
    flex-wrap: wrap;
  }
  .tagline-row .item {
    flex: 1 0 45%;
    border-bottom: 1px solid var(--border);
  }
  .section::before {
    height: 30px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 32px 22px;
  }
  .tagline-row .item {
    flex: 1 0 100%;
  }
}

/* === JS HELPERS === */
.no-scroll {
  overflow: hidden !important;
}
.error-message {
  color: var(--danger);
  font-size: 11px;
  margin-top: 6px;
  font-family: var(--mono);
}
.has-error label {
  color: var(--danger);
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--void);
}
::-webkit-scrollbar-thumb {
  background: var(--void-4);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* === SELECTION === */
::selection {
  background: var(--teal);
  color: var(--void);
}
::-moz-selection {
  background: var(--teal);
  color: var(--void);
}

/* === FOCUS === */
:focus-visible {
  outline: 1px solid var(--teal);
  outline-offset: 2px;
}

/* === ANIMATED SCAN LINES (subtle) === */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 229, 200, 0.03) 2px,
    rgba(0, 229, 200, 0.03) 4px
  );
}
