:root {
  --color-bg: #f4f8fc;
  --color-surface: #ffffff;
  --color-surface-alt: #eef5fb;
  --color-text: #16324f;
  --color-text-soft: #587089;
  --color-primary: #0d6efd;
  --color-primary-dark: #0a4fb3;
  --color-accent: #20a56b;
  --color-accent-warm: #ff9f43;
  --color-border: rgba(13, 61, 117, 0.12);
  --shadow-soft: 0 20px 50px rgba(12, 53, 98, 0.12);
  --shadow-card: 0 12px 30px rgba(12, 53, 98, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(32, 165, 107, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.16), transparent 32%),
    var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.page-orb,
.page-grid {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
}

.page-orb {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
  animation: floatOrb 16s ease-in-out infinite;
}

.orb-one {
  top: 80px;
  left: -80px;
  background: rgba(13, 110, 253, 0.18);
}

.orb-two {
  right: -120px;
  top: 360px;
  background: rgba(32, 165, 107, 0.15);
  animation-delay: -6s;
}

.page-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 61, 117, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 61, 117, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 85%);
  z-index: -3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(244, 248, 252, 0.88);
  border-bottom: 1px solid rgba(13, 61, 117, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-main {
  display: inline-flex;
  align-items: baseline;
  line-height: 0.95;
}

.brand-el {
  color: #102844;
}

.brand-mi {
  color: var(--color-accent);
  margin-left: 0.04em;
}

.brand-tagline {
  margin-top: 0.28rem;
  color: var(--color-text-soft);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--color-text-soft);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.42) 50%, transparent 75%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(140%);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #2b85ff);
  box-shadow: 0 14px 30px rgba(13, 110, 253, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.button-secondary {
  color: var(--color-primary);
  background: rgba(13, 110, 253, 0.08);
  border-color: rgba(13, 110, 253, 0.12);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(13, 110, 253, 0.08);
  padding: 0.8rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--color-text);
  border-radius: 999px;
}

.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.72;
  animation: heroMorph 16s ease-in-out infinite;
}

.shape-one {
  width: 320px;
  height: 320px;
  top: 8%;
  left: 52%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.24), transparent 70%);
}

.shape-two {
  width: 240px;
  height: 240px;
  top: 54%;
  right: 8%;
  background: radial-gradient(circle, rgba(32, 165, 107, 0.2), transparent 70%);
  animation-delay: -5s;
}

.shape-three {
  width: 200px;
  height: 200px;
  left: 8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.18), transparent 72%);
  animation-delay: -9s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(32, 165, 107, 0.12);
  color: var(--color-accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 1rem 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-subtitle,
.section-heading p,
.cta-panel p,
.contact-copy p,
.site-footer p {
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.hero-whatsapp {
  max-width: 46rem;
  margin-top: 0.4rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.hero-note {
  max-width: 40rem;
  color: var(--color-text-soft);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-chip {
  min-width: 220px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 61, 117, 0.1);
  box-shadow: var(--shadow-card);
}

.benefit-chip strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.benefit-chip span {
  display: block;
  margin-top: 0.45rem;
  color: var(--color-text-soft);
  font-weight: 600;
}

.mini-badge {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 61, 117, 0.1);
  box-shadow: var(--shadow-card);
  color: var(--color-text);
  font-weight: 700;
  animation: badgePulse 4.5s ease-in-out infinite;
}

.mini-badge:nth-child(2) {
  animation-delay: -1.4s;
}

.mini-badge:nth-child(3) {
  animation-delay: -2.6s;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: 2rem 0;
}

.visual-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(14px);
}

.visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 110, 253, 0.16);
  box-shadow: 0 26px 60px rgba(12, 53, 98, 0.16);
}

.chat-card {
  margin-right: 2.5rem;
  animation: floatCard 6s ease-in-out infinite;
}

.dashboard-card {
  margin-left: 2.5rem;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  animation: floatCard 7s ease-in-out infinite;
  animation-delay: -2.5s;
}

.typing-row {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
}

