﻿:root {
  --navy-950: #031124;
  --navy-900: #061a35;
  --navy-800: #09254c;
  --navy-700: #123668;
  --silver-200: #e6e8ea;
  --silver-300: #c7ccd1;
  --silver-500: #8c96a0;
  --silver-700: #515b66;
  --white: #ffffff;
  --off-white: #f7f8f8;
  --soft-gray: #edf0f2;
  --charcoal: #111720;
  --muted: #5a6672;
  --line: rgba(12, 29, 52, 0.12);
  --shadow: 0 18px 44px rgba(3, 17, 36, 0.14);
  --shadow-soft: 0 10px 30px rgba(3, 17, 36, 0.1);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--white);
  color: var(--navy-900);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(12, 29, 52, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: none;
  flex-direction: column;
  padding: 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.primary-nav.is-open {
  display: flex;
}

.primary-nav a {
  padding: 0.9rem 0;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--navy-700);
}

.header-actions {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy-900);
}

.button,
.phone-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus,
.phone-button:hover,
.phone-button:focus {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: 0 14px 28px rgba(6, 26, 53, 0.26);
}

.button-primary:hover,
.button-primary:focus {
  box-shadow: 0 18px 36px rgba(6, 26, 53, 0.33);
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.button-secondary {
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--silver-200), var(--white));
  border-color: rgba(140, 150, 160, 0.38);
}

.button-full {
  width: 100%;
}

.phone-button {
  color: var(--navy-900);
  background: var(--off-white);
  border-color: var(--line);
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.section-light {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 204, 209, 0.28), transparent 28rem),
    linear-gradient(180deg, var(--white), var(--off-white));
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(88svh - var(--header-height)), 820px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(3, 17, 36, 0.98) 0%, rgba(3, 17, 36, 0.9) 43%, rgba(3, 17, 36, 0.36) 72%, rgba(3, 17, 36, 0.14) 100%),
    url("../images/surface-doctors-hero.png");
  background-size: cover;
  background-position: 62% center;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(255, 255, 255, 0.13) 48.2% 48.8%, transparent 49%),
    linear-gradient(180deg, rgba(3, 17, 36, 0) 70%, rgba(3, 17, 36, 0.86) 100%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: clamp(560px, calc(88svh - var(--header-height)), 820px);
  padding: 4.5rem 0 5rem;
}

.hero-copy {
  max-width: 760px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.55rem, 8vw, 6.35rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 1rem;
  color: var(--navy-900);
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  font-weight: 820;
}

h3 {
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 800;
}

.section-dark h2,
.section-dark h3,
.hero h1 {
  color: var(--white);
}

.hero p {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-section,
.services-section,
.gallery-preview,
.why-section,
.areas-section,
.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.split-intro,
.areas-layout,
.why-layout,
.cta-panel {
  display: grid;
  gap: 2rem;
}

.split-intro {
  margin-bottom: 2rem;
}

.split-intro p,
.section-heading p,
.why-copy p,
.areas-layout p,
.simple-cta p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-heading-light p,
.final-cta p,
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.value-grid,
.service-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.value-card,
.service-card {
  position: relative;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.value-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 38%),
    radial-gradient(circle at 90% 0%, rgba(199, 204, 209, 0.3), transparent 12rem);
}

.value-card > *,
.service-card > * {
  position: relative;
}

.value-card p,
.service-card p {
  color: var(--muted);
}

.icon-wrap {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy-900);
  border: 1px solid rgba(140, 150, 160, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--white), var(--silver-200));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.35rem;
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--navy-800);
  font-weight: 850;
}

.service-card a:hover,
.service-card a:focus {
  color: var(--navy-700);
}

.gallery-preview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(3, 17, 36, 0.96), rgba(6, 26, 53, 0.98)),
    linear-gradient(45deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 46.2% 46.8%, transparent 47% 100%);
}

.gallery-tile {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(230, 232, 234, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface-pattern);
  background-size: cover;
  opacity: 0.94;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 17, 36, 0.08) 0%, rgba(3, 17, 36, 0.26) 42%, rgba(3, 17, 36, 0.88) 100%);
}

