/* ============================================================
   Zuri Solutions — Plain HTML/CSS/JS Version
   Design: Light Pink Palette · Space Grotesk + DM Sans
   Primary accent: #FF2D78 (solid rose pink)
   Background: #FFF0F5 (blush) / #FFE4EE (alt sections)
   Text: #1A1A2E (charcoal) / #6B7280 (muted)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (min-width: 1024px) {
  html {
    scroll-snap-type: y mandatory;
  }
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #FFF0F5;
  color: #1A1A2E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #FFF0F5; }
::-webkit-scrollbar-thumb { background: rgba(255,45,120,0.25); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,45,120,0.45); }
::selection { background: rgba(255,45,120,0.15); color: #1A1A2E; }

/* ── Container ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ── Utility ───────────────────────────────────── */
.pink-text { color: #FF2D78; }
.text-center { text-align: center; }
.w-full { width: 100%; }

.pink-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF2D78;
  box-shadow: 0 0 6px rgba(255,45,120,0.5);
  flex-shrink: 0;
  vertical-align: middle;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF2D78;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #1A1A2E;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-alt {
  background: #FFE4EE;
}

/* ── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FF2D78;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255,45,120,0.35);
}
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #1A1A2E;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,0,0.18);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.16s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: #FF2D78;
  color: #FF2D78;
  background: rgba(255,45,120,0.04);
  transform: translateY(-1px);
}
.btn-outline:active { transform: scale(0.97); }

.btn-ghost {
  background: none;
  border: none;
  color: #6B7280;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #FF2D78; }

/* ── Animations ────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.23,1,0.32,1), transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1) 0.7s, transform 0.7s cubic-bezier(0.23,1,0.32,1) 0.7s;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in-right { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,240,245,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  background: rgba(255,240,245,0.95);
  border-bottom-color: rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1A1A2E;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 1rem;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover, .nav-link-active { color: #1A1A2E; }
.nav-spacer { flex: 1; }
.nav-cta { margin-left: auto; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1A1A2E;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(255,240,245,0.98);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #6B7280;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-link:hover { color: #1A1A2E; }
.mobile-cta { margin-top: 0.75rem; justify-content: center; }

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

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFF0F5;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/zuri-hero-bg.webp');
  background-size: cover;
  background-position: center right;
  opacity: 0.12;
  pointer-events: none;
}
.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FFF0F5 45%, rgba(255,240,245,0.5) 75%, rgba(255,240,245,0.1) 100%);
  pointer-events: none;
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, #FFF0F5);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.hero-label {
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.1s forwards;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  color: #1A1A2E;
  line-height: 1.05;
}
.hero-headline .word {
  display: inline-block;
  margin-right: 0.22em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.23,1,0.32,1), transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.hero-headline .word.visible { opacity: 1; transform: translateY(0); }

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.6;
}
.trust-item .pink-dot { margin-top: 0.45rem; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-micro {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #6B7280;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.4s forwards;
}
.scroll-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #6B7280;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,45,120,0.4), transparent);
}

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
.services {
  padding: 6rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: rgba(255,45,120,0.3);
  box-shadow: 0 4px 20px rgba(255,45,120,0.1);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,45,120,0.08);
  border: 1px solid rgba(255,45,120,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-title {
  font-size: 1rem;
  color: #1A1A2E;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-body {
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   DETECTIVE
══════════════════════════════════════════════════ */
.detective {
  padding: 6rem 0;
  background: #FFF0F5;
  position: relative;
  overflow: hidden;
}
.detective-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,45,120,0.05), transparent);
  pointer-events: none;
}
.detective-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.detective-intro-header { margin-bottom: 2rem; }
.detective-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,45,120,0.08);
  border: 1px solid rgba(255,45,120,0.2);
  border-radius: 2rem;
  padding: 0.4rem 0.9rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #FF2D78;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.detective-intro-body {
  font-size: 0.95rem;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.detective-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.detective-meta-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #6B7280;
  letter-spacing: 0.04em;
}
.detective-meta-sep { color: rgba(0,0,0,0.2); }
.detective-start-btn { width: 100%; justify-content: center; }

