@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --blue-950: #f3fbf8;
  --blue-900: #0f766e;
  --blue-700: #0d9488;
  --blue-100: #ccfbf1;
  --blue-50: #f0fdfa;
  --orange-500: #ff6b35;
  --green-600: #16a34a;
  --ink: #0f172a;
  --muted: #475569;
  --line: #d8e0ea;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(15, 118, 110, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
}

body,
button,
input {
  font: inherit;
}

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

img,
svg {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.36);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 40;
}

.nav-shell {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 224, 234, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 12px 14px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  height: 32px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
}

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

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.lang-link,
.button {
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.lang-link {
  border: 1px solid var(--line);
  color: #334155;
  font-size: 0.88rem;
}

.lang-link:hover {
  border-color: var(--blue-700);
  color: var(--blue-700);
}

.button.primary {
  background: var(--orange-500);
  color: white;
}

.button.primary:hover {
  background: #f05a24;
  box-shadow: 0 16px 28px rgba(255, 107, 53, 0.24);
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--blue-900);
}

.button.secondary:hover {
  border-color: var(--blue-700);
  color: var(--blue-700);
}

.button svg,
.lang-link svg {
  height: 18px;
  width: 18px;
}

.hero {
  background: var(--blue-950);
  color: var(--ink);
  min-height: 92vh;
  overflow: hidden;
  padding: 142px 20px 64px;
  position: relative;
}

.hero::after {
  background: rgba(255, 255, 255, 0.28);
  content: '';
  inset: 0;
  position: absolute;
}

.product-scene {
  bottom: 38px;
  left: min(62vw, 820px);
  max-width: 640px;
  min-width: 440px;
  opacity: 0.9;
  position: absolute;
  right: 24px;
  top: 116px;
  transform: rotate(-1deg);
  z-index: 1;
}

