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

:root {
  --mint: #c8f5e3;
  --mint-deep: #7ee8bb;
  --lavender: #e8dff5;
  --lavender-deep: #c4a8ed;
  --peach: #fde4d0;
  --peach-deep: #f9b88a;
  --yellow: #fef3c7;
  --yellow-deep: #fbbf24;
  --blue: #dbeafe;
  --blue-deep: #7cb3f4;
  --pink: #fce7f3;
  --pink-deep: #f9a8d4;
  --bg: #fefdfb;
  --text: #1a1a2e;
  --text-muted: #6b7084;
  --card-shadow: 0 2px 16px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  --card-hover: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 100px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

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

/* ======= UTILITY ======= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ======= NAV ======= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(254,253,251,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
  display: inline-flex; align-items: center; text-decoration: none;
}
.nav-logo img { height: 24px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost {
  background: none; border: none; color: var(--text-muted); font-weight: 500;
  font-size: 0.95rem; cursor: pointer; font-family: var(--font-body);
  padding: 8px 16px; border-radius: var(--radius-pill); transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.btn-primary {
  background: var(--text); color: white; border: none; padding: 10px 24px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; font-family: var(--font-body); transition: all 0.25s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,26,46,0.25); }
.btn-secondary {
  background: white; color: var(--text); border: 2px solid rgba(0,0,0,0.08);
  padding: 10px 24px; border-radius: var(--radius-pill); font-weight: 600;
  font-size: 0.95rem; cursor: pointer; font-family: var(--font-body);
  transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { border-color: rgba(0,0,0,0.15); transform: translateY(-1px); box-shadow: var(--card-shadow); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ======= HERO ======= */
.hero {
  padding-top: 140px; padding-bottom: 40px;
  text-align: center; position: relative; overflow: visible;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint); color: #166534; padding: 8px 20px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem;
  margin-bottom: 32px; letter-spacing: 0.01em;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1; margin-bottom: 24px; color: var(--text);
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero h1 em {
  font-style: italic; color: transparent;
  background: linear-gradient(135deg, var(--peach-deep), var(--lavender-deep), var(--mint-deep));
  -webkit-background-clip: text; background-clip: text;
}
.hero-sub {
  font-size: 1.2rem; color: var(--text-muted); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.7; font-weight: 400;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-ctas .btn-primary { padding: 14px 32px; font-size: 1.05rem; }
.hero-ctas .btn-secondary { padding: 14px 32px; font-size: 1.05rem; }

.hero-stats {
  display: flex; gap: 48px; justify-content: center; align-items: center;
  margin-bottom: 0; flex-wrap: wrap;
}
.hero-stat { display: flex; align-items: center; gap: 12px; }
.hero-stat-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--text);
}
.hero-stat-label { font-size: 0.9rem; color: var(--text-muted); text-align: left; line-height: 1.3; }