.gallery-photo::before {
  display: none;
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.gallery-photo:hover .gallery-image,
.gallery-photo:focus-within .gallery-image {
  transform: scale(1.045);
}

.gallery-tile-content {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 1;
}

.gallery-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(3, 17, 36, 0.54);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-tile h3 {
  margin-bottom: 0.25rem;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.gallery-tile p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.gallery-large {
  min-height: 330px;
}

.why-layout {
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 1rem;
}

.proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proof-item h3 {
  margin-bottom: 0.3rem;
}

.proof-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.check-icon {
  width: 30px;
  height: 30px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--navy-900), var(--navy-700)),
    var(--navy-900);
  position: relative;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 7px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.areas-section {
  background:
    linear-gradient(180deg, var(--off-white), var(--white)),
    radial-gradient(circle at 85% 20%, rgba(199, 204, 209, 0.28), transparent 24rem);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(140, 150, 160, 0.32);
  border-radius: var(--radius);
  color: var(--navy-900);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 760;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(3, 17, 36, 0.96), rgba(6, 26, 53, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
}

.cta-panel {
  align-items: start;
}

.final-cta h2 {
  color: var(--white);
}

.estimate-form {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  padding: 1.1rem;
  border: 1px solid rgba(230, 232, 234, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.estimate-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 760;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid rgba(230, 232, 234, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(3, 17, 36, 0.5);
  padding: 0.75rem 0.8rem;
  outline: none;
}

.estimate-form select option {
  color: var(--charcoal);
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--silver-300);
  box-shadow: 0 0 0 3px rgba(199, 204, 209, 0.16);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0 2rem;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.footer-brand p {
  max-width: 310px;
}

.footer-phone {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 850;
}

.site-footer h2 {
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a:hover,
.footer-list a:focus,
.footer-brand a:hover,
.footer-brand a:focus {
  color: var(--white);
}

.footer-bottom {
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid rgba(230, 232, 234, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.page-hero {
  padding: clamp(5rem, 11vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    linear-gradient(90deg, rgba(3, 17, 36, 0.96), rgba(6, 26, 53, 0.92)),
    url("../images/surface-doctors-hero.png");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

.simple-cta {
  text-align: center;
}

.simple-cta h2,
.simple-cta p {
  margin-inline: auto;
}

.cta-row-center {
  justify-content: center;
}

@media (min-width: 640px) {
  .value-grid,
  .service-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-large {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .brand img {
    width: 58px;
    height: 58px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.05rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 0.25rem 0;
    font-size: 0.88rem;
  }

  .header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
  }

  .split-intro,
  .areas-layout,
  .why-layout,
  .cta-panel {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1.25fr 0.8fr 0.95fr;
    grid-auto-rows: 220px;
  }

  .gallery-tile {
    min-height: auto;
  }

  .gallery-large {
    grid-row: span 2;
    grid-column: span 1;
  }

  .gallery-grid-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1120px) {
  .primary-nav {
    gap: 1.35rem;
  }
}

@media (max-width: 899px) {
  .header-inner {
    min-height: 70px;
  }

  :root {
    --header-height: 70px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(3, 17, 36, 0.96) 0%, rgba(3, 17, 36, 0.9) 54%, rgba(3, 17, 36, 0.54) 100%),
      url("../images/surface-doctors-hero.png");
    background-position: 58% center;
  }

  .hero-content {
    align-items: end;
  }

  .brand span {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .cta-row .button {
    width: 100%;
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Premium visual pass */
:root {
  --metal-line: rgba(230, 232, 234, 0.28);
  --silver-glow: rgba(230, 232, 234, 0.34);
  --skyline-glow: rgba(235, 169, 85, 0.2);
  --deep-glass: rgba(3, 17, 36, 0.72);
}

body {
  background:
    radial-gradient(circle at 82% 8%, rgba(199, 204, 209, 0.16), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f5f7f8 48%, #ffffff 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(3, 17, 36, 0.08);
}

.brand img {
  filter: drop-shadow(0 8px 16px rgba(3, 17, 36, 0.18));
}

.button,
.phone-button {
  position: relative;
  overflow: hidden;
}

.button::after,
.phone-button::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 45%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: left 420ms ease;
}

.button:hover::after,
.button:focus::after,
.phone-button:hover::after,
.phone-button:focus::after {
  left: 125%;
}

.button-primary {
  border-color: rgba(230, 232, 234, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #031124 0%, #082653 52%, #123668 100%);
  box-shadow: 0 18px 38px rgba(3, 17, 36, 0.34);
}

.button-secondary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(199, 204, 209, 0.68)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 28px rgba(3, 17, 36, 0.1);
}

.phone-button {
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-media {
  background-image:
    radial-gradient(circle at 78% 18%, rgba(230, 232, 234, 0.18), transparent 18rem),
    linear-gradient(90deg, rgba(3, 17, 36, 0.98) 0%, rgba(3, 17, 36, 0.9) 40%, rgba(3, 17, 36, 0.38) 72%, rgba(3, 17, 36, 0.12) 100%),
    url("../images/surface-doctors-hero.png");
}

.hero-sheen {
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 42.15% 42.55%, transparent 42.8%),
    radial-gradient(circle at 24% 76%, rgba(199, 204, 209, 0.15), transparent 18rem),
    linear-gradient(180deg, rgba(3, 17, 36, 0) 64%, rgba(3, 17, 36, 0.9) 100%);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 7.5rem;
  height: 2px;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, var(--silver-200), rgba(255, 255, 255, 0));
  box-shadow: 0 0 24px var(--silver-glow);
}

.hero h1 {
  text-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.trust-section,
.why-section {
  position: relative;
  overflow: hidden;
}

.trust-section::before,
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(3, 17, 36, 0.035) 47.2% 47.7%, transparent 48%),
    radial-gradient(circle at 88% 18%, rgba(140, 150, 160, 0.22), transparent 18rem);
}

.value-card,
.service-card,
.proof-item,
.estimate-form {
  border-color: rgba(140, 150, 160, 0.22);
  box-shadow: 0 20px 52px rgba(3, 17, 36, 0.12);
}

.value-card,
.proof-item {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 248, 0.82)),
    repeating-linear-gradient(135deg, rgba(3, 17, 36, 0.035) 0 1px, transparent 1px 24px);
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(199, 204, 209, 0.26), transparent 24rem),
    linear-gradient(180deg, #f8fafb 0%, #ffffff 52%, #edf1f4 100%);
}

.service-card {
  min-height: 310px;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 54, 104, 0.28);
  box-shadow: 0 28px 68px rgba(3, 17, 36, 0.18);
}

.service-card-photo {
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 17, 36, 0.12) 0%, rgba(3, 17, 36, 0.58) 48%, rgba(3, 17, 36, 0.92) 100%),
    var(--service-image) center / cover;
}

.service-card-photo::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(230, 232, 234, 0.18), transparent 12rem);
}

.service-card-photo h3,
.service-card-photo p,
.service-card-photo a {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.service-card-photo p {
  color: rgba(255, 255, 255, 0.84);
}

.service-card-photo .icon-wrap {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(3, 17, 36, 0.42);
  backdrop-filter: blur(10px);
}

.service-card:not(.service-card-photo) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(230, 232, 234, 0.7)),
    repeating-linear-gradient(125deg, rgba(3, 17, 36, 0.045) 0 1px, transparent 1px 22px);
}

.gallery-preview {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 204, 209, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(3, 17, 36, 0.98), rgba(6, 26, 53, 1)),
    linear-gradient(45deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 46.2% 46.8%, transparent 47% 100%);
}

