/* ===========================================
   THE BUBBLE ROOM - SHARED DESIGN SYSTEM
   Paula Scher-inspired brutalist dark mode
   Extracted from membership-b.html
   =========================================== */

:root {
  --aqua: #5BC4C8;
  --aqua-light: #8ED6D9;
  --aqua-pale: #D4F1F3;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --white: #FFFFFF;
  --text-70: rgba(255, 255, 255, 0.7);
  --text-60: rgba(255, 255, 255, 0.6);
  --text-50: rgba(255, 255, 255, 0.5);
  --text-40: rgba(255, 255, 255, 0.4);
  --text-30: rgba(255, 255, 255, 0.3);
  --text-black-60: rgba(0, 0, 0, 0.6);
  --tap-target: 48px;
}

/* Screen-reader only (GEO entity disambiguation) */
.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;
}

/* Pricing hero: bag image on right */
.hero-bag {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: clamp(250px, 30vw, 500px);
  height: auto;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@media (max-width: 899px) {
  .hero-bag {
    display: none !important;
  }
}

/* Contact hero: text right, image left */
.hero-contact { align-items: flex-end; }
.hero-contact .headline-container { text-align: right; }
.hero-contact .pre-hook { justify-content: flex-end; }
.hero-contact .hero-cta-group { justify-content: flex-end; }
.hero-contact .jump-link { margin-left: auto; margin-right: 0; }
.hero-contact .scroll-indicator { right: 2rem; left: auto; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Mono', monospace;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: 70px;
}

a { color: var(--aqua); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }

/* ===========================================
   NAV HEADER — Multi-page with hamburger
   =========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.nav-logo svg { display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Nav links — hidden on mobile, shown in hamburger */
.nav-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-70);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* Language toggle */
.nav-lang-toggle {
  display: flex;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
  border-radius: 2px;
}

.nav-lang-btn {
  background: transparent;
  border: none;
  color: var(--text-50);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.nav-lang-btn.active {
  background: var(--aqua);
  color: var(--black);
}

.nav-lang-btn:hover:not(.active) { color: var(--white); }

/* Nav CTA button */
.nav-cta {
  background: var(--aqua);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--aqua);
}

.nav-cta:hover {
  background: transparent;
  color: var(--aqua);
}

/* Hamburger menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--aqua);
}

/* ===========================================
   HERO — Paula Scher treatment
   =========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1rem 3rem;
  position: relative;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

/* Dark overlay for text readability — mobile: uniform dark, desktop: left-side gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(10, 10, 10, 0.7);
}

.hero-bg-text {
  position: absolute;
  z-index: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(25rem, 55vw, 70rem);
  color: rgba(91, 196, 200, 0.035);
  line-height: 0.7;
  bottom: -5%;
  right: -5%;
  transform: rotate(-12deg);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  overflow: hidden;
}

.headline-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
}

.pre-hook {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(91, 196, 200, 0.1);
  border: 1px solid rgba(91, 196, 200, 0.3);
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.4s ease-out;
}

.pre-hook .separator {
  width: 4px;
  height: 4px;
  background: var(--aqua);
  border-radius: 50%;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1.5rem;
  animation: slideIn 0.6s ease-out;
}

/* PAULA SCHER HEADLINE TREATMENT */
.headline {
  font-family: 'Anton', sans-serif;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: left;
  margin-left: -0.05em;
}

.headline-line { display: block; overflow: hidden; }
.headline-line span {
  display: inline-block;
  animation: revealUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateY(105%);
}
.headline-line:nth-child(1) span { animation-delay: 0.1s; }
.headline-line:nth-child(2) span { animation-delay: 0.2s; }
.headline-line:nth-child(3) span { animation-delay: 0.35s; }
.headline-line:nth-child(4) span { animation-delay: 0.5s; }

.line-new {
  font-size: clamp(6rem, 28vw, 18rem);
  color: var(--white);
  line-height: 0.85;
}

.line-yorkers {
  font-size: clamp(4.5rem, 20vw, 14rem);
  color: var(--white);
  line-height: 0.85;
}

.line-dont {
  font-size: clamp(4rem, 18vw, 13rem);
  color: var(--aqua);
  margin-top: -0.1rem;
  line-height: 0.85;
}

