/* ================================================================
   synta-badge — Powered by Synta.live (Community Partnership)
================================================================ */
.synta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--zinc-500);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.synta-badge:hover {
  color: var(--zinc-300);
  background: rgba(255,255,255,0.1);
}
.synta-badge svg { flex-shrink: 0; opacity: 0.7; }

/* ================================================================
   SPARKLE CLEANING CO — PREMIUM CSS
   taste-skill: DESIGN_VARIANCE=8, MOTION_INTENSITY=6, VISUAL_DENSITY=3
   Accent: Emerald (#10b981). Base: Zinc-950 / Zinc-50.
   Font: Outfit (display), Plus Jakarta Sans (body)
================================================================ */

/* -------- RESET & BASE -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald:      #10b981;
  --emerald-dark: #059669;
  --emerald-dim:  #d1fae5;
  --zinc-950:     #09090b;
  --zinc-900:     #18181b;
  --zinc-800:     #27272a;
  --zinc-600:     #52525b;
  --zinc-400:     #a1a1aa;
  --zinc-200:     #e4e4e7;
  --zinc-100:     #f4f4f5;
  --zinc-50:      #fafafa;
  --white:        #ffffff;

  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-2xl: 2.5rem;

  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --section-gap: clamp(6rem, 10vw, 10rem);
  --container:   1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--zinc-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* -------- CONTAINER -------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* -------- TYPOGRAPHY -------- */
.outfit { font-family: 'Outfit', sans-serif; }

/* -------- SCROLL REVEAL -------- */
.reveal-item {
  opacity: 0;
  transform: translateY(2.5rem);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Stagger siblings */
.reveal-item:nth-child(1) { transition-delay: 0ms; }
.reveal-item:nth-child(2) { transition-delay: 80ms; }
.reveal-item:nth-child(3) { transition-delay: 160ms; }
.reveal-item:nth-child(4) { transition-delay: 240ms; }
.reveal-item:nth-child(5) { transition-delay: 320ms; }
.reveal-item:nth-child(6) { transition-delay: 400ms; }

/* -------- EYEBROW -------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
  border-radius: 999px;
  padding: 0.25rem 0.875rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zinc-600);
  margin-bottom: 1.25rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.75); }
}

/* -------- BUTTONS -------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--zinc-950);
  color: var(--white);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease-spring), transform 0.15s var(--ease-out);
  cursor: pointer;
}
.btn-primary:hover { background: var(--zinc-800); }
.btn-primary:active { transform: scale(0.98); }

.btn-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.btn-primary:hover .btn-icon {
  transform: translate(2px, -2px) scale(1.05);
  background: rgba(255,255,255,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--zinc-600);
  border-radius: 999px;
  padding: 0.75rem 1.375rem;
  border: 1px solid var(--zinc-200);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  cursor: pointer;
}
.btn-ghost:hover {
  color: var(--zinc-900);
  border-color: var(--zinc-400);
  background: var(--zinc-50);
}
.btn-ghost-light {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* -------- FLOATING ISLAND NAV -------- */
.nav-shell {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  pointer-events: none;
}

.nav-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 0.5rem 0.625rem 0.5rem 1.25rem;
  max-width: 900px;
  width: 100%;
  transition: box-shadow 0.4s var(--ease-out);
}
.nav-pill.scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--zinc-950);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--emerald-dark); }
.nav-logo svg { color: var(--emerald); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
}
.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-600);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--zinc-900); background: var(--zinc-100); }
.nav-link.active { color: var(--zinc-950); background: var(--zinc-100); font-weight: 600; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--zinc-950);
  color: var(--white);
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--zinc-800); }
.nav-cta:active { transform: scale(0.97); }
.nav-cta-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px; height: 36px;
  border: none;
  background: var(--zinc-100);
  border-radius: 50%;
  cursor: pointer;
  gap: 5px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--zinc-200); }
.ham-line {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--zinc-900);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.35s var(--ease-spring), opacity 0.2s;
}
.hamburger.is-open .ham-top { transform: translateY(3.25px) rotate(45deg); }
.hamburger.is-open .ham-bot { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-inner { text-align: center; }
.mobile-nav-links { margin-bottom: 2.5rem; }
.mobile-nav-link {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--zinc-900);
  padding: 0.375rem 0;
  transition: color 0.2s, transform 0.2s var(--ease-spring);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s;
}
.mobile-menu.is-open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-nav-link:nth-child(1) { transition-delay: 60ms; }
.mobile-menu.is-open .mobile-nav-link:nth-child(2) { transition-delay: 100ms; }
.mobile-menu.is-open .mobile-nav-link:nth-child(3) { transition-delay: 140ms; }
.mobile-menu.is-open .mobile-nav-link:nth-child(4) { transition-delay: 180ms; }
.mobile-menu.is-open .mobile-nav-link:nth-child(5) { transition-delay: 220ms; }
.mobile-nav-link:hover { color: var(--emerald-dark); }
.mobile-cta {
  display: inline-block;
  background: var(--zinc-950);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.4s var(--ease-out) 0.28s, transform 0.4s var(--ease-out) 0.28s;
}
.mobile-menu.is-open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