.gallery-tile {
  border-color: rgba(230, 232, 234, 0.2);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.32);
}

.gallery-tile::after {
  background: linear-gradient(180deg, rgba(3, 17, 36, 0.05) 0%, rgba(3, 17, 36, 0.2) 35%, rgba(3, 17, 36, 0.92) 100%);
}

.areas-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 17, 36, 0.96) 0%, rgba(3, 17, 36, 0.86) 44%, rgba(3, 17, 36, 0.56) 100%),
    url("../images/houston-skyline.jpg") center / cover;
}

.areas-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 17, 36, 0.18), rgba(3, 17, 36, 0.82)),
    radial-gradient(circle at 74% 22%, var(--skyline-glow), transparent 24rem);
}

.areas-section .container {
  position: relative;
  z-index: 1;
}

.areas-section h2,
.areas-section p {
  color: var(--white);
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

.area-pill {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.final-cta {
  background:
    radial-gradient(circle at 18% 8%, rgba(230, 232, 234, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(3, 17, 36, 0.98), rgba(6, 26, 53, 1)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
}

.cta-panel {
  position: relative;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  z-index: 0;
  border: 1px solid rgba(230, 232, 234, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.estimate-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

@media (min-width: 900px) {
  .service-grid {
    grid-auto-rows: 1fr;
  }

  .services-section .section-heading {
    margin-bottom: 2.4rem;
  }
}

@media (max-width: 899px) {
  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(3, 17, 36, 0.98) 0%, rgba(3, 17, 36, 0.92) 52%, rgba(3, 17, 36, 0.62) 100%),
      url("../images/surface-doctors-hero.png");
  }

  .service-card {
    min-height: 280px;
  }

  .areas-section {
    background-position: 56% center;
  }

  .cta-panel::before {
    inset: -1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button::after,
  .phone-button::after,
  .service-card,
  .gallery-image {
    transition-duration: 0.01ms !important;
  }
}


/* Final logo scale pass */
:root {
  --brand-logo-width: clamp(6.6rem, 9.2vw, 9.25rem);
  --header-height: 92px;
}

.site-header {
  overflow: visible;
}

.header-inner {
  min-height: var(--header-height);
}

.brand {
  flex-shrink: 0;
  gap: 0.85rem;
}

.brand img {
  width: var(--brand-logo-width);
  height: auto;
  max-height: calc(var(--header-height) - 0.8rem);
  object-fit: contain;
}

.brand span {
  max-width: 9.5rem;
  font-size: 0.8rem;
  line-height: 1.08;
  letter-spacing: 0.11em;
}

.hero-brand-mark {
  position: absolute;
  top: clamp(4.4rem, 12vh, 7rem);
  right: max(1rem, calc((100vw - var(--container)) / 2));
  z-index: -1;
  width: clamp(13.5rem, 23vw, 23rem);
  height: auto;
  pointer-events: none;
  opacity: 0.9;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.38)) saturate(1.05);
}

.footer-brand img {
  width: clamp(10.5rem, 18vw, 15rem);
  height: auto;
  margin-bottom: 1.15rem;
}

@media (min-width: 1120px) {
  .header-inner {
    gap: 1.2rem;
  }

  .primary-nav {
    gap: 1rem;
  }
}

@media (min-width: 900px) and (max-width: 1140px) {
  :root {
    --brand-logo-width: 7rem;
  }

  .brand span {
    display: none;
  }

  .primary-nav {
    gap: 0.72rem;
  }

  .primary-nav a {
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 0.5rem;
  }
}

@media (max-width: 899px) {
  :root {
    --brand-logo-width: 5.9rem;
    --header-height: 86px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .primary-nav {
    inset: var(--header-height) 0 auto 0;
  }

  .hero-brand-mark {
    top: 5.5rem;
    right: -2.5rem;
    width: clamp(12rem, 58vw, 17rem);
    opacity: 0.2;
  }

  .footer-brand img {
    width: min(14rem, 72vw);
  }
}

@media (max-width: 420px) {
  :root {
    --brand-logo-width: 5.3rem;
    --header-height: 80px;
  }
}


/* Final logo tightening pass */
.final-cta {
  overflow: hidden;
}

@media (max-width: 1140px) {
  .hero-brand-mark {
    display: none;
  }
}


/* Alignment and gallery pass */
.button,
.phone-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.cta-row {
  align-items: center;
}

.value-grid,
.service-grid,
.gallery-grid,
.proof-list {
  align-items: stretch;
}

.value-card,
.service-card,
.proof-item,
.gallery-tile {
  height: 100%;
}

.value-card {
  display: flex;
  flex-direction: column;
}

.value-card p {
  margin-bottom: 0;
}

.service-card h3,
.value-card h3 {
  min-height: 2.2em;
}

.service-card a {
  align-self: flex-start;
  padding-top: 0.35rem;
}

.proof-item {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.proof-item:hover,
.proof-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(199, 204, 209, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 240, 242, 0.86)),
    linear-gradient(90deg, rgba(18, 54, 104, 0.08), transparent);
  box-shadow:
    0 0 0 1px rgba(230, 232, 234, 0.78),
    0 0 34px rgba(199, 204, 209, 0.34),
    0 24px 58px rgba(3, 17, 36, 0.14);
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.area-pill {
  width: 100%;
  min-height: 4.15rem;
  justify-content: center;
  padding: 0.8rem 0.75rem;
  text-align: center;
}

.hero-brand-mark {
  filter:
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.42))
    drop-shadow(0 32px 50px rgba(0, 0, 0, 0.44));
}

.footer-brand img {
  filter:
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.34))
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.38));
}

