/* ═══════════════════════════════════════════════════════
   TINTDIEGO — STYLESHEET
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --banner-h:      40px;
  --header-h:      5.625rem;
  --accent:        #FF0B7A;
  --accent-2:      #42C8D6;
  --gradient:      linear-gradient(90deg, #42C8D6 0%, #FF0B7A 60%);
  --accent-dark:   #c90049;
  --accent-glow:   rgba(235, 0, 84, 0.15);
  --bg:            #0a0a0a;
  --bg-card:       #111111;
  --bg-section:    #0f0f0f;
  --border:        rgba(255,255,255,0.07);
  --text:          #f0f0f0;
  --text-muted:    #8a8a8a;
  --text-dim:      #555;
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:   0 4px 32px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 28px rgba(235, 0, 84, 0.3);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--banner-h) + 20px); overflow-x: clip; max-width: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
svg { max-width: 100%; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea {
  font: inherit;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
select option { background: #1a1a1a; }

/* ── UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--accent {
  background: var(--gradient);
  color: #fff;
}
.btn--accent:hover {
  filter: brightness(1.12);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}
.btn--outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}
.btn--teal {
  border: 1.5px solid #42C8D6;
  color: #0a0a0a;
  background: #42C8D6;
  font-weight: 700;
}
.btn--teal:hover {
  background: #5dd4df;
  border-color: #5dd4df;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(66,200,214,0.35);
}
.reviews__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}
.btn--full { width: 100%; justify-content: center; }
.btn--call {
  background: #42C8D6;
  color: #fff;
  font-weight: 700;
}
.btn--call:hover {
  background: #00a5c9;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,185,219,0.35);
}
.btn--book {
  background: #00b9db;
  color: #fff;
  font-weight: 700;
}
.btn--book:hover {
  background: #009ec0;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,185,219,0.4);
}
.service-feature__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

/* ── HEADER ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: var(--banner-h);
  left: auto; right: auto;
  margin-top: var(--banner-h);
  z-index: 1000;
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  background: #0d0d0d;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
  max-width: none;
  padding: 0 2.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-left: 2rem;
}
.logo__img {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
}
.header .logo__img {
  height: 4.5rem;
}
.logo__text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav__link.active { color: var(--accent); }
.header__cta { margin-left: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--banner-h) - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('IMAGES/hero-lander.webp') center/cover no-repeat;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.80) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235,0,84,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,185,219,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1050px;
  padding: clamp(2.5rem, 5vh, 5rem) 1.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero__eyebrow {
  font-size: clamp(0.7rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero__headline {
  font-size: clamp(2rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.hero__line {
  display: block;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ── SECTION BASE ──────────────────────────────────────── */
