/* AB Exterior Solutions — v4 (finalized logo: dark + electric blue) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep: #06070a;
  --bg-raised: #0c0e13;
  --bg-card: #141820;
  --bg-card-hover: #1a2030;
  --blue: #00b8ff;
  --blue-bright: #4dcfff;
  --blue-dim: #0090cc;
  --blue-glow: rgba(0, 184, 255, 0.35);
  --blue-glow-soft: rgba(0, 184, 255, 0.12);
  --silver: #c8d2dc;
  --chrome: linear-gradient(180deg, #f0f4f8 0%, #a8b4c0 100%);
  --text: #eef2f6;
  --text-muted: #8b96a5;
  --line: rgba(255, 255, 255, 0.08);
  --line-blue: rgba(0, 184, 255, 0.28);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(0, 184, 255, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --font-display: "Rajdhani", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
  --header-h: 80px;
  --section-pad: clamp(3.25rem, 7vw, 5rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Carbon texture utility */
.texture-carbon {
  background-color: var(--bg-raised);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%);
  background-size: 6px 6px;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(6, 7, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-blue);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 1px var(--line-blue);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand__logo {
  height: 54px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
}

/* Transparent PNG — no black plate; fallback blend if old asset loads */
.brand img.brand__logo {
  background: transparent;
}

.site-nav {
  display: none;
  gap: 2.25rem;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s, text-shadow 0.2s;
}

.site-nav a:hover {
  color: var(--blue-bright);
  text-shadow: 0 0 20px var(--blue-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.header-phone {
  display: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--silver);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.header-phone:hover { color: var(--blue-bright); }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--silver);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: rgba(6, 7, 10, 0.97);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--line-blue);
}

/* Must beat display:flex — otherwise [hidden] is ignored and menu covers the page */
.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.mobile-nav a:last-child {
  margin-top: 0.5rem;
  color: var(--blue-bright);
  border-bottom: none;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  color: var(--bg-deep);
  background: linear-gradient(180deg, var(--blue-bright) 0%, var(--blue) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 24px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 0 36px var(--blue-glow), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn--outline {
  color: var(--blue-bright);
  background: transparent;
  border-color: var(--line-blue);
}

.btn--outline:hover {
  background: var(--blue-glow-soft);
  border-color: var(--blue);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover {
  border-color: var(--line-blue);
  color: var(--blue-bright);
}

.btn--sm { padding: 0.55rem 1rem; font-size: 0.8rem; }
.btn--block { width: 100%; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 38%;
  opacity: 1;
  filter: saturate(1.02) contrast(1.04) brightness(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 7, 10, 0.86) 0%, rgba(6, 7, 10, 0.5) 38%, rgba(6, 7, 10, 0.12) 68%, rgba(6, 7, 10, 0.32) 100%),
    linear-gradient(180deg, rgba(6, 7, 10, 0.25) 0%, transparent 38%, rgba(6, 7, 10, 0.62) 100%),
    radial-gradient(ellipse 65% 55% at 80% 42%, rgba(0, 184, 255, 0.1) 0%, transparent 55%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__inner--single {
  max-width: 40rem;
}

.hero__mark {
  width: min(100%, 280px);
  height: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 28px rgba(0, 184, 255, 0.22));
}

.hero__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 24px var(--blue-glow);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--silver);
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: normal;
  color: var(--text);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-blue);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-row strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
  text-shadow: 0 0 20px var(--blue-glow);
}

/* —— Sections —— */
.section {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.section--raised {
  background: var(--bg-raised);
}

.section--cards {
  background: var(--bg-deep);
}

.section__head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 40rem;
}

.section__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--silver);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.section__note {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--line-blue);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section__note a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Services —— */
.svc-list {
  display: grid;
  gap: 1rem;
}

.svc-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.15rem;
  padding: 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.svc-item:hover {
  border-color: var(--line-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.svc-item__thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
}

.svc-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--silver);
  margin-bottom: 0.2rem;
}

.svc-item__from {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-bright);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.svc-item__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.svc-item__link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.svc-item__link:hover { color: var(--blue-bright); }

/* —— Packages —— */
.pkg-row {
  display: grid;
  gap: 1rem;
}

.pkg-card {
  position: relative;
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pkg-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--silver);
  margin-bottom: 0.35rem;
}

.pkg-card__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: 0.85rem;
  text-shadow: 0 0 20px var(--blue-glow);
}

.pkg-card__price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pkg-card ul {
  flex: 1;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pkg-card li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}

.pkg-card li:last-child { border-bottom: none; }

