/* WebsiteChatbot.in — Brand Flow design system */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --brand-blue: #1d4ed8;
  --brand-blue-mid: #2563eb;
  --brand-green: #22c55e;
  --gradient-brand: linear-gradient(120deg, #1d4ed8 0%, #2563eb 48%, #22c55e 100%);
  --gradient-brand-hover: linear-gradient(120deg, #22c55e 0%, #2563eb 52%, #1d4ed8 100%);
  --gradient-soft: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  --shadow-brand: 0 18px 40px -18px rgba(29, 78, 216, 0.45);
  --shadow-card: 0 10px 30px -18px rgba(15, 23, 42, 0.35);

  --bg: #ffffff;
  --bg-muted: #f8fafc;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --radius: 1rem;
  --radius-2xl: 1.25rem;
  --maxw: 1140px;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.18;
  margin: 0 0 0.6em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
}
h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5.5rem 0;
}

.section--muted {
  background: var(--gradient-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.6rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--gradient {
  background-image: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn--gradient:hover {
  background-image: var(--gradient-brand-hover);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--outline {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 72px;
}

.footer-brand img {
  width: auto;
  height: 60px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--brand-blue);
  text-decoration: none;
}

.nav .header-cta {
  margin-left: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  box-shadow:
    0 12px 32px -10px rgba(29, 78, 216, 0.62),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.3s ease,
    filter 0.2s ease;
}

.nav .header-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow:
    0 16px 38px -10px rgba(29, 78, 216, 0.72),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
  filter: brightness(1.06);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  background-image: var(--gradient-brand);
  color: #fff;
  padding: 6rem 0 6.5rem;
  text-align: center;
}

.hero h1,
.hero h2 {
  color: #fff;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  max-width: 640px;
  margin-inline: auto;
}

.badge-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

.hero .btn--gradient {
  background-image: none;
  background-color: #fff;
  color: var(--brand-blue);
  box-shadow: 0 18px 40px -18px rgba(2, 6, 23, 0.6);
}

.trust-line {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Stats */
.stats {
  padding: 3.5rem 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Cards & grids */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 0.9rem;
  background-image: var(--gradient-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-brand);
}

.icon-tile svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p:last-child {
  margin-bottom: 0;
}

/* Journey */
.journey {
  padding: 4rem 0;
  background: var(--gradient-soft);
}

.journey img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  background: #fff;
  margin: 0 auto;
}

/* Steps */
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-image: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Integrations */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-card);
}

/* Pricing */
.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem;
}

.toggle button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.toggle button.is-active {
  background-image: var(--gradient-brand);
  color: #fff;
}

.save-badge {
  background-image: var(--gradient-brand);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.is-popular {
  border-color: transparent;
  box-shadow: var(--shadow-brand);
  outline: 2px solid var(--brand-blue);
}

.popular-tag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: var(--gradient-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}

.price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
}

.price small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.6rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background-image: var(--gradient-brand);
}

.price-card .btn {
  margin-top: auto;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  color: var(--text);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-q::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--brand-blue);
}

.faq-item.is-open .faq-q::after {
  content: "–";
}

.faq-a {
  display: none;
  padding: 0 1.25rem 1.15rem;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* CTA band */
.cta-band {
  background-image: var(--gradient-brand);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-inline: auto;
}

.cta-band .btn--gradient {
  background-image: none;
  background-color: #fff;
  color: var(--brand-blue);
}

/* Page header for inner pages */
.page-hero {
  background: var(--gradient-soft);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
}

.prose ul {
  color: var(--text-muted);
  padding-left: 1.1rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.updated {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: #f1f5f9;
  color: #334155;
  padding: 3.5rem 0 1.5rem;
}

.site-footer h3 {
  color: #0f172a;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}

.site-footer a {
  color: #475569;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: #0f172a;
}

.site-footer p {
  color: #475569;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #0f172a;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: auto;
  height: 60px;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: #475569;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-card);
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav .header-cta {
    margin: 0.9rem 0 0;
  }
  .site-header .container {
    position: relative;
  }
}

@media (max-width: 620px) {
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3.5rem 0;
  }
}

/* ---------- Features page ---------- */
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.flow-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.flow-arrow {
  color: var(--brand-blue);
  font-weight: 700;
}

.hero .flow-step {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
}

.hero .flow-arrow {
  color: rgba(255, 255, 255, 0.85);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split h2 {
  text-align: left;
}

/* Mockups */
.mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-muted);
}

.mock-bar i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  display: inline-block;
}

.mock-bar span {
  margin-left: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.mock-body {
  padding: 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.bubble {
  max-width: 82%;
  padding: 0.65rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.bubble--in {
  background: var(--bg-muted);
  color: var(--text);
  border-bottom-left-radius: 0.3rem;
}

.bubble--out {
  background-image: var(--gradient-brand);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 0.3rem;
}

.bubble--file {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px dashed var(--border);
  background: #fff;
  color: var(--text-muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip--sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  box-shadow: none;
}

.code-block {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  overflow-x: auto;
  line-height: 1.6;
}

.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.kanban-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
  box-shadow: var(--shadow-card);
}

.kanban-col h3 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 0.7rem;
}

.kanban-card {
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  padding: 0.6rem 0.7rem;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  background: var(--bg-muted);
}

.num-tag {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background-image: var(--gradient-brand);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-card);
}

.mini-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.mini-card p {
  font-size: 0.88rem;
  margin: 0;
}

.swatches {
  display: flex;
  gap: 0.5rem;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hours-row:last-child {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .kanban {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .kanban {
    grid-template-columns: 1fr;
  }
}

/* Numbered "three ways" cards */
.num-card .num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Problem & Solution page ---------- */
.vflow {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
}

.vflow .flow-step {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
}

.vflow .flow-arrow {
  line-height: 1;
  font-size: 1.05rem;
}

.flow-step--bad {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.flow-step--good {
  border-color: transparent;
  background-image: var(--gradient-brand);
  color: #fff;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.panel--bad {
  border-color: #fecaca;
  background: linear-gradient(180deg, #fef2f2 0%, #ffffff 60%);
}

.panel--good {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 60%);
}

.panel-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero .panel {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.hero .panel-title,
.hero .panel h3 {
  color: #fff;
}

.pill-bad,
.pill-good {
  display: inline-block;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.pill-bad {
  background: #fee2e2;
  color: #b91c1c;
}

.pill-good {
  background: #dcfce7;
  color: #15803d;
}

.list-x,
.list-tick {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.list-x li,
.list-tick li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list-x li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

.list-tick li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.big-idea {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.branch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0.6rem 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}

.industry-card .emoji {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.4rem;
}

.industry-card h3 {
  font-size: 0.98rem;
  margin: 0;
}

.form-mock {
  display: grid;
  gap: 0.55rem;
}

.form-mock .field {
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.6rem 0.8rem;
  color: #94a3b8;
  font-size: 0.88rem;
  background: var(--bg-muted);
}

@media (max-width: 980px) {
  .branch {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .flow {
    flex-direction: column;
  }
  .flow-step {
    width: 100%;
    text-align: center;
  }
}
