/* ================================================================
   OPTIMA · DESIGN TOKENS (per brand guidelines)
   ================================================================ */
:root {
  --navy: #0D1B2A;
  --cream: #FAF9F6;
  --blue-mid: #378ADD;
  --blue: #185FA5;
  --teal: #0F6E56;
  --navy-light: #1a2d42;
  --cream-dark: #F0EDE5;
  --ink: #0a1420;
  --gray: #6b7280;

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(13, 27, 42, 0.08);

  --grad-primary: linear-gradient(135deg, #185FA5 0%, #0F6E56 120%);
  --grad-top: linear-gradient(90deg, #378ADD, #0F6E56);

  --display: 'Playfair Display', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-pill: 100px;

  --t-hover: 0.2s ease;
  --t-comp: 0.3s ease;

  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--cream);
  background: var(--navy);
  overflow-x: hidden;
}
::selection { background: var(--blue-mid); color: var(--navy); }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

/* ================================================================
   SECTION SHELLS · alternating dark/light
   ================================================================ */
.sec {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.sec--dark { background: var(--navy); color: var(--cream); }
.sec--light { background: var(--cream); color: var(--ink); }

/* Grid pattern texture */
.sec--dark::before, .sec--light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, currentColor 1px, transparent 1px),
    linear-gradient(to bottom, currentColor 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}
.sec--dark::before { color: rgba(255,255,255,0.03); }
.sec--light::before { color: rgba(13,27,42,0.04); }

/* Orbs */
.orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 480px; height: 480px; background: var(--blue-mid); opacity: 0.32; top: -10%; left: -8%; }
.orb-2 { width: 380px; height: 380px; background: var(--teal); opacity: 0.28; bottom: -12%; right: -8%; animation-delay: -7s; animation-duration: 24s; }
.orb-3 { width: 320px; height: 320px; background: var(--blue); opacity: 0.24; top: 50%; right: 30%; animation-delay: -14s; animation-duration: 22s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.98); }
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================================================
   TYPOGRAPHY UTILITIES
   ================================================================ */
.display { font-family: var(--display); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
.display em { font-style: italic; font-weight: 500; }
.sec--dark .display em { color: var(--blue-mid); }
.sec--light .display em { color: var(--blue); }

.h1 { font-family: var(--display); font-weight: 500; font-size: clamp(48px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.03em; }
.h2 { font-family: var(--display); font-weight: 500; font-size: clamp(40px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -0.025em; }
.h3 { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3vw, 36px); line-height: 1.1; letter-spacing: -0.02em; }

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  max-width: 560px;
}

/* ================================================================
   EYEBROW with decorative line
   ================================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.sec--dark .eyebrow { color: var(--blue-mid); }
.sec--light .eyebrow { color: var(--blue); }

/* Brand dot with pulse */
.brand-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-mid);
  box-shadow: 0 0 12px var(--blue-mid);
  flex-shrink: 0;
}
.brand-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--blue-mid);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.nav-shell {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 8px 22px;
  border-radius: var(--r-pill);
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.nav-mark { display: inline-flex; align-items: center; gap: 3px; }
.nav-mark span { width: 7px; height: 7px; border-radius: 50%; }
.nav-mark span:nth-child(1) { background: var(--blue-mid); }
.nav-mark span:nth-child(2) { background: var(--blue); }
.nav-mark span:nth-child(3) { background: var(--teal); }

.nav-links { display: flex; gap: 2px; margin: 0 4px 0 18px; }
.nav-links a {
  color: rgba(250, 249, 246, 0.6);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color var(--t-hover), background var(--t-hover);
}
.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,0.04); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: var(--blue-mid);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13.5px;
  transition: transform var(--t-hover), background var(--t-hover);
}
.nav-cta:hover { transform: scale(0.98); background: #4a96e2; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav { padding: 6px 6px 6px 16px; gap: 8px; }
  .nav-cta { padding: 8px 18px; font-size: 12.5px; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--t-hover), background var(--t-hover), border-color var(--t-hover);
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--blue-mid); color: var(--navy); }
.btn-primary:hover { background: #4a96e2; transform: translateY(-1px); }
.btn-grad { background: var(--grad-primary); color: var(--cream); }
.btn-grad:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-ghost-dark { background: transparent; color: var(--cream); border: 1px solid var(--border-dark); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.18); }
.btn-ghost-light { background: transparent; color: var(--ink); border: 1px solid var(--border-light); }
.btn-ghost-light:hover { background: rgba(13,27,42,0.04); border-color: rgba(13,27,42,0.18); }
.btn-arrow { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; }

