/* ============================================
   BATH PROFESSIONAL — Premium Design System
   ============================================ */

:root {
  --navy-950: #050a14;
  --navy-900: #0a1628;
  --navy-800: #0f1f35;
  --navy-700: #152a45;
  --navy-600: #1e3a5f;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-10: rgba(255, 255, 255, 0.1);
  --teal: #14b8a6;
  --teal-bright: #2dd4bf;
  --teal-glow: rgba(20, 184, 166, 0.5);
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-glow: rgba(201, 162, 39, 0.4);
  --copper: #b87333;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--sans);
  background: var(--navy-950);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  cursor: default;
}

body.menu-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: default; border: none; background: none; }
select { font-family: inherit; cursor: default; }

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal-bright), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-teal { color: var(--teal-bright); }
.text-gold { color: var(--gold-light); }

.rank-one {
  font-family: var(--sans);
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  color: var(--teal-bright);
  letter-spacing: -0.04em;
}

.rank-digit {
  display: inline-block;
  font-size: 1.08em;
  line-height: 0.9;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
}

@keyframes tubBob {
  0%, 100% { transform: translate(-50%, -50%) rotate(-6deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-6deg) translateY(-4px); }
}

.cursor-tub {
  position: absolute;
  transform: translate(-50%, -50%) rotate(-6deg);
  transition: transform 0.35s var(--ease-out-expo), filter 0.35s;
  filter: drop-shadow(0 2px 10px rgba(20, 184, 166, 0.45));
  animation: tubBob 2.5s ease-in-out infinite;
  line-height: 1;
}

.cursor-emoji {
  display: block;
  font-size: 2rem;
  user-select: none;
  pointer-events: none;
}

.cursor-tub-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: -1;
}

.cursor.hover .cursor-tub {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.35);
  filter: drop-shadow(0 0 18px var(--teal-glow)) drop-shadow(0 0 10px var(--gold-glow));
  animation: none;
}

.cursor.hover .cursor-emoji {
  filter: saturate(1.3) brightness(1.1);
}

.cursor.hover .cursor-tub-glow {
  opacity: 1;
}

@media (max-width: 768px) {
  body, button, select { cursor: auto; }
  .cursor { display: none; }
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(5, 10, 20, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.header.scrolled {
  background: rgba(5, 10, 20, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(20, 184, 166, 0.25);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(20, 184, 166, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.9;
}

.logo-icon {
  color: var(--teal-bright);
  font-size: 1.625rem;
  filter: drop-shadow(0 0 8px var(--teal-glow));
}

.logo em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.35);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 100px;
  box-shadow:
    0 0 20px rgba(20, 184, 166, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-shadow: 0 0 16px rgba(20, 184, 166, 0.35);
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-phone svg {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--teal-glow));
}

.header-phone:hover {
  color: var(--white);
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: 0 0 28px rgba(20, 184, 166, 0.28);
  transform: translateY(-1px);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 10px 14px;
  border-radius: 100px;
  transition: color 0.3s, background 0.3s, text-shadow 0.3s;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal-bright), var(--gold-light));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-desktop a:hover {
  color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.12);
  text-shadow: 0 0 16px rgba(20, 184, 166, 0.4);
}

.nav-desktop a:hover::after { width: calc(100% - 28px); }

.nav-cta {
  padding: 12px 26px !important;
  margin-left: 6px;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal)) !important;
  border-radius: 100px;
  color: var(--navy-950) !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 0 24px var(--teal-glow), 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s !important;
  text-shadow: none !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  color: var(--navy-950) !important;
  background: linear-gradient(135deg, #5eead4, var(--teal-bright)) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--teal-glow), 0 6px 20px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.menu-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav-desktop a {
    font-size: 0.8125rem;
    padding: 8px 10px;
  }

  .nav-desktop {
    gap: 2px;
    padding: 6px 8px 6px 14px;
  }

  .nav-cta {
    padding: 10px 18px !important;
    font-size: 0.8125rem !important;
  }

  .logo {
    font-size: 1.25rem;
  }

  .header-phone {
    font-size: 0.875rem;
    padding: 8px 16px;
    gap: 8px;
  }
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 520px) {
  .header-phone span {
    font-size: 0.8125rem;
  }

  .header-phone {
    padding: 8px 12px;
    gap: 6px;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
}

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-950);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.mobile-menu.open .mobile-menu-bg { transform: translateY(0); }

.mobile-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--serif);
  font-size: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
}

.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-nav-link:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.open .mobile-nav-link:nth-child(8) { transition-delay: 0.45s; }

.mobile-nav-link:hover { color: var(--teal-bright); }

.mobile-nav-cta {
  margin-top: 16px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--teal), #0d9488);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 1rem !important;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  color: var(--navy-950);
  box-shadow: 0 0 30px var(--teal-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-40);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
}

.btn-large { padding: 20px 40px; font-size: 1rem; width: 100%; }

.glow-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px var(--teal-glow), 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-sparkle-field {
  position: absolute;
  inset: 0;
}