/* Quiz */
.quiz-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(0,0,0,0.07);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: #FF2D78;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.quiz-steps {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.quiz-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  transition: background 0.3s;
}
.quiz-step-dot.active { background: #FF2D78; }
.quiz-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}
.quiz-question-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: #1A1A2E;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #1A1A2E;
  text-align: left;
  width: 100%;
}
.quiz-option:hover { border-color: rgba(255,45,120,0.3); background: rgba(255,45,120,0.03); }
.quiz-option.selected { border-color: #FF2D78; background: rgba(255,45,120,0.06); }
.quiz-option-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.2);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-option.selected .quiz-option-radio {
  border-color: #FF2D78;
  background: #FF2D78;
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Results */
.results-score-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.results-score-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 0.75rem;
}
.results-score-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #FF2D78;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.results-score-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(0,0,0,0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.results-score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF2D78, #ff6fa3);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.23,1,0.32,1);
  width: 0%;
}
.results-tier-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #FF2D78;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.results-message {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.results-inefficiencies {
  background: rgba(255,45,120,0.04);
  border: 1px solid rgba(255,45,120,0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.results-ineff-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF2D78;
  margin-bottom: 0.75rem;
}
.results-ineff-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.results-recommended {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #6B7280;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}
.results-recommended span { color: #FF2D78; }

.results-form-wrap {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 2rem;
  margin-top: 2rem;
}
.results-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: #1A1A2E;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.results-form-sub {
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}
.results-form { display: flex; flex-direction: column; gap: 1rem; }
.retake-btn { display: block; margin: 1.5rem auto 0; }

/* Submitted */
.submitted-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.submitted-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-align: center;
}
.submitted-body {
  font-size: 0.9rem;
  color: #6B7280;
  text-align: center;
  font-weight: 300;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════════════ */
.philosophy {
  padding: 6rem 0;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .philosophy-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .philosophy-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.philosophy-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.philosophy-card:hover {
  border-color: rgba(255,45,120,0.25);
  box-shadow: 0 4px 16px rgba(255,45,120,0.08);
  transform: translateY(-2px);
}
.philosophy-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #FF2D78;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.philosophy-title {
  font-size: 0.95rem;
  color: #1A1A2E;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.philosophy-body {
  font-size: 0.85rem;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.65;
}
.philosophy-quote {
  border-left: 2px solid #FF2D78;
  padding: 1.25rem 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: #1A1A2E;
  font-style: italic;
  background: rgba(255,45,120,0.03);
  border-radius: 0 0.5rem 0.5rem 0;
  max-width: 720px;
}

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact {
  padding: 6rem 0;
  background: #FFE4EE;
}
.contact-wrap { max-width: 640px; margin: 0 auto; }
.contact-intro {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1A1A2E;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-submitted { text-align: center; padding: 3rem 0; }

/* ── Form fields ───────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.03);
  color: #1A1A2E;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus { border-color: rgba(255,45,120,0.4); }
.form-input::placeholder { color: #9CA3AF; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer { background: #1A1A2E; }
.footer-cta-strip {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-ready {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}
.footer-cta-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.footer-bottom { padding: 2rem 0; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #FF2D78; }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  width: 100%;
}

/* ══════════════════════════════════════════════════
   PAGE HERO (sub-pages)
══════════════════════════════════════════════════ */
.page-hero {
  padding: 9rem 0 5rem;
  background: #FFF0F5;
}
.page-hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: #1A1A2E;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  margin-top: 0.75rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   PROCESS (How We Work page)
══════════════════════════════════════════════════ */
.process { padding: 5rem 0; }
.process-steps { max-width: 720px; margin: 0 auto; }
.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.process-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #FF2D78;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 0.2rem;
  width: 2rem;
}
.process-step-content { flex: 1; padding-bottom: 0.5rem; }
.process-step-title {
  font-size: 1.1rem;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.process-step-body {
  font-size: 0.9rem;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.7;
}
.process-connector {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(255,45,120,0.3), rgba(255,45,120,0.05));
  margin-left: 2.35rem;
}

/* ══════════════════════════════════════════════════
   SPEED SECTION (How We Work page)
══════════════════════════════════════════════════ */
.speed-section {
  padding: 6rem 0;
  background: #FFE4EE;
}
.speed-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 3rem 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}
.speed-stat {
  flex: 1;
  min-width: 180px;
  padding: 2rem 1.75rem;
}
.speed-stat-divider {
  width: 1px;
  background: rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.speed-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FF2D78;
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
}
.speed-stat-label {
  font-size: 0.8rem;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.5;
}
.speed-cta { margin-top: 1rem; }

/* ══════════════════════════════════════════════════
   USE CASES PAGE
══════════════════════════════════════════════════ */
.uc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 5rem 0;
}
@media (min-width: 640px) { .uc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .uc-grid { grid-template-columns: 1fr 1fr 1fr; } }

.uc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.uc-card:hover {
  border-color: rgba(255,45,120,0.25);
  box-shadow: 0 4px 16px rgba(255,45,120,0.08);
  transform: translateY(-2px);
}
.uc-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #FF2D78;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.uc-card-title {
  font-size: 1rem;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.uc-card-body {
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.65;
}

/* Case Example */
.case-example {
  padding: 6rem 0;
  background: #FFF0F5;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .case-grid { grid-template-columns: 1fr 1fr; } }

.case-body {
  font-size: 0.95rem;
  color: #6B7280;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.case-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.case-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #1A1A2E;
  line-height: 1.5;
}
.case-points li .pink-dot { margin-top: 0.35rem; }
.case-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.case-visual {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.case-badge {
  display: inline-block;
  background: rgba(255,45,120,0.08);
  border: 1px solid rgba(255,45,120,0.2);
  border-radius: 2rem;
  padding: 0.35rem 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #FF2D78;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.case-flow { display: flex; flex-direction: column; gap: 0; }
.case-flow-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  background: #FFF5F8;
  font-size: 0.875rem;
  color: #1A1A2E;
}
.case-flow-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,45,120,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-flow-arrow {
  text-align: center;
  color: rgba(255,45,120,0.4);
  font-size: 1rem;
  padding: 0.25rem 0;
  padding-left: 1rem;
}

/* ── Keyframes ─────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
