/* =========================
   Revival by TJ — Autospa
   ========================= */

:root {
  --teal-900: #0b2f30;
  --teal-800: #0f3d3e;
  --teal-700: #164a4c;
  --teal-600: #1d5a5c;
  --mint-500: #34d47c;
  --mint-400: #4ee08e;
  --mint-300: #7cebaa;
  --ink-900: #0a1516;
  --ink-700: #253536;
  --ink-500: #5b6f70;
  --ink-300: #9dabac;
  --paper: #f5f8f7;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(11, 47, 48, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 47, 48, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 47, 48, 0.18);
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--teal-900);
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { font-size: 1rem; color: var(--ink-700); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mint-500);
  margin-bottom: 12px;
}

.accent { color: var(--mint-500); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing),
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn--primary {
  background: var(--mint-500);
  color: var(--teal-900);
  box-shadow: 0 10px 24px rgba(52, 212, 124, 0.35);
}
.btn--primary:hover {
  background: var(--mint-400);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(52, 212, 124, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--teal-800);
  border-color: var(--teal-800);
}
.btn--outline:hover {
  background: var(--teal-800);
  color: var(--white);
}
.btn--pill { padding: 10px 22px; font-size: 0.85rem; }
.btn--wide { width: 100%; padding: 16px; }

/* -------- NAV -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(11, 47, 48, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 12px 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav__brand img { height: 44px; width: auto; }
.nav__brand em { color: var(--mint-500); font-style: normal; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--mint-500);
  transition: width 0.3s var(--easing);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { background: var(--mint-500); color: var(--teal-900); }
.nav__cta:hover { background: var(--mint-400); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 120px 32px 60px;
}
.hero__bg {
  position: absolute;
  inset: -10%;
  background-image: var(--hero-bg, url("assets/hero1.jpg"));
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 47, 48, 0.78) 0%, rgba(15, 61, 62, 0.55) 50%, rgba(52, 212, 124, 0.18) 100%),
    radial-gradient(ellipse at bottom left, rgba(52, 212, 124, 0.25), transparent 60%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero .eyebrow {
  color: var(--mint-400);
}

/* Big hero brand mark — logo + wordmark */
.hero__brand {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}
.hero__logo {
  width: 220px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 20px rgba(52, 212, 124, 0.15));
  animation: heroLogoFloat 6s ease-in-out infinite;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.hero__name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.hero__name em {
  color: var(--mint-400);
  font-style: normal;
  font-weight: normal;
}
.hero__tagline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--mint-400);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 10px;
  padding-left: 2px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero h1 span:nth-child(2) { color: var(--mint-400); }
.hero__lede {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  font-size: 1.15rem;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__stats div {
  display: flex;
  flex-direction: column;
}
.hero__stats strong {
  font-family: 'Anton', sans-serif;
  font-size: 2.75rem;
  color: var(--mint-400);
  line-height: 1;
}
.hero__stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.4); opacity: 1; }
}

/* -------- INTRO -------- */
.intro { padding: 120px 0; background: var(--white); }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__text h2 { margin-bottom: 20px; }
.intro__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  border-left: 4px solid var(--mint-500);
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
}
.feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  font-size: 1.5rem;
  color: var(--mint-500);
  margin-bottom: 8px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 0.95rem; }

/* -------- SECTION HEAD -------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head__sub { color: var(--ink-500); }

/* -------- SERVICES / PACKAGES -------- */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  position: relative;
}
.packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pkg {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(11, 47, 48, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pkg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--easing);
}
.pkg:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pkg:hover::before { transform: scaleX(1); }
.pkg--silver { color: #94a3b8; }
.pkg--gold { color: #d4a355; }
.pkg--platinum { color: var(--mint-500); }
.pkg--premium { color: var(--teal-800); }

.pkg--featured {
  background: var(--teal-900);
  color: var(--white);
  border-color: var(--teal-900);
  transform: translateY(-8px);
}
.pkg--featured::before { display: none; }
.pkg--featured .pkg__type,
.pkg--featured .pkg__prefix { color: rgba(255, 255, 255, 0.7); }
.pkg--featured .pkg__price small { color: rgba(255, 255, 255, 0.6); }
.pkg--featured .pkg__price strong { color: var(--mint-400); }
.pkg--featured .pkg__list li {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.pkg--featured .pkg__list li::before { background: var(--mint-400); }
.pkg--featured:hover { transform: translateY(-14px); }

.pkg__tag {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--mint-500);
  color: var(--teal-900);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

/* Header image at top of each package card — edge-to-edge, subtle zoom on hover */
.pkg__image {
  margin: -36px -28px 28px;
  height: 170px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.pkg__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 47, 48, 0.35) 100%);
  pointer-events: none;
}
.pkg__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--easing);
  display: block;
}
.pkg:hover .pkg__image img { transform: scale(1.08); }
.pkg--featured .pkg__image::after {
  background: linear-gradient(180deg, transparent 40%, rgba(11, 47, 48, 0.75) 100%);
}