/* Commercial page headline */
.line-commercial {
  font-size: clamp(5rem, 22vw, 14rem);
  color: var(--white);
  line-height: 0.85;
}

.line-services {
  font-size: clamp(5rem, 22vw, 14rem);
  color: var(--aqua);
  line-height: 0.85;
}

/* Pricing page headline */
.line-pricing-simple {
  font-size: clamp(6rem, 28vw, 18rem);
  color: var(--white);
  line-height: 0.85;
}

.line-pricing-word {
  font-size: clamp(5rem, 24vw, 16rem);
  color: var(--aqua);
  line-height: 0.85;
}

/* Contact page headline */
.line-contact-lets {
  font-size: clamp(6rem, 28vw, 18rem);
  color: var(--white);
  line-height: 0.85;
}

.line-contact {
  font-size: clamp(6rem, 28vw, 18rem);
  color: var(--aqua);
  line-height: 0.85;
}

/* Blog page headline */
.line-blog-the {
  font-size: clamp(6rem, 28vw, 18rem);
  color: var(--white);
  line-height: 0.85;
}

.line-blog-word {
  font-size: clamp(6rem, 28vw, 18rem);
  color: var(--aqua);
  line-height: 0.85;
}

.subhead {
  max-width: 480px;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-70);
  animation: fadeIn 0.8s ease-out 0.7s forwards;
  opacity: 0;
}

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

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: flex-start;
  animation: fadeIn 0.8s ease-out 0.9s forwards;
  opacity: 0;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
  background: var(--aqua);
  color: var(--black);
  padding: 0.875rem 1.5rem;
  min-height: var(--tap-target);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid var(--aqua);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: transparent;
  color: var(--aqua);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.875rem 1.5rem;
  min-height: var(--tap-target);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--text-50);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--aqua);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid var(--black);
  display: inline-block;
}

.btn-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid var(--black);
  display: inline-block;
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--aqua);
}

/* Jump link */
.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--text-50);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
  animation: fadeIn 0.8s ease-out 1.1s forwards;
  opacity: 0;
}

.jump-link:hover { color: var(--aqua); }
.jump-link svg { width: 16px; height: 16px; animation: bounceDown 1.5s infinite 2s; }

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-40);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2s infinite 1.5s;
}

.scroll-indicator svg { width: 20px; height: 20px; stroke: var(--aqua); }

/* ===========================================
   SOCIAL PROOF BAR
   =========================================== */
.social-proof-bar {
  background: var(--aqua);
  color: var(--black);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proof-item svg { width: 18px; height: 18px; }

/* ===========================================
   TRUST BADGES
   =========================================== */
.trust-section {
  background: var(--charcoal);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--text-40);
}

.trust-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-50);
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-70);
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, rgba(91, 196, 200, 0.1) 0%, rgba(91, 196, 200, 0.05) 100%);
  border-top: 2px solid var(--aqua);
  border-bottom: 2px solid var(--aqua);
  padding: 2.5rem 2rem;
  text-align: center;
}

.promo-inner {
  max-width: 700px;
  margin: 0 auto;
}

.promo-badge {
  display: inline-block;
  background: var(--aqua);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.promo-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.promo-headline span {
  color: var(--aqua);
}

.promo-detail {
  font-size: 0.8rem;
  color: var(--text-50);
  margin-bottom: 1.5rem;
}

.promo-banner .btn-primary {
  font-size: 0.8rem;
  padding: 0.85rem 2rem;
}

.trust-badge svg { width: 20px; height: 20px; fill: var(--aqua); }

/* ===========================================
   SECTION HEADERS
   =========================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-50);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-title span { color: var(--aqua); }

.section-subtitle {
  margin-top: 1rem;
  color: var(--text-50);
  font-size: 0.85rem;
}

/* ===========================================
   PAGE HERO (for inner pages)
   =========================================== */
.page-hero {
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
  text-align: center;
}

.page-hero .hero-bg-text {
  position: absolute;
  font-family: 'Anton', sans-serif;
  font-size: clamp(10rem, 25vw, 25rem);
  color: rgba(91, 196, 200, 0.035);
  line-height: 0.7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}

.page-hero .section-title {
  position: relative;
  z-index: 1;
}

.page-hero .section-eyebrow {
  position: relative;
  z-index: 1;
}

.page-hero .section-subtitle {
  position: relative;
  z-index: 1;
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.how-it-works {
  background: var(--black);
  padding: 5rem 2rem;
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.steps-grid::before { display: none; }

.step-item { text-align: center; position: relative; }

.step-number {
  width: 50px;
  height: 50px;
  background: var(--aqua);
  color: var(--black);
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-60);
  line-height: 1.6;
}

/* ===========================================
   SERVICES / CARDS GRID
   =========================================== */
.services-section {
  background: var(--charcoal);
  padding: 6rem 2rem;
  position: relative;
}

.services-section::before {
  content: attr(data-watermark);
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: 'Anton', sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  color: rgba(91, 196, 200, 0.05);
  line-height: 1;
  pointer-events: none;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--black);
  border: 2px solid var(--text-40);
  padding: 2rem;
  transition: all 0.3s;
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-60);
  line-height: 1.6;
}