.pkg-card__tag {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: var(--blue);
  color: var(--bg-deep);
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 32px var(--blue-glow-soft), inset 0 0 0 1px rgba(0, 184, 255, 0.15);
  background: linear-gradient(180deg, #1a2230 0%, var(--bg-card) 100%);
}

/* —— Team —— */
.team-block {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.team-block__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-blue);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.team-block__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.real-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.real-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.real-grid img:hover {
  border-color: var(--line-blue);
  box-shadow: 0 0 20px var(--blue-glow-soft);
}

/* —— Compare —— */
.compare-wrap {
  display: grid;
  gap: 1.5rem;
}

.compare-block {
  margin: 0;
}

.compare {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-blue);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 4/3;
  --pos: 50%;
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__after {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare__labels {
  position: absolute;
  inset: 0.75rem 0.75rem auto;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}

.compare__labels span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 999px;
  color: #3c4043;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.compare__labels--google .is-after {
  color: #1a73e8;
  font-weight: 700;
}

.compare__g-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  background: conic-gradient(from 180deg, #ea4335 0deg, #fbbc04 90deg, #34a853 180deg, #4285f4 270deg, #ea4335 360deg);
  flex-shrink: 0;
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: var(--blue);
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 12px var(--blue-glow);
}

.compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--bg-deep);
  box-shadow: 0 0 16px var(--blue-glow);
}

.compare input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.compare__cap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-muted);
}

/* —— Why band —— */
.why-band {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--bg-raised) 0%, var(--bg-deep) 100%);
  border-block: 1px solid var(--line);
}

.why-inline {
  display: grid;
  gap: 1.5rem;
}

.why-inline h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-bright);
  margin-bottom: 0.35rem;
}

.why-inline p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* —— Reviews —— */
.rev-row {
  display: grid;
  gap: 1rem;
}

.rev-card {
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-lg);
}

.rev-card p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.rev-card cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

