/**
 * Złoty Standard — Premium Buyer Advisory Landing Page
 * Version: 2.0.0 — Production-grade rebuild
 *
 * Base: html { font-size: 10px } — 1rem = 10px (inherited from theme)
 * Tailwind CDN handles layout utilities (flex, grid, spacing).
 * This CSS: custom properties, typography, components, animations, responsive.
 */


/* ========================================
   1. CUSTOM PROPERTIES
   ======================================== */

:root {
  /* Brand Palette */
  --zs-gold: #C5A55A;
  --zs-gold-hover: #D4B76A;
  --zs-gold-dark: #8F7530;
  --zs-gold-light: #E8D5A3;
  --zs-gold-glow: rgba(197, 165, 90, 0.15);
  --zs-navy: #0A1628;
  --zs-navy-light: #132238;
  --zs-navy-medium: #1A2D45;
  --zs-cream: #FAF8F3;
  --zs-sand: #F3EDE2;
  --zs-white: #FFFFFF;

  /* Text */
  --zs-text: #0A1628;
  --zs-text-secondary: rgba(10, 22, 40, 0.75);
  --zs-text-muted: rgba(10, 22, 40, 0.5);
  --zs-text-on-dark: rgba(255, 255, 255, 0.92);
  --zs-text-on-dark-muted: rgba(255, 255, 255, 0.5);

  /* Borders */
  --zs-border: rgba(10, 22, 40, 0.15);
  --zs-border-strong: rgba(10, 22, 40, 0.25);

  /* Typography */
  --zs-serif: 'Taviraj', Georgia, 'Times New Roman', serif;
  --zs-sans: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --zs-section-py: clamp(80px, 10vw, 140px);
  --zs-gutter: clamp(24px, 4vw, 48px);
  --zs-max-w: 1400px;

  /* Easing */
  --zs-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --zs-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ========================================
   2. BASE / SCOPE
   ======================================== */

.zs-landing {
  font-family: var(--zs-sans);
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--zs-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

.zs-landing a {
  color: inherit;
  text-decoration: none;
}

/* Typography classes */
.zs-landing .zs-serif {
  font-family: var(--zs-serif);
  font-weight: 300;
}

.zs-landing .zs-sans {
  font-family: var(--zs-sans);
}


/* ========================================
   3. SECTION CONTAINER
   ======================================== */

.zs-section {
  padding: var(--zs-section-py) 0;
  position: relative;
}

.zs-container {
  max-width: var(--zs-max-w);
  margin: 0 auto;
  padding: 0 var(--zs-gutter);
}

/* Section backgrounds */
.zs-section--cream { background: var(--zs-cream); }
.zs-section--white { background: var(--zs-white); }
.zs-section--navy  { background: var(--zs-navy); color: var(--zs-text-on-dark); }
.zs-section--sand  { background: var(--zs-sand); }


/* ========================================
   4. EYEBROW / SECTION HEADERS
   ======================================== */

.zs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.zs-eyebrow__line {
  width: 40px;
  height: 1px;
  background: var(--zs-gold);
  flex-shrink: 0;
}

.zs-eyebrow__text {
  font-family: var(--zs-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--zs-gold);
}

.zs-section--navy .zs-eyebrow__text {
  color: var(--zs-gold-light);
}

.zs-section-title {
  font-family: var(--zs-serif);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.zs-section-title em {
  color: var(--zs-gold);
  font-style: italic;
}

.zs-section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--zs-text-secondary);
  max-width: 560px;
}

.zs-section--navy .zs-section-subtitle {
  color: var(--zs-text-on-dark-muted);
}

/* Gold separator line */
.zs-gold-line {
  width: 60px;
  height: 1px;
  background: var(--zs-gold);
  margin: 24px 0;
}

.zs-gold-line--center {
  margin-left: auto;
  margin-right: auto;
}


/* ========================================
   4b. SOCIAL PROOF BAR (pod hero)
   ======================================== */

.zs-social-proof {
  background: var(--zs-navy);
  padding: 32px 0;
  border-top: 1px solid rgba(197, 165, 90, 0.12);
  border-bottom: 1px solid rgba(197, 165, 90, 0.12);
}

.zs-social-proof__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.zs-social-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}

