@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --accent: #E4402A;
  --ink: #151412;
  --body-copy: #4A4842;
  --bg-alt: #FAF6F0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
}

img { max-width: 100%; }

a { color: inherit; }

.bg-alt { background: var(--bg-alt); }
.bg-white { background: #ffffff; }

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 22px) scale(1.08); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, 20px) scale(1.05); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(16px, -22px) scale(1.05); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,0.84,0.44,1), transform 0.7s cubic-bezier(0.16,0.84,0.44,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .pulse-ring, .hero-blob { animation: none !important; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ECEAE5;
  box-shadow: 0 0 0 rgba(21,20,18,0);
  transition: box-shadow 0.25s ease;
}
.nav.scrolled { box-shadow: 0 8px 24px rgba(21,20,18,0.06); }
.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 30px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
  font-weight: 600;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.65;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }
.nav-cta { transition: background 0.15s, transform 0.15s; }
.nav-cta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  position: relative;
}

/* ===== LAYOUT HELPERS ===== */
.wrap { max-width: 1220px; margin: 0 auto; }
.section { padding: clamp(56px,7vw,80px) clamp(20px,5vw,32px); }

/* ===== HERO ===== */
.hero { padding: clamp(48px,9vw,88px) clamp(20px,5vw,32px) 0; position: relative; overflow: hidden; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob.a {
  width: 460px; height: 460px; top: -150px; right: -80px;
  background: radial-gradient(circle, rgba(228,64,42,0.34), rgba(228,64,42,0) 70%);
  animation: drift-a 14s ease-in-out infinite;
}
.hero-blob.b {
  width: 360px; height: 360px; top: 200px; left: -110px;
  background: radial-gradient(circle, rgba(21,20,18,0.14), rgba(21,20,18,0) 70%);
  animation: drift-b 16s ease-in-out infinite;
}
.hero-blob.c {
  width: 300px; height: 300px; bottom: -90px; right: 10%;
  background: radial-gradient(circle, rgba(228,64,42,0.24), rgba(228,64,42,0) 70%);
  animation: drift-c 19s ease-in-out infinite;
}
.hero-canvas-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
#hero-canvas { display: block; width: 100%; height: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px,100%),1fr));
  gap: clamp(32px,6vw,64px);
  align-items: start;
  padding-bottom: clamp(56px,7vw,80px);
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(44px,5.4vw,72px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  max-width: 600px;
}
.hero-title .accent { color: var(--accent); }
.hero-copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-copy);
  max-width: 480px;
  margin: 0 0 20px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.15s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-primary:hover { filter: brightness(0.92); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(228,64,42,0.28); }
