/* ============ ShineDrop – Modern Dark Detailing Design System ============ */
:root {
  --ink: #090c10;
  --ink-2: #0e131b;
  --ink-3: #141b26;
  --ink-card: rgba(20, 27, 38, 0.85);
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(255, 255, 255, 0.16);
  --fg: #f0f4f8;
  --fg-bright: #ffffff;
  --muted: #94a3b8;
  --aqua: #31e0c8;
  --aqua-deep: #12b6a4;
  --blue: #3b9dff;
  --gold: #ffbe3d;
  --grad: linear-gradient(135deg, #31e0c8 0%, #3b9dff 100%);
  --grad-hover: linear-gradient(135deg, #4ef5dd 0%, #5cb0ff 100%);
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.75);
  --glow: 0 0 0 1px rgba(49, 224, 200, 0.3), 0 14px 40px -14px rgba(49, 224, 200, 0.45);
  --r: 16px;
  --r-lg: 24px;
  --wrap: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--ink);
  color: var(--fg);
  font-family: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  margin: 0;
  color: var(--fg-bright);
}

h1 { font-size: clamp(3rem, 7.5vw, 5.6rem); }
h2 { font-size: clamp(2.3rem, 4.8vw, 3.8rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); }
h4 { font-size: 1.3rem; }

p {
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 700;
  margin-bottom: 14px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.lead {
  color: var(--muted);
  max-width: 64ch;
  font-size: 1.08rem;
  line-height: 1.6;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.98rem;
  line-height: 1;
  text-align: center;
  user-select: none;
}

.btn-primary {
  background: var(--grad);
  color: #04120f;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(49, 224, 200, 0.5), 0 18px 50px -14px rgba(49, 224, 200, 0.65);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--fg-bright);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--line-bright);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(49, 224, 200, 0.45);
  color: var(--aqua);
}

.btn-outline:hover {
  background: rgba(49, 224, 200, 0.12);
  border-color: var(--aqua);
  transform: translateY(-2px);
}

.btn-call {
  background: rgba(49, 224, 200, 0.12);
  border-color: rgba(49, 224, 200, 0.35);
  color: var(--aqua);
}

.btn-call:hover {
  background: rgba(49, 224, 200, 0.22);
  border-color: var(--aqua);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 18px 34px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ============ SCROLL PROGRESS BAR ============ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 150;
  box-shadow: 0 0 10px var(--aqua);
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  transition: background-color 0.3s ease, padding 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  padding: 18px 0;
}

.header.is-solid {
  background: rgba(9, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.05em;
  color: var(--fg-bright);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.brand-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 14px var(--aqua);
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--fg-bright);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--grad);
  transition: width 0.25s ease;
  border-radius: 99px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--aqua);
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}

.phone-link:hover {
  color: #5effeb;
  transform: translateY(-1px);
}

.burger {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  z-index: 120;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-bright);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  border-radius: 2px;
}

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

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s;
  display: flex;
  align-items: center;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 12, 16, 0.96) 0%, rgba(9, 12, 16, 0.8) 45%, rgba(9, 12, 16, 0.4) 100%),
              linear-gradient(0deg, rgba(9, 12, 16, 0.98) 0%, transparent 40%);
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide.is-active::before {
  transform: scale(1);
}

.slide-inner {
  position: relative;
  z-index: 5;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 860px;
}

.slide.is-active .slide-inner > * {
  animation: heroUp 0.8s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

.slide.is-active .slide-inner > *:nth-child(1) { animation-delay: 0.05s; }
.slide.is-active .slide-inner > *:nth-child(2) { animation-delay: 0.12s; }
.slide.is-active .slide-inner > *:nth-child(3) { animation-delay: 0.2s; }
.slide.is-active .slide-inner > *:nth-child(4) { animation-delay: 0.3s; }
.slide.is-active .slide-inner > *:nth-child(5) { animation-delay: 0.4s; }
.slide.is-active .slide-inner > *:nth-child(6) { animation-delay: 0.5s; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 224, 200, 0.1);
  border: 1px solid rgba(49, 224, 200, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--aqua);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31e0c8;
  box-shadow: 0 0 10px #31e0c8;
  animation: livePing 1.8s infinite;
}

@keyframes livePing {
  0% { transform: scale(0.9); opacity: 0.9; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 0.9; }
}

.hero p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 58ch;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 36px 0 0;
}

