:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f6f7fb;
  --panel: #ffffff;
  --violet: #6d5dfc;
  --violet-dark: #4d35d8;
  --cyan: #18b6d9;
  --green: #10b981;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 7vw;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(109, 93, 252, 0.28);
}

.brand strong {
  display: block;
  line-height: 1;
}

.brand em {
  display: block;
  color: var(--violet);
  font-style: normal;
  font-weight: 800;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--violet);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(109, 93, 252, 0.26);
}

.button.secondary {
  background: #ffffff;
  border-color: #d8dce7;
  color: var(--ink);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 64px;
  align-items: center;
  min-height: 720px;
  padding: 84px 7vw 92px;
  background:
    linear-gradient(90deg, rgba(109, 93, 252, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(109, 93, 252, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 76% 22%, rgba(24, 182, 217, 0.16), transparent 28%),
    radial-gradient(circle at 28% 38%, rgba(109, 93, 252, 0.18), transparent 32%),
    #ffffff;
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  border: 1px solid rgba(109, 93, 252, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(109, 93, 252, 0.08);
  color: var(--violet-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-text,
.section-heading p,
.workflow p,
.contact p {
  max-width: 670px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.flow-panel {
  position: relative;
  border: 1px solid #d8dce7;
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -22px -22px 22px;
  border-bottom: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  padding: 15px 18px;
  background: #fbfcff;
}

.panel-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.panel-top span:nth-child(1) {
  background: #ef4444;
}

.panel-top span:nth-child(2) {
  background: #f59e0b;
}

.panel-top span:nth-child(3) {
  background: #10b981;
}

.panel-top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.lead-card,
.assistant-bubble,
.pipeline,
.task-list {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.lead-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 18px;
}

.lead-card.active {
  border-color: rgba(109, 93, 252, 0.35);
  box-shadow: 0 12px 26px rgba(109, 93, 252, 0.12);
}

.lead-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.lead-card span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 12px;
  font-weight: 900;
}

.assistant-bubble {
  margin-bottom: 14px;
  padding: 18px;
  background: #f8fafc;
}

.assistant-bubble small {
  color: var(--violet);
  font-weight: 900;
}

.assistant-bubble p {
  margin: 8px 0 0;
  color: #344054;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 14px;
}

.pipeline div {
  padding: 18px;
}

.pipeline div + div {
  border-left: 1px solid var(--line);
}

.pipeline small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.pipeline strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

.task-list {
  padding: 8px 16px;
}

.task-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 11px 0;
  color: #344054;
  font-weight: 700;
}

.task-list span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}

.logos,
.section,
.workflow,
.contact,
.faq {
  padding: 84px 7vw;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcff;
  color: var(--muted);
}

.logos strong {
  color: var(--ink);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article,
.price-card,
.contact,
.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid p,
.price-card p,
.faq p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(24, 182, 217, 0.1);
  color: #067a93;
  font-size: 13px;
  font-weight: 900;
}

.workflow {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 44px;
  align-items: center;
  background: var(--soft);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
}

.steps strong {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: #ffffff;
}

.steps span {
  color: #344054;
  font-size: 18px;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.price-card {
  position: relative;
  padding: 28px;
}

.payment-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 980px;
  margin: 18px auto 0;
}

.payment-methods span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #ffffff;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.price-card.featured {
  border-color: var(--violet);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: -16px;
  left: 28px;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--violet);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.price {
  margin: 24px 0 20px;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 0;
}

.price span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

li {
  color: #344054;
}

li::before {
  content: "+";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  margin: 84px 7vw;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(109, 93, 252, 0.12), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8dce7;
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(109, 93, 252, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  padding-top: 10px;
}

.faq h2 {
  margin-bottom: 22px;
}

.faq details {
  padding: 20px 22px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 26px 7vw;
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 5vw;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .workflow,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 58px 5vw 64px;
  }

  .flow-panel {
    max-width: 620px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .logos,
  .section,
  .workflow,
  .faq {
    padding: 58px 5vw;
  }

  .contact {
    margin: 58px 5vw;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .section-heading p,
  .workflow p,
  .contact p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

  .pipeline div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact {
    padding: 22px;
  }
}
