/* ═══════════════════════════════════════════
   MEZZMERIZED — v-final
   Palette: Warm sand + charcoal + coral-red
   Fonts: Fraunces (serif headlines), Inter (body), JetBrains Mono (labels)
   ═══════════════════════════════════════════ */

:root {
  --bg: #f5f0e8;
  --bg-warm: #fefcf8;
  --bg-dark: #1a1a1a;
  --bg-darker: #111111;
  --text: #1a1a1a;
  --text-light: #5a5549;
  --text-on-dark: #f5f0e8;
  --accent: #e85d4a;
  --accent-hover: #d14a38;
  --accent-glow: rgba(232, 93, 74, 0.15);
  --wa-glow: rgba(57, 129, 249, 0.5);
  --border: rgba(26, 26, 26, 0.1);
  --border-dark: rgba(245, 240, 232, 0.12);
  --serif: 'Fraunces', serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max-w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; color: var(--accent); }
strong { font-weight: 600; }

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.03em;
}
.pre-bar {
  width: clamp(120px, 30vw, 260px); height: 3px;
  background: rgba(255,255,255,0.15); border-radius: 4px;
  overflow: hidden;
}
.pre-fill {
  height: 100%; width: 0; background: var(--accent);
  border-radius: 4px; transition: width 0.3s ease;
}
.pre-sub {
  font-family: var(--mono); font-size: 0.75rem;
  color: rgba(245,240,232,0.5); text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease, background 0.3s ease;
}
.nav.scrolled { background: rgba(245, 240, 232, 0.95); }
.nav-logo {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.15rem; letter-spacing: -0.03em;
}
.nav-logo em { color: var(--accent); font-style: normal; }
.nav-sub {
  font-family: var(--mono); font-size: 0.52em;
  opacity: 0.5; margin-left: 0.4em; font-weight: 400;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  opacity: 0.7; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 0.85rem; font-weight: 600;
  background: var(--bg-dark); color: var(--text-on-dark);
  padding: 0.6rem 1.4rem; border-radius: 6px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative;
  flex-direction: column; justify-content: space-between;
}
.burger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mob-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999; background: var(--bg-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mob-menu.open { opacity: 1; visibility: visible; }
.mob-menu a {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 600;
  color: var(--text-on-dark);
}
.mob-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: 0.8rem 2rem; border-radius: 8px; font-size: 1.2rem !important;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex;
  flex-direction: column; justify-content: center;
  align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.55) 0%,
    rgba(26,26,26,0.7) 60%,
    rgba(26,26,26,0.9) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 6rem var(--gutter) 4rem;
  color: var(--text-on-dark);
}
.hero-eyebrow {
  font-family: var(--mono); font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  text-transform: uppercase; letter-spacing: 0.2em;
  opacity: 0.6; margin-bottom: 1.5rem;
}
.hero-name {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.9; letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-name em { font-style: normal; color: var(--accent); }
.hero-claim {
  font-family: var(--serif); font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 400; line-height: 1.4;
  max-width: 600px; margin: 0 auto 2.5rem;
}
.claim-cycle {
  position: relative; display: inline-block;
  min-width: 200px; text-align: left;
}
.cc {
  position: absolute; left: 0; top: 0;
  opacity: 0; transition: opacity 0.5s ease;
  white-space: nowrap; color: var(--accent);
  font-style: italic;
}
.cc.active { position: relative; opacity: 1; }

.hero-scroll {
  display: inline-block; font-size: 1.5rem;
  color: var(--text-on-dark); opacity: 0.5;
  animation: bobDown 2s ease-in-out infinite;
}
@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Marquee strip */
.marquee-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3; background: var(--accent);
  overflow: hidden; padding: 0.7rem 0;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: var(--mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; padding: 0 0.8rem;
  flex-shrink: 0;
}
.marquee-track .sep { opacity: 0.5; }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SECTION LABEL (reusable)
   ═══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-family: var(--mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent); font-weight: 500;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   DIAGNOSIS
   ═══════════════════════════════════════════ */
.diagnosis {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg);
}
.diag-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.diag-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.diag-body {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 600px; margin: 0 auto 1rem;
}

/* ═══════════════════════════════════════════
   VOICES (speech bubbles)
   ═══════════════════════════════════════════ */