.hero-sparkle {
  position: absolute;
  width: var(--sz, 4px);
  height: var(--sz, 4px);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: heroSparkleTwinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

.hero-sparkle::before,
.hero-sparkle::after {
  content: '';
  position: absolute;
  background: linear-gradient(var(--sparkle-color, #5eead4), transparent);
  border-radius: 2px;
}

.hero-sparkle::before {
  width: var(--sz, 4px);
  height: calc(var(--sz, 4px) * 2.5);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}

.hero-sparkle::after {
  width: calc(var(--sz, 4px) * 2.5);
  height: var(--sz, 4px);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}

.hero-sparkle.gold { --sparkle-color: #fbbf24; }
.hero-sparkle.teal { --sparkle-color: #2dd4bf; }
.hero-sparkle.white { --sparkle-color: #ffffff; }

@keyframes heroSparkleTwinkle {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) rotate(45deg) scale(0.4); }
  45% { opacity: 1; transform: translate(-50%, -50%) rotate(45deg) scale(1); }
  55% { opacity: 0.85; transform: translate(-50%, -50%) rotate(45deg) scale(0.85); }
}

.hero-sparkle.diamond {
  transform: translate(-50%, -50%) rotate(0deg);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: var(--sparkle-color, #5eead4);
  box-shadow: 0 0 8px var(--sparkle-color, #5eead4);
}

.hero-sparkle.diamond::before,
.hero-sparkle.diamond::after { display: none; }

.hero-mouse-sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-mouse-sparkle {
  position: absolute;
  width: var(--sz, 5px);
  height: var(--sz, 5px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: heroMouseSparkle 0.9s ease-out forwards;
}

.hero-mouse-sparkle::before,
.hero-mouse-sparkle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: linear-gradient(var(--sparkle-color, #5eead4), transparent);
  border-radius: 1px;
}

.hero-mouse-sparkle::before {
  width: var(--sz, 5px);
  height: calc(var(--sz, 5px) * 2);
  transform: translate(-50%, -50%);
}

.hero-mouse-sparkle::after {
  width: calc(var(--sz, 5px) * 2);
  height: var(--sz, 5px);
  transform: translate(-50%, -50%);
}

@keyframes heroMouseSparkle {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.3) rotate(0deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2) rotate(90deg); }
}

.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-sparkle,
  .hero-mouse-sparkle,
  .hero-bg {
    animation: none !important;
  }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
  filter: contrast(1.08) saturate(1.12) brightness(1.04);
}

@keyframes heroKenBurns {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.35) 0%, rgba(5, 10, 20, 0.15) 45%, rgba(5, 10, 20, 0.65) 100%),
    linear-gradient(135deg, rgba(20, 184, 166, 0.22) 0%, transparent 50%),
    linear-gradient(225deg, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 45%, rgba(45, 212, 191, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 30%, rgba(232, 197, 71, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(13, 148, 136, 0.1) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: min(960px, 94vw);
  padding-top: var(--header-h);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge-prominent {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  margin-top: 36px;
  margin-bottom: 36px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(212, 175, 55, 0.15));
  border: 2px solid transparent;
  border-radius: 100px;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(20, 184, 166, 0.5),
    0 0 32px rgba(20, 184, 166, 0.35),
    0 0 60px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(20, 184, 166, 0.6));
}

.hero-badge-text {
  display: flex;
  align-items: center;
  text-align: left;
}

.hero-badge-text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
}

.hero-badge-sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.5), 0 0 32px rgba(20, 184, 166, 0.35), 0 0 60px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
  50% { box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.8), 0 0 48px rgba(20, 184, 166, 0.5), 0 0 80px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  perspective: 1000px;
  opacity: 1;
  visibility: visible;
}

.hero-title-line {
  display: block;
  line-height: 1;
}

.hero-title-brand {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
}

.hero-title-text {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #ffffff;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    var(--teal-bright) 30%,
    var(--gold-light) 55%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTitleShine 4s linear infinite;
  text-shadow: 0 0 40px rgba(45, 212, 191, 0.5), 0 0 80px rgba(201, 162, 39, 0.25);
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title-text {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
  }
}

.hero-title-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  color: transparent;
  text-shadow:
    0 0 40px rgba(20, 184, 166, 0.6),
    0 0 80px rgba(201, 162, 39, 0.35),
    0 0 120px rgba(45, 212, 191, 0.25);
  animation: heroGlowPulse 3s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

@keyframes heroTitleShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.hero-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(320px, 70vw);
  margin: 4px 0 8px;
}

.hero-title-divider::before,
.hero-title-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-bright), var(--gold-light), transparent);
  animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.divider-gem {
  font-size: 0.625rem;
  color: var(--gold-light);
  text-shadow: 0 0 12px var(--teal-glow), 0 0 24px var(--gold-glow);
  animation: gemSpin 6s linear infinite;
}