.typing-row span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: typingBounce 1.1s infinite ease-in-out;
}

.typing-row span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-row span:nth-child(3) {
  animation-delay: 0.3s;
}

.visual-topbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--color-text-soft);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.status-dot-alt {
  background: var(--color-accent-warm);
}

.chat-bubble {
  max-width: 85%;
  margin-bottom: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  font-size: 0.96rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(12px);
}

.bubble-user {
  margin-left: auto;
  background: #e8f1ff;
  animation: chatAppear 0.7s ease forwards 0.4s, messageFloat 4.8s ease-in-out infinite 1.2s;
}

.bubble-assistant {
  background: #f4f8fc;
  animation: chatAppear 0.7s ease forwards 1.1s, messageFloat 4.8s ease-in-out infinite 1.9s;
}

.bubble-highlight {
  background: linear-gradient(135deg, rgba(32, 165, 107, 0.12), rgba(13, 110, 253, 0.08));
  border: 1px solid rgba(32, 165, 107, 0.18);
  animation: chatAppear 0.7s ease forwards 1.8s, messageFloat 4.8s ease-in-out infinite 2.6s;
}

.topic-list,
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topic-list span,
.target-badge {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.lead-form-preview {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(32, 165, 107, 0.08);
  border: 1px dashed rgba(32, 165, 107, 0.25);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.dashboard-metrics div,
.dashboard-row,
.info-card,
.step-card,
.feature-item,
.contact-form,
.demo-panel,
.cta-panel {
  border: 1px solid var(--color-border);
}

.dashboard-metrics div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.dashboard-metrics span {
  display: block;
  color: var(--color-text-soft);
  font-size: 0.86rem;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.6rem;
}

.dashboard-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.dashboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dashboard-row:hover {
  transform: translateX(4px);
  border-color: rgba(13, 110, 253, 0.18);
}

.dashboard-row mark {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #8a5200;
  background: rgba(255, 159, 67, 0.18);
}

.dashboard-footer-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 rgba(32, 165, 107, 0.45);
  animation: pulseGlow 2.4s infinite;
}

.flow-connector {
  position: absolute;
  left: 43%;
  bottom: 27%;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.flow-connector span {
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 1), rgba(32, 165, 107, 0.18));
  position: relative;
  overflow: hidden;
}

.flow-connector span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
  animation: flowDot 2.4s linear infinite;
}

.section {
  padding: 4.25rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  transform: translateX(-46px) scale(0.98);
}

.reveal-right {
  transform: translateX(46px) scale(0.98);
}

.reveal-scale {
  transform: translateY(24px) scale(0.92);
}

.section-muted {
  background: rgba(255, 255, 255, 0.62);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(32, 165, 107, 0.08)),
    #f9fcff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

.info-card,
.step-card,
.feature-item,
.demo-panel,
.cta-panel,
.contact-form {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before,
.step-card::before,
.feature-item::before,
.journey-step::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(32, 165, 107, 0.12), rgba(255, 159, 67, 0.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.info-card:hover,
.step-card:hover,
.feature-item:hover,
.contact-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(12, 53, 98, 0.14);
  border-color: rgba(13, 110, 253, 0.16);
}

.info-card h3,
.step-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.info-card h3::before,
.step-card h3::before,
.feature-item strong::before {
  content: "✦";
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--color-accent);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.feature-item p,
.info-card p,
.step-card p {
  margin: 0;
  color: var(--color-text-soft);
}

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

.journey-flow {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: center;
  gap: 0.7rem;
}

.journey-step {
  position: relative;
  padding: 1.4rem 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  min-height: 210px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.journey-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(12, 53, 98, 0.14);
}

.journey-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(32, 165, 107, 0.18));
  color: var(--color-primary-dark);
  font-weight: 800;
}

.journey-step h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.journey-step p {
  margin: 0;
  color: var(--color-text-soft);
}

.journey-arrow {
  font-size: 1.7rem;
  color: var(--color-primary);
  animation: arrowMove 1.8s ease-in-out infinite;
}

.channel-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(238, 245, 251, 0.96));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.channel-copy {
  max-width: 760px;
}