.hero-badges li {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.star-icon {
  color: var(--gold);
  font-size: 0.95rem;
}

/* Hero Slider Controls */
.slider-ui {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg-bright);
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  padding: 0;
}

.arrow:hover {
  background: var(--aqua);
  color: #04120f;
  border-color: transparent;
  transform: scale(1.05);
}

.dots {
  display: flex;
  gap: 8px;
}

.dot-btn {
  width: 24px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.dot-btn.is-active {
  width: 48px;
  background: var(--grad);
}

/* Ambient Floating Glow Elements */
.float {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.float-a {
  width: 460px;
  height: 460px;
  background: rgba(49, 224, 200, 0.18);
  top: -100px;
  right: -80px;
  animation: floatDrift1 16s ease-in-out infinite alternate;
}

.float-b {
  width: 360px;
  height: 360px;
  background: rgba(59, 157, 255, 0.18);
  bottom: -120px;
  left: -80px;
  animation: floatDrift2 20s ease-in-out infinite alternate;
}

.float-c {
  width: 280px;
  height: 280px;
  background: rgba(49, 224, 200, 0.12);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatDrift1 14s ease-in-out infinite alternate-reverse;
}

@keyframes floatDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -50px) scale(1.1); }
}

@keyframes floatDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 40px) scale(1.12); }
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 28px;
  width: 24px;
  height: 40px;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  z-index: 10;
  display: grid;
  place-items: start center;
  padding-top: 7px;
  transition: opacity 0.3s;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--aqua);
  animation: wheel 1.8s infinite;
}

@keyframes wheel {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ============ TRUST BAR ============ */
.trustbar {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 38px 24px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(75px, 9vw, 125px) 0;
  position: relative;
}

.section-alt {
  background: var(--ink-2);
}

.head {
  margin-bottom: 54px;
}

.head h2 {
  margin-bottom: 14px;
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.25, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.25, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============ PROCESS / HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.step {
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(49, 224, 200, 0.4);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.6);
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--grad);
  transition: width 0.4s ease;
}

.step:hover::before {
  width: 100%;
}

.step-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.12);
  display: block;
  line-height: 1;
}

.step h3 {
  margin: 8px 0 10px;
  font-size: 1.4rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.feature {
  padding: 24px;
  border-left: 3px solid var(--aqua);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--r) var(--r) 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.feature h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--fg-bright);
}

.feature p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

/* ============ PRICING PACKAGES ============ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 224, 200, 0.35);
  box-shadow: var(--shadow);
}

.plan-header h3 {
  font-size: 1.9rem;
}

.plan-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 8px 0 18px;
  min-height: 42px;
}

.price-box {
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price-old-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.price-was {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-del {
  color: #a0aec0;
  text-decoration: line-through;
  text-decoration-color: #ff5e57;
  text-decoration-thickness: 2px;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.badge-discount {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff5e57;
  background: rgba(255, 94, 87, 0.12);
  border: 1px solid rgba(255, 94, 87, 0.35);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 12px rgba(255, 94, 87, 0.15);
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.8rem;
  line-height: 0.95;
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 2px;
  color: var(--fg-bright);
}

.price .price-prefix {
  font-family: "Barlow", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--aqua);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.price .price-prefix .price-from {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--aqua);
}

.price-cents {
  font-size: 2.1rem;
  font-family: "Bebas Neue", sans-serif;
  color: var(--aqua);
  letter-spacing: 0.02em;
}

.price-badge-promo {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--aqua);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  text-transform: uppercase;
}

.price em {
  font-style: normal;
  font-family: "Barlow", sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  margin-left: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-bonus-gift {
  background: linear-gradient(135deg, rgba(255, 187, 36, 0.14) 0%, rgba(49, 224, 200, 0.10) 100%);
  border: 1px solid rgba(255, 187, 36, 0.4);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 6px;
  box-shadow: 0 0 16px -4px rgba(255, 187, 36, 0.25);
}

.bonus-gift-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffbb24;
  background: rgba(255, 187, 36, 0.18);
  border: 1px solid rgba(255, 187, 36, 0.45);
  padding: 2px 7px;
  border-radius: 6px;
  flex-shrink: 0;
}

.bonus-gift-text {
  font-size: 0.86rem;
  color: var(--fg-bright);
  line-height: 1.3;
}

.bonus-gift-text strong {
  color: #ffbb24;
}

.plan-condition-note {
  font-size: 0.84rem;
  font-weight: 600;
  color: #2ed573;
  margin-top: auto;
  padding-top: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}

.plan-condition-note .note-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Plan Segmented Tabs (Exterior / Interior) */
.plan-tabs {
  margin: 16px 0 6px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-tabs-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  position: relative;
}