.voices {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background: var(--bg-warm);
}
.voices-inner { max-width: var(--max-w); margin: 0 auto; }
.voices-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 2.5rem; max-width: 600px;
}
.bubbles {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2rem;
}
.bubble {
  background: var(--bg); border: 1px solid var(--border);
  padding: 1rem 1.5rem; border-radius: 20px 20px 20px 4px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--text); max-width: 420px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s;
}
.bubble:hover { transform: translateY(-2px); }
.bubble:nth-child(even) { border-radius: 20px 20px 4px 20px; }
.voices-kicker {
  font-size: 1rem; color: var(--text-light);
  max-width: 560px; margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   ENGINE (6C process)
   ═══════════════════════════════════════════ */
.engine {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-dark); color: var(--text-on-dark);
}
.engine-inner { max-width: var(--max-w); margin: 0 auto; }
.engine .section-label { color: var(--accent); }
.engine-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.engine-sub {
  font-size: 1.05rem; opacity: 0.65;
  max-width: 550px; margin-bottom: 3rem;
}
.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.e-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 12px; padding: 2rem 1.5rem;
  transition: background 0.2s, transform 0.2s;
}
.e-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.e-num {
  font-family: var(--mono); font-size: 0.75rem;
  color: var(--accent); display: block; margin-bottom: 0.8rem;
}
.e-card h3 {
  font-family: var(--serif); font-size: 1.15rem;
  font-weight: 600; margin-bottom: 0.5rem;
}
.e-card p { font-size: 0.9rem; opacity: 0.6; line-height: 1.5; }

/* Flow diagram */
.engine-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap;
  padding: 2rem; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
}
.flow-step {
  background: var(--accent); border-radius: 8px;
  padding: 0.6rem 1.2rem;
}
.flow-label {
  font-family: var(--mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; font-weight: 500;
}
.flow-arrow {
  font-size: 1.2rem; opacity: 0.4; color: var(--text-on-dark);
}

/* ═══════════════════════════════════════════
   PROOF MARQUEE
   ═══════════════════════════════════════════ */
.proof-marquee {
  background: var(--bg-dark); overflow: hidden;
  padding: 1.2rem 0; border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.pm-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}
.pm-track span {
  font-family: var(--serif); font-size: 1rem;
  font-style: italic; color: var(--text-on-dark);
  padding: 0 1rem; flex-shrink: 0;
}
.pm-star { color: var(--accent); font-style: normal !important; }

/* ═══════════════════════════════════════════
   WORK (bento grid)
   ═══════════════════════════════════════════ */
.work {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg);
}
.work-inner { max-width: var(--max-w); margin: 0 auto; }
.work-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 2.5rem; max-width: 600px;
}
/* Portfolio carousel — peek style */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 70%;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.55;
  transform: scale(0.96);
  transition: opacity 0.4s, transform 0.4s;
  cursor: pointer;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}
.carousel-slide img { width: 100%; height: auto; display: block; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(26,26,26,0.65); color: #fff;
  border: none; cursor: pointer; padding: 0.7rem 1rem;
  font-size: 1.1rem; border-radius: 8px;
  transition: background 0.2s; z-index: 2;
}
.carousel-btn:hover { background: var(--accent); }
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 1.2rem;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(26,26,26,0.25); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--accent); transform: scale(1.3);
}
.b-img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s;
}
.b-card:hover .b-img { transform: scale(1.04); }
.b-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.b-card:hover .b-overlay { opacity: 1; }
.b-tag {
  font-family: var(--mono); font-size: 0.7rem;
  text-transform: uppercase; color: var(--accent);
  letter-spacing: 0.1em; margin-bottom: 0.3rem;
}
.b-hook, .b-source {
  font-size: 0.8rem; color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════
   WHATSAPP WALL
   ═══════════════════════════════════════════ */
.wa-wall {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-dark); color: var(--text-on-dark);
}
.wa-inner { max-width: var(--max-w); margin: 0 auto; }
.wa-wall .section-label { color: var(--accent); }
.wa-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 0.8rem;
}
.wa-sub { opacity: 0.6; max-width: 500px; margin-bottom: 2.5rem; }
.wa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem; margin-bottom: 3rem;
  align-items: start;
}
.wa-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 20px var(--wa-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px var(--wa-glow);
}
.wa-card img { width: 100%; height: auto; display: block; }