@keyframes gemSpin {
  0%, 100% { transform: rotate(0deg) scale(1); color: var(--gold-light); }
  50% { transform: rotate(180deg) scale(1.3); color: var(--teal-bright); }
}

.hero-title-tagline {
  font-family: var(--sans);
  font-size: clamp(1rem, 2.8vw, 1.65rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  padding: 14px 28px;
  border-top: 1px solid rgba(45, 212, 191, 0.4);
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(5, 10, 20, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 4px;
}

.hero-title-tagline em {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.35em;
}

.hero-accent-teal {
  color: var(--teal-bright);
  text-shadow: 0 0 20px var(--teal-glow), 0 0 40px rgba(20, 184, 166, 0.3);
}

.hero-accent-gold {
  color: var(--gold-light);
  text-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(201, 162, 39, 0.3);
}

.hero-location {
  margin: 20px auto 28px;
  max-width: 720px;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-90);
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

@media (max-width: 600px) {
  .hero-title-tagline {
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    padding: 10px 16px;
  }
  .hero-title-tagline em { letter-spacing: 0.2em; }
}

.hero-sub {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
}

.hero-sub-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 18px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(20, 184, 166, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(20, 184, 166, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-sub-item {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-sub-dot {
  color: var(--teal-bright);
  font-size: 0.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px var(--teal-glow));
}

.hero-sub-divider {
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.65), transparent);
  margin: 0 6px;
  flex-shrink: 0;
}

.hero-sub-highlight {
  font-size: clamp(1rem, 2.1vw, 1.3125rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(201, 162, 39, 0.35);
}

.hero-sub-highlight strong {
  font-size: 1.2em;
  font-weight: 800;
  color: var(--teal-bright);
  text-shadow: 0 0 24px var(--teal-glow);
}

@media (max-width: 768px) {
  .hero-sub-strip {
    padding: 16px 22px;
    border-radius: 20px;
    gap: 8px 12px;
  }

  .hero-sub-divider {
    display: none;
  }

  .hero-sub-highlight {
    width: 100%;
    text-align: center;
    padding-top: 4px;
    border-top: 1px solid rgba(201, 162, 39, 0.35);
    margin-top: 2px;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

.google-trust-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(20, 184, 166, 0.06));
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.google-trust-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-right: 8px;
  border-right: 1px solid rgba(20, 184, 166, 0.3);
  margin-right: 4px;
}

.google-trust-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  transform: scale(1.35);
  transform-origin: center center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.google-trust-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-trust-score {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.google-trust-stars {
  color: var(--gold-light);
  font-size: 1.125rem;
  letter-spacing: 3px;
  line-height: 1.2;
}

.google-trust-count {
  font-size: 0.8125rem;
  color: var(--white-70);
  margin-top: 4px;
}

.google-trust-count strong {
  color: var(--teal-bright);
  font-size: 0.9375rem;
}

.google-trust-divider {
  display: none;
}

.google-trust-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.google-trust-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white-90);
}

.highlight-icon {
  color: var(--gold-light);
  font-size: 0.625rem;
  flex-shrink: 0;
}

.google-trust-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.google-highest-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(20, 184, 166, 0.25));
  border: 2px solid rgba(212, 175, 55, 0.7);
  border-radius: 14px;
  text-decoration: none;
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.4),
    0 0 48px rgba(20, 184, 166, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  animation: highestGlow 2.5s ease-in-out infinite;
}

.google-highest-badge:hover {
  transform: scale(1.04);
  border-color: var(--gold-light);
  box-shadow:
    0 0 36px rgba(212, 175, 55, 0.6),
    0 0 64px rgba(20, 184, 166, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.google-highest-crown {
  font-size: 2.25rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.85));
}

.google-highest-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.15;
}

.google-highest-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.google-highest-sub {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.google-highest-stars {
  font-size: 0.625rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-top: 2px;
}

@keyframes highestGlow {
  0%, 100% {
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.4), 0 0 48px rgba(20, 184, 166, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.65), 0 0 72px rgba(20, 184, 166, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .google-trust-panel {
    padding: 24px;
    text-align: center;
  }

  .google-trust-brand {
    width: 100%;
    justify-content: center;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(20, 184, 166, 0.3);
  }

  .google-trust-rating {
    align-items: center;
  }

  .google-trust-actions {
    justify-content: center;
  }

  .google-highest-badge {
    justify-content: center;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

/* BEFORE / AFTER SLIDER */
.transformations {
  background: var(--navy-900);
}

.ba-slider-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.ba-nav-btn {
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white-70);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  transition: all 0.3s;
}

.ba-nav-btn:hover,
.ba-nav-btn.active {
  color: var(--navy-950);
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  box-shadow: 0 0 20px var(--teal-glow);
}

.ba-slider-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.ba-slide {
  display: none;
}

.ba-slide.active { display: block; }

.ba-comparison {
  --ba-split: 50%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
  display: block;
  pointer-events: none;
  user-select: none;
}

.ba-after { z-index: 1; }

.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba-split)) 0 0);
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}