.plan-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  user-select: none;
}

.plan-tab-btn:hover {
  color: var(--fg-bright);
  background: rgba(255, 255, 255, 0.05);
}

.plan-tab-btn.is-active {
  background: var(--ink-2);
  color: var(--aqua);
  border-color: rgba(49, 224, 200, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 16px -4px rgba(49, 224, 200, 0.3);
}

.plan-tab-btn .tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

.plan-tab-btn .tab-count {
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 1px 6px;
  border-radius: 99px;
  margin-left: 2px;
}

.plan-tab-btn.is-active .tab-count {
  background: rgba(49, 224, 200, 0.18);
}

.plan-tab-panels {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.plan-tab-panel {
  display: none !important;
}

.plan-tab-panel.is-active {
  display: grid !important;
  margin: 16px 0 14px;
  align-content: start;
  animation: fadeInPanel 0.22s ease-out;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 14px;
  display: grid;
  gap: 11px;
  flex-grow: 1;
}

.plan-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: #cbd6e3;
  line-height: 1.45;
}

.plan-list li.plan-highlight-item {
  color: var(--aqua);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.plan-list li.plan-highlight-item::before {
  background: var(--aqua);
  box-shadow: 0 0 10px rgba(49, 224, 200, 0.5);
}

.plan-list li.plan-highlight-item::after {
  border-color: #04120f;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(49, 224, 200, 0.15);
  box-shadow: inset 0 0 0 1px rgba(49, 224, 200, 0.5);
}

.plan-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.6em;
  width: 5px;
  height: 8px;
  border: solid var(--aqua);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.plan .btn {
  margin-top: auto;
}

/* Featured plan */
.plan-featured {
  background: linear-gradient(180deg, rgba(49, 224, 200, 0.10) 0%, rgba(59, 157, 255, 0.04) 50%, var(--ink-3) 100%);
  border-color: rgba(49, 224, 200, 0.45);
  box-shadow: var(--shadow), 0 0 50px -25px var(--aqua);
}

@media (min-width: 981px) {
  .plan-featured {
    transform: scale(1.04);
  }
  .plan-featured:hover {
    transform: scale(1.04) translateY(-6px);
  }
}

.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #04120f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(49, 224, 200, 0.4);
}

.extra-link {
  margin-top: 14px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
  padding: 4px 0;
  display: inline-block;
  align-self: center;
}

.extra-link:hover {
  color: var(--aqua);
}

.plans-footer {
  margin-top: 36px;
  text-align: center;
}

.plans-note {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 12px;
}

.quick-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ============ BEFORE / AFTER COMPARISON (2-COLUMN MODERN DESKTOP LAYOUT) ============ */
.ba-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: center;
}

.ba-content h2 {
  margin-bottom: 16px;
}

.ba-checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 18px;
}

.ba-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ba-checklist .check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(49, 224, 200, 0.15);
  color: var(--aqua);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(49, 224, 200, 0.4);
}

.ba-checklist strong {
  display: block;
  font-size: 1.05rem;
  color: var(--fg-bright);
  margin-bottom: 4px;
}

.ba-checklist p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.ba-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.ba-stat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.ba-stat-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(49, 224, 200, 0.4);
}

.ba-stat-pill strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  color: var(--aqua);
  line-height: 1;
}

.ba-stat-pill span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ba-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.ba-media {
  display: flex;
  flex-direction: column;
}

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  border: 1px solid var(--line-bright);
  box-shadow: var(--shadow), 0 0 50px -20px rgba(0, 0, 0, 0.8);
  background: var(--ink-3);
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
}

.ba-overlay .ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-badge {
  position: absolute;
  top: 16px;
  z-index: 5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.ba-badge-before {
  left: 16px;
  background: rgba(10, 13, 18, 0.88);
  color: #ff8e8e;
  border: 1px solid rgba(255, 142, 142, 0.35);
}

.ba-badge-after {
  right: 16px;
  background: rgba(10, 13, 18, 0.88);
  color: var(--aqua);
  border: 1px solid rgba(49, 224, 200, 0.45);
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 44px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  outline: none;
}

.ba-handle:focus-visible .ba-button {
  box-shadow: 0 0 0 3px var(--aqua);
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--aqua);
  box-shadow: 0 0 12px var(--aqua);
}