.channel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.channel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 1rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 61, 117, 0.12);
  box-shadow: var(--shadow-card);
  font-weight: 800;
}

.channel-badge-whatsapp {
  color: #0c7a4c;
  background: linear-gradient(135deg, rgba(32, 165, 107, 0.15), rgba(255, 255, 255, 0.96));
}

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 12px 28px rgba(13, 110, 253, 0.22);
}

.demo-panel,
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.demo-copy {
  max-width: 340px;
}

.demo-note {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.demo-mini-story {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.story-bubble {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(13, 110, 253, 0.08);
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.story-bubble strong,
.story-bubble span {
  display: block;
}

.story-bubble strong {
  margin-bottom: 0.3rem;
}

.story-bubble-alt {
  background: rgba(32, 165, 107, 0.08);
  border-color: rgba(32, 165, 107, 0.12);
}

.demo-visual {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.demo-card {
  min-width: 260px;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 61, 117, 0.12);
  box-shadow: var(--shadow-card);
}

.demo-chat-card {
  animation: floatCard 6s ease-in-out infinite;
}

.demo-dashboard-card {
  animation: floatCard 7s ease-in-out infinite -2s;
}

.demo-tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.demo-dashboard-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.demo-dashboard-card p {
  margin: 0 0 0.7rem;
  color: var(--color-text-soft);
}

.demo-dashboard-card mark {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #8a5200;
  background: rgba(255, 159, 67, 0.18);
}

.demo-transfer {
  position: relative;
  width: 180px;
  height: 26px;
}

.demo-transfer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.15), rgba(13, 110, 253, 1), rgba(32, 165, 107, 0.18));
  transform: translateY(-50%);
}

.demo-transfer span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
  animation: flowDot 2.2s linear infinite;
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  background: linear-gradient(135deg, #0f2f58, #16508f);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .button {
  margin-top: 0.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(13, 61, 117, 0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(13, 110, 253, 0.18);
  border-color: rgba(13, 110, 253, 0.35);
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.form-privacy-note {
  margin: -0.15rem 0 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-privacy-note a,
.privacy-content a {
  color: var(--color-primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-main {
  padding-bottom: 1rem;
}

.privacy-hero {
  padding: 4.25rem 0 1.75rem;
}

.privacy-hero h1 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.05;
}

.privacy-hero p {
  margin: 0;
  color: var(--color-text-soft);
  font-weight: 700;
}

.privacy-section {
  padding: 0 0 4.25rem;
}

.privacy-content {
  max-width: 920px;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.privacy-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.privacy-content h2:first-of-type {
  margin-top: 1.25rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--color-text-soft);
}

.privacy-content ul {
  margin: 0.65rem 0 1rem;
  padding-left: 1.3rem;
}

.privacy-nav {
  justify-content: flex-end;
}

.site-footer {
  padding: 2rem 0 6rem;
  background: #102844;
  color: rgba(255, 255, 255, 0.92);
}

#ai-chat-toggle.ai-chat-toggle {
  right: 16px !important;
  bottom: calc(16px + env(safe-area-inset-bottom)) !important;
}

#ai-chat-widget.ai-chat-widget {
  right: 16px !important;
  bottom: calc(78px + env(safe-area-inset-bottom)) !important;
  width: min(330px, calc(100vw - 24px)) !important;
  height: min(560px, calc(100dvh - 108px - env(safe-area-inset-bottom))) !important;
  max-height: calc(100vh - 108px) !important;
}

.floating-pill {
  position: absolute;
  z-index: 2;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 61, 117, 0.1);
  box-shadow: var(--shadow-card);
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 800;
  animation: floatPill 7s ease-in-out infinite;
}

.pill-top {
  top: 12px;
  right: 4px;
}

.pill-bottom {
  left: 16px;
  bottom: 10px;
  animation-delay: -2.5s;
}

.pill-side {
  top: 38%;
  right: -24px;
  animation-delay: -1s;
}

.pill-side-alt {
  left: -16px;
  top: 54%;
  animation-delay: -3.2s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -26px, 0) scale(1.05);
  }
}