/* ================================================================
   HERO
   ================================================================ */
.hero { padding: 170px 0 110px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero { padding: 130px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}
.hero h1 { margin: 28px 0 28px; color: var(--cream); }
.hero .lede { margin-bottom: 0; color: rgba(250, 249, 246, 0.78); }
.hero-tag {
  margin-top: 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--blue-mid);
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero floating cards */
.hero-stack {
  position: relative;
  aspect-ratio: 1 / 1.1;
  width: 100%;
}
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.fc-1 { top: 4%; left: 0; width: 78%; transform: rotate(-2deg); animation: floatA 9s ease-in-out infinite; }
.fc-2 { top: 38%; right: 0; width: 64%; transform: rotate(2.5deg); animation: floatB 11s ease-in-out infinite; }
.fc-3 { bottom: 2%; left: 8%; width: 70%; transform: rotate(-1.5deg); animation: floatA 10s ease-in-out infinite reverse; }
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-1.4deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(2.5deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@media (max-width: 980px) {
  .hero-stack { aspect-ratio: auto; display: flex; flex-direction: column; gap: 14px; }
  .float-card { position: relative; width: 100%; transform: none !important; animation: none; top: auto; bottom: auto; left: auto; right: auto; }
}

.fc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.55);
  margin-bottom: 14px;
}
.fc-msg {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.fc-msg em { font-style: italic; color: var(--blue-mid); }
.fc-foot {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--body);
  font-size: 12px;
  color: rgba(250, 249, 246, 0.45);
}
.fc-stars {
  color: var(--blue-mid);
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 8px;
}

/* ================================================================
   AUDIENCE BAR (light)
   ================================================================ */
.audience { padding: 90px 0; }
.audience .label { text-align: center; margin-bottom: 36px; display: flex; justify-content: center; }
.audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.audience-pill {
  padding: 11px 20px;
  border-radius: var(--r-pill);
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ================================================================
   FEATURES (dark) · split rows with animated mockups
   ================================================================ */
.features { padding: 130px 0; }
.sec-head { max-width: 820px; margin-bottom: 100px; }
.sec-head h2 { margin: 24px 0 20px; }
.sec--dark .sec-head .lede { color: rgba(250, 249, 246, 0.7); }
.sec--light .sec-head .lede { color: var(--gray); }

.feat-stack {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feat-row--rev .feat-text { order: 2; }
.feat-row--rev .feat-visual { order: 1; }

@media (max-width: 980px) {
  .feat-stack { gap: 100px; }
  .feat-row, .feat-row--rev {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .feat-row--rev .feat-text { order: 1; }
  .feat-row--rev .feat-visual { order: 2; }
}

.feat-text { max-width: 520px; }
.feat-numeral {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
}
.feat-eye {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 22px;
}
.feat-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 22px;
}
.feat-title em { font-style: italic; color: var(--blue-mid); }
.feat-desc {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 249, 246, 0.7);
  margin-bottom: 26px;
}
.feat-desc strong {
  color: var(--cream);
  font-weight: 600;
  background: rgba(55, 138, 221, 0.14);
  padding: 1px 8px;
  border-radius: 4px;
}
.feat-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-bullets li {
  position: relative;
  padding-left: 22px;
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 249, 246, 0.78);
}
.feat-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  box-shadow: 0 0 10px rgba(55, 138, 221, 0.6);
}

