/* ============================================
   LeadHouse Landing — Light Premium
   ============================================ */

:root {
  --bg: #0A0A0A;
  --bg-warm: #111111;
  --bg-card: #161616;
  --bg-dark: #0A0A0A;
  --border: rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.05);
  --gold: #C9A84C;
  --gold-light: #D4B86A;
  --gold-bg: rgba(201,168,76,0.08);
  --gold-border: rgba(201,168,76,0.2);
  --text-1: #F2EEE6;
  --text-2: #9A9488;
  --text-3: #5A5650;
  --text-inv: #1A1714;
  --radius: 10px;
  --radius-lg: 16px;
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ── Animations ── */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim.in { opacity: 1; transform: translateY(0); }
.anim[data-delay="80"] { transition-delay: 80ms; }
.anim[data-delay="160"] { transition-delay: 160ms; }
.anim[data-delay="240"] { transition-delay: 240ms; }
.anim[data-delay="320"] { transition-delay: 320ms; }
.anim[data-delay="500"] { transition-delay: 500ms; }

/* ============================================
   Nav
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 17px; font-weight: 600;
  color: var(--text-1); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-svg { color: var(--gold); }
.nav-right {
  display: flex; align-items: center; gap: 1.75rem;
}
.nav-link {
  font-size: 13.5px; color: var(--text-2);
  text-decoration: none; transition: color 0.2s;
}
.nav-link:hover { color: var(--text-1); }
.nav-btn {
  background: var(--gold); color: #0A0A0A !important;
  font-size: 13px; font-weight: 500;
  padding: 7px 18px; border-radius: 6px;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-btn:hover { opacity: 0.85; }

/* Mobile nav */
.nav-mobile {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-mobile span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-2); transition: 0.3s;
}
.nav-mobile.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile.active span:nth-child(2) { opacity: 0; }
.nav-mobile.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none; flex-direction: column; padding: 1rem 2rem 1.5rem;
  gap: 1rem; border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-size: 15px; color: var(--text-2); text-decoration: none; }
.nav-mobile-menu .nav-btn { color: #0A0A0A !important; }
.nav-mobile-menu .nav-btn { text-align: center; display: block; margin-top: 0.5rem; }

@media (max-width: 768px) {
  .nav-right { display: none; }
  .nav-mobile { display: flex; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block; font-family: var(--font-b);
  font-size: 14px; font-weight: 500;
  padding: 12px 28px; border-radius: 8px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--gold {
  background: var(--gold); color: #FFF;
  box-shadow: 0 2px 12px rgba(184,151,46,0.2);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(184,151,46,0.3);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--text-1);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.25); }
.btn--full { width: 100%; text-align: center; }
.btn--lg { font-size: 15px; padding: 14px 36px; }

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero--split { text-align: left; min-height: auto; padding-top: 8rem; padding-bottom: 6rem; }
.hero--split .hero-title,
.hero--split .hero-desc { margin-left: 0; margin-right: 0; max-width: none; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.5;
}
.hero-orb--1 {
  width: 500px; height: 500px;
  top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(184,151,46,0.12), transparent 70%);
}
.hero-orb--2 {
  width: 400px; height: 400px;
  bottom: -5%; left: -5%;
  background: radial-gradient(circle, rgba(184,151,46,0.06), transparent 70%);
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold-border);
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 2rem;
}
.hero-chip__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: chipPulse 2.5s ease infinite;
}
@keyframes chipPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 780px; margin: 0 auto 1.5rem;
  color: var(--text-1);
}
.hero-title em {
  font-style: italic; color: var(--gold);
  font-weight: 400;
}

