:root {
  --af-primary: #2563eb;
  --af-primary-soft: #dbeafe;
  --af-dark: #0f172a;
  --af-muted: #6b7280;
  --af-bg: #f9fafb;
  --af-card: #ffffff;
  --af-border: #e5e7eb;
  --af-success: #16a34a;
  --af-radius-lg: 18px;
  --af-radius-md: 12px;
  --af-radius-pill: 999px;
  --af-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--af-dark);
  background: radial-gradient(circle at top, #e0f2fe 0, #f9fafb 55%);
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

/* HEADER */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo-img {
  height: 42px;
  width: auto;
}

.brand-name-img {
  height: 32px;
  width: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo-img.small {
  height: 32px;
}

.brand-name-img.small {
  height: 24px;
}


.brand-tagline {
  font-size: 0.8rem;
  color: var(--af-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-link {
  color: var(--af-muted);
}

.nav-link:hover {
  color: var(--af-dark);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--af-radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--af-primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-ghost {
  background: transparent;
  color: var(--af-dark);
  border-color: rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: rgba(148, 163, 184, 0.06);
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 2.2rem 0 2.8rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
  border-radius: var(--af-radius-pill);
  background: rgba(219, 234, 254, 0.8);
  border: 1px solid rgba(191, 219, 254, 0.9);
  color: #1d4ed8;
  width: fit-content;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-title .highlight {
  color: var(--af-primary);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--af-muted);
  max-width: 32rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--af-muted);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--af-muted);
}

.hero-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--af-success);
}

.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--af-muted);
}

.hero-avatars {
  display: inline-flex;
}

.hero-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #e5e7eb;
  border: 1.5px solid #fff;
  margin-left: -8px;
}

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

/* HERO RIGHT */

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: var(--af-radius-lg);
  background: var(--af-card);
  box-shadow: var(--af-shadow-soft);
  padding: 1.4rem 1.4rem 1.1rem;
  border: 1px solid var(--af-border);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card-subtitle {
  font-size: 0.8rem;
  color: var(--af-muted);
}

.hero-card-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: var(--af-radius-pill);
  background: rgba(34, 197, 94, 0.09);
  color: var(--af-success);
}

.call-preview {
  margin-top: 0.8rem;
  border-radius: var(--af-radius-md);
  background: #f9fafb;
  border: 1px solid var(--af-border);
  padding: 0.9rem;
  font-size: 0.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 0.8rem;
}

.call-side-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 0.45rem;
}

.call-bubble {
  background: #fff;
  border-radius: 14px;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.35rem;
  border: 1px solid #e5e7eb;
}

.call-bubble.agent {
  border-color: rgba(37, 99, 235, 0.4);
  background: #eff6ff;
}

.call-bubble-label {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
  color: #6b7280;
}

.call-bubble-text {
  font-size: 0.8rem;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--af-muted);
}

.hero-tag-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.hero-chip {
  padding: 0.15rem 0.6rem;
  border-radius: var(--af-radius-pill);
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.7rem;
}

.hero-card-meta strong {
  font-weight: 600;
}

.hero-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: radial-gradient(circle at top, #22c55e, #16a34a);
  color: #ecfdf3;
  padding: 0.7rem 0.9rem;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.7);
  font-size: 0.78rem;
}

.hero-badge strong {
  display: block;
  font-size: 0.95rem;
}

/* TRUST BAR */

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.7rem 0 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.trust-label {
  font-size: 0.8rem;
  color: var(--af-muted);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.trust-pill {
  padding: 0.3rem 0.75rem;
  border-radius: var(--af-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.02);
}

/* GENERIC SECTIONS */

.section {
  padding: 3rem 0 2.5rem;
}

.section-alt {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.7),
    rgba(241, 245, 249, 0.9)
  );
  border-radius: var(--af-radius-lg);
  padding-inline: 1.5rem;
  margin-inline: -1.5rem;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--af-muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--af-muted);
  max-width: 32rem;
}

/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-card {
  border-radius: var(--af-radius-md);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 1rem;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: var(--af-radius-pill);
  background: var(--af-primary-soft);
  color: #1d4ed8;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.step-title {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.step-text {
  font-size: 0.9rem;
  color: var(--af-muted);
}

/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--af-radius-md);
  border: 1px solid #e5e7eb;
  padding: 1rem;
}

.feature-title {
  font-size: 1rem;
  margin: 0 0 0.3rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--af-muted);
}

/* PRICING */

.pricing-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: flex-start;
}

.pricing-card {
  border-radius: var(--af-radius-lg);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--af-shadow-soft);
  padding: 1.5rem;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f97316;
  color: white;
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: var(--af-radius-pill);
}

.pricing-title {
  margin: 0 0 0.3rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--af-muted);
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--af-muted);
  margin-bottom: 1rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--af-muted);
}

.pricing-list li {
  margin-bottom: 0.4rem;
}

.pricing-list li::before {
  content: "• ";
  color: var(--af-primary);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--af-muted);
  margin-top: 0.6rem;
}

.pricing-side {
  border-radius: var(--af-radius-lg);
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  padding: 1.3rem;
  font-size: 0.9rem;
}

.pricing-side-title {
  margin: 0 0 0.4rem;
}

.pricing-side-text {
  margin: 0 0 0.5rem;
  color: var(--af-muted);
}

.pricing-side-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--af-muted);
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--af-radius-md);
  padding: 1rem;
  border: 1px solid #e5e7eb;
}

.faq-question {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.faq-answer {
  margin: 0;
  font-size: 0.9rem;
  color: var(--af-muted);
}

/* DEMO SECTION */

.demo-card {
  border-radius: var(--af-radius-lg);
  background: radial-gradient(circle at top left, #dbeafe, #eff6ff);
  padding: 1.7rem;
  border: 1px solid #bfdbfe;
  box-shadow: var(--af-shadow-soft);
}

.demo-content {
  max-width: 620px;
}

.demo-form {
  margin-top: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.form-field label {
  font-size: 0.85rem;
  color: #374151;
}

.form-field input,
.form-field select {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus {
  outline: 2px solid var(--af-primary-soft);
  border-color: var(--af-primary);
}

.form-note {
  font-size: 0.8rem;
  color: var(--af-muted);
  margin-top: 0.4rem;
}

.form-success {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--af-success);
}

/* FOOTER */

.footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-text {
  color: var(--af-muted);
  max-width: 320px;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-link {
  display: block;
  color: var(--af-muted);
  margin-bottom: 0.25rem;
}

.footer-link:hover {
  color: var(--af-dark);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-bar {
    padding-inline: 0.25rem;
  }

  .steps,
  .feature-grid,
  .pricing-wrapper,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-alt {
    margin-inline: -1.25rem;
  }

  .footer {
    flex-direction: column;
  }

  .footer-right {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .demo-card {
    padding: 1.3rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