.zs-social-proof__number {
  font-family: var(--zs-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--zs-gold);
  line-height: 1.2;
}

.zs-social-proof__label {
  font-family: var(--zs-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.zs-social-proof__divider {
  width: 1px;
  height: 40px;
  background: rgba(197, 165, 90, 0.25);
}

@media (max-width: 640px) {
  .zs-social-proof {
    padding: 24px 0;
  }
  .zs-social-proof__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    justify-items: center;
  }
  .zs-social-proof__divider {
    display: none;
  }
  .zs-social-proof__number {
    font-size: 24px;
  }
  .zs-social-proof__label {
    font-size: 9px;
  }
}


/* ========================================
   4c. OFF-MARKET CTA (light button on dark bg)
   ======================================== */

.zs-btn-primary--light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(8px);
}

.zs-btn-primary--light:hover {
  background: var(--zs-gold);
  border-color: var(--zs-gold);
  color: #fff;
}


/* ========================================
   4d. FORM CHECKBOX (RODO)
   ======================================== */

.zs-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  color: var(--zs-text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.zs-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--zs-gold);
  cursor: pointer;
}

.zs-form__checkbox a {
  color: var(--zs-gold);
  text-decoration: underline;
}


/* ========================================
   5. HERO
   ======================================== */

.zs-hero {
  position: relative;
  min-height: 95svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--zs-navy);
  overflow-anchor: none;
}

.zs-hero__bg {
  position: absolute;
  inset: 0;
}

.zs-hero__bg img,
.zs-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.72) 45%,
    rgba(10, 22, 40, 0.55) 100%
  );
  z-index: 2;
}

.zs-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--zs-max-w);
  margin: 0 auto;
  padding: 0 var(--zs-gutter);
  min-height: 95svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Hero entrance animation */
[data-hero-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-hero-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zs-hero__headline {
  font-family: var(--zs-serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  max-width: 780px;
}

.zs-hero__headline em {
  color: var(--zs-gold);
  font-style: italic;
}

.zs-hero__subtitle {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* Hero CTA buttons */
.zs-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
}

/* Primary CTA button */
.zs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--zs-gold);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--zs-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s var(--zs-ease);
  position: relative;
  overflow: hidden;
}

.zs-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--zs-gold-hover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--zs-ease);
  z-index: 0;
}

.zs-btn-primary:hover::before {
  transform: scaleX(1);
}

.zs-btn-primary span,
.zs-btn-primary svg {
  position: relative;
  z-index: 1;
}

.zs-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.35);
}

.zs-btn-primary svg {
  transition: transform 0.3s var(--zs-ease);
}

.zs-btn-primary:hover svg {
  transform: translateX(4px);
}

/* Ghost CTA button */
.zs-landing a.zs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--zs-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 16px 4px;
  transition: color 0.3s ease;
}

.zs-landing a.zs-btn-ghost:hover {
  color: var(--zs-gold);
}

/* Hero stat badge */
.zs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
}

.zs-hero__badge-number {
  font-family: var(--zs-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--zs-gold);
  line-height: 1;
}

.zs-hero__badge-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  max-width: 140px;
}

/* Scroll indicator */
.zs-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.zs-scroll-indicator__text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-rl;
}

.zs-scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: var(--zs-gold);
  opacity: 0.4;
  animation: zs-scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes zs-scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50%      { opacity: 0.6; transform: scaleY(1); }
}


/* Hero duo layout — text left, form right, centered */
.zs-hero__content--duo {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.zs-hero__copy {
  min-width: 0;
}

/* Trust line under subtitle */
.zs-hero__trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.zs-hero__trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--zs-gold);
  opacity: 0.6;
}