.section {
  padding: 6rem 0;
}
.section--dark {
  background: var(--bg-section);
}
.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.section__sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ── SERVICES ──────────────────────────────────────────── */
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.services__grid .service-card {
  flex: 0 1 500px;
  min-width: 280px;
}
.services__grid--auto .service-card {
  flex: 0 1 320px;
  min-width: 260px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service-card:hover {
  border-color: rgba(235,0,84,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(235,0,84,0.08);
}
.service-card__img-wrap {
  margin: -2.75rem -2.75rem 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  height: 180px;
  flex-shrink: 0;
}
.service-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__img-bottom {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
  aspect-ratio: 679 / 365;
}
.service-card__img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card .feature-list {
  flex: 1;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .service-card__img-wrap { margin: -1.75rem -1.75rem 0; }
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card__icon--accent {
  background: var(--accent-glow);
  border-color: rgba(235,0,84,0.25);
  color: var(--accent);
}
.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.service-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}
.service-card__badge {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  width: fit-content;
}
.service-card__link {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap var(--transition);
  margin-top: auto;
}
.service-card__link:hover { text-decoration: underline; }

/* ── STAGGERED SERVICE FEATURES (index.html) ─────────── */
.services__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 76%;
  max-width: 980px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-feature:nth-child(odd)  { margin-left: 2%; margin-right: auto; }
.service-feature:nth-child(even) { margin-left: auto; margin-right: 2%; }
.service-feature:hover {
  border-color: rgba(235,0,84,0.35);
  box-shadow: var(--shadow-card), 0 0 40px rgba(235,0,84,0.09);
}
.service-feature__photo {
  overflow: hidden;
  min-height: 300px;
}
.service-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-feature:hover .service-feature__photo img { transform: scale(1.05); }
.service-feature__body {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
}
.service-feature--reverse .service-feature__photo { order: 2; }
.service-feature--reverse .service-feature__body  { order: 1; }
@media (min-width: 1280px) {
  .services__list { padding-left: 4rem; padding-right: 4rem; }
}
@media (max-width: 900px) {
  .service-feature { width: 100%; grid-template-columns: 1fr; }
  .service-feature:nth-child(odd), .service-feature:nth-child(even) { margin-left: 0; margin-right: 0; }
  .service-feature--reverse .service-feature__photo { order: 0; }
  .service-feature--reverse .service-feature__body  { order: 0; }
  .service-feature__body { padding: 2rem; }
  .service-feature__photo { min-height: 240px; }
}

/* ── TINT VISUALIZER ───────────────────────────────────── */
.tint-wrap {
  position: relative;
  padding: 2rem 1.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(0,185,219,0.07) 5%, rgba(235,0,84,0.07) 80%);
  border-radius: 20px;
}
.tint-wrap::before {
  content: '';
  position: absolute;
  inset: -30px 0;
  background: linear-gradient(135deg, rgba(0,185,219,0.2) 5%, rgba(235,0,84,0.2) 80%);
  filter: blur(40px);
  border-radius: 50px;
  z-index: 0;
  pointer-events: none;
}
.tint-viz {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.tint-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tint-car {
  position: relative;
  width: 100%;
  border: 2px solid var(--accent-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 32px rgba(0,185,219,0.22), 0 0 80px rgba(0,185,219,0.08);
}
.tint-car__img {
  display: block;
  width: 100%;
  height: auto;
}
.tint-car__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── Custom segmented slider ── */
.tint-custom-slider {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 0 14px;
  user-select: none;
  overflow: hidden;
}
.tint-track {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  margin: 14px 0 44px;
}
.tint-track__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.tint-node {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  width: 0;
  height: 0;
  overflow: visible;
  outline: none;
}
.tint-node:focus,
.tint-node:focus-visible {
  outline: none;
}
.tint-node[data-index="0"] { left:   0%; }
.tint-node[data-index="1"] { left:  20%; }
.tint-node[data-index="2"] { left:  40%; }
.tint-node[data-index="3"] { left:  60%; }
.tint-node[data-index="4"] { left:  80%; }
.tint-node[data-index="5"] { left: 100%; }
/* pin end labels so they never overflow the slider edges */
.tint-node[data-index="0"] .tint-node__label { transform: translateX(0); }
.tint-node[data-index="5"] .tint-node__label { transform: translateX(-100%); }

@media (max-width: 640px) {
  .tint-custom-slider { overflow: visible; }
  .tint-node[data-index="0"] .tint-node__label { transform: translateX(-50%); }
}
.tint-node__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tint-node.done .tint-node__dot {
  width: 12px;
  height: 12px;
  background: var(--accent-2);
}
.tint-node.active .tint-node__dot {
  width: 22px;
  height: 22px;
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(0,185,219,0.7), 0 0 28px rgba(235,0,84,0.35);
}
.tint-node__label {
  position: absolute;
  top: 18px;
  left: 0;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: color 0.2s ease, font-weight 0.2s ease;
  pointer-events: none;
}
.tint-node.done .tint-node__label {
  color: rgba(255,255,255,0.45);
}
.tint-node.active .tint-node__label {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.82rem;
}

/* ── WHY SECTION ───────────────────────────────────────── */
.why__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.why-card {
  flex: 0 1 360px;
  min-width: 240px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(0,185,219,0.25);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  border: 1px solid rgba(235,0,84,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── GALLERY CAROUSEL ──────────────────────────────────── */
.gallery-carousel {
  position: relative;
  margin-bottom: 2.5rem;
}
.gallery-carousel::before {
  content: '';
  position: absolute;
  inset: -28px 0;
  background: linear-gradient(135deg, rgba(0,185,219,0.2) 5%, rgba(235,0,84,0.2) 80%);
  border-radius: calc(var(--radius) + 28px);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
}
.gallery-carousel__border {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #42C8D6 5%, #FF0B7A 80%);
  padding: 3px;
  border-radius: calc(var(--radius) + 3px);
}
.gallery-carousel__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.gallery-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10,10,10,0.6);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gallery-arrow--prev { left: 1.25rem; }
.gallery-arrow--next { right: 1.25rem; }
.gallery-arrow:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
}
.gallery-counter {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  z-index: 2;
  pointer-events: none;
}
.gallery-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.gallery-dot.active {
  background: var(--gradient);
  width: 24px;
}
@media (max-width: 767px) {
  .gallery-carousel__stage { aspect-ratio: 4/3; }
  .gallery-arrow { width: 38px; height: 38px; }
  .gallery-arrow--prev { left: 0.75rem; }
  .gallery-arrow--next { right: 0.75rem; }
}
.gallery__cta {
  text-align: center;
}
.gallery__cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ── REVIEWS CAROUSEL ──────────────────────────────────── */
.rc-wrap {
  position: relative;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(0,185,219,0.07) 5%, rgba(235,0,84,0.07) 80%);
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.rc-wrap::before {
  content: '';
  position: absolute;
  inset: -30px 0;
  background: linear-gradient(135deg, rgba(0,185,219,0.2) 5%, rgba(235,0,84,0.2) 80%);
  filter: blur(40px);
  border-radius: 50px;
  z-index: 0;
  pointer-events: none;
}
.rc-carousel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rc-viewport {
  flex: 1;
  overflow: hidden;
}
.rc-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.rc-card {
  flex: 0 0 72%;
  filter: blur(4px);
  opacity: 0.4;
  transition: filter 0.5s ease, opacity 0.5s ease;
}
.rc-card.is-active {
  filter: none;
  opacity: 1;
}
.rc-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
}
.rc-card__bubble {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rc-card__bubble::before {
  content: '';
  position: absolute;
  top: -9px; left: 1.5rem;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid var(--border);
}
.rc-card__bubble::after {
  content: '';
  position: absolute;
  top: -7px; left: calc(1.5rem + 1px);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--bg-card);
}
.rc-card__stars { color: #f59e0b; font-size: 1rem; letter-spacing: 0.08em; }
.rc-card__text { color: var(--text-muted); font-size: 0.85rem; line-height: 1.75; font-style: italic; }
.rc-card__label { font-size: 0.7rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; padding-top: 0.6rem; border-top: 1px solid var(--border); margin-top: auto; }
.rc-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.rc-card.is-active:hover .rc-card__photo img { transform: scale(1.04); }
.rc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: rgba(10,10,10,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.rc-arrow:hover:not(:disabled) {
  background: var(--gradient);
  border-color: transparent;
  transform: scale(1.08);
}
.rc-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.rc-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.rc-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.rc-dot.active { background: var(--gradient); width: 24px; }
@media (max-width: 767px) {
  .rc-card { flex: 0 0 88%; }
  .rc-wrap { padding: 1.25rem 0.75rem; }
  .rc-carousel { gap: 0.5rem; }
  .rc-arrow { width: 36px; height: 36px; }
}

/* ── QUOTE SECTION ─────────────────────────────────────── */
.quote__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.quote__contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
a.quote__contact-item:hover {
  color: var(--accent);
  border-color: rgba(235,0,84,0.25);
}
.quote__contact-item svg { flex-shrink: 0; color: var(--accent); }

.quote__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form__group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
textarea { resize: vertical; min-height: 100px; }
.form__disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}
.form__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem;
  background: rgba(0,185,219,0.1);
  border: 1px solid rgba(0,185,219,0.2);
  border-radius: var(--radius-sm);
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer__links, .footer__contact, .footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links h3, .footer__contact h3, .footer__social h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.footer__links a, .footer__contact a, .footer__contact span {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover, .footer__contact a:hover { color: var(--accent); }
.social__icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.social__icons a:hover {
  color: var(--accent-2);
  border-color: rgba(0,185,219,0.35);
  background: rgba(0,185,219,0.08);
}
.footer__social .social__icons {
  margin-bottom: 1.75rem;
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.5rem;
  text-align: center;
}
.footer__bottom p {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ── POPUP ─────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.popup {
  position: relative;
  background: #0d0d0d;
  border: 1px solid rgba(235,0,84,0.3);
  border-radius: var(--radius);
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 60px rgba(235,0,84,0.15), 0 24px 64px rgba(0,0,0,0.7);
}
.popup-overlay.active .popup {
  transform: scale(1) translateY(0);
}
.popup::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--gradient);
}
.popup__inner {
  padding: 2rem 2rem 1.75rem;
}
.popup__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 1;
}
.popup__close:hover {
  background: rgba(235,0,84,0.15);
  border-color: var(--accent);
  color: #fff;
}
.popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(235,0,84,0.12);
  border: 1px solid rgba(235,0,84,0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.popup__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: popupPulse 1.4s ease-in-out infinite;
}
@keyframes popupPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.popup__headline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.popup__price {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.popup__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.popup__perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text);
}
.popup__perks li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(235,0,84,0.12);
  border: 1px solid rgba(235,0,84,0.3);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.popup__cta {
  margin-bottom: 0.75rem;
}
.popup__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.popup__fine {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── Section divider slide-out animation ── */
.section-divider .section-divider__line {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-divider .section-divider__label {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}
.section-divider.visible .section-divider__line {
  transform: scaleX(1);
}
.section-divider.visible .section-divider__label {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── SECTION DIVIDERS ─────────────────────────────────── */
.section-divider {
  width: 100%;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.section-divider__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.section-divider__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  user-select: none;
}
.section-divider__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── LAPTOP (≤1280px) ──────────────────────────────────── */
@media (max-width: 1280px) {
  :root { --header-h: 5.625rem; }
  .header__inner { height: 5.625rem; padding: 0 2rem; }
  .logo__img, .header .logo__img { height: 4.5rem; }
  .logo { margin-left: 1rem; }
}

/* ── TABLET (≤1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .quote__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .services__grid .service-card { flex: 0 1 320px; }
}

@media (max-width: 768px) {
  :root { --header-h: 5.625rem; }
  .hamburger { display: flex; }
  .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-top, 0px); left: 0; right: 0;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 0.5rem;
    z-index: 999;
    margin-left: 0;
    /* hidden state */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .nav .header__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
  }
  .nav__link { padding: 0.75rem 1rem; font-size: 1rem; width: 100%; }

  .header__inner { height: 5.625rem; padding: 0 1.25rem; }
  .header .logo__img, .logo__img { height: 4.5rem; }
  .logo { margin-left: 0; }

  .hero {
    min-height: calc(100svh - var(--banner-h) - var(--header-h));
    align-items: flex-start;
    padding-top: 2rem;
  }
  .hero__content { text-align: center; margin-left: auto; margin-right: auto; padding: 1.5rem 1.25rem 2.5rem; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__headline { font-size: clamp(1.85rem, 7.5vw, 2.75rem); }
  .hero__actions { flex-direction: column; align-items: center; justify-content: center; }
  .hero__badges { flex-direction: row; align-items: center; justify-content: center; }

  .quote__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote__form { padding: 1.75rem; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 640px) {
  .services__grid .service-card,
  .services-grid .service-card { flex: 0 0 100%; min-width: 0; }
  .service-card { padding: 1.75rem; }
  .hero__actions .btn--lg { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  :root { --header-h: 5rem; }
  .header__inner { height: 5rem; }
  .header .logo__img, .logo__img { height: 3.875rem; }
  .why__grid .why-card { flex: 0 0 100%; min-width: 0; }
  .hero__headline { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .hero__badges { flex-direction: column; align-items: flex-start; justify-content: flex-start; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .section__title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .footer__inner { gap: 1.5rem; }
}

/* ── NAV DROPDOWN ──────────────────────────────────────── */
.nav__item--dropdown {
  position: relative;
}
.nav__link--has-dropdown {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.nav__link--has-dropdown:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav__chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
  opacity: 0.6;
}
.nav__item--dropdown:hover .nav__chevron,
.nav__item--dropdown.open .nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  padding: 0.5rem 0.4rem 0.4rem;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.4);
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__dropdown-link:hover {
  color: #fff;
}
.nav__dropdown-link svg { color: var(--accent); flex-shrink: 0; }
.nav__price { color: var(--text-dim); font-weight: 400; font-size: 0.8em; margin-left: 0.3rem; }

/* ── SERVICE SUB-PAGES ─────────────────────────────────── */
.page-hero {
  padding: clamp(4rem, 8vh, 7rem) 0 clamp(3.5rem, 6vh, 5.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(235,0,84,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,185,219,0.04) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.page-hero__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2rem;
}
.page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.services-grid .service-card {
  flex: 0 1 320px;
  min-width: 260px;
}
.page-cta {
  text-align: center;
  padding: 5rem 0;
  background: var(--bg-section);
}
.page-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.page-cta__sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.page-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mobile nav dropdown */
@media (max-width: 768px) {
  .nav__item--dropdown { position: static; width: 100%; }
  .nav__link--has-dropdown { width: 100%; justify-content: space-between; padding: 0.75rem 1rem; font-size: 1rem; }

  /* kill the desktop hover transform that shifts the dropdown off-screen */
  .nav__item--dropdown:hover .nav__dropdown,
  .nav__item--dropdown.open .nav__dropdown {
    transform: none;
    left: auto;
  }

  .nav__dropdown {
    position: static !important;
    transform: none !important;
    left: auto !important;
    opacity: 1;
    pointer-events: all;
    width: 100%;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav__item--dropdown.open .nav__dropdown { max-height: 520px; }

  .nav__dropdown-link {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 1.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    white-space: normal;
    border-radius: 0;
    margin: 0;
  }
  .nav__dropdown-link svg { display: none; }
  .page-hero { padding: clamp(3rem, 7vh, 4.5rem) 0 clamp(2.5rem, 5vh, 4rem); }
  .page-hero__title { font-size: clamp(2rem, 7vw, 3rem); }
}

/* ═══════════════════════════════════════════
   TINT PACKAGES — price tag + feature list
═══════════════════════════════════════════ */
.price-tag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0 1rem;
  line-height: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  width: 100%;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   FILM OPTIONS
═══════════════════════════════════════════ */
.film-options {
  max-width: 680px;
  margin: 0 auto 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.film-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.film-option:last-child { border-bottom: none; }

.film-option:hover { background: rgba(255,255,255,0.03); }

.film-option__name {
  font-size: 0.95rem;
  color: var(--text);
}

.film-option__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.film-options__note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TINT SCHOOL
═══════════════════════════════════════════ */
.curriculum-list {
  max-width: 720px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.curriculum-item {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--border);
  margin-bottom: 0.75rem;
  border-radius: 0 8px 8px 0;
  background: var(--bg-card);
  transition: border-color 0.2s;
}

.curriculum-item:hover { border-color: var(--accent); }

.curriculum-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.curriculum-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.tint-school__meta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.careers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.career-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tint-school__cost {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════
   LIMITED OFFER BANNER
═══════════════════════════════════════════ */
.offer-banner {
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  padding: 1.25rem 1rem;
}

.offer-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.offer-banner__text {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
  text-align: center;
}

.offer-banner__text strong { color: #fff; font-weight: 700; }

@media (max-width: 600px) {
  .offer-banner__inner { flex-direction: column; gap: 0.75rem; }
}

/* ── Announcement Bar ───────────────────────────────────── */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--banner-h);
  background: #FF0B7A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem;
  gap: 0.65rem;
  font-size: 13px;
  font-weight: 700;
}
.announce-bar__text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
.announce-bar__cta {
  background: #fff;
  color: #FF0B7A;
  padding: 0.28rem 0.85rem;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.announce-bar__cta:hover { opacity: 0.82; }
.announce-bar__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.2rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.announce-bar__close:hover { color: #fff; }
.announce-bar.hidden { display: none; }
@media (max-width: 768px) {
  .announce-bar {
    justify-content: center;
    text-align: left;
    gap: 0.4rem;
    padding: 0 0.5rem;
    flex-wrap: nowrap;
    height: var(--banner-h);
    align-items: center;
  }
  .announce-bar__text {
    position: static;
    transform: none;
    white-space: nowrap;
    font-size: 10px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .announce-bar__cta {
    font-size: 10px;
    padding: 0.25rem 0.6rem;
    flex-shrink: 0;
  }
  .announce-bar__close {
    position: static;
    flex-shrink: 0;
    font-size: 15px;
    padding: 0 0.15rem;
  }
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.93rem;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

/* ── Service Areas ────────────────────────────────────── */
.footer__areas {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   CONVERSION AUDIT — Pink → Teal overrides
   Keeps pink only on: announcement bar, popup badge,
   deal-card badge, sale labels, gradient accents.
   Everything interactive goes teal (#00b9db / --accent-2).
═══════════════════════════════════════════════════════ */

/* Eyebrows & labels */
.section__eyebrow,
.hero__eyebrow,
.page-hero__eyebrow { color: var(--accent-2); }

/* Accent icon: pink glow → teal glow */
.service-card__icon--accent {
  background: rgba(0,185,219,0.1);
  border-color: rgba(0,185,219,0.25);
  color: var(--accent-2);
}

/* Card hover borders */
.service-card:hover {
  border-color: rgba(0,185,219,0.3);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0,185,219,0.08);
}
.service-feature:hover {
  border-color: rgba(0,185,219,0.35);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0,185,219,0.09);
}

/* Badges & links */
.service-card__badge { background: #00b9db; }
.service-card__link  { color: var(--accent-2); }

/* Outline button: pink → white-on-dark */
.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.88);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.75);
  color: #fff;
}

/* Form focus ring */
input:focus, select:focus, textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(0,185,219,0.12);
}

/* Footer link hovers */
.footer__links a:hover,
.footer__contact a:hover { color: var(--accent-2); }

/* Quote contact items */
.quote__contact-item svg { color: var(--accent-2); }
a.quote__contact-item:hover {
  color: var(--accent-2);
  border-color: rgba(0,185,219,0.25);
}

/* Nav active */
.nav__link.active { color: var(--accent-2); }

/* Why-card icon */
.why-card__icon {
  background: rgba(0,185,219,0.1);
  border-color: rgba(0,185,219,0.2);
  color: var(--accent-2);
}

/* Section divider dot */
.section-divider__dot { background: var(--accent-2); }

/* Sub-page accent references */
.curriculum-item:hover { border-color: var(--accent-2); }
.feature-list li::before { color: var(--accent-2); }
.price-tag { color: var(--accent-2); }
.nav__dropdown-link svg { color: var(--accent-2); }

/* ═══════════════════════════════════════════════════════
   HERO TAGLINE
═══════════════════════════════════════════════════════ */
.hero__tagline {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR (inside hero, below CTAs)
═══════════════════════════════════════════════════════ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.trust-item__stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-divider { display: none; }
  .trust-bar { gap: 0.45rem 0.9rem; }
  .trust-item { font-size: 0.74rem; }
}

/* ═══════════════════════════════════════════════════════
   $89 DEAL CARD
═══════════════════════════════════════════════════════ */
.deal-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255,11,122,0.2);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.deal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.deal-card__badge {
  display: inline-block;
  background: rgba(255,11,122,0.1);
  border: 1px solid rgba(255,11,122,0.3);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.deal-card__pre {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}
.deal-price {
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.deal-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  margin: 1rem 0 0;
}
.deal-perks li {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.deal-perks li::before {
  content: '✓ ';
  color: var(--accent-2);
  font-weight: 700;
}
@media (max-width: 640px) {
  .deal-card { padding: 2rem 1.5rem; }
  .deal-perks { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ═══════════════════════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 200px; }
}

/* ═══════════════════════════════════════════════════════
   FILM COMPARISON (Pricing section)
═══════════════════════════════════════════════════════ */
.film-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.film-compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.film-compare-card:hover { border-color: rgba(0,185,219,0.3); }
.film-compare-card--featured {
  border-color: rgba(0,185,219,0.4);
  box-shadow: 0 0 32px rgba(0,185,219,0.1);
}
.film-compare-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.film-compare-card--featured .film-compare-card__label { color: var(--accent-2); }
.film-compare-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.film-compare-card__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-2);
  letter-spacing: -0.02em;
  margin: 0;
}
.film-compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.25rem 0 0;
  flex: 1;
}
.film-compare-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}
.film-compare-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}
.film-cta-link {
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}
.film-cta-link:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .film-compare-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ═══════════════════════════════════════════════════════
   SERVICE CARD SIZE REDUCTION (sub-pages)
═══════════════════════════════════════════════════════ */
.service-card { padding: 1.75rem; }
.service-card__img-wrap {
  margin: -1.75rem -1.75rem 0;
  height: 160px;
}
@media (max-width: 640px) {
  .service-card__img-wrap { margin: -1.75rem -1.75rem 0; }
  .service-card__desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

/* ── footer bottom credit ─ */
.footer__bottom { text-align: center; }


/* ═══════════════════════════════════════════════════════
   MAP EMBED
═══════════════════════════════════════════════════════ */
.map-embed {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  padding-top: 0.75rem;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
  filter: grayscale(0.2) invert(0.92) hue-rotate(180deg);
  opacity: 0.85;
}
@media (max-width: 640px) {
  .map-embed iframe { height: 220px; }
}

/* ═══════════════════════════════════════════════════════
   FORM SUCCESS OVERLAY
═══════════════════════════════════════════════════════ */
.td-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.78);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.td-success-overlay--visible {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.td-success-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,185,219,0.35);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: calc(100% - 2rem);
  box-shadow: 0 0 60px rgba(0,185,219,0.12);
  transform: scale(0.88) translateY(24px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.td-success-overlay--visible .td-success-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.td-check-circle {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem;
}
.td-check-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.td-check-svg circle {
  stroke: #00b9db;
  stroke-width: 2;
  fill: rgba(0,185,219,0.1);
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transform: scale(0);
}
.td-check-path {
  stroke: #00b9db;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
}
/* Animations only fire when overlay is shown */
.td-success-overlay--visible .td-check-svg circle {
  animation: td-circle-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;
}
.td-success-overlay--visible .td-check-path {
  animation: td-check-draw 0.45s ease 0.55s forwards;
}
.td-success-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.td-success-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.td-success-close-btn {
  background: #00b9db;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.65rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.td-success-close-btn:hover { opacity: 0.85; }
@keyframes td-circle-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
@keyframes td-check-draw {
  to { stroke-dashoffset: 0; }
}