/* ===========================================
   PLANS / PRICING
   =========================================== */
.plans-section {
  padding: 6rem 2rem;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
}

.plans-section::before {
  content: attr(data-watermark);
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: 'Anton', sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  color: rgba(91, 196, 200, 0.05);
  line-height: 1;
  pointer-events: none;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.plan-card {
  background: var(--black);
  border: 2px solid var(--text-40);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.plan-card:hover {
  border-color: var(--aqua);
  transform: translateY(-4px);
}

.plan-card.featured {
  border: 3px solid var(--aqua);
}

.plan-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-light));
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--aqua);
  color: var(--black);
  padding: 0.4rem 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.plan-name {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  color: var(--white);
}

.plan-volume {
  font-size: 0.85rem;
  color: var(--aqua);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}

.plan-currency { font-size: 1.5rem; font-weight: 700; color: var(--aqua); }
.plan-amount { font-family: 'Anton', sans-serif; font-size: 5rem; line-height: 1; color: var(--white); }
.plan-period { font-size: 1rem; color: var(--text-40); margin-left: 0.25rem; }

.plan-anchor {
  font-size: 0.75rem;
  color: var(--text-50);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.plan-rate { font-size: 0.85rem; margin-bottom: 1rem; color: var(--text-60); }
.plan-rate strong { color: var(--aqua); }

.plan-savings {
  background: rgba(91, 196, 200, 0.1);
  border: 1px solid rgba(91, 196, 200, 0.2);
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-60);
}

.plan-savings strong { color: var(--white); }

.plan-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--aqua);
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(91, 196, 200, 0.05);
  border-radius: 2px;
}

.plan-guarantee svg { width: 14px; height: 14px; flex-shrink: 0; }

.plan-ideal {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-70);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.plan-overage {
  font-size: 0.7rem;
  color: var(--text-40);
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  min-height: var(--tap-target);
  background: transparent;
  color: var(--aqua);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--aqua);
  transition: all 0.2s;
}

.plan-cta:hover { background: var(--aqua); color: var(--black); }

.plan-card.featured .plan-cta { background: var(--aqua); color: var(--black); }
.plan-card.featured .plan-cta:hover { background: var(--white); border-color: var(--white); }

/* ===========================================
   PRICE TABLES
   =========================================== */
.price-table-section {
  background: var(--black);
  padding: 5rem 2rem;
}

.price-table-section:nth-child(even) {
  background: var(--charcoal);
}

.price-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
  text-align: left;
  padding: 1rem 0.75rem;
  border-bottom: 2px solid var(--aqua);
}

.price-table td {
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-70);
  border-bottom: 1px solid var(--text-40);
}

.price-table td:last-child {
  color: var(--white);
  font-weight: 700;
  text-align: right;
}

.price-table th:last-child {
  text-align: right;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials-section {
  background: var(--black);
  color: var(--white);
  padding: 6rem 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--charcoal);
  padding: 2rem;
  border-left: 3px solid var(--aqua);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-70);
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--aqua);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
}

.author-info { font-size: 0.85rem; }
.author-name { font-weight: 700; color: var(--white); }
.author-location { color: var(--text-50); font-size: 0.75rem; }

/* ===========================================
   FAQ ACCORDION
   =========================================== */
.faq-section {
  background: var(--charcoal);
  color: var(--white);
  padding: 6rem 2rem;
}

.faq-grid { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--text-40);
  padding: 1.5rem 0;
}