@media (min-width: 640px) {
  .areas-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .gallery-preview .gallery-grid:not(.gallery-grid-page) {
    grid-template-columns: minmax(0, 1.05fr) minmax(10.5rem, 0.72fr) minmax(0, 1.05fr);
    grid-template-rows: repeat(4, minmax(8.8rem, 1fr));
    grid-auto-rows: minmax(8.8rem, 1fr);
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile {
    min-height: auto;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 4;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(5) {
    grid-column: 2;
    grid-row: 4;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(6) {
    grid-column: 3;
    grid-row: 1 / span 4;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(2) .gallery-tile-content,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(3) .gallery-tile-content,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(4) .gallery-tile-content,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(5) .gallery-tile-content {
    inset: auto 0.8rem 0.75rem;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(2) p,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(3) p,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(4) p,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(5) p {
    display: none;
  }

  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(2) h3,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(3) h3,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(4) h3,
  .gallery-preview .gallery-grid:not(.gallery-grid-page) .gallery-tile:nth-child(5) h3 {
    margin-bottom: 0;
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .service-card h3,
  .value-card h3 {
    min-height: 0;
  }

  .areas-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-pill {
    min-height: 3.5rem;
  }
}

@media (max-width: 420px) {
  .areas-list {
    grid-template-columns: 1fr;
  }
}

/* Final alignment polish */
.footer-brand {
  position: relative;
  isolation: isolate;
}

.footer-brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1.45rem;
  left: -1.6rem;
  width: min(20rem, 115%);
  height: 18rem;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 42% 34%, rgba(255, 255, 255, 0.46), rgba(230, 232, 234, 0.2) 38%, rgba(230, 232, 234, 0.05) 58%, transparent 72%);
  filter: blur(2px);
}

.footer-brand img {
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.5))
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.44));
}

@media (max-width: 420px) {
  .areas-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .area-pill {
    min-height: 3.8rem;
    padding-inline: 0.55rem;
  }
}
/* Premium conversion expansion pass */
:root {
  --header-height: 108px;
  --brand-logo-width: clamp(8.4rem, 12vw, 11.1rem);
  --glass: rgba(255, 255, 255, 0.12);
  --glass-strong: rgba(255, 255, 255, 0.18);
  --luxury-shadow: 0 28px 74px rgba(3, 17, 36, 0.18);
  --navy-silver: linear-gradient(135deg, var(--navy-900), var(--navy-700) 54%, var(--silver-300));
}

html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

#about,
#services,
#gallery,
#why-us,
#service-areas,
#contact,
#before-after {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.site-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(115deg, rgba(3, 17, 36, 0.045) 0 1px, transparent 1px 18px);
  border-bottom: 1px solid rgba(140, 150, 160, 0.26);
}

.header-inner {
  min-height: var(--header-height);
}

.brand {
  gap: 0;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.brand img {
  width: var(--brand-logo-width);
  max-height: calc(var(--header-height) - 0.7rem);
  padding: 0;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.5))
    drop-shadow(0 12px 22px rgba(3, 17, 36, 0.2));
  animation: logoReveal 900ms ease both;
}

.primary-nav a {
  position: relative;
  color: rgba(17, 23, 32, 0.88);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  font-weight: 760;
  transition: color 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.36rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--navy-900), var(--silver-300));
  box-shadow: 0 0 18px rgba(199, 204, 209, 0.55);
  transition: transform 190ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--navy-800);
}

.primary-nav a:hover::after,
.primary-nav a:focus::after {
  transform: scaleX(1);
}

.button,
.phone-button {
  min-height: 46px;
  padding: 0.83rem 1.15rem;
  font-size: 0.96rem;
}

.hero-luxe {
  min-height: clamp(650px, calc(94svh - var(--header-height)), 900px);
}

.hero-luxe .hero-media {
  transform: translate3d(0, var(--hero-depth, 0), 0) scale(1.045);
  transform-origin: center;
  background-image:
    linear-gradient(90deg, rgba(3, 17, 36, 0.98) 0%, rgba(3, 17, 36, 0.88) 38%, rgba(3, 17, 36, 0.42) 70%, rgba(3, 17, 36, 0.14) 100%),
    url("../images/surface-doctors-hero.png");
  animation: slowHeroPan 18s ease-in-out infinite alternate;
}