.feat-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-visual::before {
  content: "";
  position: absolute;
  inset: 5% 8%;
  background: radial-gradient(ellipse at center, rgba(55, 138, 221, 0.16), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* ================================================================
   FEAT 1 · DEVICE PHONE (Instagram DM mockup)
   ================================================================ */
.device-phone {
  position: relative;
  z-index: 1;
  width: 290px;
  aspect-ratio: 290 / 580;
}
.dp-frame {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: linear-gradient(180deg, #1a2d42 0%, #0d1b2a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 50px 100px -30px rgba(55, 138, 221, 0.25);
  position: relative;
}
.dp-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #050a12;
  border-radius: 14px;
  z-index: 2;
}
.dp-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #0a1420;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 46px 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dp-back {
  font-family: var(--display);
  font-size: 22px;
  color: var(--blue-mid);
  line-height: 1;
}
.dp-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f48fb1, #ce93d8 50%, #9fa8da);
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
}
.dp-handle {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dp-handle > span:first-child {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.dp-online {
  font-family: var(--body);
  font-size: 10px;
  color: rgba(74, 209, 173, 0.85);
  letter-spacing: 0.02em;
}
.dp-online::before {
  content: "•";
  margin-right: 4px;
  color: #4ad1ad;
}
.dp-thread {
  flex: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.dp-day {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  margin-bottom: 6px;
}
.dp-bubble {
  max-width: 85%;
  padding: 10px 14px;
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.45;
  border-radius: 16px;
  opacity: 0;
}
.dp-in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 249, 246, 0.92);
  border-bottom-left-radius: 4px;
}
.dp-out {
  align-self: flex-end;
  background: linear-gradient(135deg, #185FA5, #378ADD);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.dp-kw {
  background: rgba(55, 138, 221, 0.32);
  color: var(--blue-mid);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.dp-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  opacity: 0;
}
.dp-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: dpDot 1.2s ease-in-out infinite;
}
.dp-typing span:nth-child(2) { animation-delay: 0.15s; }
.dp-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes dpDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-3px); opacity: 1; }
}
.dp-pill {
  align-self: center;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(15, 110, 86, 0.18);
  border: 1px solid rgba(15, 110, 86, 0.4);
  font-family: var(--body);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ad1ad;
  opacity: 0;
}
.dp-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ad1ad;
  box-shadow: 0 0 8px #4ad1ad;
  animation: dpPulse 1.6s ease-in-out infinite;
}
@keyframes dpPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Phone scene loop · 8s · paused until row in viewport */
.dp-anim-1 { animation: dpStep1 8s ease-in-out infinite; animation-play-state: paused; }
.dp-anim-2 { animation: dpStep2 8s ease-in-out infinite; animation-play-state: paused; }
.dp-anim-3 { animation: dpStep3 8s ease-in-out infinite; animation-play-state: paused; }
.dp-anim-4 { animation: dpStep4 8s ease-in-out infinite; animation-play-state: paused; }
.feat-row.in .dp-anim-1,
.feat-row.in .dp-anim-2,
.feat-row.in .dp-anim-3,
.feat-row.in .dp-anim-4 { animation-play-state: running; }
@keyframes dpStep1 {
  0%, 4% { opacity: 0; transform: translateY(8px); }
  10%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes dpStep2 {
  0%, 14% { opacity: 0; }
  20%, 38% { opacity: 1; }
  44%, 100% { opacity: 0; }
}
@keyframes dpStep3 {
  0%, 42% { opacity: 0; transform: translateY(8px); }
  52%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes dpStep4 {
  0%, 56% { opacity: 0; transform: scale(0.92); }
  66%, 92% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}

/* ================================================================
   FEAT 2 · REVIEWS (Google review card stack)
   ================================================================ */
.reviews {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rv-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.rv-rating {
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.rv-meta { display: flex; flex-direction: column; gap: 4px; }
.rv-stars {
  color: var(--blue-mid);
  letter-spacing: 0.1em;
  font-size: 18px;
}
.rv-count {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(250, 249, 246, 0.55);
}
.rv-card {
  position: relative;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.rv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--grad-top);
  opacity: 0.7;
}
.rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rv-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb74d, #f06292);
  flex-shrink: 0;
}
.rv-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.rv-when {
  font-family: var(--body);
  font-size: 11.5px;
  color: rgba(250, 249, 246, 0.5);
  letter-spacing: 0.02em;
}
.rv-google {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--blue);
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rv-stars-sm {
  color: var(--blue-mid);
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 10px;
}
.rv-body {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(250, 249, 246, 0.85);
  margin-bottom: 14px;
}
.rv-reply {
  padding: 12px 14px;
  background: rgba(55, 138, 221, 0.08);
  border-left: 2px solid var(--blue-mid);
  border-radius: 4px 8px 8px 4px;
}
.rv-reply-tag {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 4px;
}
.rv-reply-text {
  font-family: var(--body);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(250, 249, 246, 0.78);
  font-style: italic;
}
.rv-toast {
  position: absolute;
  top: -14px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--navy);
  border: 1px solid rgba(15, 110, 86, 0.45);
  border-radius: 100px;
  font-family: var(--body);
  font-size: 11.5px;
  color: rgba(250, 249, 246, 0.9);
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(15, 110, 86, 0.35);
  z-index: 2;
}
.rv-toast strong { color: #4ad1ad; font-weight: 600; }
.rv-toast-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ad1ad;
  box-shadow: 0 0 10px #4ad1ad;
  animation: dpPulse 1.6s ease-in-out infinite;
}

/* Reviews · one-shot stagger entry, toast keeps looping */
.rv-anim-1, .rv-anim-2 {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.feat-row.in .rv-anim-1 { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.feat-row.in .rv-anim-2 { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.rv-anim-3 { animation: rvToast 5s ease-in-out infinite; animation-play-state: paused; animation-delay: 1s; }
.feat-row.in .rv-anim-3 { animation-play-state: running; }
@keyframes rvToast {
  0%, 8% { opacity: 0; transform: translate(8px, -6px) scale(0.9); }
  20%, 70% { opacity: 1; transform: translate(0, 0) scale(1); }
  82%, 100% { opacity: 0; transform: translate(-4px, -6px) scale(0.95); }
}

/* ================================================================
   FEAT 3 · TIMELINE (sequenced follow-up messages)
   ================================================================ */
.timeline {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 60px;
}
.tl-axis {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 22px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(55, 138, 221, 0.35) 12%, rgba(55, 138, 221, 0.35) 88%, transparent);
}
.tl-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
}
.tl-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -45px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--blue-mid);
  box-shadow: 0 0 12px rgba(55, 138, 221, 0.55);
  z-index: 1;
}
.tl-day {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--blue-mid);
}
.tl-bubble {
  position: relative;
  padding: 18px 22px 18px 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.tl-bubble::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -7px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.035);
  border-left: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  transform: rotate(45deg);
}
.tl-tag {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4ad1ad;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(15, 110, 86, 0.14);
  border: 1px solid rgba(15, 110, 86, 0.3);
  margin-bottom: 10px;
}
.tl-bubble p {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 249, 246, 0.88);
}