@keyframes heroMorph {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(20px, -24px, 0) scale(1.08);
  }
  66% {
    transform: translate3d(-18px, 16px, 0) scale(0.96);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes chatAppear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes messageFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes floatPill {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: var(--shadow-card);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(12, 53, 98, 0.12);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 165, 107, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(32, 165, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 165, 107, 0);
  }
}

@keyframes flowDot {
  0% {
    left: -10px;
  }
  100% {
    left: calc(100% - 4px);
  }
}

@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.55;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.footer-brand .brand-el {
  color: #ffffff;
}

.footer-brand .brand-mi {
  color: #5ee0a4;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .contact-layout,
  .demo-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .floating-pill {
    position: static;
    width: fit-content;
  }

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

  .journey-arrow {
    display: none;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 61, 117, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0.2rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.5vw, 2.85rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.65rem, 6vw, 2.3rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .demo-panel,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badges,
  .hero-visual {
    gap: 1rem;
  }

  .benefit-strip,
  .journey-flow {
    display: grid;
  }

  .channel-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-card,
  .dashboard-card {
    margin: 0;
  }

  .flow-connector {
    position: static;
    justify-items: start;
  }

  .card-grid-3,
  .card-grid-4,
  .badge-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .section,
  .hero {
    padding: 2.55rem 0;
  }

  .hero {
    padding-top: 2.35rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.35rem);
    margin: 0.75rem 0;
  }

  .section-heading {
    margin-bottom: 1.1rem;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin: 0.75rem 0;
  }

  .hero-subtitle,
  .section-heading p,
  .cta-panel p,
  .contact-copy p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .demo-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .demo-actions {
    width: 100%;
  }

  .hero-actions {
    margin: 1.35rem 0 0.75rem;
  }

  .button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(28px) scale(0.98);
  }

  .mini-badge,
  .floating-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .journey-flow {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .demo-transfer {
    width: 100%;
    max-width: 180px;
  }

  .steps-grid,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .feature-list,
  .steps-grid,
  .dashboard-metrics,
  .demo-visual,
  .contact-form {
    gap: 0.85rem;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .demo-panel,
  .cta-panel {
    gap: 1.15rem;
  }

  .hero-visual {
    padding: 1.35rem 0;
  }

  .visual-card,
  .info-card,
  .step-card,
  .feature-item,
  .demo-panel,
  .cta-panel,
  .contact-form {
    padding: 1.05rem;
    border-radius: 22px;
  }

  .journey-step {
    min-height: auto;
    padding: 1.05rem;
  }

  .channel-strip {
    gap: 1rem;
    padding: 1.25rem;
  }

  .demo-card {
    width: 100%;
    min-width: 0;
    padding: 1rem;
  }

  .contact-form {
    padding: 1.15rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.85rem 0.95rem;
  }

  .privacy-hero {
    padding: 3rem 0 1.25rem;
  }

  .privacy-content {
    padding: 1.25rem;
  }

  .site-footer {
    padding-bottom: 8rem;
  }

  #ai-chat-toggle.ai-chat-toggle {
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    max-width: calc(100vw - 28px) !important;
    min-height: 44px !important;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.92rem !important;
    transform: scale(0.9) !important;
    transform-origin: bottom right !important;
  }

  #ai-chat-widget.ai-chat-widget {
    right: 10px !important;
    bottom: calc(64px + env(safe-area-inset-bottom)) !important;
    width: min(340px, calc(100vw - 20px)) !important;
    height: min(520px, calc(100dvh - 92px - env(safe-area-inset-bottom))) !important;
    max-height: calc(100vh - 92px) !important;
  }

  .eyebrow {
    font-size: 0.76rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1.35rem), var(--container));
  }

  .hero h1 {
    font-size: clamp(1.78rem, 9.2vw, 2.12rem);
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.42rem, 7.2vw, 1.82rem);
  }

  #ai-chat-toggle.ai-chat-toggle {
    transform: scale(0.86) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