.faq-question {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--aqua);
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-60);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 1rem;
}

/* ===========================================
   DOWNLOAD APP
   =========================================== */
.app-section {
  padding: 5rem 2rem;
  background: var(--charcoal);
}
.app-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.app-text {
  flex: 1;
}
.app-text .section-eyebrow {
  margin-bottom: 0.5rem;
}
.app-text .section-title {
  margin-bottom: 1.25rem;
}
.app-desc {
  font-size: 0.85rem;
  color: var(--text-60);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.app-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.app-badges a {
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}
.app-badges a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.app-badges img {
  height: 50px;
  width: auto;
}
.app-phone {
  flex: 0 0 auto;
}
.app-phone img {
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
  .app-section { padding: 3rem 1.25rem; }
  .app-content {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }
  .app-desc { margin-left: auto; margin-right: auto; }
  .app-badges { justify-content: center; }
  .app-phone img { max-width: 260px; }
}

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta-section {
  background: var(--aqua);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: attr(data-watermark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Anton', sans-serif;
  font-size: clamp(12rem, 35vw, 30rem);
  color: rgba(10, 10, 10, 0.05);
  pointer-events: none;
}

.final-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--black);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.final-subhead {
  color: var(--text-black-60);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: var(--black);
  border-top: 1px solid var(--text-40);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-info {
  font-size: 0.75rem;
  color: var(--text-50);
  line-height: 1.8;
}

.footer-info strong {
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-info a { color: var(--aqua); text-decoration: none; transition: color 0.2s; }
.footer-info a:hover { color: var(--white); }

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-50);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.footer-promos {
  margin-top: 0.5rem;
  gap: 1.5rem;
  align-items: center;
}

.footer-promo-label {
  color: var(--aqua);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.footer-social a {
  color: var(--text-50);
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--aqua);
}

.footer-credit {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--text-40);
  font-size: 0.65rem;
  color: var(--text-40);
  letter-spacing: 0.1em;
}

/* ===========================================
   STICKY MOBILE CTA
   =========================================== */
.sticky-mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 2px solid var(--aqua);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  z-index: 999;
  justify-content: space-between;
  align-items: center;
}

.sticky-mobile-cta .sticky-info { font-size: 0.75rem; }

.sticky-mobile-cta .sticky-price {
  color: var(--aqua);
  font-family: 'Anton', sans-serif;
  font-size: 1.25rem;
}

.sticky-mobile-cta .sticky-label {
  color: var(--text-50);
  font-size: 0.65rem;
}

.sticky-mobile-cta .sticky-btn {
  background: var(--aqua);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===========================================
   CHAT WIDGET
   =========================================== */
.chat-trigger {
  position: fixed;
  bottom: 80px;
  left: auto;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua) 0%, #4BA8AC 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(91, 196, 200, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(91, 196, 200, 0.5);
}

.chat-trigger svg { width: 24px; height: 24px; fill: var(--black); }

.chat-trigger::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(91, 196, 200, 0.4);
  animation: beacon 2s infinite;
}