.hero-desc {
  font-size: 17px; color: var(--text-2);
  max-width: 520px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.hero-metrics {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 4rem; justify-content: center;
}
.hero-metric { text-align: center; }
.hero-metric__num {
  font-family: var(--font-d);
  font-size: 28px; font-weight: 600;
  color: var(--gold); display: block; line-height: 1;
}
.hero-metric__label {
  font-size: 12px; color: var(--text-3);
  margin-top: 4px; display: block;
}
.hero-metric-sep {
  width: 1px; height: 32px;
  background: var(--border);
}

.hero-scroll {
  position: absolute; bottom: 2rem;
  color: var(--text-3); opacity: 0.4;
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 640px) {
  .hero-metrics { flex-direction: column; gap: 1.5rem; }
  .hero-metric-sep { width: 40px; height: 1px; }
}

/* ============================================
   Logo Bar
   ============================================ */
.logo-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--bg-warm);
}
.logo-bar .container {
  display: flex; align-items: center; gap: 2rem;
  justify-content: center; flex-wrap: wrap;
}
.logo-bar__text {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3);
  font-weight: 500;
}
.logo-bar__logos {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.logo-bar__logos span {
  font-size: 13px; color: var(--text-2);
  font-weight: 500; letter-spacing: 0.02em;
}

/* ============================================
   Section Headers
   ============================================ */
section { padding: 6rem 0; }
.section-kicker {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.section-desc {
  font-size: 15px; color: var(--text-2);
  max-width: 480px; line-height: 1.7;
}
.section-head { margin-bottom: 3.5rem; }
.section-head--center { text-align: center; }
.section-head--center .section-desc { margin-left: auto; margin-right: auto; }
.section-title em { font-style: italic; color: var(--gold); font-weight: 500; }

/* ============================================
   Bento Features
   ============================================ */
.features-section { background: var(--bg-warm); }

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.bento-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.2);
}
.bento-card--wide { grid-column: span 3; }

.bento-card__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-border);
  border-radius: 8px; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.bento-card__title {
  font-family: var(--font-d);
  font-size: 16px; font-weight: 600;
  margin-bottom: 0.5rem;
}
.bento-card__desc {
  font-size: 14px; color: var(--text-2); line-height: 1.65;
}

/* Chat visual inside bento */
.bento-card__visual { margin-top: 1.5rem; }
.bento-chat {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 480px;
}
.bento-chat__msg {
  padding: 10px 14px; border-radius: 12px;
  font-size: 13px; line-height: 1.5;
  max-width: 80%;
}
.bento-chat__msg--in {
  background: var(--bg-warm); color: var(--text-1);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bento-chat__msg--out {
  background: var(--gold-bg); color: var(--text-1);
  border: 1px solid var(--gold-border);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bento-chat__status {
  font-size: 11px; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.05em;
  padding-top: 4px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .features-bento { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
}

/* ============================================
   How it works (Steps)
   ============================================ */
.how-section { background: var(--bg); }
.steps {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 1.5rem;
}
.step {
  flex: 1; max-width: 280px; text-align: center;
}
.step__num {
  font-family: var(--font-d);
  font-size: 32px; font-weight: 600;
  color: var(--gold); line-height: 1;
  margin-bottom: 1rem;
}
.step__title {
  font-family: var(--font-d);
  font-size: 16px; font-weight: 600;
  margin-bottom: 0.5rem;
}
.step__desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.step-arrow {
  color: var(--border); margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section { background: var(--bg-warm); }
.testimonials-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color 0.25s;
}
.testi-card:hover { border-color: var(--gold-border); }
.testi-card__stars {
  color: var(--gold); font-size: 13px;
  letter-spacing: 2px; margin-bottom: 1rem;
}
.testi-card__text {
  font-size: 14px; color: var(--text-2);
  line-height: 1.7; font-style: italic;
  margin-bottom: 1.25rem;
}
.testi-card__author {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.testi-card__author strong { color: var(--text-1); font-weight: 500; }
.testi-card__author span { color: var(--text-3); font-size: 12px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--gold);
}

@media (max-width: 768px) {
  .testimonials-row { grid-template-columns: 1fr; }
}

/* ============================================
   Pricing
   ============================================ */
.pricing-section { background: var(--bg); }
.pricing-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; max-width: 700px; margin: 0 auto;
}
.pricing-row--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}
@media (max-width: 900px) {
  .pricing-row--3 { grid-template-columns: 1fr; max-width: 420px; }
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(201,168,76,0.18), 0 0 0 1px rgba(201,168,76,0.25);
}
.price-card--featured {
  border-color: var(--gold-border);
  box-shadow: 0 4px 24px rgba(184,151,46,0.08);
}
.price-card__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #FFF;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.price-card__plan {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-3); margin-bottom: 1rem;
}
.price-card--featured .price-card__plan { color: var(--gold); }
.price-card__price {
  font-family: var(--font-d);
  font-size: 40px; font-weight: 600;
  line-height: 1; margin-bottom: 0.25rem;
}
.price-card__price span {
  font-family: var(--font-b);
  font-size: 14px; font-weight: 400; color: var(--text-3);
}
.price-card__desc {
  font-size: 13.5px; color: var(--text-2);
  margin-bottom: 1.75rem; line-height: 1.6;
}
.price-card__list {
  list-style: none; margin-bottom: 1.75rem;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}