/* Hero form card — frosted glass */
.zs-hero-form-card {
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(32px) saturate(1.2);
  -webkit-backdrop-filter: blur(32px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.zs-hero-form-card__header {
  font-family: var(--zs-serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.zs-hero-form-card__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 24px;
}

.zs-hero-form__field {
  margin-bottom: 14px;
}

.zs-hero-form__field input,
.zs-hero-form__field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #fff;
  font-family: var(--zs-sans);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.zs-hero-form__field input:focus,
.zs-hero-form__field select:focus {
  border-color: var(--zs-gold);
  background: rgba(255, 255, 255, 0.1);
}

.zs-hero-form__field select option {
  background: var(--zs-navy);
  color: #fff;
}

.zs-hero-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.zs-hero-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 4px;
  background: var(--zs-gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--zs-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.zs-hero-form__btn:hover {
  background: var(--zs-gold-hover);
  transform: translateY(-1px);
}

.zs-hero-form-card__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
  .zs-hero__content--duo {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .zs-hero__form-col {
    max-width: 420px;
  }
  .zs-hero__trust-line {
    flex-wrap: wrap;
  }
}

/* 2-step transitions */
.zs-hero-step {
  animation: zs-fadeIn 0.3s ease;
}

.zs-hero-step--hidden {
  display: none !important;
}

@keyframes zs-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Service toggle in hero */
.zs-hero-service-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.zs-hero-service-btn {
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--zs-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zs-hero-service-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.zs-hero-service-btn.is-active {
  background: rgba(197, 165, 90, 0.15);
  border-color: var(--zs-gold);
  color: var(--zs-gold);
}

/* RODO checkbox in hero */
.zs-hero-form__rodo {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  cursor: pointer;
}

.zs-hero-form__rodo input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--zs-gold);
}

.zs-hero-form__rodo span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.zs-hero-form__rodo a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

/* Back button */
.zs-hero-form__back {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 8px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--zs-sans);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.zs-hero-form__back:hover {
  color: #fff;
}

/* Success state */
.zs-hero-form__success {
  text-align: center;
  padding: 32px 0;
}

.zs-hero-form__success h3 {
  font-family: var(--zs-serif);
  font-size: 24px;
  color: #fff;
  margin: 16px 0 8px;
}

.zs-hero-form__success p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .zs-hero-form-card {
    padding: 24px 20px;
  }
}

/* Legacy split layout */
.zs-hero__content--split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1023px) {
  .zs-hero__content--split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .zs-hero__form-col {
    max-width: 420px;
  }
}


/* Service level toggle */
.zs-service-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.zs-service-btn {
  padding: 10px 8px;
  background: transparent;
  border: 1px solid var(--zs-sand);
  border-radius: 6px;
  font-family: var(--zs-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zs-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.zs-service-btn:hover {
  border-color: var(--zs-gold);
  color: var(--zs-gold);
}

.zs-service-btn.is-active {
  background: var(--zs-gold);
  border-color: var(--zs-gold);
  color: #fff;
}


/* ========================================
   6. PROBLEM CARDS
   ======================================== */

.zs-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.zs-problem__card {
  background: var(--zs-white);
  border: 1px solid var(--zs-border);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.5s var(--zs-ease),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}

.zs-problem__card:hover {
  transform: translateY(-6px);
  border-color: var(--zs-gold-light);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.06);
}

.zs-problem__card-stat {
  font-family: var(--zs-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--zs-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.zs-problem__card-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zs-text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.zs-problem__card-title {
  font-family: var(--zs-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--zs-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.zs-problem__card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--zs-text-secondary);
}

/* Gold top line accent on hover */
.zs-problem__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--zs-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--zs-ease);
}

.zs-problem__card:hover::before {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .zs-problem-grid { grid-template-columns: 1fr; }
}


/* ========================================
   7. PHILOSOPHY / PILLARS
   ======================================== */

.zs-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.zs-philosophy__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.zs-philosophy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--zs-ease);
}

.zs-philosophy__image:hover img {
  transform: scale(1.04);
}

/* Gold frame accent */
.zs-philosophy__image::after {
  content: '';
  position: absolute;
  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;
  border: 1px solid var(--zs-gold);
  opacity: 0.2;
  z-index: -1;
}

.zs-pillars {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.zs-pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.zs-pillar__number {
  font-family: var(--zs-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--zs-gold);
  line-height: 1;
  padding-top: 2px;
}

.zs-pillar__title {
  font-family: var(--zs-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--zs-text);
  margin-bottom: 6px;
}

.zs-pillar__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--zs-text-secondary);
}

@media (max-width: 768px) {
  .zs-philosophy-grid {
    grid-template-columns: 1fr;
  }
  .zs-philosophy__image {
    max-height: 400px;
  }
  .zs-philosophy__image::after { display: none; }
}