@keyframes beacon {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.chat-window {
  position: fixed;
  bottom: 140px;
  left: 12px;
  right: auto;
  width: calc(100vw - 24px);
  max-width: 380px;
  height: calc(100vh - 180px);
  max-height: 500px;
  background: var(--black);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  border: 2px solid var(--aqua);
}

.chat-window.open {
  display: flex;
  animation: chatOpen 0.3s ease-out;
}

@keyframes chatOpen {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  background: linear-gradient(135deg, var(--aqua) 0%, #4BA8AC 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.chat-header-info h3 {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  font-family: 'Space Mono', monospace;
}

.chat-header-info p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 12px;
  margin: 0;
}

.chat-header-actions { display: flex; align-items: center; gap: 8px; }

.language-toggle {
  display: flex;
  background: rgba(10, 10, 10, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: rgba(10, 10, 10, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Space Mono', monospace;
}

.lang-btn.active { background: var(--black); color: var(--aqua); }

.close-btn {
  background: rgba(10, 10, 10, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.close-btn:hover { background: rgba(10, 10, 10, 0.2); }
.close-btn svg { width: 16px; height: 16px; fill: var(--black); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Space Mono', monospace;
}

.message.bot {
  background: var(--charcoal);
  color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.message.user {
  background: linear-gradient(135deg, var(--aqua) 0%, #4BA8AC 100%);
  color: var(--black);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--charcoal);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--aqua);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.quick-actions {
  padding: 12px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action {
  padding: 8px 14px;
  background: rgba(91, 196, 200, 0.1);
  border: 1px solid rgba(91, 196, 200, 0.3);
  border-radius: 20px;
  color: var(--aqua);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Space Mono', monospace;
}

.quick-action:hover {
  background: rgba(91, 196, 200, 0.2);
  border-color: var(--aqua);
}

.chat-input-container {
  padding: 16px 20px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-wrapper { display: flex; gap: 12px; align-items: center; }

#chat-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Space Mono', monospace;
  outline: none;
  transition: border-color 0.2s;
}

#chat-input:focus { border-color: var(--aqua); }
#chat-input::placeholder { color: rgba(255, 255, 255, 0.4); }

.mic-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mic-btn:hover { background: #222; border-color: var(--aqua); }
.mic-btn.recording { background: var(--aqua); border-color: var(--aqua); animation: pulse 1s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 196, 200, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(91, 196, 200, 0); }
}

.mic-btn svg { width: 20px; height: 20px; fill: var(--aqua); }
.mic-btn.recording svg { fill: var(--black); }

.send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua) 0%, #4BA8AC 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.send-btn:hover { transform: scale(1.05); }
.send-btn svg { width: 20px; height: 20px; fill: var(--black); }

.terms-link {
  text-align: center;
  padding: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  background: var(--black);
}

.terms-link a { color: var(--aqua); text-decoration: none; }
.terms-link a:hover { text-decoration: underline; }

.terms-panel {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 10;
  flex-direction: column;
}

.terms-panel.open { display: flex; }

.terms-header {
  padding: 16px 20px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-header h3 { color: var(--aqua); font-size: 16px; margin: 0; font-family: 'Space Mono', monospace; }

.terms-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.terms-content h4 { color: var(--aqua); margin: 20px 0 10px; font-size: 14px; }
.terms-content h4:first-child { margin-top: 0; }
.terms-content p { margin-bottom: 12px; }
.terms-content ul { margin: 0 0 12px 20px; }

/* Markdown in messages */
.message p { margin: 0 0 12px; line-height: 1.6; }
.message p:last-child { margin-bottom: 0; }
.message ul, .message ol { margin: 12px 0; padding-left: 20px; }
.message li { margin: 6px 0; line-height: 1.5; }
.message strong { font-weight: 600; }
.message a { color: var(--aqua); text-decoration: underline; }
.message.bot { line-height: 1.6; }

.streaming-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--aqua);
  margin-left: 2px;
  animation: blink 0.7s infinite;
  vertical-align: text-bottom;
}

@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ===========================================
   BOOKING MODAL
   =========================================== */
.booking-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 2000;
  overflow-y: auto;
  padding: 1rem;
}

.booking-overlay.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.booking-container {
  background: #FFFFFF;
  border-radius: 8px;
  max-width: 520px;
  width: 100%;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.booking-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #FFFFFF;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  line-height: 1;
  z-index: 2100;
  border-radius: 50%;
  transition: background 0.2s;
}

.booking-close:hover { background: rgba(0, 0, 0, 0.8); }

.booking-header {
  background: var(--aqua);
  padding: 1.25rem 1.5rem;
  padding-right: 3.5rem;
}

.booking-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.35rem;
  color: var(--black);
  text-transform: uppercase;
}

.booking-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--black);
  opacity: 0.7;
  margin-top: 0.25rem;
}

#cleancloudBooking { min-height: 500px; }

/* ===========================================
   CONTACT FORM
   =========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-email-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
}

.contact-email-cta h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.75rem;
  text-transform: uppercase;
  color: var(--white);
}

.contact-email-cta p {
  font-size: 0.85rem;
  color: var(--text-50);
  line-height: 1.6;
  max-width: 400px;
}

.info-card {
  background: var(--charcoal);
  border: 2px solid var(--text-40);
  padding: 2rem;
}

.info-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-70);
}

.info-item svg { width: 20px; height: 20px; fill: var(--aqua); flex-shrink: 0; margin-top: 2px; }
.info-item strong { color: var(--white); display: block; margin-bottom: 0.25rem; }

.map-embed {
  margin-top: 2rem;
  border: 2px solid var(--text-40);
  overflow: hidden;
}

.map-embed iframe { width: 100%; height: 300px; border: 0; filter: grayscale(1) invert(1); }

/* ===========================================
   LEGAL PAGES
   =========================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-70);
}

.legal-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--white);
  margin: 3rem 0 1rem;
}

.legal-content h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 2rem 0 0.75rem;
}

.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: 0 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content strong { color: var(--white); }

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes revealUp { to { transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===========================================
   SCROLL REVEAL ANIMATIONS
   =========================================== */

/* Base hidden state — all reveal targets start invisible */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for child elements */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.7s; }