.ba-handle-line {
  position: absolute;
  inset: 0;
  background: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.ba-handle-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ba-label {
  position: absolute;
  top: 20px;
  z-index: 4;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }

.ba-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy-800);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

.ba-comparison:hover + .ba-process-steps,
.ba-slide:hover .ba-process-steps {
  opacity: 1;
  transform: translateY(0);
}

.process-step {
  padding: 20px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--white-70);
  border-right: 1px solid var(--white-10);
}

.process-step:last-child { border-right: none; }

.process-step span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .ba-process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
}

/* SERVICES */
.services {
  background: var(--navy-950);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  perspective: 1000px;
  display: flex;
  height: 100%;
}

.service-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 340px;
  padding: 40px 32px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--white-10);
  border-radius: 20px;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.3s;
  z-index: 1;
}

.service-card:hover .service-card-inner {
  transform: rotateX(5deg) rotateY(-5deg) translateY(-8px);
  border-color: var(--teal);
}

.service-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--teal-glow), var(--gold-glow));
  border-radius: 22px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.5s;
  z-index: 0;
}

.service-card:hover .service-glow { opacity: 0.6; }

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  margin-bottom: 24px;
  color: var(--teal-bright);
}

.service-icon svg {
  width: 64px;
  height: 64px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.25;
  min-height: 3.75rem;
  margin-bottom: 12px;
}

.service-card p {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--white-70);
  margin-bottom: 24px;
  line-height: 1.7;
  min-height: 8.5em;
}

.service-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-bright);
  text-decoration: none;
  border: 1px solid var(--teal);
  border-radius: 100px;
  transition: all 0.3s;
}

.service-btn:hover {
  background: var(--teal);
  color: var(--navy-950);
  box-shadow: 0 0 20px var(--teal-glow);
}

.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-950);
}

.service-card-featured .service-card-inner {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
}

/* DIFFERENCE */
.difference {
  padding: 0;
  min-height: auto;
}

.difference-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 100vh;
}

.difference-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 60px;
  background: var(--navy-900);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  padding: 28px;
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--teal-bright);
  line-height: 1;
}

.stat-digit {
  font-family: var(--sans);
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--teal-bright);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.difference-desc {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.8;
}

.color-wheel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  padding: 40px 40px 80px;
  background: var(--navy-950);
  position: relative;
  overflow: visible;
}

.color-wheel-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--teal-glow), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: colorPulse 4s ease-in-out infinite;
}

@keyframes colorPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.color-wheel-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
  align-self: center;
}

.color-wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.color-wheel {
  --ring-radius: 122px;
  --swatch-size: 52px;
  --hub-size: 120px;
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  overflow: visible;
}

.color-wheel-orbit {
  position: absolute;
  inset: 0;
  animation: wheelRotate 40s linear infinite;
}

.color-wheel:hover .color-wheel-orbit { animation-play-state: paused; }

@keyframes wheelRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.color-wheel-center {
  position: absolute;
  top: calc(50% - var(--hub-size) / 2);
  left: calc(50% - var(--hub-size) / 2);
  width: var(--hub-size);
  height: var(--hub-size);
  background: var(--navy-800);
  border: 2px solid var(--white-10);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  pointer-events: none;
}

.color-name {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 600;
}

.color-code {
  font-size: 0.6875rem;
  color: var(--white-40);
  margin-top: 4px;
}

.color-swatch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--swatch-size);
  height: var(--swatch-size);
  margin: calc(-0.5 * var(--swatch-size)) 0 0 calc(-0.5 * var(--swatch-size));
  background: var(--swatch);
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--ring-radius))) rotate(calc(-1 * var(--angle)));
  transform-origin: center center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  z-index: 3;
  cursor: pointer;
}

.color-wheel-orbit .color-swatch:nth-child(1) { --angle: 0deg; }
.color-wheel-orbit .color-swatch:nth-child(2) { --angle: 60deg; }
.color-wheel-orbit .color-swatch:nth-child(3) { --angle: 120deg; }
.color-wheel-orbit .color-swatch:nth-child(4) { --angle: 180deg; }
.color-wheel-orbit .color-swatch:nth-child(5) { --angle: 240deg; }
.color-wheel-orbit .color-swatch:nth-child(6) { --angle: 300deg; }

.color-swatch:hover,
.color-swatch.active {
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--ring-radius))) rotate(calc(-1 * var(--angle))) scale(1.15);
  box-shadow: 0 0 30px var(--teal-glow);
  border-color: var(--teal);
}

.color-palette {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 360px;
}

.color-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--white-70);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.color-chip:hover,
.color-chip.active {
  border-color: var(--teal);
  color: var(--white);
  background: var(--navy-700);
}

.color-chip-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.color-custom-note {
  max-width: 340px;
  margin: 0;
  padding: 14px 18px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--white-70);
  text-align: center;
  background: rgba(15, 31, 53, 0.55);
  border: 1px solid var(--white-10);
  border-radius: 12px;
}