.price-card__list li {
  font-size: 13.5px; color: var(--text-2);
  padding-left: 22px;
  position: relative;
}
.price-card__list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-size: 12px; font-weight: 600;
}
.pricing-note {
  text-align: center; font-size: 12px;
  color: var(--text-3); margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .pricing-row { grid-template-columns: 1fr; }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 6rem 2rem;
}

/* ============================================
   Footer
   ============================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--bg);
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-d);
  font-size: 14px; color: var(--text-2);
}
.footer-brand svg { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 12px; color: var(--text-3);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-2); }
.footer-copy { font-size: 11px; color: var(--text-3); }

/* ============================================
   Hero split (2 colunas + mockup)
   ============================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-copy .hero-title { font-size: clamp(34px, 4.6vw, 58px); }
.hero-copy .hero-desc { font-size: 17px; max-width: 520px; }
.hero-copy .hero-ctas { justify-content: flex-start; }

.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 2.5rem;
}
.hero-trust__avatars { display: flex; }
.hero-trust__avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--gold);
  margin-left: -10px;
}
.hero-trust__avatars span:first-child { margin-left: 0; }
.hero-trust__text {
  font-size: 13px; color: var(--text-2);
}
.hero-trust__text strong { color: var(--text-1); font-weight: 600; }

/* Mockup do dashboard no hero */
.hero-mockup {
  position: relative;
}
.mockup-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.18), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.mockup-glow--right {
  inset: -10% -20% -10% 20%;
}
.mockup-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.05);
  position: relative; z-index: 1;
}
.mockup-frame__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.mockup-frame__bar > span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.mockup-frame__bar > span:nth-child(1) { background: rgba(255,90,82,0.5); }
.mockup-frame__bar > span:nth-child(2) { background: rgba(230,192,41,0.5); }
.mockup-frame__bar > span:nth-child(3) { background: rgba(82,196,82,0.5); }
.mockup-frame__url {
  flex: 1; text-align: center;
  font-size: 11px; color: var(--text-3);
  font-family: var(--font-b);
  margin: 0 60px 0 8px;
}
.mockup-frame__body {
  padding: 1.25rem;
  background: var(--bg-card);
}

.mockup-pipe__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.mockup-pipe__title {
  font-family: var(--font-d);
  font-size: 13px; font-weight: 600;
  color: var(--text-1);
}
.mockup-pipe__live {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600;
}
.mockup-pipe__live span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: chipPulse 2s ease infinite;
}
.mockup-pipe__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 1rem;
}
.mockup-col {
  border: 1px solid var(--border);
  border-radius: 8px; padding: 10px;
  background: var(--bg-warm);
}
.mockup-col__label {
  font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-3); margin-bottom: 4px;
}
.mockup-col__num {
  font-family: var(--font-d);
  font-size: 20px; font-weight: 600;
  color: var(--text-1);
}
.mockup-col--hot { border-color: rgba(255,90,82,0.25); }
.mockup-col--hot .mockup-col__num { color: #FF7A6E; }
.mockup-col--warm { border-color: var(--gold-border); }
.mockup-col--warm .mockup-col__num { color: var(--gold); }

.mockup-lead {
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 6px;
  background: var(--bg-warm);
  position: relative;
}
.mockup-lead__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--gold);
  flex-shrink: 0;
}
.mockup-lead__info { flex: 1; min-width: 0; }
.mockup-lead__info strong {
  display: block;
  font-size: 12px; color: var(--text-1); font-weight: 600;
}
.mockup-lead__info span {
  display: block;
  font-size: 11px; color: var(--text-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mockup-lead__badge {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 3px 8px; border-radius: 10px;
  background: rgba(255,90,82,0.12); color: #FF7A6E;
  border: 1px solid rgba(255,90,82,0.25);
}
.mockup-lead__badge--warm {
  background: var(--gold-bg); color: var(--gold);
  border-color: var(--gold-border);
}
.mockup-lead--new { border-color: var(--gold-border); }
.mockup-lead__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,168,76,0.6);
  animation: pulseDot 1.6s ease infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
  100% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .hero--split { text-align: center; padding-top: 7rem; }
  .hero--split .hero-title,
  .hero--split .hero-desc { max-width: 600px; margin-left: auto; margin-right: auto; }
  .hero-copy .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
}

/* ============================================
   Pain section
   ============================================ */
