:root {
  --navy: #071b2d;
  --navy-2: #0a2740;
  --cyan: #00aeef;
  --green: #7dba2e;
  --white: #ffffff;
  --ink: #eaf6ff;
  --muted: #a8bed0;
  --soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(0, 174, 239, 0.32);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --glow-cyan: 0 0 36px rgba(0, 174, 239, 0.32);
  --glow-green: 0 0 36px rgba(125, 186, 46, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 174, 239, 0.18), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(125, 186, 46, 0.14), transparent 30%),
    linear-gradient(180deg, #03101d 0%, var(--navy) 44%, #051726 100%);
  color: var(--ink);
  font-family:
    Inter, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 72%);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100vw - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  color: var(--white);
  background: rgba(7, 27, 45, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 158px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(0, 174, 239, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 30px);
  color: rgba(234, 246, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.header-action {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

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

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(0, 174, 239, 0.36);
  border-radius: 12px;
  background: rgba(0, 174, 239, 0.1);
  color: var(--white);
  font-weight: 900;
}

.header-action:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 186, 46, 0.72);
  box-shadow: var(--glow-cyan);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 86px) 86px;
}

.hero-grid,
.hero-orbit {
  position: absolute;
  pointer-events: none;
}

.hero-grid {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 174, 239, 0.18), transparent 34%),
    linear-gradient(285deg, rgba(125, 186, 46, 0.16), transparent 38%);
}

.hero-orbit {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(0, 174, 239, 0.18);
  filter: blur(0.2px);
  animation: floatOrb 9s ease-in-out infinite;
}

.hero-orbit.one {
  top: 18%;
  right: 12%;
  box-shadow: inset 0 0 70px rgba(0, 174, 239, 0.08), 0 0 80px rgba(0, 174, 239, 0.14);
}

.hero-orbit.two {
  right: -120px;
  bottom: 10%;
  border-color: rgba(125, 186, 46, 0.18);
  animation-delay: -4s;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.8);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 7.4vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.05rem, 4.2vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.hero-actions,
.hero-stats,
.simulator-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #03101d;
  box-shadow: 0 12px 36px rgba(0, 174, 239, 0.28);
}

.button.primary:hover {
  box-shadow: 0 18px 52px rgba(0, 174, 239, 0.38), 0 0 28px rgba(125, 186, 46, 0.26);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  border-color: rgba(0, 174, 239, 0.58);
  box-shadow: var(--glow-cyan);
}

.hero-stats {
  margin: 36px 0 0;
}

.hero-stats div {
  min-width: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  justify-items: center;
}

.dashboard-card {
  width: min(100%, 540px);
  min-height: 620px;
  padding: 18px;
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(7, 27, 45, 0.64);
  box-shadow: var(--shadow), var(--glow-cyan);
  backdrop-filter: blur(22px);
  animation: floatCard 7s ease-in-out infinite;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.dashboard-header,
.ai-panel,
.metric-strip,
.handoff {
  display: flex;
  align-items: center;
}

.dashboard-header {
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-header small,
.ai-panel small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.dashboard-header strong,
.ai-panel strong {
  color: var(--white);
}

.live-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(125, 186, 46, 0.18);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
}

.ai-panel {
  gap: 14px;
  margin: 16px 0;
  padding: 18px;
  border: 1px solid rgba(125, 186, 46, 0.25);
  border-radius: 20px;
  background: rgba(125, 186, 46, 0.08);
}

.ai-pulse {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: conic-gradient(from 180deg, var(--cyan), var(--green), var(--cyan));
  box-shadow: var(--glow-green);
  animation: pulseAi 2.8s ease-in-out infinite;
}

.chat-preview,
.chat-window {
  display: grid;
  gap: 14px;
}

.chat-preview {
  min-height: 300px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(3, 16, 29, 0.62);
}

.chat-bubble {
  width: min(84%, 360px);
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--ink);
  font-weight: 750;
}

.chat-bubble.incoming {
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
}

.chat-bubble.outgoing {
  justify-self: end;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.96), rgba(125, 186, 46, 0.92));
  color: #03101d;
}

.chat-bubble.handoff-bubble {
  justify-self: center;
  width: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(125, 186, 46, 0.3);
  color: var(--green);
}

.metric-strip {
  gap: 10px;
  margin-top: 16px;
}