.color-custom-note strong {
  color: var(--teal-bright);
  font-weight: 600;
}

.color-preview {
  width: 200px; height: 120px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--white-10);
}

.color-preview-surface {
  width: 100%; height: 100%;
  background: #F5F2EA;
  transition: background 0.5s;
  position: relative;
}

.color-preview-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
}

@media (max-width: 900px) {
  .difference-split { grid-template-columns: 1fr; }
  .difference-content { padding: 80px 24px; }
}

/* GALLERY */
.gallery { background: var(--navy-900); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white-70);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--navy-950);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.masonry-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  grid-row: span 1;
}

.masonry-item.tall { grid-row: span 2; }
.masonry-item.wide { grid-column: span 2; }

.masonry-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.masonry-item:hover img { transform: scale(1.08); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 10, 20, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay span {
  padding: 10px 20px;
  background: var(--teal);
  color: var(--navy-950);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out-expo);
}

.masonry-item:hover .masonry-overlay span { transform: translateY(0); }

.masonry-item.hidden-item {
  display: none;
}

@media (max-width: 1024px) {
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-item.wide { grid-column: span 1; }
}

@media (max-width: 600px) {
  .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .masonry-item.tall { grid-row: span 1; }
}

/* GOOGLE REVIEWS */
.google-reviews {
  background: var(--navy-950);
  overflow: hidden;
}

.google-reviews-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.google-reviews-sidebar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  background: linear-gradient(135deg, rgba(0, 212, 200, 0.07) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  border: 1px solid rgba(0, 212, 200, 0.14);
  border-radius: 24px;
  padding: 28px 36px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
}

.google-summary-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.google-summary-score-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.google-summary-score {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.google-summary-score span {
  font-size: 1.125rem;
  color: var(--white-70);
  font-weight: 500;
}

.google-summary-stars {
  color: var(--gold-light);
  font-size: 1.125rem;
  letter-spacing: 3px;
}

.google-summary-details {
  flex: 1;
  min-width: 200px;
}

.google-summary-count {
  font-size: 1rem;
  color: var(--white-90);
  margin-bottom: 4px;
  line-height: 1.4;
}

.google-summary-count strong {
  color: var(--teal-bright);
  font-size: 1.25rem;
}

.google-summary-tagline {
  font-size: 0.875rem;
  color: var(--white-70);
  margin: 0;
}

.google-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.google-summary-actions .btn {
  justify-content: center;
  font-size: 0.875rem;
  padding: 12px 22px;
  white-space: nowrap;
}

.btn-review-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  color: var(--teal-bright);
  border: 1px solid var(--teal);
  background: rgba(0, 212, 200, 0.06);
  transition: all 0.3s;
}

.btn-review-outline:hover {
  background: var(--teal);
  color: var(--navy-950);
  box-shadow: 0 0 24px var(--teal-glow);
}

.google-summary-loading,
.google-review-loading {
  color: var(--white-70);
  font-size: 0.9375rem;
}

.google-reviews-main {
  min-width: 0;
}

.google-review-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0 4px;
}

.google-review-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.google-review-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--navy-950), transparent);
}

.google-review-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--navy-950), transparent);
}

.google-review-track {
  display: flex;
  gap: 24px;
  padding: 8px 0;
  animation: googleReviewScroll 55s linear infinite;
  width: max-content;
}

.google-review-track:hover { animation-play-state: paused; }

@keyframes googleReviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.google-review-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background: linear-gradient(165deg, var(--navy-800) 0%, rgba(10, 22, 42, 0.92) 100%);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.google-review-card:hover {
  border-color: rgba(0, 212, 200, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 212, 200, 0.12);
  transform: translateY(-4px);
}

.google-review-card--featured {
  border-color: rgba(0, 212, 200, 0.25);
  box-shadow: 0 0 28px rgba(0, 212, 200, 0.08);
}

.google-review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.google-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    hsl(var(--avatar-hue, 170), 55%, 45%),
    hsl(calc(var(--avatar-hue, 170) + 40), 60%, 55%)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.google-review-meta {
  flex: 1;
  min-width: 0;
}

.google-review-meta strong {
  display: block;
  font-size: 0.9375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-review-date {
  font-size: 0.75rem;
  color: var(--white-70);
}

.google-review-logo {
  opacity: 0.9;
  flex-shrink: 0;
}

.google-review-stars {
  color: var(--gold-light);
  font-size: 0.9375rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.google-review-quote {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--white-90);
  line-height: 1.65;
  margin: 0 0 16px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-review-source {
  font-size: 0.6875rem;
  color: var(--teal-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
}

.google-review-error {
  color: var(--white-70);
  padding: 24px;
}

.google-review-error a { color: var(--teal); }

@media (max-width: 900px) {
  .google-reviews-sidebar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px 24px;
  }

  .google-summary-rating {
    justify-content: center;
  }

  .google-summary-details {
    min-width: 0;
  }

  .google-summary-actions {
    justify-content: center;
  }

  .google-summary-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .google-review-fade {
    width: 40px;
  }

  .google-review-card {
    flex: 0 0 300px;
    min-height: 240px;
  }
}

/* WHY US */
.why-us { background: var(--navy-900); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal);
}

.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  color: var(--teal-bright);
  animation: iconFloat 3s ease-in-out infinite;
}