.pain-section { background: var(--bg); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 1rem;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.pain-card:hover {
  border-color: rgba(255,90,82,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,90,82,0.12), 0 0 0 1px rgba(255,90,82,0.15);
}
.pain-card__icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,90,82,0.25);
  background: rgba(255,90,82,0.06);
  border-radius: 10px; color: #FF7A6E;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.pain-card__title {
  font-family: var(--font-d);
  font-size: 18px; font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-1);
}
.pain-card__desc {
  font-size: 14px; color: var(--text-2); line-height: 1.65;
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Solution section
   ============================================ */
.solution-section { background: var(--bg-warm); }
.solution-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.solution-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.solution-list li {
  display: flex; align-items: flex-start; gap: 14px;
}
.solution-list__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.solution-list strong {
  display: block;
  font-size: 15px; color: var(--text-1);
  font-weight: 600; margin-bottom: 2px;
}
.solution-list span {
  display: block;
  font-size: 13.5px; color: var(--text-2);
  line-height: 1.6;
}

/* Chat frame mockup */
.solution-mockup { position: relative; }
.chat-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative; z-index: 1;
}
.chat-frame__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.chat-frame__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--gold);
}
.chat-frame__head strong {
  display: block;
  font-size: 13px; color: var(--text-1); font-weight: 600;
}
.chat-frame__head span {
  display: block;
  font-size: 11px; color: var(--gold);
}
.chat-frame__body {
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 8px;
  max-height: 480px;
}
.chat-msg {
  padding: 9px 13px; border-radius: 14px;
  font-size: 13px; line-height: 1.5;
  max-width: 78%;
}
.chat-msg--in {
  background: var(--bg-warm); color: var(--text-1);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg--out {
  background: var(--gold-bg); color: var(--text-1);
  border: 1px solid var(--gold-border);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-2);
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  margin: 8px -1.25rem -1.25rem;
  background: rgba(201,168,76,0.04);
}
.chat-status strong { color: var(--gold); font-weight: 600; }
.chat-status__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: chipPulse 2s ease infinite;
}

@media (max-width: 960px) {
  .solution-split { grid-template-columns: 1fr; gap: 3rem; }
  .solution-section .section-head { text-align: center; }
}

/* ============================================
   Demo section
   ============================================ */
.demo-section { background: var(--bg); }
.demo-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 80px rgba(201,168,76,0.04);
  max-width: 1000px; margin: 0 auto;
}
.demo-frame__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.demo-frame__bar > span {
  width: 10px; height: 10px; border-radius: 50%;
}
.demo-frame__bar > span:nth-child(1) { background: rgba(255,90,82,0.5); }
.demo-frame__bar > span:nth-child(2) { background: rgba(230,192,41,0.5); }
.demo-frame__bar > span:nth-child(3) { background: rgba(82,196,82,0.5); }
.demo-frame__url {
  flex: 1; text-align: center;
  font-size: 12px; color: var(--text-3);
  margin: 0 80px 0 8px;
}
.demo-frame__body {
  display: grid; grid-template-columns: 200px 1fr;
  min-height: 400px;
}
.demo-sidebar {
  background: var(--bg-warm);
  border-right: 1px solid var(--border);
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column; gap: 4px;
}
.demo-sidebar__brand {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-d);
  font-size: 14px; color: var(--text-1); font-weight: 600;
  padding: 0 0.75rem 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.demo-sidebar__brand svg { color: var(--gold); }