.metric-strip div {
  flex: 1;
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-strip strong {
  color: var(--white);
  font-size: 1.3rem;
}

.metric-strip span {
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-band span {
  min-height: 76px;
  display: grid;
  place-items: center;
  background: rgba(7, 27, 45, 0.9);
  color: rgba(234, 246, 255, 0.7);
  padding: 14px;
  text-align: center;
  font-weight: 850;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 128px) clamp(20px, 6vw, 86px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

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

.section-heading.centered {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-intro p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  max-width: 650px;
}

.solutions-section {
  background: linear-gradient(180deg, rgba(7, 27, 45, 0.2), rgba(10, 39, 64, 0.42));
}

.solution-grid,
.channel-grid,
.steps {
  display: grid;
  gap: 16px;
}

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

.solution-card,
.channel-card,
.steps article,
.lead-form,
.simulator {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 27, 45, 0.7);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.solution-card,
.channel-card {
  min-height: 252px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.solution-card:hover,
.channel-card:hover,
.steps article:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 70px rgba(0, 174, 239, 0.12);
}

.solution-card.featured {
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.22), rgba(125, 186, 46, 0.1)),
    rgba(7, 27, 45, 0.76);
}

.solution-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: var(--glow-cyan);
}

.solution-icon.cyan {
  background: var(--cyan);
}

.solution-icon.green {
  background: var(--green);
}

.solution-icon.line {
  background:
    linear-gradient(90deg, transparent 43%, var(--cyan) 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 43%, var(--green) 43% 57%, transparent 57%),
    rgba(255, 255, 255, 0.08);
}

.solution-card p,
.channel-card p,
.steps p {
  color: var(--muted);
}

.split,
.simulator-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

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

.channel-logo {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 0 26px rgba(0, 174, 239, 0.16);
}

.workflow {
  background:
    radial-gradient(circle at 18% 30%, rgba(125, 186, 46, 0.12), transparent 30%),
    rgba(3, 16, 29, 0.42);
}

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

.steps article {
  min-height: 252px;
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  border: 1px solid rgba(0, 174, 239, 0.34);
  border-radius: 16px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 950;
}

.pricing-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 174, 239, 0.16), transparent 34%),
    radial-gradient(circle at 82% 32%, rgba(125, 186, 46, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(3, 16, 29, 0.52), rgba(7, 27, 45, 0.9));
}

.pricing-section::after {
  content: "";
  position: absolute;
  inset: 8% 5%;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 186, 46, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 20%, #000, transparent 72%);
}

.pricing-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}

.pricing-orb {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(38px);
  opacity: 0.28;
  animation: floatOrb 10s ease-in-out infinite;
}

.pricing-orb.cyan {
  top: 12%;
  left: 4%;
  background: var(--cyan);
}

.pricing-orb.green {
  right: 5%;
  bottom: 10%;
  background: var(--green);
  animation-delay: -5s;
}

.billing-control {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 34px;
}

.billing-toggle {
  position: relative;
  width: min(310px, 100%);
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 27, 45, 0.72);
  box-shadow: inset 0 0 18px rgba(0, 174, 239, 0.08), 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.billing-thumb {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.95), rgba(125, 186, 46, 0.88));
  box-shadow: 0 0 28px rgba(0, 174, 239, 0.34);
  transition: transform 240ms ease;
}

.billing-toggle.annual .billing-thumb {
  transform: translateX(100%);
}

.billing-toggle button {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 950;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.billing-toggle button:hover {
  transform: translateY(-1px);
  color: var(--white);
}

.billing-toggle button.active {
  color: #03101d;
}

.save-badge,
.popular-badge,
.plan-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid rgba(125, 186, 46, 0.4);
  border-radius: 999px;
  color: var(--green);
  background: rgba(125, 186, 46, 0.1);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.save-badge {
  min-height: 34px;
  padding: 0 12px;
  box-shadow: 0 0 24px rgba(125, 186, 46, 0.24);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.save-badge.is-hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(7, 27, 45, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.16), transparent 44%, rgba(125, 186, 46, 0.12));
  transition: opacity 220ms ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 174, 239, 0.4);
  box-shadow: 0 30px 86px rgba(0, 174, 239, 0.14);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured-plan {
  min-height: 724px;
  transform: translateY(-14px);
  border-color: rgba(0, 174, 239, 0.5);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.22), rgba(125, 186, 46, 0.1)),
    rgba(7, 27, 45, 0.9);
  box-shadow:
    0 32px 92px rgba(0, 0, 0, 0.32),
    0 0 46px rgba(0, 174, 239, 0.2),
    0 0 52px rgba(125, 186, 46, 0.12);
}