.ba-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #090c10;
  border: 2px solid var(--aqua);
  color: var(--aqua);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 16px rgba(49, 224, 200, 0.6);
  z-index: 2;
  position: relative;
  transition: transform 0.2s ease, background-color 0.2s;
}

.ba-slider:hover .ba-button {
  transform: scale(1.08);
  background: #0e131b;
}

.ba-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* ============ GALLERY ============ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg-bright);
}

.filter-btn.is-active {
  background: var(--aqua);
  color: #04120f;
  border-color: var(--aqua);
  box-shadow: 0 0 16px rgba(49, 224, 200, 0.4);
}

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

.shot {
  margin: 0;
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: var(--ink-3);
  transition: transform 0.35s ease, border-color 0.35s ease, opacity 0.3s ease;
}

.shot.hidden {
  display: none;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.shot:hover {
  border-color: rgba(49, 224, 200, 0.4);
  transform: translateY(-4px);
}

.shot:hover img {
  transform: scale(1.08);
}

.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 18px 16px;
  font-size: 0.92rem;
  color: var(--fg-bright);
  background: linear-gradient(0deg, rgba(6, 9, 13, 0.95) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  transform: translateY(4px);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.shot:hover figcaption {
  transform: none;
  opacity: 1;
}

.shot .tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(49, 224, 200, 0.2);
  color: var(--aqua);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ============ FAQ ACCORDION ============ */
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.faq-col {
  display: grid;
  gap: 16px;
  align-content: start;
}

.qa {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.qa[open] {
  border-color: rgba(49, 224, 200, 0.4);
  background: rgba(20, 27, 38, 0.95);
}

.qa summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--fg-bright);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  user-select: none;
}

.qa summary::-webkit-details-marker {
  display: none;
}

.qa summary::after {
  content: "+";
  color: var(--aqua);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
  font-family: monospace;
  font-weight: 400;
}

.qa[open] summary::after {
  transform: rotate(45deg);
}

.qa p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 14px 0 0;
  line-height: 1.6;
}