.app-frame {
  background: #fbfefd;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}

.app-topbar {
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
}

.app-search {
  background: white;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.8rem;
  padding: 9px 12px;
  width: 240px;
}

.app-status {
  align-items: center;
  color: var(--green-600);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 6px;
}

.app-status::before {
  background: currentColor;
  border-radius: 999px;
  content: '';
  height: 8px;
  width: 8px;
}

.app-body {
  display: grid;
  gap: 14px;
  grid-template-columns: 180px 1fr;
  padding: 14px;
}

.side-rail,
.screen-panel {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.side-rail {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.rail-item {
  align-items: center;
  border-radius: 8px;
  color: #475569;
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  padding: 9px 10px;
}

.rail-item.active {
  background: var(--blue-50);
  color: var(--blue-900);
}

.rail-dot {
  background: #cbd5e1;
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.rail-item.active .rail-dot {
  background: var(--orange-500);
}

.screen-panel {
  padding: 16px;
}

.screen-header {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.screen-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 5px;
}

.screen-subtitle {
  color: #64748b;
  font-size: 0.78rem;
  margin: 0;
}

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

.metric {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
}

.metric span {
  color: #64748b;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
}

.metric strong {
  color: var(--ink);
  display: block;
  font-size: 1.25rem;
  margin-top: 6px;
}

.schedule {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.slot {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--blue-700);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 74px 1fr auto;
  padding: 10px;
}

.slot:nth-child(2) {
  border-left-color: var(--orange-500);
}

.slot-time,
.slot-capacity {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 800;
}

.slot-name {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-content {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 2;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
}

.hero-copy {
  max-width: 410px;
}

.hero-demo {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.hero-demo-device {
  background: linear-gradient(180deg, #1f2937 0%, #0f172a 100%);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 42px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  padding: 14px 14px 16px;
  position: relative;
  width: min(100%, 360px);
}

.hero-demo-device::before {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  content: '';
  height: 8px;
  left: 50%;
  position: absolute;
  top: 14px;
  transform: translateX(-50%);
  width: 72px;
}

.hero-demo-notch {
  background: #020617;
  border-radius: 0 0 18px 18px;
  height: 22px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 130px;
  z-index: 2;
}

.hero-demo-screen {
  aspect-ratio: 390 / 844;
  background: #ffffff;
  border-radius: 30px;
  overscroll-behavior: contain;
  touch-action: pan-y pinch-zoom;
  overflow: hidden;
  position: relative;
}

.hero-demo-iframe {
  background: #ffffff;
  border: 0;
  height: 100%;
  inset: 0;
  overscroll-behavior: contain;
  pointer-events: auto;
  position: absolute;
  touch-action: pan-y pinch-zoom;
  width: 100%;
}

.eyebrow {
  color: var(--blue-900);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
}

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

h1 {
  font-size: clamp(3rem, 6vw, 5.15rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  max-width: 410px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  color: #334155;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-proof span {
  align-items: center;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

.hero-proof svg {
  color: var(--orange-500);
  height: 18px;
  width: 18px;
}

.section {
  padding: 86px 20px;
  scroll-margin-top: 110px;
}

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

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

.section-heading {
  max-width: 760px;
}

.section-kicker {
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 18px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-hero {
  background: var(--blue-950);
  border-bottom: 1px solid var(--line);
  padding: 150px 20px 70px;
}

.legal-hero .container {
  max-width: 920px;
}

.legal-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.legal-lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 780px;
}

.legal-meta {
  color: #334155;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 10px 20px;
  margin-top: 28px;
}

.legal-content {
  padding: 70px 20px 86px;
}

.legal-content .container {
  max-width: 920px;
}

.legal-section {
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.18;
  margin-bottom: 14px;
}

.legal-section p,
.legal-section li {
  color: #334155;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-section p {
  margin-bottom: 14px;
}

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

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-contact-box {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 18px;
  padding: 18px;
}

.legal-contact-box a {
  color: var(--blue-900);
  font-weight: 800;
}

.logo-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 22px 20px;
}

.logo-strip .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
}

.logo-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.use-cases b {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 0.85rem;
  padding: 8px 12px;
}

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

.feature-card,
.pricing-plan,
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card {
  padding: 24px;
}

.icon-box {
  align-items: center;
  background: var(--blue-50);
  border-radius: var(--radius);
  color: var(--blue-900);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-bottom: 20px;
  width: 42px;
}

.icon-box.orange {
  background: #fff7ed;
  color: var(--orange-500);
}

.icon-box.green {
  background: #ecfdf5;
  color: var(--green-600);
}

.icon-box svg {
  height: 22px;
  width: 22px;
}

.feature-card h3,
.pricing-plan h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p,
.pricing-plan p {
  color: var(--muted);
  margin-bottom: 0;
}

.whatsapp-layout {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
}

.whatsapp-copy {
  max-width: 660px;
}

.whatsapp-points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.whatsapp-point {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px 1fr;
}

.point-icon {
  align-items: center;
  background: var(--blue-900);
  border-radius: var(--radius);
  color: white;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.whatsapp-point h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.whatsapp-point p {
  color: var(--muted);
  margin-bottom: 0;
}

.whatsapp-preview {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.flow-device {
  background: #f2f2f2;
  border: 1px solid #d7d7d7;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  padding: 7px;
  width: min(100%, 340px);
}

.flow-device:focus-visible {
  outline: 3px solid rgba(34, 179, 102, 0.34);
  outline-offset: 5px;
}

.flow-screen {
  background: #d0d0d0;
  border-radius: 10px;
  min-height: 544px;
  overflow: hidden;
  position: relative;
}

.flow-chat-stage {
  background: #eee8de;
  border-radius: 10px;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  transform: translateY(10px);
  z-index: 4;
}

.flow-chat-topbar {
  align-items: center;
  background: white;
  display: flex;
  gap: 10px;
  height: 74px;
  padding: 18px 22px;
}

.flow-shop-icon {
  align-items: center;
  background: #22b366;
  border-radius: 999px;
  color: white;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.flow-shop-icon svg {
  height: 17px;
  width: 17px;
}

.flow-chat-title-line {
  background: #24aa64;
  border-radius: 999px;
  display: block;
  height: 7px;
  width: 116px;
}

.flow-chat-body {
  min-height: 430px;
  padding: 30px 22px 76px;
  position: relative;
}

.flow-outgoing-bubble {
  align-items: center;
  background: #d8ffd6;
  border-radius: 999px 999px 4px 999px;
  display: flex;
  height: 28px;
  justify-content: center;
  margin-left: auto;
  position: relative;
  width: 184px;
}

.flow-outgoing-bubble::after {
  border-color: transparent transparent transparent #d8ffd6;
  border-style: solid;
  border-width: 0 0 10px 10px;
  content: '';
  position: absolute;
  right: -5px;
  top: 0;
}

.flow-outgoing-bubble span {
  background: #a8d9a8;
  border-radius: 999px;
  display: block;
  height: 7px;
  width: 106px;
}

.flow-preview-card {
  background: white;
  border-radius: 8px;
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 14px 16px 12px;
  position: relative;
  width: 180px;
}

.flow-preview-card::before {
  border-color: white transparent transparent transparent;
  border-style: solid;
  border-width: 12px 14px 0 0;
  content: '';
  left: -8px;
  position: absolute;
  top: 0;
}

.flow-preview-card span {
  background: #c8c8c8;
  border-radius: 999px;
  display: block;
  height: 6px;
}

.flow-preview-card span:first-child {
  width: 106px;
}

.flow-preview-card span:nth-child(2) {
  width: 64px;
}

.flow-preview-card strong {
  color: #0677ff;
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: 4px;
  text-align: center;
}

.flow-chat-input {
  background: white;
  border-radius: 999px;
  bottom: 9px;
  height: 40px;
  left: 12px;
  position: absolute;
  right: 12px;
}

.flow-device.is-flow-playing .flow-chat-stage {
  animation: flowChatStage 2800ms ease forwards;
}

.flow-device.is-flow-playing .flow-app-background,
.flow-device.is-flow-playing .flow-background {
  animation: flowFormStage 2800ms ease forwards;
}

.flow-app-background {
  background: #b7b7b7;
  height: 64px;
  inset: 0 0 auto;
  position: absolute;
}

.flow-avatar {
  background: #118047;
  border-radius: 999px;
  display: block;
  height: 30px;
  left: 20px;
  position: absolute;
  top: 18px;
  width: 30px;
}

.flow-background {
  min-height: 544px;
  padding: 28px 7px 7px;
  position: relative;
}

.flow-panel {
  background: white;
  border: 1px solid #eeeeee;
  border-radius: 4px 4px 9px 9px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 508px;
  overflow: hidden;
}

.flow-panel-header {
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  min-height: 48px;
}

.flow-panel-header strong {
  color: #111827;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.flow-icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.flow-icon-button svg {
  height: 18px;
  width: 18px;
}

.flow-form-body {
  flex: 1;
  padding: 22px 14px;
}

.flow-form-body h3 {
  color: #111827;
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.flow-form-body p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

.flow-field {
  display: grid;
  gap: 14px;
}

.flow-field label {
  color: #111827;
  font-size: 0.88rem;
  font-weight: 800;
}

.flow-choice {
  align-items: center;
  background: white;
  border: 0;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  padding: 0;
}

.flow-choice.selected {
  background: white;
}

.flow-choice span {
  display: grid;
  gap: 2px;
}

.flow-choice strong {
  color: #1f2937;
  font-size: 0.92rem;
  font-weight: 500;
}

.flow-choice small {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 700;
}

.flow-radio {
  border: 2px solid #27b46e;
  border-radius: 999px;
  height: 16px;
  position: relative;
  width: 16px;
}

.flow-radio::after {
  background: #27b46e;
  border-radius: 999px;
  content: '';
  height: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}

.flow-panel-footer {
  border-top: 1px solid #eeeeee;
  padding: 14px 14px 12px;
}

.flow-submit {
  background: #22b366;
  border-radius: 999px;
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 12px;
  text-align: center;
}

.flow-panel-footer p {
  color: #6b7280;
  font-size: 0.72rem;
  margin: 9px 0 0;
  text-align: center;
}

.flow-panel-footer a {
  color: #15803d;
  font-weight: 800;
}

@keyframes flowChatStage {
  0%,
  52% {
    opacity: 1;
    transform: translateY(0);
  }

  72%,
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes flowFormStage {
  0%,
  52% {
    opacity: 0;
    transform: translateY(14px);
  }

  72%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.workflow {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.workflow-step {
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  grid-template-columns: 48px 1fr;
  padding: 22px;
}

.step-number {
  align-items: center;
  background: var(--blue-900);
  border-radius: var(--radius);
  color: white;
  display: inline-flex;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.workflow-step h3 {
  margin-bottom: 8px;
}

.workflow-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.pricing-layout {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 36px;
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.plan-features-wrapper {
  flex: 1;
}

.pricing-plan > .button {
  align-self: flex-start;
  margin-top: auto;
}

.price {
  align-items: baseline;
  display: block;
  gap: 8px;
  margin: 20px 0 22px;
}

.price strong {
  color: var(--blue-900);
  font-size: 2.5rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.plan-trial-note {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  color: #166534;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  margin: 18px 0 12px;
  padding: 7px 10px;
}

.price-addons {
  color: var(--muted);
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 10px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.check-list li {
  align-items: start;
  color: #334155;
  display: grid;
  gap: 10px;
  grid-template-columns: 20px 1fr;
}

.check-list svg {
  color: var(--green-600);
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

.comparison {
  background: var(--blue-900);
  border-radius: var(--radius);
  color: white;
  padding: 28px;
}

.comparison h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.compare-row {
  border-top: 1px solid rgba(219, 234, 254, 0.24);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  padding: 15px 0;
}

.compare-row span {
  color: #bfdbfe;
}

.compare-row strong {
  color: white;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  color: var(--muted);
  margin: 14px 0 0;
}

.cta-band {
  background: #0f172a;
  color: white;
  padding: 76px 20px;
}

.cta-content {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
}

.cta-content h2 {
  margin-bottom: 12px;
}

.cta-content p {
  color: #dbeafe;
  margin-bottom: 0;
  max-width: 650px;
}

.site-footer {
  background: #020617;
  color: #cbd5e1;
  padding: 34px 20px;
}

.footer-content {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: white;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 124px;
  }

  .hero-content {
    order: 1;
  }

  .hero-layout {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .hero::after {
    background: transparent;
  }

  .workflow,
  .whatsapp-layout,
  .pricing-layout,
  .cta-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    inset: 10px 10px auto;
  }

  .nav-shell {
    padding: 10px;
  }

  .brand-logo {
    height: 28px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    padding: 106px 16px 50px;
  }

  .legal-hero {
    padding: 112px 16px 48px;
  }

  .legal-content {
    padding: 48px 16px 62px;
  }

  .hero-demo-device {
    border-radius: 34px;
    max-width: 340px;
    padding: 12px 12px 14px;
  }

  .hero-demo-notch {
    height: 18px;
    width: 112px;
  }

  .hero-demo-screen {
    border-radius: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: center;
  }

  .section {
    padding: 62px 16px;
  }

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

  .slot {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .logo-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .whatsapp-layout {
    gap: 32px;
  }

  .whatsapp-point {
    grid-template-columns: 38px 1fr;
  }

  .point-icon {
    height: 38px;
    width: 38px;
  }

  .flow-device {
    border-radius: 16px;
    max-width: 340px;
    padding: 7px;
  }

  .flow-screen {
    border-radius: 10px;
    min-height: 520px;
  }

  .flow-background {
    min-height: 520px;
    padding: 28px 7px 7px;
  }

  .flow-panel {
    min-height: 484px;
  }

  .flow-form-body {
    padding: 22px 14px;
  }

  .comparison,
  .pricing-plan,
  .feature-card,
  .workflow-step {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