/* -------- HERO -------- */
.hero {
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* Hero text column */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--zinc-950);
  margin-bottom: 1.5rem;
}
.hero-em {
  font-style: normal;
  color: var(--emerald-dark);
  position: relative;
}

.hero-body {
  font-size: 1.0625rem;
  color: var(--zinc-600);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.proof-avatars {
  display: flex;
}
.proof-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  border: 2px solid var(--white);
  color: var(--emerald-dark);
  margin-right: -8px;
}
.proof-av:last-child { background: var(--emerald); color: var(--white); }
.proof-text {
  font-size: 0.8125rem;
  color: var(--zinc-600);
  line-height: 1.4;
  margin-left: 0.625rem;
}
.proof-stars {
  display: block;
  color: var(--emerald-dark);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* Hero visual column */
.hero-visual { position: relative; }

/* Double-bezel hero image */
.hero-img-bezel {
  background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
  border-radius: var(--radius-2xl);
  padding: 0.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.1);
}
.hero-img-inner {
  border-radius: calc(var(--radius-2xl) - 0.5rem);
  overflow: hidden;
  background: var(--zinc-200);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.5);
  aspect-ratio: 4/5;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating stat cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09), inset 0 1px 0 rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-card 4s ease-in-out infinite;
}
.hero-float-top {
  top: 1.5rem; left: -2rem;
  animation-delay: 0s;
}
.hero-float-bot {
  bottom: 2rem; left: -1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  animation-delay: 1.5s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.float-card-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--emerald-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-dark);
  flex-shrink: 0;
}
.float-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  color: var(--zinc-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.float-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--zinc-900);
}
.float-card-stars {
  font-size: 0.875rem;
  color: var(--emerald-dark);
  letter-spacing: 0.1em;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zinc-400);
}
.scroll-track {
  width: 1.5px; height: 48px;
  background: var(--zinc-200);
  border-radius: 999px;
  overflow: hidden;
}
.scroll-thumb {
  width: 100%; height: 40%;
  background: var(--emerald);
  border-radius: 999px;
  animation: scroll-thumb 2s var(--ease-out) infinite;
}
@keyframes scroll-thumb {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}

/* -------- MARQUEE STRIP -------- */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--zinc-200);
  border-bottom: 1px solid var(--zinc-200);
  background: var(--zinc-50);
  padding: 0.875rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--zinc-600);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--emerald) !important;
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* -------- SECTIONS -------- */
.section {
  padding: var(--section-gap) 0;
}

.section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.section-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--zinc-950);
}

/* -------- BENTO GRID -------- */
.bento-section { background: var(--zinc-50); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--zinc-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out), border-color 0.25s;
}
.bento-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  border-color: var(--zinc-300);
}

.bento-wide   { grid-column: span 2; }
.bento-tall   { grid-row: span 2; }
.bento-accent {
  background: var(--zinc-950);
  border-color: var(--zinc-900);
}
.bento-accent:hover { border-color: var(--zinc-700); }

.bento-tag {
  display: inline-block;
  background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zinc-600);
  margin-bottom: 1.25rem;
}
.bento-tag-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}

.bento-h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zinc-950);
  line-height: 1.25;
  margin-bottom: 0.875rem;
}
.bento-h3-light { color: var(--white); }

.bento-body { font-size: 0.9375rem; color: var(--zinc-600); line-height: 1.65; }
.bento-body-light { color: rgba(255,255,255,0.65); }

.bento-metric {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--zinc-950);
  line-height: 1;
}
.metric-label {
  font-size: 0.8125rem;
  color: var(--zinc-500);
  margin-top: 0.25rem;
}

.bento-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--emerald-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-dark);
  margin-bottom: 1.25rem;
}

.bento-team-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--emerald);
  color: var(--white);
  border-radius: 999px;
  padding: 0.625rem 1.125rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.75rem;
  transition: background 0.25s var(--ease-spring), transform 0.15s;
}
.bento-cta:hover { background: var(--emerald-dark); }
.bento-cta:active { transform: scale(0.97); }
.bento-cta-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}