/* ============ REVIEWS ============ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.86rem;
  color: #e2e8f0;
  margin-bottom: 18px;
}

.g-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  color: #4285F4;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.review {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.review:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 224, 200, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1.05rem;
}

.g-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 99px;
  border: 1px solid var(--line);
}

.review p {
  color: #cbd6e3;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0 0 18px 0;
}

.who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #04120f;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.who strong {
  display: block;
  font-size: 0.96rem;
  color: var(--fg-bright);
}

.who small {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ============ CREATIVE GOOGLE REVIEWS CTA BAR ============ */
.reviews-footer {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.google-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(720px, 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(14, 19, 27, 0.96) 100%);
  border: 1px solid rgba(49, 224, 200, 0.35);
  border-radius: 20px;
  padding: 18px 26px;
  box-shadow: var(--shadow), 0 0 40px -15px rgba(49, 224, 200, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.google-cta-card:hover {
  transform: translateY(-2px);
  border-color: var(--aqua);
}

.google-cta-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.g-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.google-cta-text strong {
  display: block;
  font-size: 1.02rem;
  color: var(--fg-bright);
}

.google-cta-text .rating-stars {
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.google-cta-text .rating-stars span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: normal;
  font-weight: 500;
}

.google-cta-btn {
  padding: 12px 22px;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============ AREA & FORM ============ */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.map-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-card iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.map-footer {
  padding: 22px 24px;
}

.zones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.zones .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.dot-1 { background: var(--aqua); box-shadow: 0 0 8px var(--aqua); }
.dot-2 { background: var(--blue); }
.dot-3 { background: #6b7789; }

/* Lead Form Card */
.form-card {
  background: linear-gradient(180deg, rgba(49, 224, 200, 0.08) 0%, transparent 60%), var(--ink-3);
  border: 1px solid rgba(49, 224, 200, 0.35);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.form-header {
  margin-bottom: 22px;
}

.discount-tag {
  display: inline-block;
  background: rgba(49, 224, 200, 0.15);
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.form-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.form-card .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-card label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  margin-top: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--fg-bright);
  color-scheme: dark;
  font-family: inherit;
  font-size: 0.98rem;
  letter-spacing: normal;
  text-transform: none;
  transition: all 0.2s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 0;
  border-color: var(--aqua);
  background: rgba(49, 224, 200, 0.06);
  box-shadow: 0 0 0 3px rgba(49, 224, 200, 0.15);
}

.form-card input[type="date"] {
  cursor: pointer;
}

.form-card input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.8);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.form-card input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.form-card .invalid {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.08) !important;
}

.form-card option {
  background: var(--ink-2);
  color: var(--fg);
}

.form-helper {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.direct-call-hint a {
  color: var(--aqua);
}

.direct-call-hint a:hover {
  text-decoration: underline;
}

.form-ok {
  margin-top: 18px;
  background: rgba(49, 224, 200, 0.12);
  border: 1px solid rgba(49, 224, 200, 0.4);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.ok-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--aqua);
  color: #04120f;
  font-weight: 900;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}

.form-ok h4 {
  font-size: 1.4rem;
  color: var(--fg-bright);
  margin-bottom: 6px;
}

.form-ok p {
  color: #cbd5e1;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.contact {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

a.contact:hover {
  border-color: var(--aqua);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact span {
  font-size: 1.02rem;
  color: var(--fg-bright);
}

/* ============ SOCIAL NETWORKS CONNECT CARDS ============ */
.socials-wrap {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(14, 19, 27, 0.95) 100%);
  border: 1px solid var(--line-bright);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}

.socials-header {
  margin-bottom: 20px;
  text-align: center;
}

.socials-header .eyebrow-sm {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.socials-header h4 {
  font-size: 1.3rem;
  color: var(--fg-bright);
  margin: 0;
}

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

.social-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
}

.social-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.social-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-card:hover .social-icon-box {
  transform: scale(1.08);
}

.social-text {
  flex-grow: 1;
  min-width: 0;
}

.social-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--fg-bright);
  line-height: 1.2;
}

.social-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.social-arrow {
  color: var(--muted);
  font-size: 1.1rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-card:hover .social-arrow {
  transform: translate(2px, -2px);
  color: var(--fg-bright);
}

/* Individual Social Brands Accents */
.social-instagram .social-icon-box {
  color: #E1306C;
}
.social-instagram:hover {
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 10px 25px -5px rgba(225, 48, 108, 0.25);
}

.social-tiktok .social-icon-box {
  color: #00F2FE;
}
.social-tiktok:hover {
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 0 10px 25px -5px rgba(0, 242, 254, 0.25);
}

.social-facebook .social-icon-box {
  color: #1877F2;
}
.social-facebook:hover {
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 10px 25px -5px rgba(24, 119, 242, 0.25);
}

.social-yelp .social-icon-box {
  color: #D32323;
}
.social-yelp:hover {
  border-color: rgba(211, 35, 35, 0.5);
  box-shadow: 0 10px 25px -5px rgba(211, 35, 35, 0.25);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: var(--ink);
}

.footer-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: var(--aqua);
  color: #04120f;
  border-color: var(--aqua);
  transform: translateY(-2px);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer nav {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer nav a:hover {
  color: var(--aqua);
}

/* ============ FLOATING ACTION BUTTONS ============ */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.floating-btn {
  pointer-events: auto;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  text-decoration: none;
  border: none;
}

.floating-wa-btn {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.floating-wa-btn:hover {
  background: #20bd5a;
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.floating-call-btn {
  background: var(--grad);
  color: #04120f;
  box-shadow: 0 8px 30px rgba(49, 224, 200, 0.5);
}

.floating-call-btn:hover {
  color: #04120f;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 38px rgba(49, 224, 200, 0.65);
}

.call-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--aqua);
  animation: callPing 2s infinite cubic-bezier(0, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes callPing {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Sticky Mobile CTA Bar */
.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(9, 12, 16, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-bright);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}

body.show-sticky .sticky-cta-bar {
  transform: translateY(0);
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fg-bright);
}

.sticky-sub {
  font-size: 0.78rem;
  color: var(--aqua);
}

/* ============ EXTRAS MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 11, 0.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal.open .modal-backdrop {
  opacity: 1;
}

.modal-box {
  position: relative;
  width: min(580px, 100%);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: var(--ink-3);
  border: 1px solid rgba(49, 224, 200, 0.4);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow), 0 0 60px -20px rgba(49, 224, 200, 0.3);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.25s ease;
}

.modal.open .modal-box {
  transform: none;
  opacity: 1;
}

.modal-box-lg {
  width: min(640px, 100%);
  max-height: 92vh;
  padding: 28px 30px;
}

.modal-box-extras {
  width: min(780px, 100%);
  max-height: 92vh;
  padding: 30px 32px;
}

.modal-head {
  margin-bottom: 14px;
}

.modal-head h3 {
  font-size: 1.8rem;
  margin-top: 4px;
}

.booking-modal-body {
  overflow-y: auto;
  margin: 0 -8px 0 0;
  padding-right: 8px;
}

.booking-modal form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.booking-modal form input,
.booking-modal form select,
.booking-modal form textarea {
  width: 100%;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--fg-bright);
  color-scheme: dark;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
  transition: all 0.2s ease;
}

.booking-modal form input:focus,
.booking-modal form select:focus,
.booking-modal form textarea:focus {
  outline: 0;
  border-color: var(--aqua);
  background: rgba(49, 224, 200, 0.06);
  box-shadow: 0 0 0 3px rgba(49, 224, 200, 0.15);
}

.booking-modal form input[type="date"] {
  cursor: pointer;
}

.booking-modal form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.8);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.booking-modal form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-modal form .invalid {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.08) !important;
}

.booking-modal form option {
  background: var(--ink-2);
  color: var(--fg);
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.modal-x:hover {
  color: var(--aqua);
}

.modal-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 6px 0 16px;
}

.extras-wrap {
  overflow-y: auto;
  margin: 0 -8px 20px 0;
  padding-right: 8px;
  max-height: 56vh;
}

.extras-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background-color 0.2s, border-color 0.2s;
}

.extra-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(49, 224, 200, 0.35);
}

.extra-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.extra-bullet {
  color: var(--aqua);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.extra-name {
  font-size: 0.95rem;
  color: var(--fg-bright);
}

.extra-price {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--aqua);
  white-space: nowrap;
  background: rgba(49, 224, 200, 0.08);
  border: 1px solid rgba(49, 224, 200, 0.2);
  padding: 4px 10px;
  border-radius: 99px;
}

.modal-footer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.extras-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--muted);
}

.extras-total strong {
  color: var(--aqua);
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(4, 7, 11, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.open {
  opacity: 1;
}

.lb-content {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lb-caption-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 12px;
  font-size: 0.95rem;
  color: var(--fg);
}

.lb-counter {
  color: var(--aqua);
  font-weight: 600;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-bright);
  color: var(--fg-bright);
  font-size: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.lb-nav:hover {
  background: var(--aqua);
  color: #04120f;
  border-color: transparent;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 20;
}

/* ============ RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 1080px) {
  .steps, .feature-grid, .contacts { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { gap: 36px; }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    background: rgba(14, 19, 27, 0.98);
    border: 1px solid var(--line-bright);
    border-radius: 16px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.25s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .burger {
    display: block;
  }

  .phone-link {
    display: none;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-cols {
    grid-template-columns: 1fr;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .socials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-actions {
    bottom: 80px;
    right: 16px;
    gap: 10px;
  }

  .floating-btn .btn-text {
    display: none;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .sticky-cta-bar {
    display: flex;
  }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 92svh; }
  .slide-inner { padding-top: 100px; padding-bottom: 70px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .slider-ui { bottom: 20px; justify-content: center; width: 100%; }
  .scroll-hint { display: none; }
  .steps, .feature-grid, .reviews, .gallery, .contacts, .socials-grid { grid-template-columns: 1fr; }
  .socials-wrap { padding: 20px 16px; }
  .ba-stats-row { grid-template-columns: 1fr; gap: 8px; }
  .form-card { padding: 26px 20px; }
  .form-card .row { grid-template-columns: 1fr; }
  .footer-in { flex-direction: column; text-align: center; }
  .map-card iframe { height: 280px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .modal-box { padding: 24px 18px; }
  .modal-box-extras { padding: 24px 16px; }
  .extras-list { grid-template-columns: 1fr; }
  .google-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }
  .google-cta-info {
    flex-direction: column;
    text-align: center;
  }
  .google-cta-text .rating-stars {
    justify-content: center;
  }
  .google-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