/* Text testimonials */
.testi-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 12px; padding: 2rem;
}
.tc-accent {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
.tc-stars { color: #f5c518; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-card blockquote {
  font-family: var(--serif); font-size: 1rem;
  font-style: italic; line-height: 1.6;
  margin-bottom: 1rem; opacity: 0.9;
}
.testi-card cite {
  font-family: var(--mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  opacity: 0.5; font-style: normal;
}

/* Video testimonials — YouTube embeds */
.video-testi {
  width: 100%;
}
.vt-featured {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.vt-card {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.vt-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  display: block;
}
.vt-embed-short {
  padding-bottom: 75%;
}
.vt-embed iframe,
.vt-embed-short iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-warm);
}
.about-inner { max-width: var(--max-w); margin: 0 auto; }
.about-pull {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35; color: var(--text);
  max-width: 700px; margin: 0 auto 4rem;
  text-align: center; position: relative;
  padding: 0 2rem;
}
.about-pull::before {
  content: '"'; position: absolute;
  left: -0.5rem; top: -1rem;
  font-size: 4rem; color: var(--accent); opacity: 0.3;
  font-family: var(--serif);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3rem; align-items: start;
}
.about-photo {
  border-radius: 12px; width: 100%;
  position: relative;
}
.about-photo-col { position: relative; }
.about-photo-col::after {
  content: ''; position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  border: 2px solid var(--accent); border-radius: 12px;
  z-index: -1; opacity: 0.3;
}
.about-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-text-col p {
  font-size: 1rem; color: var(--text-light);
  margin-bottom: 1rem;
}
.about-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.about-tags span {
  font-family: var(--mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem; border-radius: 100px;
  background: var(--bg); border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   QUALIFIER
   ═══════════════════════════════════════════ */
.qualifier {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--bg);
}
.qual-inner { max-width: var(--max-w); margin: 0 auto; }
.qual-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 0.8rem;
}
.qual-sub {
  color: var(--text-light); max-width: 500px;
  margin-bottom: 2.5rem;
}
.qual-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.qual-card {
  border-radius: 12px; padding: 2.5rem 2rem;
}
.qual-yes {
  background: var(--bg-warm);
  border: 1px solid rgba(72, 187, 120, 0.3);
}
.qual-no {
  background: var(--bg-warm);
  border: 1px solid rgba(232, 93, 74, 0.3);
}
.qual-icon {
  font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700;
}
.qual-yes .qual-icon { color: #48bb78; }
.qual-no .qual-icon { color: var(--accent); }
.qual-card h3 {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 600; margin-bottom: 1rem;
}
.qual-card li {
  font-size: 0.95rem; color: var(--text-light);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  padding-left: 0.5rem;
}
.qual-card li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════
   OFFERS
   ═══════════════════════════════════════════ */
.offers {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--bg-warm);
}
.offers-inner { max-width: var(--max-w); margin: 0 auto; }
.offers-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 2.5rem;
}
.tier-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.tier {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem 2rem;
  position: relative;
}
.tier-pop {
  background: var(--bg-dark); color: var(--text-on-dark);
  border-color: var(--accent);
}
.tier-badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem; border-radius: 100px;
}
.tier-tag {
  font-family: var(--mono); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); margin-bottom: 0.5rem;
}
.tier-name {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 700; margin-bottom: 0.5rem;
}
.tier-price {
  font-family: var(--serif); font-size: 2.5rem;
  font-weight: 800; letter-spacing: -0.03em;
}
.tier-pop .tier-price { color: var(--accent); }
.tier-time {
  font-size: 0.85rem; opacity: 0.5;
  margin-bottom: 1.5rem;
}
.tier li {
  font-size: 0.9rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1rem; position: relative;
}
.tier-pop li { border-color: var(--border-dark); }
.tier li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-size: 0.8rem;
}
.tier li:last-child { border-bottom: none; }
.tier-cta {
  display: inline-block; margin-top: 1.5rem;
  font-weight: 600; font-size: 0.9rem;
  color: var(--accent); transition: gap 0.2s;
}
.tier-cta:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   THE CALL
   ═══════════════════════════════════════════ */