/* Children inside a stagger parent inherit hidden state */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-stagger > * {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ===========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   =========================================== */
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 70px; }

  .hero {
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
    min-height: auto;
    padding: 85px 1rem 80px;
    justify-content: flex-start;
  }

  .hero-bg-text { display: none; }

  .headline-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: none;
  }

  .pre-hook { margin-bottom: 28px; flex-shrink: 0; }

  .headline { flex-shrink: 0; margin-top: 0; }

  .line-new { font-size: clamp(8rem, 38vw, 18rem); line-height: 0.82; }
  .line-yorkers { font-size: clamp(5.5rem, 24vw, 14rem); line-height: 0.82; }
  .line-dont { font-size: clamp(5rem, 20vw, 13rem); margin-top: 2px; line-height: 0.82; }
  .subhead { margin-top: auto; margin-bottom: auto; padding-top: 0; font-size: 0.75rem; line-height: 1.5; flex-shrink: 0; }

  .hero-cta-group { margin-top: 0; flex-shrink: 0; }
  .hero-cta-group .btn-primary { display: inline-flex; width: 100%; justify-content: center; font-size: 0.85rem; padding: 1rem; }
  .hero-cta-group .btn-secondary { display: none; }

  .jump-link { display: none; }
  .scroll-indicator { display: none !important; }

  .how-it-works,
  .plans-section,
  .testimonials-section,
  .faq-section,
  .services-section,
  .price-table-section { padding: 3rem 1.25rem; }

  .final-cta-section { padding: 2.5rem 1.25rem; }
  .trust-section { padding: 1.5rem 1.25rem; }

  .section-header { margin-bottom: 2rem; }
  .faq-question { font-size: 1.1rem; }
  .faq-item { padding: 1rem 0; }
  .plan-card { padding: 1.5rem; }
  .plan-amount { font-size: 4rem; }
  .testimonial-card { padding: 1.5rem; }
  .final-headline { font-size: clamp(2rem, 6vw, 3rem); }
  footer { padding: 2rem 1.25rem; }

  .page-hero { padding: 6rem 1.25rem 3rem; }

  .price-table td { font-size: 0.8rem; padding: 0.65rem 0.5rem; }
  .price-table th { font-size: 0.8rem; padding: 0.65rem 0.5rem; }

  .promo-banner { margin-top: 0; }
  .promo-headline { font-size: clamp(1.2rem, 5vw, 1.8rem); }
}

/* --- TABLET (600px+) --- */
@media (min-width: 600px) {
  .nav { padding: 1rem 1.5rem; }

  .hero { padding: 6rem 1.5rem 4rem; }

  .social-proof-bar { padding: 1.25rem 1.5rem; gap: 2rem; font-size: 0.75rem; }
  .trust-badges { gap: 2rem; }

  .plans-grid { grid-template-columns: repeat(2, 1fr); padding: 0 1rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }

  .hero-cta-group { flex-direction: row; flex-wrap: wrap; align-items: center; }

  .chat-trigger { bottom: 90px; left: auto; right: 20px; width: 52px; height: 52px; }
  .chat-trigger svg { width: 24px; height: 24px; }
  .chat-window { left: auto; right: 20px; width: 360px; height: 480px; bottom: 160px; }

  .booking-container { margin: 2rem auto; }
}

@media (max-width: 600px) {
  .booking-overlay { padding: 0; }
  .booking-container { margin: 0; border-radius: 0; min-height: 100vh; max-width: 100%; }
  #cleancloudBooking { min-height: calc(100vh - 80px); }
}

