* {
  box-sizing: border-box;
}

:root {
  --red: #ff2c22;
  --red-dark: #d91e16;
  --black: #080808;
  --ink: #111111;
  --muted: #6e6e73;
  --line: #e8e8e8;
  --light: #f7f7f8;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 100px 0; }

.page-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
  z-index: -1;
}
.page-glow-1 {
  width: 700px; height: 700px;
  right: -280px; top: 20px;
  background: radial-gradient(circle, rgba(255,44,34,.12), rgba(255,44,34,0) 68%);
}
.page-glow-2 {
  width: 500px; height: 500px;
  left: -320px; top: 480px;
  background: radial-gradient(circle, rgba(255,44,34,.07), rgba(255,44,34,0) 70%);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 22px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  color: var(--red);
  display: inline-grid;
  place-items: center;
}
.brand-mark svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #4b4b50;
}
.nav-links a:hover { color: var(--black); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 17px; }
.btn-dark { background: var(--black); color: white; }
.btn-red { background: var(--red); color: white; box-shadow: 0 12px 30px rgba(255,44,34,.22); }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { border-color: #dedede; background: rgba(255,255,255,.7); }
.btn-outline { border-color: #d7d7d7; background: white; }
.btn-light { background: white; color: var(--black); width: 100%; }

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
}
.mobile-menu { display: none; }

.hero {
  padding-top: 92px;
  padding-bottom: 85px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6b6b70;
  border: 1px solid #e7e7e7;
  background: rgba(255,255,255,.74);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.eyebrow.dark { background: #fff; }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255,44,34,.1);
}

.hero h1 {
  margin: 22px 0 22px;
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: .95;
  letter-spacing: -0.065em;
  max-width: 760px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #5c5c61;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  color: #56565a;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item b { color: var(--black); font-size: 18px; }
.trust-item span { font-size: 12px; }
.trust-divider { width: 1px; height: 38px; background: #dedede; }

.hero-card-wrap { position: relative; }
.hero-card {
  background: #0b0b0d;
  color: white;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
  border: 1px solid #242427;
}
.mock-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mock-topbar h3 { margin: 5px 0 0; font-size: 20px; }
.mock-label {
  color: #a7a7ad;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.live-dot {
  color: #7df69a;
  border: 1px solid rgba(125,246,154,.25);
  background: rgba(125,246,154,.08);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.lead-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #151518;
  border: 1px solid #26262b;
  border-radius: 16px;
  padding: 14px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  background: #f0f0f2;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 900;
  font-style: normal;
}
.lead-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.lead-info strong { font-size: 14px; }
.lead-info span { color: #9b9ba0; font-size: 11px; }
.lead-score, em {
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 800;
}
.hot { background: rgba(255,44,34,.13); color: #ff5c54; }
.warm { background: #fff6db; color: #8b6a00; }

.conversation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.bubble {
  max-width: 84%;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.55;
}
.customer {
  align-self: flex-end;
  background: #242429;
  border-radius: 14px 14px 3px 14px;
}
.ai {
  align-self: flex-start;
  background: rgba(255,44,34,.1);
  border: 1px solid rgba(255,44,34,.18);
  border-radius: 14px 14px 14px 3px;
}
.ai-badge {
  display: block;
  margin-bottom: 5px;
  color: #ff716b;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.status-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.status-pill {
  border: 1px solid #2e2e34;
  color: #b8b8bc;
  background: #131316;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 10px;
}

.floating-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #ececec;
  box-shadow: 0 18px 40px rgba(0,0,0,.13);
  border-radius: 14px;
  padding: 12px 14px;
}
.floating-stat b, .floating-stat small { display: block; }
.floating-stat b { font-size: 13px; }
.floating-stat small { color: #7a7a80; font-size: 10px; margin-top: 2px; }
.mini-icon {
  width: 31px; height: 31px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: #fff1f0; color: var(--red);
  font-weight: 900;
}
.stat-one { left: -38px; bottom: 70px; }
.stat-two { right: -30px; top: 92px; }

.logo-strip {
  padding: 34px 0;
  background: #0b0b0c;
  color: white;
  text-align: center;
}
.logo-strip p { color: #8f8f95; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 20px; font-weight: 800; }
.industry-row { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.industry-row span { color: #d6d6d9; font-weight: 900; font-size: 13px; letter-spacing: .08em; }

.section-light { background: #f7f7f8; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin: 0 auto 54px; }
.section-heading h2,
.dashboard-copy h2,
.faq-grid h2,
.cta-box h2 {
  margin: 18px 0 15px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.section-heading p,
.dashboard-copy p,
.faq-grid > div:first-child p {
  color: #68686e;
  line-height: 1.75;
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.feature-card {
  grid-column: span 2;
  background: white;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  padding: 25px;
  min-height: 310px;
  overflow: hidden;
  position: relative;
}
.feature-card-large { grid-column: span 3; }
.icon-box {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff1f0;
  color: var(--red);
  display: grid; place-items: center;
  font-weight: 900;
}
.feature-card h3 { font-size: 20px; margin: 20px 0 10px; letter-spacing: -.03em; }
.feature-card p { color: #6c6c71; font-size: 14px; line-height: 1.65; }

.mini-chat { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.mini-bubble { width: fit-content; max-width: 78%; padding: 9px 11px; border-radius: 10px; font-size: 11px; }
.mini-bubble.right { align-self: flex-end; background: #f0f0f1; }
.mini-bubble.left { background: #fff0ef; color: #a11b16; }

.qualification-list { margin-top: 24px; display: grid; gap: 8px; }
.qualification-list span {
  padding: 9px 10px;
  border: 1px solid #ededed;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}

.followup-timeline { display: flex; align-items: center; margin-top: 40px; color: #85858a; font-size: 10px; font-weight: 700; }
.followup-timeline i { height: 1px; background: #d5d5d7; flex: 1; margin: 0 8px; }

.lead-mini-list { display: grid; gap: 9px; margin-top: 20px; }
.lead-mini-list > div { display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 8px; font-size: 11px; }
.avatar.tiny { width: 28px; height: 28px; font-size: 8px; }
.lead-mini-list em:not(.hot):not(.warm), .dash-table em:not(.hot):not(.warm) {
  background: #f0f0f1; color: #5b5b60;
}

.calendar-mock {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 68px) 1fr;
  gap: 9px;
  align-items: stretch;
}
.calendar-day {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}
.calendar-day span { display: block; font-size: 9px; color: #89898e; font-weight: 800; }
.calendar-day b { display: block; margin-top: 6px; font-size: 17px; }
.calendar-day.active { background: var(--black); color: white; border-color: var(--black); }
.calendar-slot {
  background: #fff1f0;
  border: 1px solid #ffd4d0;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #a3231d;
}
.calendar-slot strong { font-size: 9px; margin-top: 4px; text-transform: uppercase; color: var(--red); }

.how-section {
  background: #0a0a0b;
  color: white;
}
.how-section .section-heading p { color: #9c9ca1; }
.how-section .eyebrow { color: #adadb2; background: #121214; border-color: #27272a; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr;
  align-items: center;
}
.step { position: relative; text-align: center; }
.step-num {
  position: absolute;
  top: -10px; right: 15px;
  color: #343438;
  font-size: 42px;
  font-weight: 900;
}
.step-icon {
  width: 70px; height: 70px;
  border: 1px solid #29292d;
  background: #111113;
  color: var(--red);
  border-radius: 20px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-size: 25px;
}
.step h3 { margin: 0 0 9px; font-size: 17px; }
.step p { color: #8f8f94; line-height: 1.6; font-size: 12px; }
.step-line { height: 1px; background: linear-gradient(to right, #29292d, #5a201d, #29292d); }

.dashboard-section { background: white; }
.dashboard-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 12px; }
.check-list li { font-size: 14px; font-weight: 650; }
.check-list li::first-letter { color: var(--red); }
.text-link { color: var(--red); font-weight: 800; font-size: 14px; }

.dashboard-mock {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 430px;
  background: #0d0d0f;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.dash-sidebar {
  background: #09090a;
  border-right: 1px solid #202024;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}
.dash-brand { width: 27px; height: 27px; border-radius: 9px; background: var(--red); }
.side-pill { width: 24px; height: 7px; border-radius: 999px; background: #2a2a2d; }
.side-pill.active { background: #ff5a52; }
.dash-main { padding: 22px; color: white; }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-top span { color: #949499; font-size: 11px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-stats div { background: #151518; border: 1px solid #252529; border-radius: 12px; padding: 14px; }
.dash-stats small { color: #909096; font-size: 9px; display: block; margin-bottom: 6px; }
.dash-stats b { font-size: 22px; }
.dash-table { margin-top: 16px; border: 1px solid #242428; border-radius: 14px; overflow: hidden; }
.table-head, .table-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr .8fr .8fr;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
}
.table-head { background: #151518; color: #77777d; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.table-row { border-top: 1px solid #222226; font-size: 10px; color: #c8c8cb; }
.table-row > span:first-child { display: flex; align-items: center; gap: 8px; }

.pricing-section { background: #f7f7f8; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  background: white;
  border: 1px solid #e1e1e3;
  border-radius: 20px;
  padding: 28px;
  position: relative;
}
.price-card.featured {
  border: 1.5px solid var(--red);
  box-shadow: 0 18px 46px rgba(255,44,34,.11);
}
.popular {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--red);
  color: white;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}
.price-name { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; color: #707075; }
.price-card h3 { font-size: 48px; margin: 18px 0 10px; letter-spacing: -.05em; }
.price-card sup { font-size: 20px; }
.price-card h3 span { font-size: 13px; color: #7d7d81; letter-spacing: 0; }
.price-card p { color: #6d6d72; line-height: 1.55; min-height: 66px; font-size: 13px; }
.price-card .btn { width: 100%; margin: 8px 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.price-card li { font-size: 12px; color: #4f4f54; }
.pricing-note { text-align: center; color: #88888d; font-size: 11px; margin-top: 18px; }

.cta-section { background: white; }
.cta-box {
  background: var(--red);
  color: white;
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 26px 60px rgba(255,44,34,.18);
}
.cta-kicker { font-size: 10px; letter-spacing: .14em; font-weight: 900; opacity: .8; }
.cta-box h2 { margin-top: 12px; max-width: 600px; }
.cta-box p { color: rgba(255,255,255,.82); }
.demo-form { display: grid; gap: 10px; }
.demo-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: white;
  border-radius: 11px;
  padding: 0 14px;
  outline: none;
}
.demo-form input::placeholder { color: rgba(255,255,255,.72); }
.demo-form input:focus { border-color: white; background: rgba(255,255,255,.16); }
.form-message { min-height: 16px; margin: 0 !important; font-size: 11px; }

.faq-section { background: #f7f7f8; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
details {
  background: white;
  border: 1px solid #e5e5e7;
  border-radius: 14px;
  padding: 0 18px;
}
summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  padding: 18px 0;
}
details p { margin-top: 0; color: #6f6f74; line-height: 1.65; font-size: 13px; padding-bottom: 16px; }

footer {
  background: #09090a;
  color: white;
  padding: 54px 0 22px;
}
.footer-grid { display: flex; justify-content: space-between; gap: 40px; }
.footer-brand { color: white; }
.footer-grid p { color: #8d8d92; font-size: 12px; }
.footer-links { display: flex; gap: 25px; align-items: flex-start; color: #b4b4b8; font-size: 12px; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid #242426;
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #67676c;
  font-size: 10px;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav > .btn { display: none; }
  .menu-btn { display: block; }
  .mobile-menu.open {
    display: grid;
    gap: 12px;
    padding: 14px 20px 22px;
    border-top: 1px solid #eee;
    background: white;
  }
  .mobile-menu a { padding: 9px 0; font-weight: 700; font-size: 14px; }
  .mobile-menu .btn { padding: 0 18px; }

  .hero-grid, .dashboard-grid, .cta-box, .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 65px; }
  .hero-card-wrap { max-width: 650px; margin: 10px auto 0; }
  .feature-card, .feature-card-large { grid-column: span 3; }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .step-line { display: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .hero h1 { font-size: 52px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-row { gap: 14px; }
  .trust-item b { font-size: 15px; }
  .industry-row { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-large { grid-column: span 1; min-height: auto; }
  .calendar-mock { grid-template-columns: repeat(3, 1fr); }
  .calendar-slot { grid-column: 1 / -1; min-height: 60px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { max-width: 360px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 34px 24px; }
  .dashboard-mock { grid-template-columns: 44px 1fr; min-height: 370px; }
  .dash-main { padding: 14px 10px; overflow: hidden; }
  .table-head, .table-row { grid-template-columns: 1.4fr .9fr .8fr; }
  .table-head span:last-child, .table-row span:last-child { display: none; }
  .floating-stat { display: none; }
  .footer-grid, .footer-bottom { flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}
