/* === TOKENS === */
:root {
  --bg: #0c0c0b;
  --bg-2: #161615;
  --bg-card: #1d1d1b;
  --fg: #f0ede6;
  --fg-2: #a09c92;
  --accent: #e8a317;
  --accent-dim: rgba(232, 163, 23, 0.12);
  --accent-light: rgba(232, 163, 23, 0.25);
  --success: #22c55e;
  --border: rgba(240, 237, 230, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-2); border-radius: 3px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === LAYOUT === */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(12, 12, 11, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0c0c0b;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.nav-cta:hover {
  background: #f5b42e;
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(232, 163, 23, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero left: phone mockup */
.hero-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Hero right: reference image + badges */
.hero-image-wrap {
  position: relative;
  width: 100%;
}

.hero-reference-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(232, 163, 23, 0.08);
  display: block;
}

.hero-price-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--accent);
  color: #0c0c0b;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(232, 163, 23, 0.3);
}

.hero-price-badge span {
  display: block;
  font-size: 1.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.hero-trust-strip .avatars {
  display: flex;
}

.hero-trust-strip .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-2);
  background: var(--bg-card);
  margin-left: -8px;
  overflow: hidden;
}

.hero-trust-strip .avatar:first-child {
  margin-left: 0;
}

.hero-trust-strip .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-trust-text {
  font-size: 0.8rem;
  color: var(--fg-2);
  line-height: 1.4;
}

.hero-trust-text strong {
  color: var(--fg);
}

/* Hero right: headline/CTA above reference image + trust strip */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 0.5rem;
}

.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.hero-headline .highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0c0c0b;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.btn-primary:hover {
  background: #f5b42e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 163, 23, 0.25);
}

.hero-timestamp {
  font-size: 0.78rem;
  color: var(--fg-2);
}

/* === PHONE MOCKUP === */
.phone-shell {
  width: 270px;
  background: var(--bg-card);
  border-radius: 34px;
  border: 1.5px solid rgba(255,255,255,0.1);
  padding: 14px 14px 28px;
  position: relative;
  box-shadow: 0 32px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,163,23,0.1);
  flex-shrink: 0;
}

.phone-notch {
  width: 76px;
  height: 22px;
  background: var(--bg-card);
  border-radius: 0 0 14px 14px;
  margin: -14px auto 10px;
  border-bottom: 1.5px solid rgba(255,255,255,0.05);
}

.phone-screen {
  background: #0f0f0e;
  border-radius: 18px;
  overflow: hidden;
  height: 360px;
  display: flex;
  flex-direction: column;
}

.call-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.call-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.call-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
}

.call-status {
  font-size: 0.7rem;
  color: #22c55e;
}

.call-time {
  font-size: 0.72rem;
  color: var(--fg-2);
  font-variant-numeric: tabular-nums;
}

.call-transcript {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.msg {
  max-width: 85%;
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.msg span { display: block; }

.ai-msg {
  background: rgba(232, 163, 23, 0.15);
  color: var(--fg);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.lead-msg {
  background: rgba(255,255,255,0.08);
  color: var(--fg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.booking {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.call-booked {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(34, 197, 94, 0.08);
  border-top: 1px solid rgba(34, 197, 94, 0.15);
  font-size: 0.7rem;
  color: #22c55e;
  font-weight: 500;
}

/* Pulse rings */
.pulse-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 163, 23, 0.15);
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

.pulse-ring-2 {
  animation-delay: 1.5s;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* === TRUST COUNTERS === */
.trust-counters {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-counters-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-counter-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.counter-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 8px;
}

.counter-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--fg-2);
  line-height: 1.4;
}

.counter-sub {
  font-size: 0.75rem;
  color: var(--fg-2);
  opacity: 0.7;
}

/* === LOGOS === */
.logos {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.logos-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.logos-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  opacity: 0.5;
  margin-bottom: 28px;
}

.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-2);
  opacity: 0.4;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.logo-item:hover {
  opacity: 0.7;
}

/* === PROBLEM === */
.problem {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.problem-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 3rem;
}

.problem-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  max-width: 560px;
  line-height: 1.1;
}

.problem-cta-wrap {
  flex-shrink: 0;
}

.problem-cta-note {
  font-size: 0.8rem;
  color: var(--fg-2);
  margin-top: 10px;
  text-align: right;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.problem-card {
  background: var(--bg-2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.problem-card:hover {
  background: var(--bg-card);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232, 163, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.problem-card h3 {
  font-size: 1.1rem;
  color: var(--fg);
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* === HOW === */
.how { padding: 100px 0; }

.how-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.how-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 600px;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 2.5rem;
}

.step {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.step:hover {
  border-color: rgba(232, 163, 23, 0.2);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step-body h3 {
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.85rem;
  color: var(--fg-2);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 48px 12px 0;
}

.how-note {
  background: var(--accent-dim);
  border: 1px solid rgba(232, 163, 23, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.how-note p {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* === FEATURES === */
.features {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.features-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card-main {
  background: var(--bg-card);
  border: 1px solid rgba(232, 163, 23, 0.15);
}

.feature-svg {
  color: var(--fg-2);
}

.feature-card-main .feature-svg {
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 3rem;
}

.testimonials-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  max-width: 480px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(232, 163, 23, 0.2);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--fg-2);
}

/* === OUTCOMES === */
.outcomes { padding: 100px 0; }

.outcomes-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.outcomes-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 600px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.outcome-card {
  background: var(--bg-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcome-big {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.outcome-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.outcome-desc {
  font-size: 0.8rem;
  color: var(--fg-2);
  line-height: 1.4;
}

.outcome-detail {
  font-size: 0.82rem;
  color: var(--fg-2);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.02em;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

.manifesto-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.manifesto-detail p {
  font-size: 0.95rem;
  color: var(--fg-2);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-2);
  margin-top: 6px;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrap { order: 1; }
  .hero-right { order: 2; }
  .phone-shell { margin: 0 auto; }

  .trust-counters-grid,
  .problem-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .logos-strip { gap: 28px; }

  .step-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .problem-cta-note { text-align: left; }
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .trust-counters-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .phone-shell { width: 240px; }
  .phone-screen { height: 300px; }
  .manifesto-quote { font-size: 1.2rem; padding-left: 20px; }
}