.pkg__head { margin-bottom: 20px; }
.pkg__badge {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 1.75rem;
  color: currentColor;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pkg__type {
  font-size: 0.85rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.pkg__price {
  display: flex;
  flex-direction: column;
}
.pkg__price small {
  font-size: 0.75rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
}
.pkg__price strong {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--teal-900);
}
.pkg__prefix {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.pkg__list {
  flex: 1;
  margin-bottom: 24px;
}
.pkg__list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-700);
  border-bottom: 1px dashed rgba(11, 47, 48, 0.08);
}
.pkg__list li:last-child { border-bottom: none; }
.pkg__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint-500);
}
.pkg__cta { width: 100%; }

/* -------- ADD-ONS -------- */
.addons {
  padding: 120px 0;
  background: var(--teal-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.addons::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(52, 212, 124, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.addons .section-head h2 { color: var(--white); }
.addons .section-head__sub { color: rgba(255, 255, 255, 0.7); }
.addons .section-head__sub strong { color: var(--mint-400); }

.addons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.addon {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all 0.35s var(--easing);
  cursor: default;
}
.addon:hover {
  background: rgba(52, 212, 124, 0.1);
  border-color: var(--mint-500);
  transform: translateY(-4px);
}
.addon h4 { color: var(--white); margin-bottom: 6px; }
.addon p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

/* -------- ABOUT -------- */
.about { padding: 120px 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--easing);
}
.about__image:hover img { transform: scale(1.05); }
.about__badge {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 100px; height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 12px;
}
.about__badge img { width: 100%; height: auto; }

.about__text h2 { margin-bottom: 20px; }
.about__text p { margin-bottom: 16px; }
.about__signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(11, 47, 48, 0.1);
}
.about__signals div {
  display: flex;
  flex-direction: column;
}
.about__signals strong {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: var(--teal-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about__signals span {
  font-size: 0.85rem;
  color: var(--ink-500);
}

/* -------- CONTACT -------- */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(52, 212, 124, 0.15) 0%, transparent 70%);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__left h2 { color: var(--white); margin-bottom: 20px; }
.contact__left > p { color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; }

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__methods li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__methods li:first-child { padding-top: 0; }
.contact__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mint-400);
}
.contact__methods a, .contact__methods span:not(.contact__label) {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.contact__methods a:hover { color: var(--mint-400); }

.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-500);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid rgba(11, 47, 48, 0.1);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink-900);
  transition: border-color 0.2s ease, background 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--mint-500);
  background: var(--white);
}
.contact__form textarea { resize: vertical; }
.contact__form .full { grid-column: 1 / -1; }
.contact__form button { grid-column: 1 / -1; margin-top: 6px; }

/* -------- FOOTER -------- */
.footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo { height: 60px; margin-bottom: 12px; }
.footer__title {
  font-family: 'Anton', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s ease; }
.footer a:hover { color: var(--mint-400); }
.footer__base {
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* -------- ANIMATIONS: initial state (JS overrides for GSAP) -------- */
[data-anim] { opacity: 0; }
[data-anim="fade-up"] { transform: translateY(30px); }
[data-anim="reveal"] { transform: translateY(0); }
.no-js [data-anim] { opacity: 1; transform: none; }

/* =========================================
   SOAP BUBBLE CURSOR TRAIL
   ========================================= */

.bubble-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Card spotlight (glow that follows cursor inside a card) */
.pkg, .addon, .feature {
  position: relative;
}
.pkg::after, .addon::after, .feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    240px circle at var(--cx, 50%) var(--cy, 50%),
    rgba(78, 224, 142, 0.16),
    transparent 60%
  );
}
.pkg:hover::after, .addon:hover::after, .feature:hover::after { opacity: 1; }

.pkg--featured::after {
  background: radial-gradient(
    260px circle at var(--cx, 50%) var(--cy, 50%),
    rgba(78, 224, 142, 0.35),
    transparent 60%
  );
}
.addon::after {
  background: radial-gradient(
    200px circle at var(--cx, 50%) var(--cy, 50%),
    rgba(78, 224, 142, 0.22),
    transparent 60%
  );
}

/* Magnetic buttons — JS moves them; add a soft glow ring */
.btn--primary { position: relative; }
.btn--primary::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 224, 142, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  filter: blur(12px);
}
.btn--primary:hover::before { opacity: 1; }

/* Hero mouse-parallax targets get a transform via JS */
.hero__bg, .hero h1, .hero__lede { will-change: transform; }

/* Touch devices: no bubble canvas */
@media (hover: none), (pointer: coarse) {
  .bubble-canvas { display: none !important; }
}

/* Reduced motion: kill non-essential effects */
@media (prefers-reduced-motion: reduce) {
  .bubble-canvas { display: none !important; }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1024px) {
  .packages, .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .pkg--featured { transform: none; }
  .intro__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { padding: 16px 20px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(11, 47, 48, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero { padding: 100px 20px 60px; }
  .hero__stats { gap: 24px; }
  .hero__stats strong { font-size: 2rem; }
  .hero__brand { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
  .hero__logo { width: 160px; }

  .intro, .services, .addons, .about, .contact { padding: 80px 0; }
  .container { padding: 0 20px; }

  .packages, .addons__grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; padding: 28px; }
  .about__signals { grid-template-columns: 1fr; gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
}