.why-card:nth-child(2) .why-icon { animation-delay: 0.5s; }
.why-card:nth-child(3) .why-icon { animation-delay: 1s; }
.why-card:nth-child(4) .why-icon { animation-delay: 1.5s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.why-icon svg { width: 100%; height: 100%; }

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--white-70);
  margin-bottom: 16px;
}

.why-stat {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white-10);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-bright);
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* QUOTE */
.quote {
  background: var(--navy-950);
  min-height: auto;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.quote-form-side .section-title { text-align: left; }
.quote-form-side .section-tag { display: block; text-align: left; }

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white-70);
  margin-bottom: 8px;
}

.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9375rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.3s;
}

.form-group select:focus,
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 20px var(--teal-glow);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color 0.3s;
}

.quote-result-side {
  position: sticky;
  top: 120px;
  min-height: 480px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--white-10);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-placeholder {
  text-align: center;
  color: var(--white-40);
}

.quote-placeholder-icon {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 16px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.quote-reveal.hidden { display: none; }

.quote-reveal {
  width: 100%;
  text-align: center;
}

.price-reveal {
  margin-bottom: 32px;
  opacity: 0;
  transform: scale(0.8);
}

.price-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--teal-bright), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-note {
  display: block;
  font-size: 0.8125rem;
  color: var(--white-40);
  margin-top: 8px;
}

.timeline-reveal {
  margin-bottom: 32px;
  padding: 20px;
  background: var(--navy-950);
  border-radius: 12px;
}

.timeline-label {
  display: block;
  font-size: 0.75rem;
  color: var(--white-70);
  margin-bottom: 4px;
}

.timeline-days {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--teal-bright);
}

.calendar-picker { margin-bottom: 24px; }

.calendar-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--white-70);
  margin-bottom: 12px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border-radius: 8px;
  background: var(--navy-950);
  border: 1px solid var(--white-10);
  transition: all 0.3s;
  cursor: pointer;
}

.calendar-day:hover:not(.disabled):not(.header) {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--navy-950);
}

.calendar-day.selected {
  background: var(--teal);
  color: var(--navy-950);
  border-color: var(--teal);
  box-shadow: 0 0 15px var(--teal-glow);
}

.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day.header {
  font-weight: 600;
  color: var(--white-40);
  background: transparent;
  border: none;
  cursor: default;
}

@media (max-width: 900px) {
  .quote-wrapper { grid-template-columns: 1fr; }
  .quote-result-side { position: static; }
}

/* Local SEO — Tampa */
.local-seo {
  background: var(--navy-950);
  min-height: auto;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.local-seo-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.local-seo-card:hover {
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.1);
}

.local-seo-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal-bright);
  margin-bottom: 12px;
}

.local-seo-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--white-70);
}

.local-seo-card strong {
  color: var(--white-90);
}

.local-areas {
  margin-bottom: 36px;
  padding: 28px 32px;
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 20px;
}

.local-areas-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  text-align: center;
}

.local-areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  list-style: none;
}

.local-areas-list li {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-90);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}

.local-areas-note {
  margin-top: 20px;
  font-size: 0.9375rem;
  color: var(--white-70);
  text-align: center;
  line-height: 1.6;
}

.local-areas-note a {
  color: var(--teal-bright);
  font-weight: 700;
}

.local-areas-note a:hover {
  color: var(--gold-light);
}

.local-seo-cta {
  text-align: center;
}

.local-seo-cta p {
  font-size: 1.0625rem;
  color: var(--white-70);
  margin-bottom: 24px;
  line-height: 1.7;
}

.local-seo-cta a:not(.btn) {
  color: var(--teal-bright);
  font-weight: 700;
}

.local-seo-cta a:not(.btn):hover {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .local-seo-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq { background: var(--navy-900); min-height: auto; }

.faq .section-tag {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  letter-spacing: 0.22em;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  color: var(--white-70);
  margin-bottom: 40px;
  font-size: 1.125rem;
  line-height: 1.7;
}

.faq-intro a {
  color: var(--teal-bright);
  text-decoration: underline;
}

.faq-item {
  border-bottom: 1px solid var(--white-10);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 1.1875rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  transition: color 0.3s;
}

.faq-question:hover { color: var(--teal-bright); }

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo);
  color: var(--teal);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding-bottom: 28px;
  color: var(--white-70);
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* FINAL CTA */
.final-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 60%),
    var(--navy-950);
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.glow-text {
  text-shadow: 0 0 40px var(--teal-glow), 0 0 80px var(--teal-glow);
}

.final-cta-sub {
  font-size: 1.125rem;
  color: var(--white-70);
  margin-bottom: 40px;
}