.btn-secondary {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 100px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.btn-secondary:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.demo-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(155deg, #1a1816 0%, #2b120d 46%, var(--accent) 130%);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.demo-card::before {
  content: "";
  position: absolute; inset: 0; opacity: 0.5;
  background: repeating-linear-gradient(115deg, transparent 0 18px, rgba(255,255,255,0.05) 18px 20px);
}
.demo-header {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff; margin-bottom: 34px;
}
.demo-live {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.demo-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #43D18A; display: inline-block; }
.demo-brand { font-size: 12.5px; opacity: 0.6; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.demo-select-label { position: relative; margin-bottom: 14px; }
.demo-select-label p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,0.65); }
.agent-options { position: relative; display: flex; gap: 8px; margin-bottom: 22px; }
.agent-option { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 8px; border-radius: 14px; border-width: 1.5px; border-style: solid;
  border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.04);
  cursor: pointer; transition: border-color 0.15s, background 0.15s, opacity 0.15s;
}
.agent-option:disabled { opacity: 0.4; cursor: not-allowed; }
.agent-option:hover { border-color: rgba(255,255,255,0.4); }
.agent-option.active { border-color: var(--accent); background: rgba(228,64,42,0.12); }
.agent-option-name { font-size: 15px; font-weight: 700; color: #fff; }
.agent-option-tagline { font-size: 12.5px; color: rgba(255,255,255,0.55); }
.demo-website { position: relative; margin-bottom: 24px; }
.demo-website p { margin: 0 0 10px; font-size: 14.5px; font-weight: 400; color: #fff; line-height: 1.4; }
.demo-website-row { display: flex; gap: 10px; }
.demo-input {
  flex: 1; min-width: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px; padding: 13px 18px; font-size: 14px; color: #fff; font-family: 'Inter', sans-serif;
}
.demo-input::placeholder { color: rgba(255,255,255,0.55); }
.demo-tap-wrap { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.demo-tap-ring-box { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; }
.pulse-ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.22);
  animation: pulse-ring 2.4s ease-out infinite;
}
.pulse-ring.delay { inset: 14px; animation-delay: 0.8s; }
.demo-tap-btn {
  position: relative; width: 140px; height: 140px; border-radius: 50%; background: var(--accent);
  border: none; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,0.35); transition: transform 0.15s;
}
.demo-tap-btn:hover { transform: scale(1.04); }
.demo-tap-btn.is-connecting { animation: tap-pulse-fast 1s ease-in-out infinite; cursor: wait; }
.demo-tap-btn.is-live { background: #1a1816; }
.demo-tap-btn.is-live:hover { transform: none; }
.demo-tap-label { font-size: 13px; font-weight: 700; color: var(--ink); }
.demo-tap-btn.is-live .demo-tap-label { color: #fff; }
.demo-footer { position: relative; text-align: center; margin: 0; font-size: 14.5px; color: rgba(255,255,255,0.6); min-height: 20px; }
.demo-footer.is-error { color: #FFB4A8; }

.demo-transcript {
  position: relative; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
  margin: 0 0 0;
}
.demo-transcript.is-open { max-height: 130px; opacity: 1; margin: 0 0 20px; }
.demo-transcript-inner {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px;
  padding: 14px 16px; max-height: 130px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px;
}
.demo-transcript-line { font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,0.85); }
.demo-transcript-line b { color: var(--accent); font-weight: 700; }
.demo-transcript-line.agent b { color: #7FD1A8; }

.demo-post-call {
  position: relative; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
}
.demo-post-call.is-open { max-height: 160px; opacity: 1; margin: 0 0 20px; }
.demo-post-call-inner {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px;
  padding: 18px; text-align: center;
}
.demo-post-call-text { font-size: 14px; color: rgba(255,255,255,0.75); margin: 0 0 12px; }
.demo-post-call-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff; border: none; border-radius: 100px;
  padding: 12px 22px; font-size: 14px; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none; transition: filter 0.15s;
}
.demo-post-call-cta:hover { filter: brightness(0.92); }

@keyframes tap-pulse-fast {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.94); }
}

/* ===== LETTER (PROBLEM) ===== */
.letter-card {
  position: relative;
  background: var(--ink);
  border-radius: 40px;
  clip-path: polygon(72px 0, 100% 0, 100% 100%, 0 100%, 0 72px);
  padding: clamp(30px,6vw,60px) clamp(24px,6vw,60px);
}
.letter-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: stretch; }
.letter-img-col { position: relative; }
.letter-sticky-img { position: sticky; top: 110px; height: 420px; }
.letter-stripes { position: absolute; inset: 0; border-radius: 24px; overflow: hidden; }
.letter-stripe {
  position: absolute; width: 32px; height: 170%; left: 8%; top: -35%;
  background: repeating-linear-gradient(0deg, var(--accent) 0 5px, #1c1310 5px 11px);
  transform: rotate(16deg); border-radius: 100px; opacity: 0.5;
}
.letter-stripe.two { left: 30%; opacity: 0.3; }
.letter-photo-frame {
  position: absolute; left: 26px; right: 26px; top: 26px; bottom: 26px;
  border-radius: 22px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.letter-photo-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 40%; transform: scale(1.15); filter: grayscale(1) contrast(1.12);
}
.tint-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(228,64,42,0.4), rgba(10,8,7,0.42));
  mix-blend-mode: multiply;
}
.letter-copy { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.75); }
.section-h2-dark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px,4vw,48px); font-weight: 700; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 20px;
}
.letter-pull {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 27px; font-weight: 700;
  color: #fff; margin: 0 0 28px;
}
.letter-copy p { margin: 0 0 4px; }
.letter-copy p.spacer { margin: 0 0 28px; }
.stat-source { font-size: 11px; color: rgba(255,255,255,0.4); margin: 0 0 28px; }