.hero-luxe .hero-content {
  min-height: clamp(650px, calc(94svh - var(--header-height)), 900px);
  padding-top: 5rem;
}

.shield-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(126deg, transparent 0 47%, rgba(230, 232, 234, 0.18) 47.1% 47.35%, transparent 47.55%),
    linear-gradient(126deg, transparent 0 56%, rgba(230, 232, 234, 0.1) 56.1% 56.3%, transparent 56.5%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 64px);
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-proof-row,
.floating-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-proof-row {
  margin-bottom: 1.2rem;
}

.hero-proof-row span,
.floating-services span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(230, 232, 234, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-services {
  margin-top: 2rem;
}

.floating-services span {
  color: var(--silver-200);
  background: rgba(3, 17, 36, 0.45);
}

.hero-brand-mark {
  animation: logoFloatReveal 1200ms ease 160ms both;
}

.stats-section,
.before-after-section,
.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    linear-gradient(135deg, rgba(3, 17, 36, 0.96), rgba(6, 26, 53, 1)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 28px);
}

.stats-section::before,
.before-after-section::before,
.testimonial-section::before,
.service-map-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(230, 232, 234, 0.08) 46.1% 46.55%, transparent 46.7%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px);
}

.premium-stats-grid,
.before-after-grid,
.testimonial-grid,
.credibility-grid {
  display: grid;
  gap: 1rem;
}

.stat-card {
  position: relative;
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid rgba(230, 232, 234, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(3, 17, 36, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.stat-card::before {
  content: "";
  display: block;
  width: 4.2rem;
  height: 2px;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, var(--silver-200), transparent);
}

.stat-number {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.stat-word {
  max-width: 100%;
  font-size: clamp(1.7rem, 2.5vw, 2.65rem);
  line-height: 1.04;
}

.stat-card span {
  display: block;
  color: var(--silver-200);
  font-weight: 850;
  text-transform: uppercase;
}

.stat-card p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.trust-intro {
  align-items: start;
}

.trust-intro-lede {
  max-width: 500px;
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 820;
  line-height: 1.32;
}

.trust-copy {
  max-width: 780px;
}

.trust-copy p {
  margin-bottom: 1.1rem;
}

.trust-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-check-list li {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: rgba(17, 23, 32, 0.88);
  font-size: 0.95rem;
  font-weight: 780;
}

.trust-check-list .check-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin: 0;
  box-shadow: 0 9px 18px rgba(10, 35, 66, 0.22);
}

.trust-check-list .check-icon::after {
  left: 7px;
  top: 5px;
  width: 5px;
  height: 9px;
}

.trust-section .value-card {
  padding: 1.35rem;
  border-color: rgba(10, 35, 66, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 248, 0.88)),
    repeating-linear-gradient(135deg, rgba(10, 35, 66, 0.035) 0 1px, transparent 1px 24px);
  box-shadow: 0 18px 42px rgba(3, 17, 36, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.trust-section .value-card::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 42%),
    linear-gradient(124deg, transparent 0 64%, rgba(10, 35, 66, 0.06) 64.2% 64.8%, transparent 65%),
    radial-gradient(circle at 92% 0%, rgba(199, 204, 209, 0.34), transparent 11rem);
}

.trust-section .value-card:hover,
.trust-section .value-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(10, 35, 66, 0.28);
  box-shadow: 0 30px 76px rgba(3, 17, 36, 0.18);
}

.trust-section .value-card .icon-wrap {
  width: 54px;
  height: 54px;
  color: var(--white);
  border-color: rgba(10, 35, 66, 0.18);
  background: #0A2342;
  box-shadow:
    0 16px 32px rgba(10, 35, 66, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.trust-section .value-card:hover .icon-wrap,
.trust-section .value-card:focus-within .icon-wrap {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px rgba(10, 35, 66, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.trust-section .value-card .icon-wrap svg {
  width: 26px;
  height: 26px;
}

.trust-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1.25rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 248, 0.82)),
    repeating-linear-gradient(90deg, rgba(10, 35, 66, 0.028) 0 1px, transparent 1px 18px);
  box-shadow: 0 20px 54px rgba(3, 17, 36, 0.1);
}

.trust-ribbon-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0.24rem 0.92rem;
  color: #0A2342;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.trust-ribbon-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(140, 150, 160, 0.55), transparent);
}

.trust-ribbon-icon {
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  color: #0A2342;
}

.trust-ribbon-icon svg {
  width: 18px;
  height: 18px;
}

.service-card-premium {
  gap: 0;
  min-height: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--luxury-shadow);
}

.service-card-premium::before {
  display: none;
}

.service-card-media {
  position: relative;
  min-height: 215px;
  border-bottom: 1px solid rgba(140, 150, 160, 0.22);
  background:
    linear-gradient(180deg, rgba(3, 17, 36, 0.12), rgba(3, 17, 36, 0.68)),
    var(--service-image) center / cover;
  overflow: hidden;
}

.service-card-media .icon-wrap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  margin: 0;
  color: var(--white);
  background: rgba(3, 17, 36, 0.48);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0.34rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--white), var(--silver-200));
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.service-card-body h3 {
  min-height: 0;
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.service-card-body p {
  margin-bottom: 1rem;
}

.service-benefits {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  color: var(--charcoal);
  font-size: 0.93rem;
  font-weight: 720;
}

.service-benefits li {
  position: relative;
  padding-left: 1.1rem;
}

.service-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--navy-silver);
}