/* ========================================
   8. PROCESS TIMELINE
   ======================================== */

.zs-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}

/* Connecting line */
.zs-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: var(--zs-border-strong);
}

.zs-timeline__step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.zs-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--zs-navy);
  color: var(--zs-gold);
  font-family: var(--zs-serif);
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--zs-gold-glow);
  transition: box-shadow 0.4s var(--zs-ease), transform 0.4s var(--zs-ease);
}

.zs-timeline__step:hover .zs-step-number {
  box-shadow: 0 0 0 14px var(--zs-gold-glow);
  transform: scale(1.08);
}

.zs-timeline__step-title {
  font-family: var(--zs-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zs-text);
  margin-bottom: 10px;
}

.zs-timeline__step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--zs-text-secondary);
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .zs-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .zs-timeline::before { display: none; }
  .zs-timeline__step { text-align: left; padding: 0; }
  .zs-timeline__step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
  }
  .zs-step-number { margin: 0; }
  .zs-timeline__step-desc { max-width: none; }
}


/* ========================================
   9. STATS COUNTER ROW
   ======================================== */

.zs-stats-section {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.zs-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.zs-stat {
  text-align: center;
  padding: 20px 20px;
  position: relative;
}

/* Vertical divider between stats */
.zs-stat + .zs-stat::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 30%;
  bottom: 30%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.zs-stat__number {
  font-family: var(--zs-serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: var(--zs-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.zs-stat__number--text {
  font-size: clamp(32px, 4vw, 48px);
}

.zs-stat__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zs-text-on-dark-muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .zs-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .zs-stat + .zs-stat::before { display: none; }
  .zs-stat { padding: 24px 12px; }
}


/* ========================================
   10. OFF-MARKET
   ======================================== */

/* Off-market — full-width ocean background */
.zs-offmarket-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 14vw, 200px) 0;
  overflow: hidden;
}

.zs-offmarket-bg {
  position: absolute;
  inset: 0;
}

.zs-offmarket-bg img,
.zs-offmarket-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.zs-offmarket-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 14, 26, 0.85) 0%,
      rgba(8, 14, 26, 0.55) 35%,
      rgba(8, 14, 26, 0.42) 60%,
      rgba(8, 14, 26, 0.55) 80%,
      rgba(8, 14, 26, 0.82) 100%),
    linear-gradient(90deg,
      rgba(8, 14, 26, 0.65) 0%,
      rgba(8, 14, 26, 0.35) 45%,
      transparent 70%);
}

.zs-offmarket-section .zs-section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.zs-offmarket-section .zs-section-subtitle {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.zs-offmarket-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
}

.zs-offmarket-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  background: none;
  border: none;
  border-radius: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.zs-offmarket-feature:hover {
  background: none;
  border-color: transparent;
}

.zs-offmarket-feature__icon {
  flex-shrink: 0;
  color: var(--zs-gold);
}

.zs-offmarket-feature__title {
  font-family: var(--zs-sans);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.zs-offmarket-feature__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .zs-offmarket-section {
    min-height: auto;
    padding: 60px 0;
  }
  .zs-offmarket-features {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 40px;
  }
  .zs-offmarket-feature {
    padding: 16px 0;
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .zs-offmarket-feature:last-child {
    border-bottom: none;
  }
  .zs-offmarket-feature:hover {
    background: none;
    border-color: rgba(255, 255, 255, 0.08);
  }
}


/* ========================================
   11. PRICING CARDS
   ======================================== */

.zs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 56px;
}

.zs-pricing__card {
  background: var(--zs-white);
  border: 1px solid var(--zs-border);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.5s var(--zs-ease),
              box-shadow 0.4s ease;
}

.zs-pricing__card:hover {
  transform: translateY(-6px);
}

/* Featured card */
.zs-pricing__card--featured {
  border-color: var(--zs-gold);
  box-shadow: 0 16px 48px rgba(197, 165, 90, 0.12);
  padding-top: 56px;
}

.zs-pricing__card--featured:hover {
  box-shadow: 0 24px 60px rgba(197, 165, 90, 0.2);
}

.zs-pricing__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--zs-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}