/* Timeline · one-shot stagger entry */
.tl-anim-1, .tl-anim-2, .tl-anim-3 {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.feat-row.in .tl-anim-1 { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.feat-row.in .tl-anim-2 { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
.feat-row.in .tl-anim-3 { opacity: 1; transform: translateX(0); transition-delay: 0.65s; }

/* ================================================================
   FEAT 4 · CALENDAR (week view + appointment list)
   ================================================================ */
.cal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 24px 26px 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.cal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 1px;
  background: var(--grad-top);
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.cal-month {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.cal-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4ad1ad;
}
.cal-stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ad1ad;
  box-shadow: 0 0 10px #4ad1ad;
  animation: dpPulse 1.8s ease-in-out infinite;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 22px;
}
.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}
.cal-day span {
  font-family: var(--body);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: rgba(250, 249, 246, 0.4);
  text-transform: uppercase;
}
.cal-day b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: rgba(250, 249, 246, 0.78);
}
.cal-day.cal-today {
  background: rgba(55, 138, 221, 0.16);
  border-color: rgba(55, 138, 221, 0.35);
}
.cal-day.cal-today b { color: var(--blue-mid); }
.cal-day.cal-today span { color: var(--blue-mid); }
.cal-day.cal-dim b, .cal-day.cal-dim span { opacity: 0.4; }

.cal-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.cal-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  opacity: 0;
}
.cal-time {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--blue-mid);
  min-width: 36px;
}
.cal-name {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.cal-name em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  color: rgba(250, 249, 246, 0.5);
  margin-left: 2px;
}
.cal-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ad1ad;
  padding: 4px 9px;
  border-radius: 100px;
  background: rgba(15, 110, 86, 0.14);
  border: 1px solid rgba(15, 110, 86, 0.32);
}
.cal-check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ad1ad;
  position: relative;
}
.cal-check::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: rotate(-45deg);
}
.cal-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(250, 249, 246, 0.55);
}
.cal-foot b {
  color: var(--cream);
  font-weight: 600;
  margin-right: 4px;
}

/* Calendar events · one-shot stagger entry */
.cal-anim-1, .cal-anim-2, .cal-anim-3 {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feat-row.in .cal-anim-1 { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.feat-row.in .cal-anim-2 { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.feat-row.in .cal-anim-3 { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* ================================================================
   PULL QUOTE
   ================================================================ */
.quote-block { padding: 90px 0; text-align: center; }
.pull-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding-top: 50px;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: 90px;
  color: var(--blue);
  line-height: 1;
}
.pull-quote em { font-style: italic; color: var(--blue); }
.quote-attr {
  margin-top: 30px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ================================================================
   CLIENTS · marquee logo bar (light)
   ================================================================ */
.clients-sec { padding-bottom: 100px; }
.clients-head { text-align: center; margin-bottom: 56px; }
.clients-head .eyebrow { justify-content: center; display: inline-flex; }
.clients-head h3 { margin-top: 22px; color: var(--ink); }
.clients-head h3 em { font-style: italic; color: var(--blue); }

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marqueeLR 50s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeLR {
  0%   { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: translate3d(-25%, 0, 0); }
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.marquee-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.logo-item {
  flex-shrink: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  transition: opacity var(--t-comp);
}
.logo-item:hover { opacity: 1; }
.logo-item img {
  height: 100%;
  width: auto;
  max-height: 88px;
  max-width: 260px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .marquee-track { gap: 56px; }
  .logo-item { height: 60px; }
  .logo-item img { max-height: 60px; max-width: 180px; }
}

/* ================================================================
   OFFER (dark, featured)
   ================================================================ */
.offer-shell {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(55, 138, 221, 0.18);
}
.offer-shell::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-top);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .offer-grid { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
}
.offer-grid h2 { margin: 24px 0 22px; }
.offer-text {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250, 249, 246, 0.7);
  margin-bottom: 28px;
}

.includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.includes li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 249, 246, 0.85);
}
.check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(15, 110, 86, 0.18);
  border: 1px solid rgba(15, 110, 86, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.price-card {
  padding: 40px;
  background: var(--grad-primary);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(55, 138, 221, 0.25);
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.2), transparent 70%);
  pointer-events: none;
}
.price-card > * { position: relative; z-index: 1; }