.service-card-body a {
  margin-top: 1rem;
}

.before-after-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.before-after-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(230, 232, 234, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.compare-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  isolation: isolate;
}

.compare-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.compare-before {
  z-index: 1;
  width: var(--split);
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(3, 17, 36, 0.06), rgba(3, 17, 36, 0.36)),
    var(--before);
  border-right: 2px solid rgba(255, 255, 255, 0.92);
}

.compare-after {
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(3, 17, 36, 0.04), rgba(3, 17, 36, 0.18)),
    var(--after);
}

.compare-layer span {
  position: absolute;
  top: 1rem;
  padding: 0.35rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(3, 17, 36, 0.58);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.compare-before span {
  left: 1rem;
}

.compare-after span {
  right: 1rem;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--split);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(3, 17, 36, 0.72);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
}

.compare-handle::before,
.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.compare-handle::before {
  left: 11px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare-handle::after {
  right: 11px;
  transform: translateY(-50%) rotate(135deg);
}

.compare-visual input {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.before-after-copy h3 {
  color: var(--white);
}

.before-after-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.before-after-copy strong {
  display: block;
  margin-top: auto;
  color: var(--silver-200);
  line-height: 1.4;
}

.process-section,
.featured-project-section,
.inspiration-section,
.credibility-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.process-section::before,
.featured-project-section::before,
.inspiration-section::before,
.credibility-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 52%, rgba(3, 17, 36, 0.045) 52.1% 52.4%, transparent 52.6%),
    repeating-linear-gradient(90deg, rgba(3, 17, 36, 0.035) 0 1px, transparent 1px 48px);
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.process-step {
  position: relative;
  padding: 1.2rem;
  border: 1px solid rgba(140, 150, 160, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 248, 0.9)),
    repeating-linear-gradient(135deg, rgba(10, 35, 66, 0.035) 0 1px, transparent 1px 24px);
  box-shadow: 0 18px 42px rgba(3, 17, 36, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.process-step:hover,
.process-step:focus-within {
  transform: translateY(-6px);
  border-color: rgba(10, 35, 66, 0.28);
  box-shadow: 0 30px 76px rgba(3, 17, 36, 0.18);
}

.process-number {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--silver-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-step .icon-wrap {
  width: 54px;
  height: 54px;
  color: var(--white);
  border-color: rgba(10, 35, 66, 0.18);
  background: #0A2342;
  box-shadow:
    0 16px 32px rgba(10, 35, 66, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.process-step:hover .icon-wrap,
.process-step:focus-within .icon-wrap {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px rgba(10, 35, 66, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.process-step .icon-wrap svg {
  width: 26px;
  height: 26px;
}

.featured-project {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.featured-project-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(3, 17, 36, 0.22);
}

.featured-project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0 56%, rgba(255, 255, 255, 0.18) 56.1% 56.4%, transparent 56.6%);
}

.featured-project-media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(140, 150, 160, 0.28);
  border-radius: var(--radius);
  color: var(--navy-900);
  background: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.case-study-grid article,
.project-timeline-pill,
.credibility-badge {
  border: 1px solid rgba(140, 150, 160, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.case-study-grid article {
  padding: 1rem;
}

.case-study-grid h3,
.credibility-badge h3 {
  margin-bottom: 0.35rem;
}

.case-study-grid p,
.credibility-badge p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-timeline-pill {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  color: var(--navy-900);
  font-weight: 850;
}

.inspiration-masonry {
  display: grid;
  gap: 1rem;
}

.inspiration-card {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
}

.inspiration-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.inspiration-card:hover img,
.inspiration-card:focus-within img {
  transform: scale(1.045);
}

.inspiration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 17, 36, 0.04), rgba(3, 17, 36, 0.82));
}

.inspiration-card div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.inspiration-card span {
  color: var(--silver-200);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inspiration-card h3 {
  margin: 0.2rem 0 0;
  color: var(--white);
  font-size: 1.45rem;
}

.inspiration-large-left,
.inspiration-large-right {
  min-height: 440px;
}

.testimonial-card {
  overflow: hidden;
  border: 1px solid rgba(230, 232, 234, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.testimonial-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.testimonial-card .stars,
.testimonial-card blockquote,
.testimonial-card .reviewer {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.stars {
  margin-top: 1.05rem;
  color: var(--silver-200);
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  position: relative;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.52;
}

.testimonial-card blockquote::before {
  content: "“";
  position: absolute;
  left: -0.25rem;
  top: -1.7rem;
  color: rgba(230, 232, 234, 0.28);
  font-size: 4.5rem;
  line-height: 1;
}

.reviewer {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1.2rem;
}

.reviewer strong {
  color: var(--white);
}

.reviewer span {
  color: rgba(255, 255, 255, 0.64);
}

.credibility-grid {
  grid-template-columns: 1fr;
}

.credibility-badge {
  padding: 1.15rem;
}

.credibility-badge .icon-wrap {
  margin-bottom: 0.9rem;
}

.map-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.areas-full {
  min-height: auto;
}

.areas-layout-full {
  display: block;
}

.areas-layout-full > div {
  width: 100%;
}

.areas-layout-full h2 {
  max-width: 900px;
}

.areas-layout-full p {
  max-width: 980px;
}

.areas-layout-full .map-city-grid {
  width: 100%;
  max-width: none;
  margin-top: 1.8rem;
}

.estimate-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.2rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 232, 234, 0.16), transparent 18rem),
    radial-gradient(circle at 82% 28%, rgba(40, 124, 210, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(3, 17, 36, 0.99), rgba(7, 29, 58, 0.98) 48%, rgba(3, 17, 36, 1)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 56px);
}

.estimate-section::before,
.estimate-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.estimate-section::before {
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 46%, rgba(230, 232, 234, 0.12) 46.15% 46.45%, transparent 46.7%),
    linear-gradient(125deg, transparent 0 62%, rgba(230, 232, 234, 0.07) 62.1% 62.32%, transparent 62.55%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 48px);
  opacity: 0.8;
}

.estimate-section::after {
  left: 18%;
  bottom: -12rem;
  width: 44rem;
  height: 26rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 112, 203, 0.18), transparent 70%);
  filter: blur(28px);
  animation: estimateGlow 12s ease-in-out infinite alternate;
}

.estimate-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 2.2rem) clamp(1.35rem, 3vw, 3rem);
  align-items: stretch;
}

.estimate-content {
  position: relative;
  display: grid;
  align-content: stretch;
  gap: clamp(1rem, 1.55vw, 1.42rem);
  color: var(--white);
}

.estimate-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(230, 232, 234, 0.24);
  border-radius: var(--radius);
  color: var(--silver-200);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.estimate-content h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5.45rem);
  line-height: 0.96;
}