.zs-pricing__tier {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zs-text-muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.zs-pricing__name {
  font-family: var(--zs-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--zs-text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.zs-pricing__price {
  font-family: var(--zs-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--zs-gold-dark);
  margin-bottom: 4px;
}

.zs-pricing__price-note {
  font-size: 12px;
  color: var(--zs-text-muted);
  margin-bottom: 28px;
}

.zs-pricing__divider {
  width: 100%;
  height: 1px;
  background: var(--zs-border);
  margin: 0 0 24px;
}

.zs-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}

.zs-pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--zs-text-secondary);
}

.zs-pricing__feature svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--zs-gold);
}

.zs-pricing__feature--disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.zs-pricing__feature--disabled svg {
  stroke: var(--zs-text-secondary);
}

.zs-pricing__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-family: var(--zs-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--zs-border-strong);
  color: var(--zs-text);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.zs-pricing__cta:hover {
  background: var(--zs-navy);
  color: #fff;
  border-color: var(--zs-navy);
}

.zs-pricing__card--featured .zs-pricing__cta {
  background: var(--zs-gold);
  color: #fff;
  border-color: var(--zs-gold);
}

.zs-pricing__card--featured .zs-pricing__cta:hover {
  background: var(--zs-gold-hover);
  border-color: var(--zs-gold-hover);
}

@media (max-width: 768px) {
  .zs-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Featured first on mobile */
  .zs-pricing__card--featured { order: -1; }
}


/* ========================================
   12. TESTIMONIALS
   ======================================== */

.zs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.zs-testimonial {
  background: var(--zs-white);
  border: 1px solid var(--zs-border);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.5s var(--zs-ease),
              box-shadow 0.4s ease;
}

.zs-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.06);
}

.zs-testimonial__quote-mark {
  font-family: var(--zs-serif);
  font-size: 60px;
  line-height: 1;
  color: var(--zs-gold);
  opacity: 0.3;
  margin-bottom: -10px;
}

.zs-testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.zs-testimonial__stars span {
  color: #FBBC04;
  font-size: 18px;
  line-height: 1;
}

.zs-testimonial__google-icon {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}

.zs-testimonial__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--zs-text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.zs-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--zs-border);
}

.zs-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zs-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--zs-serif);
  font-size: 16px;
  color: var(--zs-gold);
  flex-shrink: 0;
}

.zs-testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--zs-text);
}

.zs-testimonial__role {
  font-size: 12px;
  color: var(--zs-text-muted);
}

@media (max-width: 768px) {
  .zs-testimonials-grid { grid-template-columns: 1fr; }
}


/* ========================================
   13. EXPERT / TEAM
   ======================================== */

.zs-expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.zs-expert__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.zs-expert__photo img,
.zs-expert__photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zs-expert__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.3), transparent);
}

.zs-expert__name {
  font-family: var(--zs-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--zs-text);
  margin-bottom: 8px;
  line-height: 1.15;
}

.zs-expert__role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zs-gold);
  font-weight: 600;
  margin-bottom: 24px;
}

blockquote.zs-expert__bio {
  position: relative;
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  color: var(--zs-text-secondary);
  margin: 0 0 32px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--zs-gold);
}

blockquote.zs-expert__bio::before {
  content: '\201E';
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 48px;
  font-style: normal;
  color: var(--zs-gold);
  opacity: 0.3;
  line-height: 1;
}

blockquote.zs-expert__bio p {
  margin: 0;
}

.zs-expert__credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.zs-expert__credential {
  padding: 16px 0;
  border-top: 1px solid var(--zs-border);
}

.zs-expert__credential-value {
  font-family: var(--zs-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--zs-gold-dark);
  margin-bottom: 2px;
}

.zs-expert__credential-label {
  font-size: 12px;
  color: var(--zs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .zs-expert-grid {
    grid-template-columns: 1fr;
  }
  .zs-expert__photo { max-height: 400px; }
  .zs-expert__credentials { grid-template-columns: 1fr 1fr; }
}


/* ========================================
   14. LOCATIONS GALLERY
   ======================================== */

.zs-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.zs-location {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.zs-location img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--zs-ease);
}

.zs-location:hover img {
  transform: scale(1.08);
}

.zs-location__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 50%);
  transition: background 0.4s ease;
  z-index: 2;
}

.zs-location:hover .zs-location__overlay {
  background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, rgba(10, 22, 40, 0.1) 60%);
}