.price-strike {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(250, 249, 246, 0.7);
  margin-bottom: 18px;
}
.price-strike .label { color: rgba(250, 249, 246, 0.55); }
.strike { text-decoration: line-through; text-decoration-color: rgba(250, 249, 246, 0.4); text-decoration-thickness: 1.5px; }
.price-strike strong { color: var(--cream); font-weight: 600; margin-left: 6px; }

.price-divider { width: 40px; height: 1px; background: rgba(250, 249, 246, 0.25); margin: 18px auto; }

.today-label {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.7);
  margin-bottom: 14px;
}
.price-now {
  font-family: var(--display);
  font-weight: 500;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
  display: inline-flex;
  align-items: flex-start;
}
.price-now .currency,
.price-now .period {
  font-size: 32px;
  margin-top: 16px;
  color: rgba(250, 249, 246, 0.7);
  font-style: italic;
  font-weight: 400;
}
.price-now .currency { margin-right: 4px; }

.price-period {
  font-family: var(--body);
  font-size: 13.5px;
  color: rgba(250, 249, 246, 0.7);
  margin-top: 8px;
  margin-bottom: 22px;
}
.price-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.price-card .btn {
  width: 100%;
  justify-content: center;
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
}
.price-card .btn:hover { background: #fff; }
.price-fineprint {
  margin-top: 18px;
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(250, 249, 246, 0.6);
  font-style: italic;
}
.signature-line {
  margin-top: 38px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--blue-mid);
}

/* ================================================================
   FAQ (light)
   ================================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
}
.faq-side h2 { margin: 24px 0 22px; color: var(--ink); }
.faq-side h2 em { font-style: italic; color: var(--blue); }
.faq-side .lede { color: var(--gray); margin-bottom: 32px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
details.faq-item {
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  transition: border-color var(--t-comp), background var(--t-comp);
  overflow: hidden;
}
details.faq-item[open] {
  border-color: rgba(24, 95, 165, 0.25);
  background: rgba(24, 95, 165, 0.04);
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.04);
  border: 1px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-comp), background var(--t-comp), border-color var(--t-comp);
}
details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  border-color: var(--blue);
}
details.faq-item[open] .faq-icon svg path { stroke: var(--cream); }
details.faq-item .faq-body {
  padding: 0 26px 26px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
}

/* ================================================================
   FINAL CTA (dark)
   ================================================================ */
.final { text-align: center; padding: 120px 0; }
.final .eyebrow { justify-content: center; display: inline-flex; }
.final h2 {
  margin: 26px auto 24px;
  max-width: 920px;
  color: var(--cream);
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.final h2 em { font-style: italic; color: var(--blue-mid); }
.final .lede { margin: 0 auto 38px; color: rgba(250, 249, 246, 0.7); }
.final .signature-line { margin-top: 44px; font-size: 17px; }

/* ================================================================
   FOOTER (light)
   ================================================================ */
footer {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  padding: 50px 0 60px;
  color: var(--ink);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.foot-cred {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--gray);
}
.foot-contact {
  font-family: var(--body);
  font-size: 13px;
  color: var(--gray);
}
.foot-contact a { color: var(--blue); text-decoration: none; }
.foot-contact a:hover { text-decoration: underline; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }
.reveal.delay-4 { transition-delay: 0.6s; }
.reveal.delay-5 { transition-delay: 0.75s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .orb, .float-card, .brand-dot::after { animation: none; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .sec { padding: 90px 0; }
  .features { padding: 100px 0; }
  .quote-block { padding: 70px 0; }
}