.estimate-lede {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.66;
}

.client-badge-grid,
.estimate-value-grid,
.estimate-stat-strip {
  display: grid;
  gap: 0.82rem;
}

.client-badge-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.3rem;
}

.client-badge-grid > span {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 0.58rem;
  padding: 0.78rem 0.86rem;
  border: 1px solid rgba(230, 232, 234, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(3, 17, 36, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  font-size: 0.92rem;
  font-weight: 820;
  transition:
    transform 190ms ease,
    border-color 190ms ease,
    box-shadow 190ms ease,
    background 190ms ease;
  backdrop-filter: blur(12px);
}

.client-badge-grid > span:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 232, 234, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.075)),
    rgba(10, 35, 66, 0.36);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26);
}

.client-badge-grid .check-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin: 0;
  background: linear-gradient(135deg, var(--silver-100), var(--silver-300));
  box-shadow: 0 10px 22px rgba(230, 232, 234, 0.18);
}

.client-badge-grid .check-icon::after {
  border-color: var(--navy-900);
}

.estimate-value-grid {
  grid-template-columns: 1fr;
  margin-top: 0.3rem;
}

.estimate-value-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 158px;
  padding: 1.18rem 1.18rem 1.24rem;
  border: 1px solid rgba(230, 232, 234, 0.17);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(10, 35, 66, 0.82), rgba(5, 24, 50, 0.44));
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.estimate-value-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(124deg, transparent 0 68%, rgba(230, 232, 234, 0.1) 68.15% 68.5%, transparent 68.75%),
    radial-gradient(circle at 100% 0%, rgba(230, 232, 234, 0.14), transparent 9rem);
  pointer-events: none;
}

.estimate-value-grid .icon-wrap {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  margin-bottom: 0.72rem;
  color: var(--navy-900);
  border-color: rgba(230, 232, 234, 0.5);
  background: linear-gradient(135deg, var(--white), var(--silver-200));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.estimate-value-grid h3,
.estimate-value-grid p {
  position: relative;
  z-index: 1;
}

.estimate-value-grid h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 1.08rem;
}

.estimate-value-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.56;
}

.estimate-stat-strip {
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: 0;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(230, 232, 234, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.052)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.estimate-stat-strip span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
}

.estimate-form-luxe {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border: 1px solid rgba(230, 232, 234, 0.26);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.065)),
    linear-gradient(135deg, rgba(13, 43, 79, 0.92), rgba(3, 17, 36, 0.78));
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.estimate-form-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.16), transparent 13rem),
    linear-gradient(128deg, transparent 0 58%, rgba(230, 232, 234, 0.12) 58.15% 58.45%, transparent 58.7%);
  pointer-events: none;
}

.estimate-form-luxe > * {
  position: relative;
  z-index: 1;
}

.form-heading {
  margin-bottom: 0.35rem;
}

.form-heading h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.estimate-form-luxe label {
  gap: 0.42rem;
}