.btn-cta-massive {
  display: inline-flex;
  padding: 24px 56px;
  font-size: 1.125rem;
  background: linear-gradient(135deg, var(--teal-bright), var(--gold));
  color: var(--navy-950);
  border-radius: 100px;
  box-shadow: 0 0 60px var(--teal-glow);
  margin-bottom: 32px;
}

.btn-cta-massive:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 80px var(--teal-glow), 0 0 40px var(--gold-glow);
}

.final-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal-bright);
  transition: color 0.3s, text-shadow 0.3s;
}

.final-cta-phone:hover {
  color: var(--white);
  text-shadow: 0 0 20px var(--teal-glow);
}

.final-cta-phone.secondary {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white-70);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: left;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-form-full {
  grid-column: 1 / -1;
}

.contact-form .btn-cta-massive {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
}

.form-status.hidden { display: none; }

.form-status.success { color: var(--teal-bright); }

.form-status.error { color: #f87171; }

.form-status.pending { color: var(--white-70); }

.contact-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--white-10);
  padding: 60px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--white-40);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--white-70);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--teal-bright); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 0.8125rem;
  color: var(--teal-bright);
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--white); }

.footer-hours {
  display: block;
  font-size: 0.8125rem;
  color: var(--white-40);
  margin-top: 8px;
}

.footer-col a[aria-current="page"] {
  color: var(--teal-bright);
}

/* LEGAL PAGES */
.legal-page {
  padding: 140px 0 80px;
  background: var(--navy-950);
  min-height: 50vh;
}

.legal-content {
  max-width: 720px;
}

.legal-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin: 12px 0 28px;
  line-height: 1.15;
}

.legal-intro,
.legal-outro {
  font-size: 1.0625rem;
  color: var(--white-90);
  line-height: 1.75;
  margin-bottom: 28px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--white-90);
  line-height: 1.7;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 10px var(--teal-glow);
}

.legal-contact {
  font-size: 0.9375rem;
  color: var(--white-70);
  padding-top: 8px;
  border-top: 1px solid var(--white-10);
}

.legal-contact a {
  color: var(--teal-bright);
  transition: color 0.3s;
}

.legal-contact a:hover {
  color: var(--white);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: 24px;
  padding: 40px;
}

.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  font-size: 1.5rem;
  color: var(--white);
  border-radius: 50%;
  background: var(--white-10);
  transition: background 0.3s;
  z-index: 2;
}

.lightbox-close:hover { background: var(--teal); color: var(--navy-950); }

.lightbox-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.lightbox-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lightbox-gallery img {
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s;
}

.lightbox-gallery img:hover { transform: scale(1.05); }

.portfolio-lightbox-content {
  width: min(1100px, 95vw);
  padding: 24px;
}

.portfolio-ba {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
}

.portfolio-after,
.portfolio-before {
  width: 100%; height: 100%;
  object-fit: cover;
}

.portfolio-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.portfolio-before {
  position: absolute;
  width: 100vw;
  max-width: none;
  height: 100%;
  filter: saturate(0.7);
}

.portfolio-ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 2;
}

.portfolio-testimonial {
  margin-top: 24px;
  text-align: center;
  padding: 24px;
  background: var(--navy-900);
  border-radius: 12px;
}

.portfolio-testimonial p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 8px;
}

.portfolio-testimonial cite {
  font-size: 0.875rem;
  color: var(--teal);
  font-style: normal;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(800px, 92vw);
  aspect-ratio: 16/9;
  background: var(--navy-800);
  border-radius: 20px;
  overflow: hidden;
}

.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}

.video-placeholder-inner {
  text-align: center;
  color: var(--white-70);
}

.video-placeholder-inner svg {
  color: var(--teal);
  margin-bottom: 16px;
}

.video-placeholder-inner p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .lightbox-gallery { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
}