.the-call {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--bg);
}
.call-inner { max-width: 800px; margin: 0 auto; }
.call-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 2.5rem;
}
.call-steps { display: flex; flex-direction: column; gap: 2rem; }
.call-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.call-step:last-child { border-bottom: none; padding-bottom: 0; }
.cs-num {
  font-family: var(--mono); font-size: 0.8rem;
  color: var(--accent); flex-shrink: 0;
  width: 2rem;
}
.cs-text h4 {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 600; margin-bottom: 0.4rem;
}
.cs-text p { font-size: 0.9rem; color: var(--text-light); }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.contact-left {
  background: var(--bg-dark); color: var(--text-on-dark);
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-left .section-label { color: var(--accent); }
.contact-h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.contact-left > p {
  font-size: 1rem; opacity: 0.6;
  max-width: 400px; margin-bottom: 1.5rem;
}
.contact-avail {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.avail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #48bb78; animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(72, 187, 120, 0); }
}
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #fff;
  padding: 0.8rem 1.8rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text-on-dark);
  padding: 0.8rem 1.8rem; border-radius: 8px;
  font-weight: 500; font-size: 0.9rem;
  border: 1px solid var(--border-dark); cursor: pointer;
  font-family: var(--sans); transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); }
.ftb-arrow {
  transition: transform 0.3s; display: inline-block;
}
.btn-secondary[aria-expanded="true"] .ftb-arrow { transform: rotate(180deg); }

.contact-right {
  background: var(--bg-warm);
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  display: flex; align-items: center; justify-content: center;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.5s ease;
}
.contact-right.open {
  max-height: 800px; opacity: 1;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
}
.c-form { width: 100%; max-width: 420px; }
.cf-field { margin-bottom: 1.2rem; }
.cf-field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.4rem; color: var(--text);
}
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg); font-family: var(--sans);
  font-size: 0.95rem; color: var(--text);
  transition: border-color 0.2s;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--accent);
}
.cf-field textarea { resize: vertical; }
.c-submit {
  width: 100%; padding: 0.9rem;
  background: var(--accent); color: #fff;
  border: none; border-radius: 8px;
  font-family: var(--sans); font-weight: 600;
  font-size: 1rem; cursor: pointer;
  transition: background 0.2s;
}
.c-submit:hover { background: var(--accent-hover); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-darker); color: var(--text-on-dark);
  padding: 4rem var(--gutter) 2rem;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 700; letter-spacing: -0.03em;
}
.footer-logo em { color: var(--accent); font-style: normal; }
.footer-tagline { font-size: 0.9rem; opacity: 0.5; margin-top: 0.5rem; }
.footer h5 {
  font-family: var(--mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  opacity: 0.4; margin-bottom: 1rem;
}
.footer li { margin-bottom: 0.6rem; }
.footer a { font-size: 0.9rem; opacity: 0.7; transition: opacity 0.2s; }
.footer a:hover { opacity: 1; color: var(--accent); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  opacity: 0.5; transition: opacity 0.2s, color 0.2s;
}
.footer-social a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border-dark);
  font-size: 0.8rem; opacity: 0.4;
}
.footer-scarcity {
  font-family: var(--mono); letter-spacing: 0.15em;
  text-transform: uppercase; font-size: 0.68rem;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .engine-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .contact-right {
    max-height: 0; padding: 0 var(--gutter);
  }
  .contact-right.open {
    max-height: 1000px;
    padding: 3rem var(--gutter);
  }
}

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

  .hero-name { font-size: clamp(4rem, 20vw, 8rem); }

  .engine-grid { grid-template-columns: 1fr; }
  .engine-flow { gap: 0.3rem; }
  .flow-step { padding: 0.5rem 0.8rem; }
  .flow-label { font-size: 0.6rem; }
  .flow-arrow { font-size: 0.9rem; }

  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .b-feature { grid-row: auto; }
  .b-overlay { opacity: 1; }

  .wa-card { flex: 0 0 min(340px, 75vw); }
  .testi-cards { grid-template-columns: 1fr; }
  .video-testi { grid-template-columns: 1fr; }
  .vt-row { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-col::after { display: none; }
  .about-pull { font-size: 1.3rem; }

  .qual-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-name { font-size: clamp(3.5rem, 22vw, 6rem); }
  .hero-claim { font-size: 1rem; }

  .bubbles { flex-direction: column; }
  .bubble { max-width: 100%; }

  .wa-card { flex: 0 0 min(300px, 85vw); }

  .engine-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }

  .contact-left { padding: 3rem 1.5rem; }
  .contact-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* Touch device optimizations */
@media (hover: none) {
  .b-overlay { opacity: 1; }
  .e-card:hover { transform: none; }
  .bubble:hover { transform: none; }
  .wa-card:hover { transform: none; }
}