.estimate-form-luxe label span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.estimate-form-luxe input,
.estimate-form-luxe select,
.estimate-form-luxe textarea {
  border-color: rgba(230, 232, 234, 0.26);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.estimate-form-luxe input::placeholder,
.estimate-form-luxe textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.estimate-form-luxe select option {
  color: var(--navy-950);
}

.estimate-form-luxe input:focus,
.estimate-form-luxe select:focus,
.estimate-form-luxe textarea:focus {
  border-color: rgba(230, 232, 234, 0.58);
  box-shadow:
    0 0 0 3px rgba(230, 232, 234, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.estimate-form-luxe .button-full {
  margin-top: 0.25rem;
}

.form-reassurance {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.estimate-form-luxe .form-status {
  color: var(--silver-100);
}

.footer-brand {
  position: relative;
  isolation: isolate;
}

.footer-brand::before {
  content: "";
  position: absolute;
  left: -2.25rem;
  top: -2.05rem;
  z-index: -1;
  width: 19.5rem;
  height: 15.5rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(245, 249, 255, 0.34) 0%, rgba(210, 226, 244, 0.24) 22%, rgba(82, 143, 210, 0.11) 47%, rgba(230, 232, 234, 0.045) 68%, transparent 84%);
  filter: blur(25px);
  opacity: 0.78;
}

.footer-brand img {
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 0 9px rgba(255, 255, 255, 0.18))
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step[data-animate].is-visible:hover,
.process-step[data-animate].is-visible:focus-within {
  transform: translateY(-6px);
  border-color: rgba(10, 35, 66, 0.28);
  box-shadow: 0 30px 76px rgba(3, 17, 36, 0.18);
}

.process-step[data-animate].is-visible:hover .icon-wrap,
.process-step[data-animate].is-visible:focus-within .icon-wrap {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px rgba(10, 35, 66, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes logoFloatReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to {
    opacity: 0.9;
    transform: none;
  }
}

@keyframes slowHeroPan {
  from {
    background-position: 58% center;
  }
  to {
    background-position: 64% center;
  }
}

@media (min-width: 640px) {
  .premium-stats-grid,
  .testimonial-grid,
  .credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .areas-layout-full {
    grid-template-columns: 1fr;
  }

  .areas-layout-full .map-city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .primary-nav {
    gap: clamp(0.8rem, 1.4vw, 1.3rem);
  }

  .header-actions {
    gap: 0.72rem;
  }

  .premium-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .before-after-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .before-after-card {
    min-width: 0;
  }

  .compare-visual {
    min-height: 300px;
  }

  .process-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-timeline::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 2.4rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver-300), transparent);
  }

  .process-step {
    padding-top: 1.55rem;
  }

  .featured-project {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .inspiration-masonry {
    grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.72fr) minmax(0, 1.15fr);
    grid-template-rows: repeat(3, minmax(150px, 1fr));
    align-items: stretch;
  }

  .inspiration-card {
    min-height: 0;
  }

  .inspiration-large-left {
    grid-column: 1;
    grid-row: 1 / span 3;
    min-height: 560px;
  }

  .inspiration-center-top {
    grid-column: 2;
    grid-row: 1;
  }

  .inspiration-center-middle {
    grid-column: 2;
    grid-row: 2;
  }

  .inspiration-center-bottom {
    grid-column: 2;
    grid-row: 3;
  }

  .inspiration-large-right {
    grid-column: 3;
    grid-row: 1 / span 3;
    min-height: 560px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .credibility-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .areas-layout-full {
    grid-template-columns: 1fr;
  }

  .map-city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .areas-layout-full .map-city-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .estimate-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
  }

  .estimate-content {
    align-self: stretch;
    padding: clamp(0.7rem, 1vw, 0.95rem) clamp(1rem, 2.35vw, 2.25rem) clamp(0.7rem, 1vw, 0.95rem) 0;
  }

  .estimate-content::after {
    content: "";
    position: absolute;
    top: 0.4rem;
    right: 0;
    width: 1px;
    height: calc(100% - 0.8rem);
    background: linear-gradient(180deg, transparent, rgba(230, 232, 234, 0.32), transparent);
  }

  .client-badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.72rem, 1vw, 0.92rem);
  }

  .estimate-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.78rem, 1vw, 0.98rem);
  }

  .estimate-value-grid article {
    min-height: clamp(188px, 15vw, 224px);
  }

  .estimate-form-luxe {
    min-height: 100%;
  }

  .estimate-stat-strip {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .estimate-stat-strip span {
    position: relative;
    text-align: center;
  }

  .estimate-stat-strip span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.4rem;
    top: 50%;
    width: 1px;
    height: 24px;
    transform: translateY(-50%);
    background: linear-gradient(180deg, transparent, rgba(230, 232, 234, 0.32), transparent);
  }
}

@media (min-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .areas-layout-full .map-city-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 900px) and (max-width: 1230px) {
  :root {
    --brand-logo-width: 8.2rem;
    --header-height: 104px;
  }

  .primary-nav {
    gap: 0.62rem;
  }

  .primary-nav a {
    font-size: 0.96rem;
  }

  .header-actions .phone-button {
    display: none;
  }
}

@media (max-width: 899px) {
  :root {
    --header-height: 88px;
    --brand-logo-width: 6.4rem;
  }

  .primary-nav {
    inset: var(--header-height) 0 auto 0;
  }

  .primary-nav a {
    font-size: 1.06rem;
  }

  .hero-luxe,
  .hero-luxe .hero-content {
    min-height: 680px;
  }

  .hero-luxe .hero-media {
    animation: none;
    transform: none;
  }

  .hero-proof-row span,
  .floating-services span {
    min-height: 34px;
    font-size: 0.76rem;
  }

  .trust-check-list {
    grid-template-columns: 1fr;
  }

  .trust-ribbon {
    justify-content: flex-start;
  }

  .trust-ribbon-item {
    width: 100%;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .trust-ribbon-item:not(:last-child)::after {
    display: none;
  }

  .estimate-content h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .client-badge-grid {
    grid-template-columns: 1fr;
  }

  .estimate-value-grid article {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .before-after-grid,
  .premium-stats-grid,
  .testimonial-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .compare-visual {
    min-height: 260px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-luxe .hero-media,
  .hero-brand-mark,
  .brand img,
  [data-animate] {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