/* ===== OPPORTUNITY / INTRO ===== */
.opportunity-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: stretch; }
.opportunity-img-col { position: relative; }
.opportunity-sticky-img { position: sticky; top: 110px; height: 460px; padding: 20px 0 0 20px; }
.opportunity-tab { position: absolute; top: 0; left: 0; width: 120px; height: 80px; background: #F2F0EB; border-radius: 20px; }
.opportunity-photo-frame { position: relative; border-radius: 24px; overflow: hidden; height: 460px; }
.opportunity-photo-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.12);
}
.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px,4vw,48px); font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 24px;
}
.section-h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 27px; font-weight: 700;
  letter-spacing: -0.01em; margin: 0 0 26px; max-width: 520px;
}
.body-copy { font-size: 16px; line-height: 1.7; color: var(--body-copy); max-width: 520px; margin: 0 0 20px; }
.body-copy:last-child { margin-bottom: 0; }

/* ===== FEATURES ACCORDION ===== */
.features { margin-top: clamp(56px,8vw,80px); border-top: 1px solid #E4E1D9; }
.feature-item { border-bottom: 1px solid #E4E1D9; transition: background 0.2s ease; }
.feature-item:hover { background: rgba(228,64,42,0.03); }
.feature-btn {
  width: 100%; display: flex; align-items: center; gap: 20px; padding: 24px 0;
  background: none; border: none; cursor: pointer; text-align: left;
}
.feature-icon { width: 26px; height: 26px; flex-shrink: 0; color: var(--accent); display: flex; align-items: center; transition: transform 0.25s ease; }
.feature-item.open .feature-icon { transform: scale(1.1); }
.feature-title { flex: 1; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); }
.feature-chevron {
  width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.feature-item.open .feature-chevron { transform: rotate(45deg); }
.feature-body-wrap { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.feature-body { margin: 0 0 26px 46px; font-size: 16px; line-height: 1.6; color: #6B685F; max-width: 640px; opacity: 0; transition: opacity 0.25s ease 0.05s; }
.feature-item.open .feature-body { opacity: 1; }

/* ===== TOP AGENTS ===== */
.top-agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.agent-card {
  display: flex; background: #EEF0F1; border: 1px solid #ECEAE5; border-radius: 24px; overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.agent-card:hover { transform: translateY(-6px); filter: drop-shadow(0 18px 32px rgba(21,20,18,0.12)); }
.agent-card-content {
  flex: 1; padding: clamp(32px,4vw,44px) 28px; display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.agent-photo-wrap { position: relative; width: 88px; height: 88px; margin-bottom: 22px; }
.agent-photo { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; }
.agent-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.agent-card:hover .agent-photo img { transform: scale(1.06); }
.agent-flag {
  position: absolute; bottom: -2px; right: -2px; width: 26px; height: 26px; border-radius: 50%;
  overflow: hidden; box-shadow: 0 0 0 2px #fff, 0 1px 4px rgba(0,0,0,0.18);
}
.agent-flag svg { display: block; }
.agent-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.agent-role { font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--accent); margin: 0 0 16px; }
.agent-desc { font-size: 15px; line-height: 1.6; color: #6B685F; margin: 0; }
.agent-card-stripe { width: 32px; flex-shrink: 0; position: relative; background: var(--ink); overflow: hidden; }
.agent-card-stripe::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: repeating-linear-gradient(115deg, transparent 0 18px, rgba(255,255,255,0.05) 18px 20px);
}
.agent-card-stripe-line {
  position: absolute; width: 40px; height: 160%; left: 15%; top: -30%;
  background: repeating-linear-gradient(0deg, var(--accent) 0 6px, #1c1310 6px 13px);
  transform: rotate(14deg); border-radius: 100px; opacity: 0.9;
}

/* ===== COST SECTION ===== */
.cost-section { position: relative; background: var(--ink); overflow: hidden; }
.cost-grid { max-width: 1220px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.cost-copy { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.6); margin: 0; }
.stat-card {
  background: #1C1714; border-radius: 28px; padding: clamp(28px,5vw,48px); display: grid; grid-template-columns: 1fr 1fr;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,0.28); }
.stat-card-left { padding-right: clamp(16px,3vw,32px); border-right: 1px solid rgba(255,255,255,0.1); }
.stat-card-right { padding-left: clamp(16px,3vw,32px); }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(40px,6.5vw,68px); font-weight: 700;
  line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.7); white-space: nowrap;
}
.stat-number.accent-stroke { -webkit-text-stroke: 1.5px var(--accent); text-align: left; }
.stat-label { display: block; margin-top: 14px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.5); }
.stat-label.left { text-align: left; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,3vw,32px); margin-top: 24px; }
.pricing-card {
  display: flex; background: #EEF0F1; border: 1px solid #ECEAE5; border-radius: 28px; overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.pricing-card:hover { transform: translateY(-6px); filter: drop-shadow(0 20px 36px rgba(21,20,18,0.12)); }
.pricing-card-content { flex: 1; padding: 44px 34px; }
.pricing-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 27px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.pricing-sub { font-size: 16px; color: #8B887F; margin: 0 0 26px; }
.pricing-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.pricing-price span { font-size: 16px; color: #8B887F; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.pricing-feature { display: flex; gap: 10px; font-size: 16px; color: var(--body-copy); }
.pricing-feature .check { color: var(--accent); }
.pricing-feature .check.alt { color: rgb(228,64,42); }
.pricing-cta {
  display: block; text-align: center; background: var(--ink); color: #fff; border-radius: 100px;
  padding: 14px; font-size: 14.5px; font-weight: 700; text-decoration: none; margin-bottom: 12px;
  transition: background 0.15s;
}
.pricing-cta:hover { background: var(--accent); transform: translateY(-2px); }
.pricing-cta { transition: background 0.15s, transform 0.15s; }
.pricing-stripe { width: 60px; flex-shrink: 0; position: relative; background: var(--ink); overflow: hidden; }
.pricing-stripe::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: repeating-linear-gradient(115deg, transparent 0 18px, rgba(255,255,255,0.05) 18px 20px);
}
.pricing-stripe-line {
  position: absolute; width: 40px; height: 160%; left: 15%; top: -30%;
  background: repeating-linear-gradient(0deg, var(--accent) 0 6px, #1c1310 6px 13px);
  transform: rotate(14deg); border-radius: 100px; opacity: 0.9;
}
.pricing-stripe-line.two { left: 55%; opacity: 0.45; }

/* ===== CALCULATOR ===== */
.calc-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px,4vw,48px); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 20px; max-width: 640px; }
.calc-sub { font-size: 16px; line-height: 1.6; color: #6B685F; max-width: 600px; margin: 0 0 56px; }
.calc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.calc-inputs { display: flex; flex-direction: column; gap: 32px; }
.calc-label { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.calc-hint { display: block; font-size: 16px; color: #8B887F; margin-bottom: 14px; }
.calc-input-row { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--ink); border-radius: 100px; padding: 14px 22px; }
.calc-prefix { font-size: 16px; font-weight: 700; color: #8B887F; }
.calc-input-row input[type="number"] {
  border: none; outline: none; font-size: 16px; font-weight: 700; font-family: 'Inter', sans-serif;
  width: 100%; background: transparent;
}
.calc-suffix { font-size: 14px; font-weight: 600; color: #8B887F; white-space: nowrap; }
.calc-range { width: 100%; margin-top: 14px; accent-color: var(--accent); }
.calc-result { background: var(--ink); border-radius: 28px; padding: clamp(28px,5vw,40px); color: #fff; }
.calc-result-label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 22px; }
.calc-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 16px; }
.calc-row span { color: rgba(255,255,255,0.6); }
.calc-total { display: flex; justify-content: space-between; align-items: center; padding: 22px 0 8px; }
.calc-total-label { font-size: 16px; font-weight: 600; }
.calc-total-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--accent); }
.calc-keep { background: rgba(255,255,255,0.06); border-radius: 16px; padding: 18px 20px; margin-top: 14px; display: flex; justify-content: space-between; align-items: center; }
.calc-keep-label { font-size: 16px; font-weight: 600; }
.calc-keep-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; }
.calc-disclaimer { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.4); margin: 20px 0 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px,4vw,48px); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 56px; }
.testimonials-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 32px; align-items: stretch; }
.testimonial-card {
  background: var(--ink); border-radius: 28px; padding: clamp(32px,5vw,52px); color: #fff;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,0.22); }
.quote-icon { margin-bottom: 22px; }
.testimonial-quote { font-size: 16px; line-height: 1.55; font-weight: 500; margin: 0 0 32px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
}
.testimonial-name { display: block; font-size: 16px; }
.testimonial-company { font-size: 16px; color: rgba(255,255,255,0.55); }
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: rgba(255,255,255,0.25); }
.testimonial-dot.active { background: var(--accent); }
.testimonial-arrows { display: flex; gap: 10px; }
.testimonial-arrow {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: transparent;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.testimonial-arrow:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.testimonial-arrow { transition: background 0.15s, transform 0.15s; }
.rating-card { background: #EEF0F1; border-radius: 28px; padding: clamp(32px,5vw,44px); display: flex; flex-direction: column; justify-content: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.rating-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(21,20,18,0.08); }
.ghost-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(56px,7vw,84px); font-weight: 700;
  line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--accent);
}
.ghost-number.small { font-size: clamp(40px,5.5vw,56px); -webkit-text-stroke: 1.5px var(--ink); margin-top: 0; }
.rating-label { display: block; margin: 14px 0 30px; font-size: 14px; font-weight: 600; color: var(--body-copy); }
.rating-divider { height: 1px; background: #E4E1D9; margin-bottom: 26px; }
.rating-sub { display: block; margin-top: 14px; font-size: 13.5px; color: #8B887F; }

/* ===== FAQ ===== */
.faq-panel { max-width: 1220px; margin: 0 auto; background: #EEF0F1; border-radius: 32px; padding: clamp(40px,7vw,64px); }
.faq-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 48px; }
.faq-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px,4vw,48px); font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1.15; }
.faq-list { border-top: 1px solid #D3D6D5; }
.faq-item { border-bottom: 1px solid #D3D6D5; transition: background 0.2s ease; }
.faq-item:hover { background: rgba(21,20,18,0.02); }
.faq-btn {
  width: 100%; display: flex; align-items: center; gap: 24px; padding: 26px 0;
  background: none; border: none; cursor: pointer; text-align: left;
}
.faq-index { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: #8B887F; width: 26px; flex-shrink: 0; transition: color 0.2s ease; }
.faq-item.open .faq-index { color: var(--accent); }
.faq-question { flex: 1; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--ink); }
.faq-chevron { width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer-wrap { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-answer { margin: 0 0 26px 50px; font-size: 16px; line-height: 1.6; color: #6B685F; max-width: 600px; opacity: 0; transition: opacity 0.25s ease 0.05s; }
.faq-item.open .faq-answer { opacity: 1; }

/* ===== FINAL CTA + CONTACT ===== */
.contact-section { position: relative; background: var(--ink); overflow: hidden; }
.contact-glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 520px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(228,64,42,0.24), rgba(228,64,42,0) 70%);
  pointer-events: none; z-index: 0;
}
.contact-cta { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto clamp(56px,7vw,84px); }
.contact-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(228,64,42,0.12); border: 1px solid rgba(228,64,42,0.32);
  color: #FF9A85; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 24px;
}
.contact-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.contact-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px,3.6vw,44px); font-weight: 700;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 16px; line-height: 1.15;
}
.contact-cta-sub { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,0.6); margin: 0; }