/* --- DESKTOP (900px+) --- */
@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-links { display: flex; }

  .hero { padding: 6rem 2rem 4rem; }

  /* Desktop: left-side dark gradient overlay instead of uniform */
  .hero::before {
    background: linear-gradient(to right, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.8) 45%, rgba(10, 10, 10, 0.3) 70%, transparent 100%);
  }

  .headline-container { max-width: 60%; padding-left: 2rem; }

  /* Contact hero: right-side gradient, text right */
  .hero-contact::before {
    background: linear-gradient(to left, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.8) 45%, rgba(10, 10, 10, 0.3) 70%, transparent 100%);
  }
  .hero-contact .headline-container { margin-left: auto; padding-left: 0; padding-right: 2rem; }

  .line-new { font-size: clamp(5.75rem, 13.8vw, 11.5rem); }
  .line-yorkers { font-size: clamp(5.75rem, 13.8vw, 11.5rem); }
  .line-dont { font-size: clamp(3.45rem, 8.6vw, 8rem); }
  .line-pricing-simple { font-size: clamp(6rem, 14vw, 13rem); }
  .line-pricing-word { font-size: clamp(5.5rem, 13vw, 12rem); }
  .line-commercial { font-size: clamp(5rem, 11vw, 10rem); }
  .line-services { font-size: clamp(5rem, 11vw, 10rem); }
  .line-contact-lets { font-size: clamp(6rem, 14vw, 13rem); }
  .line-contact { font-size: clamp(6rem, 14vw, 13rem); }
  .line-blog-the { font-size: clamp(6rem, 14vw, 13rem); }
  .line-blog-word { font-size: clamp(6rem, 14vw, 13rem); }
  .social-proof-bar { gap: 3rem; font-size: 0.8rem; padding: 1.25rem 2rem; }
  .trust-badges { gap: 2.5rem; }

  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before {
    display: block;
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 15%; right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--aqua), var(--aqua-light), var(--aqua));
    opacity: 0.3;
  }

  .plans-grid { grid-template-columns: repeat(3, 1fr); padding: 0; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }

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

  .footer-content { flex-direction: row; justify-content: space-between; text-align: left; }
  .scroll-indicator { display: flex; }

  .sticky-mobile-cta { display: none; }
  body { padding-bottom: 0; }

  .chat-trigger { bottom: 24px; left: auto; right: 24px; width: 60px; height: 60px; }
  .chat-trigger svg { width: 28px; height: 28px; }
  .chat-window { left: auto; right: 24px; width: 380px; height: 520px; bottom: 100px; max-height: calc(100vh - 140px); }

  .page-hero { padding: 10rem 3rem 5rem; }
}

/* --- LARGE DESKTOP (1200px+) --- */
@media (min-width: 1200px) {
  .hero { padding: 6rem 3rem 5rem; }

  .headline-container { max-width: 55%; padding-left: 3rem; }
  .hero-contact .headline-container { padding-left: 0; padding-right: 3rem; }

  .plans-section,
  .testimonials-section,
  .how-it-works,
  .faq-section,
  .services-section { padding: 6rem 3rem; }

  .social-proof-bar { padding: 1.5rem 3rem; }
}

/* ===========================================
   BLOG COMPONENTS
   =========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.blog-entry-section {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.blog-entry-section .blog-card {
  max-width: 900px;
  margin: 0 auto;
}

.blog-draft .blog-card {
  border: 2px dashed rgba(92, 224, 210, 0.3) !important;
  opacity: 0.35;
}
.blog-draft .blog-card:hover {
  opacity: 0.6;
}

.blog-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.blog-card:hover {
  border-color: var(--aqua);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-50);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--aqua);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--aqua);
  padding: 0.2rem 0.6rem;
}

.blog-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-70);
  line-height: 1.6;
}

.blog-card-body {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-70);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.blog-card-body p:last-child { margin-bottom: 0; }
.blog-card-body strong { color: var(--white); }
.blog-card-body a { color: var(--aqua); }
.blog-card-body a:hover { color: var(--white); }

.blog-card.expanded .blog-card-body { display: block; }
.blog-card.expanded { border-color: var(--aqua); }

@media (min-width: 900px) {
  .blog-card { padding: 2.5rem; }
  .blog-card-title { font-size: 1.8rem; }
}