.zs-location__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
}

.zs-location__name {
  font-family: var(--zs-serif);
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 4px;
}

.zs-location__area {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Gold border on hover */
.zs-location::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 165, 90, 0);
  transition: border-color 0.4s ease;
  z-index: 5;
  pointer-events: none;
}

.zs-location:hover::after {
  border-color: rgba(197, 165, 90, 0.5);
}

@media (max-width: 768px) {
  .zs-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .zs-locations-grid {
    grid-template-columns: 1fr;
  }
  .zs-location { aspect-ratio: 16 / 9; }
}


/* ========================================
   15. FAQ ACCORDION
   ======================================== */

.zs-faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: grid;
  gap: 0;
}

.zs-faq__item {
  border-bottom: 1px solid var(--zs-border);
  transition: border-color 0.3s ease;
}

.zs-faq__item:first-child {
  border-top: 1px solid var(--zs-border);
}

.zs-faq__item:hover {
  border-color: var(--zs-gold-light);
}

.zs-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--zs-sans);
}

.zs-faq__question {
  font-size: 16px;
  font-weight: 600;
  color: var(--zs-text);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.zs-faq__trigger:hover .zs-faq__question {
  color: var(--zs-gold);
}

.zs-faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--zs-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.zs-faq__icon svg {
  transition: transform 0.3s var(--zs-ease);
}

.zs-faq__item[data-open="true"] .zs-faq__icon {
  background: var(--zs-gold);
  border-color: var(--zs-gold);
}

.zs-faq__item[data-open="true"] .zs-faq__icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.zs-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--zs-ease);
}

.zs-faq__item[data-open="true"] .zs-faq__answer {
  max-height: 300px;
}

.zs-faq__answer-inner {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--zs-text-secondary);
}


/* ========================================
   16. CONTACT FORM
   ======================================== */

.zs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.zs-form-card {
  background: var(--zs-white);
  border: 1px solid var(--zs-border);
  padding: clamp(32px, 4vw, 48px);
}

.zs-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zs-text);
  margin-bottom: 8px;
}

.zs-form input[type="text"],
.zs-form input[type="email"],
.zs-form input[type="tel"],
.zs-form select,
.zs-form textarea {
  width: 100%;
  border: 1px solid var(--zs-border);
  background: transparent;
  padding: 14px 16px;
  font-family: var(--zs-sans);
  font-size: 14px;
  color: var(--zs-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.zs-form input::placeholder,
.zs-form textarea::placeholder {
  color: var(--zs-text-muted);
}

.zs-form input:focus,
.zs-form select:focus,
.zs-form textarea:focus {
  border-color: var(--zs-gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--zs-gold-glow);
}

.zs-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%23C5A55A' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

/* Service level buttons */
.zs-service-btn {
  border: 1px solid var(--zs-border);
  padding: 14px 16px;
  font-family: var(--zs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zs-text-muted);
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.zs-service-btn:hover {
  border-color: var(--zs-gold-light);
  color: var(--zs-text-secondary);
}

.zs-service-btn.is-active {
  border-color: var(--zs-gold);
  background: var(--zs-gold-glow);
  color: var(--zs-gold);
}

/* Submit button */
.zs-form__submit {
  width: 100%;
  background: var(--zs-navy);
  color: #fff;
  padding: 16px 24px;
  font-family: var(--zs-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.zs-form__submit:hover {
  background: var(--zs-gold);
}

/* Contact info */
.zs-contact-info {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.zs-contact-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zs-contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--zs-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zs-contact-info__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zs-text-muted);
  font-weight: 600;
}

.zs-contact-info__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--zs-text);
  transition: color 0.3s ease;
}

.zs-contact-info__value:hover {
  color: var(--zs-gold);
}

/* Form layout helpers */
.zs-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.zs-form__field {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .zs-contact-grid { grid-template-columns: 1fr; }
  .zs-form__row { grid-template-columns: 1fr; }
}


/* ========================================
   17. FLOATING CTA (Desktop)
   ======================================== */

.zs-floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s var(--zs-ease),
              transform 0.5s var(--zs-ease);
  pointer-events: none;
  background: var(--zs-navy);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.zs-floating-cta__text {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--zs-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.zs-floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.zs-floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--zs-gold);
  color: #fff;
  padding: 14px 32px;
  font-family: var(--zs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(197, 165, 90, 0.3);
  transition: all 0.3s ease;
}

.zs-floating-cta a:hover {
  background: var(--zs-gold-hover);
  box-shadow: 0 12px 40px rgba(197, 165, 90, 0.45);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .zs-floating-cta { display: none; }
}


/* ========================================
   18. MOBILE STICKY BAR
   ======================================== */

.zs-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  display: none;
  background: var(--zs-navy);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 8px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s var(--zs-ease),
              transform 0.4s var(--zs-ease);
}

.zs-mobile-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zs-mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  font-family: var(--zs-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zs-mobile-bar__btn--call {
  background: #fff;
  border: 1px solid #fff;
  color: var(--zs-navy);
}

.zs-mobile-bar__btn--form {
  background: var(--zs-gold);
  color: #fff;
  border: 1px solid var(--zs-gold);
}

@media (max-width: 768px) {
  .zs-mobile-bar { display: flex; }
}


/* ========================================
   19. GSAP / SCROLL ANIMATION STATES
   ======================================== */

/* Pre-animation state — elements start hidden */
.zs-reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.zs-reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  will-change: transform, opacity;
}

.zs-reveal--right {
  opacity: 0;
  transform: translateX(40px);
  will-change: transform, opacity;
}

.zs-reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  will-change: transform, opacity;
}