.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch; }
.contact-form-card {
  background: #1C1714; border: 1px solid rgba(255,255,255,0.08); border-radius: 28px;
  padding: clamp(28px,4vw,40px); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,0.24); }
.contact-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(24px,3vw,32px); font-weight: 700; color: #fff; margin: 0 0 24px; letter-spacing: -0.01em; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 12px;
  padding: 14px 18px; font-size: 14.5px; color: #fff; font-family: 'Inter', sans-serif;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.contact-form input::placeholder { color: rgba(255,255,255,0.5); }
.contact-form input:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(228,64,42,0.16);
}
.contact-form input.full { grid-column: span 2; }
.contact-submit {
  margin-top: 20px; background: var(--accent); color: #fff; border: none; border-radius: 100px;
  padding: 15px 32px; font-size: 14.5px; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
}
.contact-submit:hover { filter: brightness(0.92); transform: translateY(-2px); }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.contact-form-status { margin: 14px 0 0; font-size: 13.5px; color: rgba(255,255,255,0.5); min-height: 18px; }
.contact-form-status.is-success { color: #7FD1A8; }
.contact-form-status.is-error { color: #FFB4A8; }

.contact-info-card {
  background: #1C1714; border: 1px solid rgba(255,255,255,0.08); border-radius: 28px;
  padding: clamp(28px,4vw,40px); display: flex; flex-direction: column; justify-content: center; gap: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,0.24); }
.contact-info-block { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: rgba(228,64,42,0.12);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
}
.contact-info-label {
  display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.contact-info-value { font-size: 16px; font-weight: 700; color: #fff; text-decoration: none; transition: color 0.15s; }
a.contact-info-value:hover { color: var(--accent); }

/* ===== FOOTER ===== */
.footer { position: relative; background: var(--ink); padding: 30px 32px; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,64,42,0.4), transparent);
}
.footer-inner { max-width: 1220px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-logo { height: 22px; width: auto; display: block; filter: brightness(0) invert(1); transition: opacity 0.15s; }
.footer-logo:hover { opacity: 0.75; }
.footer-copy { font-size: 13.5px; color: rgba(255,255,255,0.45); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  #nav-links { display: none !important; }
}
@media (max-width: 780px) {
  .letter-card { clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px) !important; padding: 36px 28px 0 !important; }
  #bird-wordmark { display: none !important; }
}
@media (max-width: 900px) {
  .top-agents-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 760px) {
  .letter-grid, .opportunity-grid, .cost-grid, .calc-grid, .testimonials-grid, .faq-grid, .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .contact-glow { width: 600px; height: 360px; top: -140px; }
  .top-agents-grid { grid-template-columns: 1fr !important; }
  .letter-sticky-img { position: relative !important; top: auto !important; height: 260px !important; }
  .stat-card { grid-template-columns: 1fr !important; gap: 28px !important; }
  .stat-card-left { padding-right: 0 !important; border-right: none !important; padding-bottom: 28px !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-card { flex-direction: column !important; }
  .pricing-card > div:last-child { width: 100% !important; height: 56px !important; }
  .agent-card:hover, .pricing-card:hover, .testimonial-card:hover, .rating-card:hover, .stat-card:hover {
    transform: none;
  }
}
@media (max-width: 520px) {
  .contact-form { grid-template-columns: 1fr !important; }
  .contact-form input.full { grid-column: span 1 !important; }
  .hero-blob { display: none; }
}
body { overflow-x: hidden; }