/* ======= HERO FACES ======= */
.hero-face {
  position: absolute; width: 70px; height: 70px; z-index: 1;
  animation: hero-face-float 7s ease-in-out infinite;
}
.hero-face img { width: 100%; height: 100%; object-fit: contain; }
.hero-face-olivia { top: 160px; left: calc(50% - 480px); animation-delay: 0s; }
.hero-face-carrie { top: 300px; left: calc(50% - 520px); animation-delay: -1.8s; }
.hero-face-tash  { top: 160px; right: calc(50% - 480px); animation-delay: -3.2s; }
.hero-face-jamie { top: 300px; right: calc(50% - 520px); animation-delay: -5s; }
@keyframes hero-face-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ======= TICKER ======= */
.ticker-wrap {
  overflow: hidden; padding: 32px 0; margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04);
}
.ticker {
  display: flex; gap: 16px; animation: ticker-scroll 30s linear infinite; width: max-content;
}
.ticker-item {
  white-space: nowrap; padding: 10px 24px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.9rem; flex-shrink: 0;
}
.ticker-item:nth-child(10n+1) { background: var(--mint); color: #166534; }
.ticker-item:nth-child(10n+2) { background: var(--lavender); color: #5b21b6; }
.ticker-item:nth-child(10n+3) { background: var(--peach); color: #9a3412; }
.ticker-item:nth-child(10n+4) { background: var(--yellow); color: #92400e; }
.ticker-item:nth-child(10n+5) { background: var(--blue); color: #1e40af; }
.ticker-item:nth-child(10n+6) { background: var(--pink); color: #9d174d; }
.ticker-item:nth-child(10n+7) { background: var(--mint); color: #166534; }
.ticker-item:nth-child(10n+8) { background: var(--lavender); color: #5b21b6; }
.ticker-item:nth-child(10n+9) { background: var(--peach); color: #9a3412; }
.ticker-item:nth-child(10n+10) { background: var(--yellow); color: #92400e; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ======= OLIVIA SECTION ======= */
.olivia-section {
  padding: 100px 0 80px; text-align: center; position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #f5f0ff 30%, #f0fdf4 70%, var(--bg) 100%);
}
.olivia-orbit {
  position: relative; width: 380px; height: 380px; margin: 0 auto 48px;
}
.olivia-emoji {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120px; height: 120px; z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(126,232,187,0.3));
  object-fit: contain;
}

.orbit-item {
  position: absolute; border-radius: var(--radius-sm);
  padding: 10px 16px; font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--card-shadow); z-index: 1; white-space: nowrap;
  animation: orbit-float 6s ease-in-out infinite;
}
/* 10 items placed with JS for perfect circular positioning — see script below */
.orbit-item { transition: none; }

@keyframes orbit-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}

.orbit-icon {
  width: 14px; height: 14px; flex-shrink: 0; vertical-align: -2px; margin-right: 4px; opacity: 0.7;
}

.olivia-title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.olivia-title em { font-style: italic; }
.olivia-desc {
  font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ======= AGENTS SECTION ======= */
.agents-section { padding: 80px 0 100px; overflow: hidden; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--lavender-deep); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px; line-height: 1.15;
}
.section-desc {
  font-size: 1.1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; margin-bottom: 48px;
}
.agents-gallery-wrap {
  position: relative; margin: 0 -24px;
}
/* No gradient masks — ghost cards handle their own fading */
.agents-gallery {
  display: flex; gap: 20px; padding: 0 60px;
  justify-content: center; align-items: stretch;
}
.agent-card {
  border-radius: var(--radius); padding: 32px 28px; position: relative;
  box-shadow: var(--card-shadow); transition: all 0.3s ease; overflow: hidden;
  cursor: default; min-width: 260px; max-width: 280px; flex-shrink: 0;
  display: flex; flex-direction: column;
}
.agent-card:hover { box-shadow: var(--card-hover); transform: translateY(-4px); }
.agent-card-live { background: linear-gradient(135deg, #f0fdf4, #ecfdf5); }
.agent-card-live:nth-of-type(2) { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.agent-card-coming { background: linear-gradient(135deg, #fef3c7, #fef9c3); opacity: 0.75; }
.agent-card-coming:nth-of-type(4) { background: linear-gradient(135deg, #fce7f3, #fdf2f8); }
.agent-card-coming:hover { opacity: 1; }
.agent-card-ghost {
  background: linear-gradient(135deg, #f8f8fa, #f3f3f6);
  opacity: 0.3; pointer-events: none;
}
.agent-card-ghost h3, .agent-card-ghost p, .agent-card-ghost .agent-feature-tag { opacity: 0.6; }
.agent-card-ghost .agent-card-icon { opacity: 0.4; }
.agent-card-badge {
  display: inline-block; padding: 4px 14px; border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(0,0,0,0.06); color: var(--text-muted); margin-bottom: 12px;
  width: fit-content;
}
.agent-card-badge.badge-live {
  background: var(--mint); color: #166534;
}
.agent-card-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.agent-card-icon svg { width: 24px; height: 24px; }
.agent-card-icon.icon-green { background: var(--mint); color: #166534; }
.agent-card-icon.icon-blue { background: var(--blue); color: #1e40af; }
.agent-card-icon.icon-yellow { background: var(--yellow); color: #92400e; }
.agent-card-icon.icon-pink { background: var(--pink); color: #9d174d; }
.agent-card-icon.icon-ghost { background: rgba(0,0,0,0.05); color: #999; }
.agent-card-emoji { font-size: 2.4rem; margin-bottom: 16px; display: block; display: none; }
.agent-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; }
.agent-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; min-height: 8.5em; }
.agent-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.agent-feature-tag {
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 500;
  background: rgba(255,255,255,0.7); color: var(--text);
  backdrop-filter: blur(4px); width: fit-content;
}
.agent-card-link {
  font-weight: 600; font-size: 0.9rem; color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
  margin-top: auto;
}
.agent-card-link:hover { gap: 8px; }

/* ======= HOW IT WORKS ======= */
.how-section {
  padding: 100px 0; text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #fef7ed 50%, var(--bg) 100%);
}
.how-section .section-label { color: var(--peach-deep); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; text-align: left; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-bottom: 24px;
}
.step:nth-child(1) .step-num { background: var(--mint); color: #166534; }
.step:nth-child(2) .step-num { background: var(--lavender); color: #5b21b6; }
.step:nth-child(3) .step-num { background: var(--peach); color: #9a3412; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 12px; }
.step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ======= STORY SECTION ======= */
.story-section { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.story-text .section-title { max-width: 500px; }
.story-paragraph { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; max-width: 500px; }
.stats-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-mini {
  padding: 24px; border-radius: var(--radius); text-align: center;
  box-shadow: var(--card-shadow); transition: all 0.3s;
}
.stat-mini:hover { box-shadow: var(--card-hover); transform: translateY(-2px); }
.stat-mini:nth-child(1) { background: var(--mint); }
.stat-mini:nth-child(2) { background: var(--lavender); }
.stat-mini:nth-child(3) { background: var(--peach); }
.stat-mini:nth-child(4) { background: var(--yellow); }
.stat-mini-num { font-family: var(--font-display); font-weight: 700; font-size: 2rem; margin-bottom: 4px; }
.stat-mini-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ======= OLIVIA CHAT WIDGET ======= */
.chat-widget {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
}
.chat-header {
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #f5f0ff, #f0fdf4);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.chat-header-avatar { font-size: 1.6rem; }
.chat-header-info { flex: 1; }
.chat-header-name { font-weight: 700; font-size: 0.95rem; }
.chat-header-status { font-size: 0.78rem; color: #22c55e; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.chat-header-status::before { content: ''; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.chat-msg { max-width: 85%; animation: chat-fade 0.4s ease both; }
.chat-msg-user { align-self: flex-end; }
.chat-msg-olivia { align-self: flex-start; }
.chat-bubble {
  padding: 12px 16px; border-radius: 16px; font-size: 0.9rem; line-height: 1.55;
}
.chat-msg-user .chat-bubble {
  background: var(--text); color: white; border-bottom-right-radius: 4px;
}
.chat-msg-olivia .chat-bubble {
  background: #f3f4f6; color: var(--text); border-bottom-left-radius: 4px;
}
.chat-time {
  font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; padding: 0 4px;
}
.chat-msg-user .chat-time { text-align: right; }
.chat-typing { display: flex; gap: 4px; padding: 4px 0; align-items: center; }
.chat-typing span {
  width: 6px; height: 6px; background: #aaa; border-radius: 50%;
  animation: typing-bounce 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }
@keyframes chat-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-action-list { margin: 6px 0 2px; padding-left: 0; list-style: none; }
.chat-action-list li {
  padding: 4px 0; font-size: 0.85rem; display: flex; align-items: flex-start; gap: 8px;
}
.chat-action-list li::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; background: var(--mint-deep); border-radius: 50%; margin-top: 7px; }

/* ======= PRICING ======= */
.pricing-section {
  padding: 100px 0; text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #f5f0ff 50%, var(--bg) 100%);
}
.pricing-section .section-label { color: var(--lavender-deep); }
.pricing-desc {
  font-size: 1.1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 56px; line-height: 1.7;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.price-card {
  background: white; border-radius: var(--radius); padding: 40px 32px;
  box-shadow: var(--card-shadow); transition: all 0.3s; position: relative;
}
.price-card:hover { box-shadow: var(--card-hover); }
.price-card.featured {
  background: var(--text); color: white;
  box-shadow: 0 20px 60px rgba(26,26,46,0.2);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.06); }
.price-card.featured .price-tagline,
.price-card.featured .price-feature { color: rgba(255,255,255,0.7); }
.price-card.featured .price-badge { background: var(--mint); color: #166534; }
.price-card.featured .btn-primary { background: white; color: var(--text); }
.price-card.featured .btn-primary:hover { box-shadow: 0 4px 20px rgba(255,255,255,0.3); }
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.1); }
.price-card.featured .price-monitoring { color: var(--mint-deep); }

.price-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 4px; }
.price-tagline { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.price-amount {
  font-family: var(--font-display); font-weight: 700; font-size: 3rem;
  line-height: 1; margin-bottom: 4px;
}
.price-amount span[data-price-plan] { font-size: inherit; font-weight: inherit; opacity: 1; }
.price-amount span:last-child { font-size: 1rem; font-weight: 400; opacity: 0.6; }
.price-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 600; background: var(--lavender);
  color: #5b21b6; margin: 12px 0 16px;
}
.price-monitoring { font-size: 0.85rem; font-weight: 600; color: var(--lavender-deep); margin-bottom: 20px; }
.price-divider { border: none; border-top: 1px solid rgba(0,0,0,0.06); margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-feature {
  padding: 6px 0; font-size: 0.92rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 10px;
}
.price-feature::before {
  content: '\2713'; font-weight: 700; color: var(--mint-deep); flex-shrink: 0; margin-top: 1px;
}
.price-card.featured .price-feature::before { color: var(--mint-deep); }
.price-card .btn-primary { width: 100%; justify-content: center; padding: 14px; }

/* ======= FREE AUDIT ======= */
.audit-section { padding: 100px 0; }
.audit-section .section-label { color: var(--mint-deep); }
.audit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.audit-steps { margin-top: 40px; }
.audit-step {
  display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start;
}
.audit-step-num {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-weight: 700;
  font-size: 0.9rem; flex-shrink: 0;
}
.audit-step:nth-child(1) .audit-step-num { background: var(--mint); color: #166534; }
.audit-step:nth-child(2) .audit-step-num { background: var(--lavender); color: #5b21b6; }
.audit-step:nth-child(3) .audit-step-num { background: var(--peach); color: #9a3412; }
.audit-step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; padding-top: 8px; }

.audit-form-card {
  background: white; border-radius: var(--radius); padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
}
.audit-form-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 4px;
}
.audit-form-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-label {
  display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted);
}
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.service-option {
  padding: 16px; border-radius: var(--radius-sm); border: 2px solid rgba(0,0,0,0.06);
  cursor: pointer; text-align: center; transition: all 0.2s;
  background: var(--bg);
}
.service-option:hover { border-color: var(--lavender-deep); }
.service-option.active { border-color: var(--lavender-deep); background: var(--lavender); }
.service-option-emoji { font-size: 1.5rem; margin-bottom: 6px; display: block; }
.service-option-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.service-option-desc { font-size: 0.78rem; color: var(--text-muted); }
.form-fields { display: grid; gap: 14px; margin-bottom: 20px; }
.form-input {
  width: 100%; padding: 14px 18px; border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s; background: var(--bg);
}
.form-input:focus { outline: none; border-color: var(--lavender-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-security {
  display: flex; gap: 10px; align-items: flex-start; padding: 14px;
  background: var(--mint); border-radius: var(--radius-sm); margin-bottom: 16px;
  font-size: 0.85rem; color: #166534; line-height: 1.5;
}
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px;
  font-size: 0.88rem; color: var(--text-muted); cursor: pointer; line-height: 1.5;
}
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--lavender-deep); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.form-checkbox span { flex: 1; }
.form-checkbox strong { font-weight: 700; color: var(--text); }
.audit-form-card .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-disclaimer { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.audit-success {
  display: none; text-align: center; padding: 40px 0;
}
.audit-success.show { display: block; }
.audit-success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--mint);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  margin: 0 auto 16px;
}
.audit-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }
.audit-success p { color: var(--text-muted); font-size: 0.95rem; }

/* ======= FINAL CTA ======= */
.final-cta {
  padding: 100px 0; text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--mint) 100%);
}
.final-cta .section-title { max-width: 600px; margin: 0 auto 16px; }
.final-cta-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.final-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ======= FOOTER ======= */
footer {
  padding: 48px 0; border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--bg);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  color: var(--text); text-decoration: none; letter-spacing: -0.04em;
  padding-bottom: 0; border-bottom: 2px solid var(--peach-deep); margin-bottom: -1px;
}
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .hero-face { display: none; }
  .agents-gallery { overflow-x: auto; justify-content: flex-start; padding: 0 24px 0 24px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .agents-gallery::after { content: ''; flex-shrink: 0; width: 24px; }
  .agents-gallery::-webkit-scrollbar { display: none; }
  .agent-card { min-width: 240px; max-width: 280px; }
  .agents-gallery-wrap { margin: 0; }
  .price-card.featured { transform: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 60px auto 0; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .audit-layout { grid-template-columns: 1fr; }
  .olivia-orbit { width: 300px; height: 300px; }
  .olivia-emoji { width: 90px; height: 90px; }
  .orbit-item { font-size: 0.7rem; padding: 6px 10px; }
}

/* ======= PRICING TABS (mobile only) ======= */
.pricing-tabs { display: none; justify-content: center; gap: 4px; margin-bottom: 20px; background: #F0F0EE; border-radius: 100px; padding: 4px; max-width: 360px; margin-left: auto; margin-right: auto; }
.pricing-tab { flex: 1; padding: 10px 16px; border: none; border-radius: 100px; background: transparent; color: #6B7084; font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.pricing-tab.active { background: #1A1A2E; color: #FFFFFF; }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { padding-top: 110px; padding-bottom: 24px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; text-align: center; padding: 14px 24px; }
  .hero-stats { gap: 16px; flex-wrap: nowrap; }
  .hero-stat { gap: 8px; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .stats-mini-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; }
  .olivia-orbit { width: 260px; height: 260px; }
  .orbit-item:nth-child(4), .orbit-item:nth-child(8), .orbit-item:nth-child(10) { display: none; }
  .container { padding: 0 16px; }
  .section-pad { padding: 60px 0; }
  .olivia-section { padding: 60px 0 40px; }
  .agents-section { padding: 40px 0 60px; }
  .how-section { padding: 60px 0; }
  .story-section { padding: 60px 0; }
  .pricing-section { padding: 60px 0; }
  .audit-section { padding: 60px 0; }
  .final-cta { padding: 60px 0; }
  .final-cta-buttons { flex-direction: column; gap: 10px; }
  .final-cta-buttons .btn-primary, .final-cta-buttons .btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .chat-widget { max-width: 100%; }
  .ticker-wrap { margin-top: 20px; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-primary { padding: 8px 16px; font-size: 13px; }
  .nav-actions { gap: 8px; }
  .pricing-tabs { display: flex; }
  .pricing-grid { display: block; }
  .pricing-grid .price-card,
  .pricing-grid .pricing-card { display: none !important; }
  .pricing-grid .price-card.tab-visible,
  .pricing-grid .pricing-card.tab-visible { display: block !important; }
  .pricing-grid .price-card.featured { transform: none; }
}

/* ======= MOBILE NAV DRAWER ======= */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #f5f0ff 50%, #fef7ed 100%);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--text); text-decoration: none;
}
.mobile-nav-cta { display: block; background: #1A1A2E; color: #FFFFFF !important; border-radius: 100px; padding: 14px 32px; font-size: 1rem !important; font-weight: 600; text-align: center; width: 80%; max-width: 300px; margin-top: 8px; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px; background: none; border: none;
  font-size: 1.8rem; cursor: pointer; color: var(--text);
}
.mobile-nav-login {
  font-size: 1.2rem !important; color: var(--text-muted) !important;
}

/* ======= AUDIT FORM COLOUR MATCHING ======= */
.audit-form-card[data-service="google-ads"] .form-input:focus { border-color: #7EE8BB; }
.audit-form-card[data-service="google-ads"] .form-security { background: #F0FDF4; color: #166534; }
.audit-form-card[data-service="google-ads"] .form-checkbox input { accent-color: #7EE8BB; }
.audit-form-card[data-service="google-ads"] .service-option.active { border-color: #7EE8BB; background: #F0FDF4; }

.audit-form-card[data-service="analytics"] .form-input:focus { border-color: #C4A8ED; }
.audit-form-card[data-service="analytics"] .form-security { background: #F5F0FF; color: #5B21B6; }
.audit-form-card[data-service="analytics"] .form-checkbox input { accent-color: #C4A8ED; }
.audit-form-card[data-service="analytics"] .service-option.active { border-color: #C4A8ED; background: #F5F0FF; }

/* ======= UTILITY MODIFIERS ======= */
.btn-large { padding: 16px 36px !important; font-size: 1.05rem !important; }
.chat-header-avatar-img { width: 36px; height: 36px; object-fit: contain; }