/* -------- SERVICES LIST -------- */
.services-section { background: var(--white); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-more-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-600);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.services-more-btn:hover { color: var(--zinc-900); border-color: var(--zinc-400); }

.services-list { border-top: 1px solid var(--zinc-200); }

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto 2rem;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--zinc-200);
  transition: background 0.2s, padding 0.25s var(--ease-spring);
  border-radius: 0;
  cursor: pointer;
}
.service-row:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  background: var(--zinc-50);
  border-radius: var(--radius-md);
  border-color: transparent;
}
.service-row:hover .service-arrow {
  transform: translate(3px, -3px);
  color: var(--emerald-dark);
}

.service-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--zinc-300);
  letter-spacing: 0.05em;
}

.service-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--zinc-950);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.service-text p {
  font-size: 0.875rem;
  color: var(--zinc-500);
  line-height: 1.55;
}

.service-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tag {
  display: inline-block;
  background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
  border-radius: 999px;
  padding: 0.2rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--zinc-600);
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}

.service-arrow {
  color: var(--zinc-400);
  transition: transform 0.3s var(--ease-spring), color 0.2s;
  display: flex;
}

/* -------- STEPS -------- */
.steps-section { background: var(--zinc-950); color: var(--white); }
.steps-section .section-h2 { color: var(--white); }
.steps-section .section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.steps-section .eyebrow {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.step-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625rem;
}
.step-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.steps-connector {
  display: flex;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}

/* -------- TESTIMONIALS -------- */
.testimonials-section { background: var(--zinc-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--zinc-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.testi-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.testi-featured {
  background: var(--zinc-950);
  border-color: var(--zinc-900);
}
.testi-featured .testi-quote { color: rgba(255,255,255,0.75); }
.testi-featured .testi-name  { color: var(--white); }
.testi-featured .testi-loc   { color: rgba(255,255,255,0.45); }

.testi-stars {
  font-size: 0.875rem;
  color: var(--emerald-dark);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.testi-quote {
  font-size: 0.9375rem;
  color: var(--zinc-700);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--zinc-950);
}
.testi-loc { font-size: 0.8125rem; color: var(--zinc-500); }

/* -------- CTA SECTION -------- */
.cta-section { background: var(--white); }

/* Double-bezel CTA card */
.cta-bezel {
  background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
  border-radius: var(--radius-2xl);
  padding: 0.625rem;
  box-shadow: 0 2px 48px rgba(0,0,0,0.06);
}
.cta-inner {
  background: var(--zinc-950);
  border-radius: calc(var(--radius-2xl) - 0.5rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.cta-img-col { overflow: hidden; }
.cta-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.cta-bezel:hover .cta-img { transform: scale(1.03); }

.cta-content-col {
  padding: clamp(2.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-content-col .eyebrow-light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

.cta-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: var(--emerald);
  color: var(--white);
}
.cta-actions .btn-primary:hover { background: var(--emerald-dark); }

/* -------- FOOTER -------- */
.footer {
  background: var(--white);
  border-top: 1px solid var(--zinc-200);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo { margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--zinc-500);
  line-height: 1.65;
  max-width: 30ch;
  margin-bottom: 1.25rem;
}

.footer-social { display: flex; gap: 0.5rem; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--zinc-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--zinc-500);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover {
  color: var(--zinc-900);
  border-color: var(--zinc-400);
  background: var(--zinc-50);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zinc-400);
  margin-bottom: 1.125rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--zinc-600);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--zinc-950); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--zinc-600);
  margin-bottom: 0.625rem;
}
.footer-contact p svg { color: var(--zinc-400); flex-shrink: 0; }
.footer-contact a:hover { color: var(--emerald-dark); }

.footer-bottom {
  border-top: 1px solid var(--zinc-200);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--zinc-400);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.8125rem;
  color: var(--zinc-400);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--zinc-700); }

/* -------- RESPONSIVE -------- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-wide { grid-column: span 2; }
  .bento-tall { grid-row: span 1; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps-connector { transform: rotate(90deg); padding: 0.5rem 0; }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { order: -1; }
  .hero-float-top { left: 0; top: 0.75rem; }
  .hero-float-bot { left: 0.75rem; bottom: 1rem; }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-wide, .bento-tall { grid-column: span 1; grid-row: span 1; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .service-row {
    grid-template-columns: 2.5rem 1fr 1.5rem;
    grid-template-rows: auto auto;
  }
  .service-tags { display: none; }
  .service-arrow { grid-row: 1; grid-column: 3; }

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

  .cta-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav-pill { gap: 0.75rem; padding: 0.375rem 0.5rem 0.375rem 1rem; }
  .hero-h1 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