.demo-sidebar__item {
  font-size: 12px; color: var(--text-2);
  padding: 8px 12px; border-radius: 6px;
}
.demo-sidebar__item--active {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border-left: 2px solid var(--gold);
}
.demo-main { padding: 1.75rem 2rem; }
.demo-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 2rem;
}
.demo-stat {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.demo-stat__label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-3); margin-bottom: 6px;
}
.demo-stat__num {
  font-family: var(--font-d);
  font-size: 28px; font-weight: 600;
  color: var(--text-1); line-height: 1;
}
.demo-stat__trend {
  font-size: 11px; color: var(--gold);
  margin-top: 6px; font-weight: 500;
}
.demo-pipe__title {
  font-family: var(--font-d);
  font-size: 14px; font-weight: 600;
  margin-bottom: 1rem; color: var(--text-1);
}
.demo-pipe__bars {
  display: flex; flex-direction: column; gap: 14px;
}
.demo-bar {
  display: grid; grid-template-columns: 60px 1fr 30px;
  align-items: center; gap: 12px;
}
.demo-bar__label {
  font-size: 11px; color: var(--text-2);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600;
}
.demo-bar__track {
  height: 8px; border-radius: 4px;
  background: var(--bg-warm);
  overflow: hidden;
}
.demo-bar__fill {
  height: 100%; border-radius: 4px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-bar__fill--hot { background: linear-gradient(90deg, #FF7A6E, #ff5a4c); }
.demo-bar__fill--warm { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.demo-bar__fill--cold { background: linear-gradient(90deg, #6B8AB8, #5675a3); }
.demo-bar__num {
  font-size: 12px; color: var(--text-1); font-weight: 600;
  text-align: right;
}

@media (max-width: 768px) {
  .demo-frame__body { grid-template-columns: 1fr; }
  .demo-sidebar { display: none; }
  .demo-stats { grid-template-columns: 1fr; }
}

/* ============================================
   Results section
   ============================================ */
.results-section { background: var(--bg-warm); }
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.result-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.2);
}
.result-card__num {
  font-family: var(--font-d);
  font-size: 44px; font-weight: 600;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.5rem;
}
.result-card__label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-2); margin-bottom: 1rem;
}
.result-card__desc {
  font-size: 13px; color: var(--text-3);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CTA Final
   ============================================ */
.cta-final {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 7rem 2rem;
  position: relative; overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.cta-final .hero-orb--1 {
  top: -30%; left: 30%;
  width: 600px; height: 600px;
}
.cta-final .hero-orb--2 {
  bottom: -30%; right: 20%;
  width: 500px; height: 500px;
}
.cta-final__note {
  font-size: 12px; color: var(--text-3);
  margin-top: 1.25rem;
}

/* ============================================
   Results disclaimer + Social proof + CTA perks
   ============================================ */
.results-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2.5rem;
  letter-spacing: 0.02em;
  font-style: italic;
}

.social-section { background: var(--bg); }
.social-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}
.social-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 18px;
  font-family: var(--font-d);
  font-size: 56px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.social-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.2);
}
.social-card__quote {
  font-size: 14.5px;
  color: var(--text-1);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.social-card__author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}
.social-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.social-card__author strong {
  display: block;
  font-size: 13px; color: var(--text-1); font-weight: 600;
}
.social-card__author span {
  display: block;
  font-size: 11px; color: var(--text-3);
  margin-top: 1px;
}
@media (max-width: 768px) {
  .social-grid { grid-template-columns: 1fr; }
}

.cta-final__perks {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.cta-final__perks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cta-final__perks svg {
  color: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .cta-final__perks { gap: 0.85rem; flex-direction: column; align-items: center; }
}

/* Footer extra links spacing */
.footer-links { flex-wrap: wrap; }
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* FAQ */
.faq-section { padding: 6rem 0; position: relative; }
.faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: all 0.25s ease;
}
.faq-item:hover { border-color: rgba(201,169,97,0.35); background: rgba(255,255,255,0.035); }
.faq-item[open] {
  border-color: rgba(201,169,97,0.45);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 24px rgba(201,169,97,0.06);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 500;
  color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: #c9a961;
  font-weight: 300;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 1rem 0 0;
  color: #999;
  font-size: 0.93rem;
  line-height: 1.65;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Support strip */
.support-strip { padding: 3rem 0 1rem; }
.support-strip__inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  flex-wrap: wrap;
}
.support-strip__icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,97,0.06);
  border: 1px solid rgba(201,169,97,0.18);
  border-radius: 10px;
  color: #c9a961;
  flex-shrink: 0;
}
.support-strip__icon svg { width: 18px; height: 18px; }
.support-strip__text { flex: 1; min-width: 200px; }
.support-strip__text h3 {
  margin: 0 0 0.15rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #ddd;
  letter-spacing: 0.01em;
}
.support-strip__text p { margin: 0; color: #777; font-size: 0.78rem; }
.support-strip__btn {
  white-space: nowrap;
  font-size: 0.78rem !important;
  padding: 0.55rem 1rem !important;
  background: transparent;
  border: 1px solid rgba(201,169,97,0.3) !important;
  color: #c9a961 !important;
}
.support-strip__btn:hover { border-color: rgba(201,169,97,0.55) !important; background: rgba(201,169,97,0.05); }
@media (max-width: 600px) {
  .support-strip__inner { flex-direction: column; text-align: center; padding: 1.5rem; }
  .support-strip__btn { width: 100%; }
}

/* Price card hint */
.price-card__hint {
  font-size: 0.78rem;
  color: #c9a961;
  font-style: italic;
  text-align: center;
  margin: -0.4rem 0 1rem;
  opacity: 0.85;
}