.rev-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.rev-stars { color: #fbbc04; letter-spacing: 0.12em; font-size: 1.05rem; }

.rev-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.rev-card__stars { color: #fbbc04; letter-spacing: 0.1em; font-size: 0.95rem; }

.rev-card__src {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rev-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* —— Contact —— */
.section--contact {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-raised) 50%, var(--bg-deep) 100%);
  border-top: 1px solid var(--line-blue);
}

.contact-panel--centered {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.contact-panel--centered .section__head {
  margin-inline: auto;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
  text-align: left;
}

.contact-card {
  display: block;
  padding: 1.1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

a.contact-card:hover {
  border-color: var(--line-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.contact-card--primary {
  border-color: var(--line-blue);
  background: linear-gradient(135deg, rgba(0, 184, 255, 0.08) 0%, var(--bg-card) 100%);
}

.contact-card small {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.contact-card strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--silver);
  line-height: 1.35;
}

.contact-card--static strong {
  font-size: 0.95rem;
}

.contact-actions--stack {
  margin-top: 0.5rem;
}

.contact-actions--minor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* —— Footer —— */
.site-footer {
  padding: 2rem 0 2.5rem;
  background: #030405;
  border-top: 1px solid var(--line-blue);
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.92;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-inner a:hover { color: var(--blue-bright); }

/* —— Call bar —— */
.call-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(6, 7, 10, 0.95) 30%);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.call-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.call-bar a {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: var(--bg-deep);
  border-radius: var(--radius);
  box-shadow: 0 0 28px var(--blue-glow);
}

body.has-call-bar { padding-bottom: 0; }

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible,
.no-js .reveal,
.hero .reveal {
  opacity: 1;
  transform: none;
}

/* —— Responsive —— */
@media (max-width: 479px) {
  .svc-item { grid-template-columns: 1fr; }
  .svc-item__thumb { aspect-ratio: 16/9; }
  .trust-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .hero__mark { max-width: 220px; }
}

@media (min-width: 640px) {
  .svc-list { grid-template-columns: repeat(2, 1fr); }
  .pkg-row { grid-template-columns: repeat(2, 1fr); }
  .why-inline { grid-template-columns: repeat(3, 1fr); }
  .rev-row { grid-template-columns: repeat(2, 1fr); }
  .compare-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .header-phone { display: block; }
  .menu-toggle { display: none; }
  .pkg-row { grid-template-columns: repeat(4, 1fr); }
  .team-block { grid-template-columns: 0.95fr 1.05fr; align-items: center; }
  .real-grid { grid-template-columns: repeat(3, 1fr); }
  .real-grid img:first-child { grid-column: span 2; grid-row: span 1; }
  .call-bar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* —— Free Estimate form —— */
.estimate-page {
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  background: var(--bg-deep);
  min-height: 100vh;
}

.estimate-wrap { max-width: 720px; }

.estimate-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.estimate-head .section__lead { margin-top: 0.5rem; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line-blue);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.form-group {
  border: none;
  margin-bottom: 1.75rem;
}

.form-group legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
  padding: 0;
}

.form-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: -0.4rem 0 0.85rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field { display: flex; flex-direction: column; }
.form-field:last-child { margin-bottom: 0; }

.form-field label,
.field-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.4rem;
}

.req { color: var(--blue-bright); }
.opt { color: var(--text-muted); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 0.78rem; }

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field textarea { resize: vertical; min-height: 96px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow-soft);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.check,
.radio {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-deep);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.check:hover,
.radio:hover { border-color: var(--line-blue); }

.check input,
.radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex: 0 0 auto;
  cursor: pointer;
}

.radio-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio-row .radio { flex: 1 1 auto; justify-content: center; }

.hp-field {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-submit { margin-top: 0.5rem; font-size: 1rem; padding: 0.9rem 1.5rem; }

.form-status {
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  text-align: center;
}
.form-status.is-error {
  background: rgba(255, 90, 90, 0.1);
  border: 1px solid rgba(255, 90, 90, 0.4);
  color: #ff9b9b;
}
.form-status.is-ok {
  background: var(--blue-glow-soft);
  border: 1px solid var(--line-blue);
  color: var(--blue-bright);
}

.form-fineprint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-strip li { display: flex; align-items: center; gap: 0.4rem; }
.trust-strip li::before {
  content: "\2713";
  color: var(--blue);
  font-weight: 700;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
}

/* —— v5 design pass (ui-ux-pro-max: trust + before/after, dark OLED-adjacent) —— */
:root {
  --max: 1280px;
  --glow-mesh: radial-gradient(ellipse 80% 60% at 12% 20%, rgba(0, 184, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 70%, rgba(0, 184, 255, 0.08) 0%, transparent 50%);
}

body {
  background: var(--bg-deep);
  background-image: var(--glow-mesh);
  background-attachment: fixed;
}

.site-header__inner {
  gap: 2.5rem;
  max-width: 100%;
}

@media (min-width: 1100px) {
  .container {
    width: min(100% - 3rem, var(--max));
  }
}

/* Hero — wide split layout */
.hero {
  min-height: min(94vh, 880px);
}

.hero__inner--wide {
  max-width: none;
  display: grid;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 900px) {
  .hero__inner--wide {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
}

.hero__overlay {
  background:
    linear-gradient(100deg, rgba(6, 7, 10, 0.92) 0%, rgba(6, 7, 10, 0.55) 42%, rgba(6, 7, 10, 0.15) 70%, rgba(6, 7, 10, 0.45) 100%),
    linear-gradient(180deg, rgba(6, 7, 10, 0.35) 0%, transparent 42%, rgba(6, 7, 10, 0.75) 100%),
    var(--glow-mesh);
}

.hero__bg-image {
  object-position: 58% 42%;
  filter: saturate(1.05) contrast(1.06) brightness(1.02);
}

.hero__slant {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4rem;
  background: linear-gradient(175deg, transparent 45%, var(--bg-raised) 45%);
  z-index: 2;
  pointer-events: none;
}

.hero__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.hero__areas li {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(0, 184, 255, 0.06);
}

.hero__proof {
  padding: 1.35rem 1.25rem;
  background: rgba(12, 14, 19, 0.72);
  border: 1px solid var(--line-blue);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), 0 0 40px rgba(0, 184, 255, 0.08);
}

.hero__proof-kicker {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.hero__steps {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.hero__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.4;
}

.hero__steps span {
  flex: 0 0 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-deep);
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  border-radius: 6px;
}

.hero__proof-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.hero__proof-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Process strip */
.process-strip {
  position: relative;
  z-index: 3;
  padding: 2.5rem 0 3rem;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--line);
}

.process-strip__inner {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .process-strip__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.process-card {
  padding: 1.25rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.process-card:hover {
  border-color: var(--line-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.process-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 184, 255, 0.25);
  margin-bottom: 0.35rem;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--silver);
  margin-bottom: 0.35rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Work badge */
.work-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.work-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
}

/* Services bento */
@media (min-width: 900px) {
  .svc-list--bento {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.15rem;
  }
  .svc-list--bento .svc-item {
    grid-column: span 6;
    cursor: pointer;
  }
  .svc-list--bento .svc-item:nth-child(1) {
    grid-column: span 7;
  }
  .svc-list--bento .svc-item:nth-child(2) {
    grid-column: span 5;
  }
  .svc-list--bento .svc-item:nth-child(3) {
    grid-column: span 5;
  }
  .svc-list--bento .svc-item:nth-child(4) {
    grid-column: span 7;
  }
}

.svc-item {
  cursor: pointer;
}

.svc-item__link {
  display: inline-block;
  margin-top: 0.25rem;
}

.pkg-card,
.rev-card,
.contact-card,
a.contact-card {
  cursor: pointer;
}

.compare-block {
  cursor: ew-resize;
}

@media (prefers-reduced-motion: reduce) {
  .process-card:hover,
  .svc-item:hover {
    transform: none;
  }
}