/* Revealed state (set by GSAP or fallback) */
.zs-reveal.is-revealed,
.zs-reveal--left.is-revealed,
.zs-reveal--right.is-revealed,
.zs-reveal--scale.is-revealed {
  opacity: 1;
  transform: none;
}

/* Stagger children (set by GSAP, fallback via CSS) */
.zs-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.zs-stagger.is-revealed > * {
  opacity: 1;
  transform: none;
}

/* CSS-only fallback if GSAP fails to load */
@media (prefers-reduced-motion: reduce) {
  .zs-reveal,
  .zs-reveal--left,
  .zs-reveal--right,
  .zs-reveal--scale,
  .zs-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ========================================
   20. RESPONSIVE
   ======================================== */

@media (max-width: 640px) {

  /* ── HERO ── */
  .zs-hero {
    min-height: calc(var(--vh, 1vh) * 100) !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .zs-hero__content {
    padding: 100px 20px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .zs-hero__content--duo {
    gap: 24px !important;
  }

  .zs-hero__headline {
    font-size: clamp(28px, 7.5vw, 36px) !important;
    margin-bottom: 12px !important;
  }

  .zs-hero__subtitle {
    font-size: 13px !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
  }

  .zs-hero__trust-line {
    font-size: 10px !important;
    gap: 6px !important;
    margin-bottom: 0 !important;
  }

  .zs-hero-form-card {
    padding: 20px 16px !important;
    border-radius: 12px !important;
  }

  .zs-hero-form-card__header {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }

  .zs-hero-form-card__sub {
    font-size: 11px !important;
    margin-bottom: 16px !important;
  }

  .zs-hero-form__field {
    margin-bottom: 12px !important;
  }

  .zs-hero-form__field label {
    font-size: 9px !important;
    margin-bottom: 4px !important;
  }

  .zs-hero-form__field input,
  .zs-hero-form__field select {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  .zs-hero-form__btn {
    padding: 13px 20px !important;
    font-size: 12px !important;
  }

  .zs-hero-form-card__note {
    font-size: 10px !important;
    margin-top: 10px !important;
  }

  .zs-hero__eyebrow {
    margin-bottom: 12px !important;
  }

  .zs-hero__cta-row {
    flex-direction: column !important;
    gap: 0 !important;
    margin-bottom: 6px !important;
  }

  .zs-hero__cta-row a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .zs-btn-primary {
    padding: 13px 20px !important;
    font-size: 11px !important;
    width: 100% !important;
    justify-content: center !important;
  }

  /* Hide scroll indicator on mobile */
  .zs-scroll-indicator {
    display: none;
  }

  /* Show/hide helpers */
  .zs-hide-mobile { display: none !important; }
  .zs-show-mobile { display: flex !important; }


  /* ── ALL SECTIONS: reduce vertical padding ── */
  .zs-section {
    padding-top: 50px !important;
    padding-bottom: 60px !important;
  }

  .zs-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Section titles */
  .zs-section-title {
    font-size: clamp(26px, 7vw, 34px) !important;
    margin-bottom: 16px !important;
  }

  .zs-section-subtitle {
    font-size: 14px !important;
  }

  .zs-eyebrow__text {
    font-size: 10px !important;
  }


  /* ── PROBLEM SECTION ── */
  .zs-problem-cards {
    gap: 16px !important;
  }


  /* ── PHILOSOPHY ── */
  .zs-philosophy-grid {
    gap: 24px !important;
  }


  /* ── PROCESS / TIMELINE ── */
  .zs-timeline {
    gap: 20px !important;
  }

  .zs-step__number {
    width: 48px !important;
    height: 48px !important;
    font-size: 16px !important;
  }

  .zs-step__title {
    font-size: 16px !important;
  }

  .zs-step__desc {
    font-size: 13px !important;
  }


  /* ── STATS ── */
  .zs-stats-grid {
    gap: 16px !important;
  }

  .zs-stat__number {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  .zs-stat__label {
    font-size: 10px !important;
  }


  /* ── OFF-MARKET ── */
  .zs-offmarket-section {
    padding: 50px 20px !important;
  }

  .zs-offmarket-features {
    gap: 16px !important;
  }

  .zs-offmarket-feature {
    padding: 20px !important;
  }


  /* ── PRICING ── */
  .zs-pricing-card {
    padding: 32px 24px !important;
  }

  .zs-pricing-card__name {
    font-size: 22px !important;
  }

  .zs-pricing-card__price {
    font-size: 14px !important;
  }


  /* ── TESTIMONIALS ── */
  .zs-testimonial-card {
    padding: 24px !important;
  }


  /* ── EXPERT ── */
  .zs-expert-grid {
    gap: 24px !important;
  }

  .zs-expert-stats {
    gap: 16px !important;
  }

  .zs-expert-stat__number {
    font-size: 28px !important;
  }


  /* ── LOCATIONS ── */
  .zs-location-card {
    height: 180px !important;
  }


  /* ── FAQ ── */
  .zs-faq-item {
    padding: 16px 20px !important;
  }

  .zs-faq-item__question {
    font-size: 14px !important;
  }

  .zs-faq-item__answer {
    font-size: 13px !important;
  }


  /* ── CONTACT / FORM ── */
  .zs-form-card {
    padding: 24px 20px !important;
  }

  .zs-form__submit {
    font-size: 12px !important;
    padding: 14px 20px !important;
  }

  /* Mobile safe area for sticky bar */
  .zs-contact {
    padding-bottom: 100px;
  }
}


/* ── VERY SMALL SCREENS (≤374px) ── */
@media (max-width: 374px) {
  .zs-hero__content {
    padding: 32px 16px 16px !important;
  }

  .zs-hero__headline {
    font-size: 26px !important;
  }

  .zs-hero__subtitle {
    font-size: 13px !important;
  }

  .zs-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .zs-stats-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ── TABLET (641px — 1023px) ── */
@media (min-width: 641px) and (max-width: 1023px) {
  .zs-hero {
    min-height: 80vh;
    min-height: 80svh;
  }

  .zs-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .zs-section-title {
    font-size: clamp(30px, 5vw, 40px);
  }

  .zs-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}


/* Desktop: show/hide helpers */
.zs-show-mobile { display: none !important; }
.zs-hide-mobile { display: flex; }


/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .zs-landing *,
  .zs-landing *::before,
  .zs-landing *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ── PRINT ── */
@media print {
  .zs-landing {
    color: #000;
    background: #fff;
  }
  .zs-mobile-bar,
  .zs-floating-cta,
  .zs-hero__bg video {
    display: none !important;
  }
}


/* ========================================
   21. THEME HEADER OVERRIDE
   ======================================== */

.zs-page #banner_top .wrapper {
  max-width: min(1340px, 90%);
}

.zs-page #banner_top,
.zs-page #banner_top #noveo_mega_menu {
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent horizontal overflow — clip works on fixed elements too */
html.zs-no-overflow-x,
html.zs-no-overflow-x body {
  overflow-x: clip;
  max-width: 100%;
}