.pricing-card.featured-plan:hover {
  transform: translateY(-20px);
  box-shadow:
    0 36px 98px rgba(0, 0, 0, 0.34),
    0 0 58px rgba(0, 174, 239, 0.26),
    0 0 58px rgba(125, 186, 46, 0.16);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 32px;
  padding: 0 12px;
  border-color: rgba(0, 174, 239, 0.54);
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.72), rgba(125, 186, 46, 0.62));
  box-shadow: var(--glow-cyan);
}

.plan-top,
.price-wrap,
.billing-note,
.plan-features,
.plan-button {
  position: relative;
  z-index: 1;
}

.plan-kicker {
  min-height: 30px;
  padding: 0 11px;
  margin-bottom: 18px;
}

.plan-top h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.plan-top p {
  min-height: 76px;
  color: var(--muted);
}

.price-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  min-height: 76px;
  margin: 8px 0 6px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.price {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 0.95;
  font-weight: 950;
}

.price-period {
  color: var(--muted);
  font-weight: 850;
}

.billing-note {
  min-height: 48px;
  color: rgba(234, 246, 255, 0.68);
  font-size: 0.92rem;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.pricing-card.price-changing .price-wrap,
.pricing-card.price-changing .billing-note {
  opacity: 0.18;
  transform: translateY(5px);
}

.plan-features {
  display: grid;
  gap: 12px;
  padding: 24px 0 28px;
  margin: 0;
  list-style: none;
  color: rgba(234, 246, 255, 0.78);
}

.plan-features li {
  position: relative;
  padding-left: 30px;
}

.plan-features li::before {
  content: "";
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #03101d 0 32%, transparent 34%),
    linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.24);
}

.plan-button {
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(0, 174, 239, 0.28);
  background: rgba(0, 174, 239, 0.1);
  color: var(--white);
  box-shadow: none;
}

.plan-button:hover {
  border-color: rgba(125, 186, 46, 0.55);
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.2), rgba(125, 186, 46, 0.14));
}

.simulator-section {
  align-items: center;
}

.simulator {
  padding: 18px;
}

.simulator-controls {
  margin-bottom: 16px;
}

.scenario {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.scenario.active {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.24), rgba(125, 186, 46, 0.18));
  color: var(--white);
  border-color: rgba(0, 174, 239, 0.48);
}

.chat-window {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.12), transparent 34%),
    #041423;
}

.message {
  width: min(82%, 540px);
  padding: 16px 18px;
  border-radius: 16px;
}

.message.customer {
  justify-self: start;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.message.bot {
  justify-self: end;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.94), rgba(125, 186, 46, 0.86));
  color: #03101d;
  font-weight: 800;
}

.handoff {
  align-self: end;
  gap: 10px;
  color: var(--green);
  font-weight: 900;
}

.handoff span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(125, 186, 46, 0.75);
}

.contact-section {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(125, 186, 46, 0.08)),
    #03101d;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.36);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.lead-form input::placeholder {
  color: rgba(234, 246, 255, 0.42);
}

.lead-form select option {
  color: var(--navy);
}

.lead-form input:focus,
.lead-form select:focus,
.scenario:focus,
.button:focus,
a:focus {
  outline: 3px solid rgba(0, 174, 239, 0.32);
  outline-offset: 3px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 86px);
  color: var(--muted);
  background: #03101d;
  border-top: 1px solid var(--line);
}

.footer span:first-child {
  color: var(--white);
  font-weight: 950;
}

.admin-footer-link {
  color: rgba(168, 190, 208, 0.58);
  font-size: 0.82rem;
}

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

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -16px, 0);
  }
}

@keyframes pulseAi {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .simulator-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 138px;
  }

  .hero-visual {
    justify-items: start;
  }

  .solution-grid,
  .channel-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card.featured-plan {
    transform: none;
  }

  .pricing-card.featured-plan:hover {
    transform: translateY(-8px);
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 132px;
  }

  .nav-links {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 64px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .dashboard-card {
    min-height: auto;
  }

  .hero-stats div,
  .message,
  .chat-bubble {
    width: 100%;
  }

  .solution-grid,
  .channel-grid,
  .steps,
  .pricing-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .billing-control {
    align-items: stretch;
    flex-direction: column;
  }

  .billing-toggle {
    width: 100%;
  }

  .save-badge {
    align-self: center;
  }

  .pricing-card,
  .pricing-card.featured-plan {
    min-height: auto;
    padding: 24px;
  }

  .popular-badge {
    position: static;
    margin-bottom: 16px;
  }

  .metric-strip {
    flex-direction: column;
  }

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