/* ============================================
   MOBILE & TABLET RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(1280px, 94vw);
  }

  .section {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-desc {
    font-size: 1rem;
    padding: 0 4px;
  }

  .hero {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero.section {
    min-height: 100svh;
    min-height: 100dvh;
    padding-bottom: 40px;
  }

  .hero-bg {
    animation: none;
    transform: none;
    will-change: auto;
    object-position: center center;
    filter: contrast(1.04) saturate(1.05) brightness(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 10, 20, 0.58) 0%, rgba(5, 10, 20, 0.28) 42%, rgba(5, 10, 20, 0.78) 100%),
      radial-gradient(ellipse at 50% 38%, rgba(20, 184, 166, 0.16) 0%, transparent 62%);
  }

  .hero-fx {
    opacity: 0.45;
  }

  .hero-sparkle.diamond {
    display: none;
  }

  .particle-canvas {
    display: none;
  }

  .hero-title-text {
    animation: none;
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  }

  .hero-title-glow {
    animation: none;
    opacity: 0.55;
    transform: none;
  }

  .hero-title-divider::before,
  .hero-title-divider::after {
    animation: none;
    opacity: 0.8;
  }

  .divider-gem {
    animation: none;
  }

  .hero-title-tagline {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(5, 10, 20, 0.58);
  }

  .hero-badge-prominent {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hero-content {
    width: 100%;
    padding: calc(var(--header-h) + 12px) 16px 40px;
  }

  .hero-badge-prominent {
    flex-direction: column;
    text-align: center;
    padding: 12px 20px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .hero-badge-text {
    text-align: center;
    justify-content: center;
  }

  .hero-ctas {
    margin-bottom: 40px;
  }

  .scroll-indicator {
    display: none;
  }

  .google-trust-panel {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .google-trust-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .google-trust-actions .btn,
  .google-highest-badge {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .google-trust-score {
    font-size: 2rem;
  }

  .ba-slider-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 24px;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }

  .ba-slider-nav::-webkit-scrollbar {
    display: none;
  }

  .ba-nav-btn {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .ba-slider-container {
    border-radius: 16px;
  }

  .ba-label {
    top: 12px;
    padding: 6px 12px;
    font-size: 0.6875rem;
  }

  .ba-label-before { left: 12px; }
  .ba-label-after { right: 12px; }

  .ba-handle-circle {
    width: 40px;
    height: 40px;
  }

  .difference-split {
    min-height: auto;
  }

  .difference-content {
    padding: 56px 20px;
  }

  .color-wheel-section {
    padding: 48px 20px 56px;
  }

  .color-wheel {
    --ring-radius: 100px;
    --swatch-size: 44px;
    --hub-size: 100px;
    width: 280px;
    height: 280px;
  }

  .color-palette {
    max-width: 100%;
    gap: 8px;
  }

  .color-chip {
    font-size: 0.6875rem;
    padding: 7px 10px 7px 7px;
  }

  .stats-grid {
    gap: 12px;
    margin: 28px 0;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: clamp(1.35rem, 4.5vw, 2rem);
  }

  .stat-suffix {
    font-size: 1.125rem;
  }

  .service-card-inner {
    min-height: auto;
    padding: 28px 22px;
  }

  .service-card p {
    min-height: auto;
  }

  .service-btn {
    width: 100%;
    text-align: center;
  }

  .google-reviews-sidebar {
    padding: 22px 18px;
  }

  .google-summary-actions .btn {
    width: 100%;
  }

  .google-review-card {
    flex: 0 0 min(300px, 85vw);
  }

  .why-card {
    padding: 28px 22px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 18px 0;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .final-cta-sub {
    font-size: 1rem;
    padding: 0 8px;
  }

  .btn-cta-massive {
    width: 100%;
    max-width: 320px;
    padding: 18px 28px;
    font-size: 1rem;
  }

  .final-cta-phone {
    font-size: 1.25rem;
  }

  .final-cta-phone.secondary {
    font-size: 1rem;
  }

  .contact-form {
    max-width: 100%;
  }

  .form-input,
  .form-group select,
  .form-textarea {
    font-size: 16px;
    padding: 14px 16px;
  }

  .footer {
    padding: 48px 0 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }

  .footer-col {
    width: 100%;
  }

  .legal-page {
    padding: calc(var(--header-h) + 32px) 0 56px;
  }

  .mobile-nav {
    justify-content: flex-start;
    overflow-y: auto;
    padding: calc(var(--header-h) + 28px) 24px 40px;
    gap: 18px;
  }

  .mobile-nav-link {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
  }

  .mobile-nav-cta {
    margin-top: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .menu-toggle {
    min-width: 48px;
    min-height: 48px;
  }

  .btn {
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .hero-bg {
    object-position: center 42%;
  }

  .hero.section {
    min-height: auto;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: calc(var(--header-h) + 8px) 12px 32px;
  }

  .hero-badge-prominent {
    margin-top: 16px;
    margin-bottom: 20px;
    padding: 10px 16px;
    gap: 10px;
  }

  .hero-title {
    margin-bottom: 20px;
    gap: 6px;
  }

  .hero-location {
    margin: 14px auto 20px;
    font-size: 0.875rem;
    padding: 0 4px;
  }

  .hero-sub {
    margin-bottom: 28px;
  }

  .hero-ctas {
    margin-bottom: 28px;
  }

  .hero-fx {
    opacity: 0.3;
  }

  .hero-title-brand {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .hero-title-tagline {
    letter-spacing: 0.12em;
    font-size: 0.8125rem;
    padding: 10px 14px;
  }

  .hero-title-tagline em {
    letter-spacing: 0.12em;
  }

  .hero-sub-item {
    font-size: 0.8125rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .google-trust-logo {
    width: 48px;
    height: 48px;
    transform: scale(1.15);
  }

  .ba-comparison {
    aspect-ratio: 4/3;
  }

  .process-step {
    padding: 14px 10px;
    font-size: 0.75rem;
  }

  .color-wheel-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .color-custom-note {
    max-width: 100%;
    font-size: 0.75rem;
  }
}