:root {
  --bg: #0a1118;
  --ink: #f7fbff;
  --muted: #a8b3c1;
  --panel: #111c26;
  --panel-2: #0f1720;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #088bd8;
  --blue-2: #20b8ff;
  --green: #1bbf8a;
  --paper: #ffffff;
  --paper-ink: #111827;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(8, 139, 216, 0.26), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(32, 184, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #0a1118 0%, #0b131c 38%, #f4f7fb 38%, #f4f7fb 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.brand img {
  display: block;
  width: 172px;
  height: 42px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 6px;
  border-radius: 8px;
  transition: color 180ms ease, text-shadow 180ms ease, background-color 180ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

nav a:hover::after,
nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.primary,
.secondary,
.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.primary,
.footer a {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 139, 216, 0.24);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero,
.section,
.split-section,
.signal-row,
.demo-band,
.whatsapp-section,
.trust-section,
.industry-section,
.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  min-height: 590px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    url("assets/whale-hero.jpg")
      var(--hero-bg-x, center) var(--hero-bg-y, 48%) / calc(100% + var(--hero-zoom, 0px)) auto no-repeat;
  box-shadow: var(--shadow);
  transition: background-position 120ms linear;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 32%, rgba(32, 184, 255, 0.18), transparent 30%),
    radial-gradient(circle at 16% 88%, rgba(8, 139, 216, 0.28), transparent 34%);
  opacity: 0.9;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 25, 0.94) 0%, rgba(7, 16, 25, 0.78) 48%, rgba(7, 16, 25, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 16, 25, 0.36), rgba(7, 16, 25, 0.08) 46%, rgba(7, 16, 25, 0.36)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 38%);
  pointer-events: none;
}

.hero-copy,
.brand-panel {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 5.2vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  line-height: 1.03;
}

.hero-copy p,
.demo-band p,
.split-section p {
  max-width: 650px;
  color: #d5dde7;
  font-size: 1.05rem;
  line-height: 1.72;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(32, 184, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d5dde7;
  font-size: 0.86rem;
  font-weight: 800;
}

.brand-panel {
  display: grid;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(32, 184, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(7, 16, 25, 0.92), rgba(7, 16, 25, 0.76));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.value-panel {
  padding: 24px;
}

.logo-card {
  position: relative;
  aspect-ratio: 1.65;
  overflow: hidden;
  border: 1px solid rgba(32, 184, 255, 0.28);
  border-radius: 8px;
  background: #f8fafc;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 20px;
}

.panel-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.panel-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.value-grid div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(32, 184, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(8, 139, 216, 0.08));
}

.value-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #f7fbff;
  font-size: 0.95rem;
}

.value-grid span {
  color: #a8b3c1;
  font-size: 0.82rem;
  line-height: 1.35;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.signal-row div,
.cards article,
.pricing article,
.steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signal-row div {
  min-height: 104px;
  padding: 18px;
  background: rgba(17, 28, 38, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.signal-row strong {
  display: block;
  font-size: 1.7rem;
}

.signal-row span {
  color: var(--muted);
}

.section,
.split-section,
.demo-band,
.whatsapp-section,
.trust-section,
.industry-section {
  padding: 92px 0 0;
  color: var(--paper-ink);
}

.section h2,
.split-section h2,
.demo-band h2,
.whatsapp-section h2,
.trust-section h2,
.industry-section h2,
.calendar-section h2 {
  color: #111827;
}

#servicio .section-heading h2 {
  color: #f7fbff;
  font-size: clamp(1.85rem, 3.45vw, 3.05rem);
  line-height: 1.08;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}

#servicio .section-heading .eyebrow {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

#servicio .section-heading {
  padding: 22px;
  border: 1px solid rgba(32, 184, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 18%, rgba(32, 184, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(8, 24, 38, 0.96), rgba(7, 45, 68, 0.9) 55%, rgba(8, 139, 216, 0.22));
  box-shadow: 0 24px 60px rgba(8, 139, 216, 0.12);
}

.section p,
.split-section p,
.demo-band p,
.whatsapp-section p,
.trust-section p,
.industry-section p,
.calendar-section p {
  color: #4b5563;
}

.industry-section .section-heading .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.trust-section .section-heading .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.trust-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  line-height: 1.08;
}

.industry-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  line-height: 1.08;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
}

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

.pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.billing-toggle {
  display: inline-flex;
  gap: 6px;
  margin: 0 0 20px;
  padding: 5px;
  border: 1px solid rgba(8, 139, 216, 0.16);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.07);
}

.billing-toggle button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.billing-toggle .active {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 139, 216, 0.2);
}

.cards article,
.pricing article,
.steps li {
  background: var(--paper);
}

#servicio .cards article {
  border-color: rgba(32, 184, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.92));
  box-shadow: 0 18px 42px rgba(8, 139, 216, 0.1);
}

.cards article,
.pricing article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.52) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 220ms ease, transform 520ms ease;
  pointer-events: none;
}

.cards article:hover,
.pricing article:hover {
  border-color: rgba(8, 139, 216, 0.28);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.12);
  transform: translateY(-5px);
}

.cards article:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.pricing article {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cards h3,
.pricing h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.cards p,
.pricing p,
.steps span {
  color: #5f6b7a;
  line-height: 1.55;
}

.demo-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
  padding: 64px;
  margin-top: 92px;
  overflow: hidden;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(8, 139, 216, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef6ff);
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.09);
}

.demo-band p {
  color: #4b5563;
}

.demo-copy .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.demo-band h2 {
  max-width: 620px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

.demo-copy {
  position: relative;
  z-index: 1;
}

.demo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.demo-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(8, 139, 216, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #0f5f93;
  font-size: 0.82rem;
  font-weight: 800;
}

.demo-copy > p {
  max-width: 640px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
  line-height: 1.62;
}

.phone-showcase {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 315px);
  filter: drop-shadow(0 24px 42px rgba(15, 23, 42, 0.24));
}

.phone-showcase::after {
  content: "";
  position: absolute;
  inset: 9% 11% 10%;
  border-radius: 28px;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 46%, transparent 64%);
  opacity: 0;
  transform: translateX(-34%);
  pointer-events: none;
}

.phone-showcase.is-visible {
  animation: phone-rise 800ms ease both;
}

.phone-showcase.is-visible::after {
  animation: phone-sheen 1400ms ease 450ms both;
}

.phone-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

@keyframes phone-rise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phone-sheen {
  0% {
    opacity: 0;
    transform: translateX(-34%);
  }

  32% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(36%);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: start;
}

.split-section .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.split-section h2 {
  max-width: 620px;
  font-size: clamp(1.85rem, 3.3vw, 2.95rem);
  line-height: 1.08;
}

#proceso h2 {
  color: #f7fbff;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.split-section p {
  color: #4b5563;
}

.process-note {
  max-width: 660px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(8, 139, 216, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.9));
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.07);
  line-height: 1.65;
}

.steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 106px;
  padding: 22px 24px 22px 76px;
  border-color: rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(90deg, rgba(8, 139, 216, 0.06), rgba(255, 255, 255, 0) 38%),
    #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.steps li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.steps li::after {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.steps li:nth-child(1)::after {
  content: "01";
}

.steps li:nth-child(2)::after {
  content: "02";
}

.steps li:nth-child(3)::after {
  content: "03";
}

.steps li:nth-child(4)::after {
  content: "04";
}

.steps strong {
  font-size: 1rem;
  line-height: 1.2;
}

.steps span {
  font-size: 0.96rem;
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.whatsapp-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.whatsapp-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.whatsapp-title h2 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  line-height: 1.12;
}

.whatsapp-title .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
}

.whatsapp-heading p {
  max-width: none;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(8, 139, 216, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.9));
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.65;
}

.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(27, 191, 138, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.14), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.14);
}

.whatsapp-mark img {
  width: 42px;
  height: 42px;
}

.whatsapp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.whatsapp-stats div {
  padding: 16px 18px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.06);
}

.whatsapp-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 1;
}

.whatsapp-stats span {
  color: #5f6b7a;
  font-size: 0.88rem;
  font-weight: 700;
}

.whatsapp-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(8, 139, 216, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.whatsapp-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(8, 139, 216, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.whatsapp-grid h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.22;
}

.whatsapp-grid p {
  margin: 0;
  line-height: 1.6;
}

.trust-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  max-width: 860px;
}

.trust-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 0%, rgba(32, 184, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.88));
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.trust-menu button {
  position: relative;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #475569;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.trust-menu button::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 180ms ease;
}

.trust-menu button strong {
  margin-right: 7px;
  color: var(--blue);
  font-size: 0.78rem;
}

.trust-menu button:hover,
.trust-menu button.active {
  border-color: rgba(8, 139, 216, 0.36);
  background: linear-gradient(135deg, #fff, rgba(216, 241, 255, 0.88));
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(8, 139, 216, 0.12);
}

.trust-menu button.active {
  border-color: rgba(8, 139, 216, 0.62);
  background:
    radial-gradient(circle at 88% 50%, rgba(32, 184, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(228, 246, 255, 0.96), #fff);
}

.trust-menu button:hover::before,
.trust-menu button.active::before {
  background: var(--blue);
}

.trust-panel {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(8, 139, 216, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 14%, rgba(32, 184, 255, 0.2), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(8, 139, 216, 0.12), transparent 38%),
    linear-gradient(135deg, #fff, #f7fbff);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
}

.trust-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(32, 184, 255, 0.14) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-55%);
}

.trust-panel.is-changing {
  animation: trust-panel-change 430ms cubic-bezier(0.18, 0.86, 0.28, 1.08) both;
}

.trust-panel.is-changing::after {
  animation: trust-panel-sheen 430ms ease both;
}

.trust-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(8, 139, 216, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-panel h3 {
  margin-bottom: 6px;
  color: #111827;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.12;
}

.trust-panel p {
  max-width: 600px;
  margin: 0;
  color: #5f6b7a;
  font-size: 0.9rem;
  line-height: 1.5;
}

@keyframes trust-panel-change {
  0% {
    opacity: 0.25;
    transform: translateX(30px) scale(0.96);
    filter: saturate(0.85);
  }

  58% {
    opacity: 1;
    transform: translateX(-4px) scale(1.012);
    filter: saturate(1.08);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: saturate(1);
  }
}

@keyframes trust-panel-sheen {
  0% {
    opacity: 0;
    transform: translateX(-55%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(55%);
  }
}

.industry-tabs {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
}

.industry-menu {
  display: grid;
  gap: 8px;
}

.industry-menu button {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #475569;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.industry-menu button:hover,
.industry-menu button.active {
  border-color: rgba(8, 139, 216, 0.32);
  background: rgba(8, 139, 216, 0.08);
  color: var(--blue);
  transform: translateX(3px);
}

.industry-panel {
  min-height: 228px;
  padding: 24px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 14%, rgba(32, 184, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #fff, #f7fbff);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.industry-panel.is-changing {
  animation: industry-panel-change 240ms ease both;
}

.industry-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-panel h3 {
  margin-bottom: 10px;
  color: #111827;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

.industry-panel p {
  max-width: 720px;
  margin: 0 0 16px;
  color: #5f6b7a;
  font-size: 0.98rem;
  line-height: 1.6;
}

.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.industry-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 9px;
  border: 1px solid rgba(8, 139, 216, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #0f5f93;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: none;
}

.industry-example {
  padding: 12px 14px;
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: rgba(8, 139, 216, 0.08);
  color: #334155;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

@keyframes industry-panel-change {
  0% {
    opacity: 0.55;
    transform: translateY(8px);
  }

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

.pricing span {
  display: block;
  margin-bottom: 10px;
  max-width: calc(100% - 96px);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing h3 {
  font-size: 2rem;
}

.pricing h3,
.pricing .install-discount,
.pricing .monthly {
  transition: opacity 180ms ease, transform 180ms ease;
}

.pricing article.price-changing h3,
.pricing article.price-changing .install-discount,
.pricing article.price-changing .monthly {
  opacity: 0;
  transform: translateY(6px);
}

.pricing .monthly {
  margin-bottom: 8px;
  color: #111827;
  font-weight: 800;
}

.install-discount {
  margin: -4px 0 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.setup-time {
  margin: -2px 0 14px;
  color: #8a96a8;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}

.pricing ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #5f6b7a;
  font-size: 0.92rem;
  line-height: 1.45;
  list-style: none;
}

.pricing li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.pricing .featured {
  border: 3px solid var(--blue);
  padding-top: 32px;
  box-shadow: 0 22px 54px rgba(8, 139, 216, 0.18);
  transform: translateY(-8px);
}

.pricing .featured:hover {
  transform: translateY(-12px);
}

.package-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(8, 139, 216, 0.2);
  border-radius: 999px;
  background: rgba(8, 139, 216, 0.1);
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(8, 139, 216, 0.12);
}

.package-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(32, 184, 255, 0.12);
}

.ai-tag {
  background: linear-gradient(135deg, rgba(8, 139, 216, 0.14), rgba(32, 184, 255, 0.08));
}

.ai-tag::before {
  animation: ai-pulse 2600ms ease-in-out infinite;
}

@keyframes ai-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(32, 184, 255, 0.12);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(32, 184, 255, 0.05);
    transform: scale(1.15);
  }
}

.badge {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(8, 139, 216, 0.12);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing .elite {
  background: #0d1721;
  color: #fff;
}

.package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-weight: 900;
}

.pricing .elite span,
.pricing .elite li::before {
  color: var(--blue-2);
}

.pricing .elite .monthly,
.pricing .elite ul {
  color: #d5dde7;
}

.pricing-note {
  max-width: 900px;
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(8, 139, 216, 0.16);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.9));
  color: #475569;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.07);
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 900px;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.payment-methods span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-methods p {
  margin: 4px 0 0;
  color: #4b5563;
  font-weight: 700;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.payment-pills a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(8, 139, 216, 0.18);
  border-radius: 999px;
  background: rgba(232, 247, 255, 0.78);
  color: #075985;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.payment-pills a:hover {
  border-color: rgba(8, 139, 216, 0.38);
  background: rgba(216, 241, 255, 0.96);
  transform: translateY(-1px);
}

.payment-pills img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.calendar-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 24px;
  align-items: start;
  width: min(1160px, calc(100% - 32px));
  margin: 92px auto 0;
  color: var(--paper-ink);
}

.calendar-copy,
.calendly-box {
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.calendar-copy {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 94% 12%, rgba(32, 184, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.calendar-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.calendar-copy p {
  color: #5f6b7a;
  line-height: 1.65;
}

.calendar-points {
  display: grid;
  gap: 10px;
  margin: 2px 0 4px;
  padding: 0;
  color: #475569;
  font-size: 0.94rem;
  font-weight: 800;
  list-style: none;
}

.calendar-points li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.calendar-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 139, 216, 0.1);
}

.calendar-copy .primary {
  justify-self: start;
}

.calendly-box {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.88));
}

.calendly-frame {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
}

.calendly-fallback {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(8, 139, 216, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.calendly-badge-widget {
  left: 18px !important;
  right: auto !important;
  z-index: 25 !important;
  border-radius: 999px !important;
  box-shadow: 0 18px 42px rgba(8, 139, 216, 0.28) !important;
}

.calendly-badge-widget .calendly-badge-content {
  border-radius: 999px !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 900 !important;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 82px;
  padding: 24px 0 34px;
  border-top: 1px solid #dce3ee;
  color: var(--paper-ink);
}

.footer p {
  margin-bottom: 0;
  color: #5f6b7a;
}

.faq-hero,
.faq-layout,
.faq-next-step {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--paper-ink);
}

.faq-hero {
  margin-top: 18px;
  padding: 58px 64px;
  border: 1px solid rgba(32, 184, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 14%, rgba(32, 184, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(8, 24, 38, 0.98), rgba(7, 45, 68, 0.92) 56%, rgba(8, 139, 216, 0.2));
  box-shadow: 0 24px 60px rgba(8, 139, 216, 0.12);
}

.faq-hero h1 {
  max-width: 760px;
  color: #f7fbff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.faq-hero p {
  max-width: 720px;
  color: #d5dde7;
  font-size: 1.08rem;
  line-height: 1.65;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 34px;
}

.faq-copy,
.faq-list {
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.faq-copy {
  padding: 28px;
  background:
    radial-gradient(circle at 94% 12%, rgba(32, 184, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.faq-copy h2 {
  margin-bottom: 12px;
  color: #111827;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.faq-copy p {
  margin-bottom: 0;
  color: #5f6b7a;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.faq-list button {
  position: relative;
  min-height: 58px;
  padding: 0 46px 0 18px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f7fbff);
  color: #0f172a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list button::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--blue);
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.faq-list button:hover {
  border-color: rgba(8, 139, 216, 0.32);
  box-shadow: 0 14px 32px rgba(8, 139, 216, 0.1);
  transform: translateY(-2px);
}

.faq-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 20%, rgba(32, 184, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #fff, #f7fbff);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.07);
}

.faq-next-step h2 {
  max-width: 640px;
  margin-bottom: 8px;
  color: #111827;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.1;
}

.faq-next-step p {
  max-width: 720px;
  margin: 0;
  color: #4b5563;
  line-height: 1.58;
}

.compare-hero,
.ideal-section,
.compare-table-section,
.why-hero,
.why-grid,
.why-flow {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--paper-ink);
}

.compare-hero,
.why-hero {
  margin-top: 18px;
  padding: 58px 64px;
  border: 1px solid rgba(32, 184, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 14%, rgba(32, 184, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(8, 24, 38, 0.98), rgba(7, 45, 68, 0.92) 56%, rgba(8, 139, 216, 0.2));
  box-shadow: 0 24px 60px rgba(8, 139, 216, 0.12);
}

.compare-hero h1,
.why-hero h1 {
  max-width: 850px;
  color: #f7fbff;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.compare-hero p,
.why-hero p {
  max-width: 760px;
  color: #d5dde7;
  font-size: 1.06rem;
  line-height: 1.65;
}

.why-hero h1 {
  max-width: 900px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 0 0;
}

.why-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(32, 184, 255, 0.12), transparent 30%),
    #fff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.07);
}

.why-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(8, 139, 216, 0.1);
  color: var(--blue);
  font-weight: 900;
}

.why-grid h2 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 1.35rem;
  line-height: 1.14;
}

.why-grid p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.why-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 255, 0.9));
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.07);
}

.why-flow h2 {
  max-width: 360px;
  color: #111827;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.why-flow ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-flow li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 139, 216, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.why-flow strong {
  color: #111827;
}

.why-flow span {
  color: #4b5563;
  line-height: 1.5;
}

.ideal-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 34px 0 0;
}

.ideal-section article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f7fbff);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.ideal-section .featured-ideal {
  border: 2px solid var(--blue);
  box-shadow: 0 22px 54px rgba(8, 139, 216, 0.16);
}

.ideal-section span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ideal-section h2 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 1.02rem;
  line-height: 1.18;
}

.ideal-section p {
  color: #5f6b7a;
  line-height: 1.58;
}

.ideal-section a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 16px;
  padding: 0 10px;
  border: 1px solid rgba(8, 139, 216, 0.18);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.ideal-section a:hover {
  border-color: rgba(8, 139, 216, 0.34);
  background: rgba(8, 139, 216, 0.08);
  color: #087fc5;
}

.compare-table-section {
  padding: 72px 0 0;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(8, 139, 216, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid #e5edf6;
  text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table th {
  background: #f7fbff;
  color: #0f172a;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.compare-table td {
  color: #475569;
  font-weight: 800;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 44px auto 0;
  padding: 28px;
  border: 1px solid rgba(8, 139, 216, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(32, 184, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  color: var(--paper-ink);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.page-cta h2 {
  margin-bottom: 8px;
  color: #111827;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.page-cta .eyebrow {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.page-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: #5f6b7a;
  line-height: 1.6;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: min(390px, calc(100vw - 24px));
}

.chat-tab {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(32, 184, 255, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, #071019, #088bd8);
  color: #fff;
  box-shadow: 0 22px 54px rgba(8, 139, 216, 0.34);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  animation: wiggle-tab 2.4s ease-in-out infinite;
}

.chat-widget:not(.is-open) .chat-tab {
  display: inline-flex;
}

.chat-widget:not(.is-open) .chat-card {
  display: none;
}

.chat-card {
  display: grid;
  grid-template-rows: auto minmax(300px, 46vh) auto auto;
  overflow: hidden;
  border: 1px solid rgba(32, 184, 255, 0.3);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  background: #071019;
  color: #fff;
}

.chat-header div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.chat-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 5px rgba(32, 184, 255, 0.16);
}

.close-chat {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 14px;
  overflow-y: auto;
  background: #f5f9fd;
}

.chat-message {
  max-width: 90%;
  padding: 11px 13px;
  border-radius: 8px;
  line-height: 1.45;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.07);
}

.chat-message.bot {
  align-self: flex-start;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #172033;
}

.chat-message.user {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
}

.chat-message a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 10px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 0;
  background: #fff;
}

.chat-quick button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(8, 139, 216, 0.22);
  border-radius: 999px;
  background: rgba(8, 139, 216, 0.08);
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  padding: 12px 14px 14px;
  background: #fff;
}

.chat-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  outline: none;
  font: inherit;
}

.chat-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 139, 216, 0.12);
}

.chat-form button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

@keyframes wiggle-tab {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  45% {
    transform: translateY(-6px) rotate(-1deg);
  }

  55% {
    transform: translateY(-6px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

@media (max-width: 930px) {
  .hero,
  .demo-band,
  .split-section,
  .cards,
  .pricing,
  .whatsapp-grid,
  .trust-grid,
  .trust-tabs,
  .industry-tabs,
  .why-grid,
  .why-flow,
  .whatsapp-heading,
  .whatsapp-stats,
  .signal-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 28px;
  }

  .demo-band {
    padding: 34px;
  }

  .hero::before {
    opacity: 0.82;
  }

  .logo-card {
    max-width: 360px;
  }

  .whatsapp-title h2 {
    font-size: clamp(1.45rem, 6vw, 2.05rem);
  }

  .whatsapp-heading p {
    padding: 18px;
  }

  .calendar-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .faq-next-step {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .payment-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .section,
  .split-section,
  .signal-row,
  .demo-band,
  .whatsapp-section,
  .trust-section,
  .industry-section,
  .footer,
  .site-header,
  .calendar-section,
  .faq-hero,
  .faq-layout,
  .faq-next-step,
  .compare-hero,
  .ideal-section,
  .compare-table-section,
  .why-hero,
  .why-grid,
  .why-flow,
  .page-cta {
    width: min(100% - 20px, 1160px);
  }

  .faq-hero {
    padding: 32px 22px;
  }

  .compare-hero,
  .why-hero {
    padding: 32px 22px;
  }

  .ideal-section,
  .trust-tabs,
  .industry-tabs,
  .why-grid,
  .why-flow {
    grid-template-columns: 1fr;
  }

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

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

  .trust-menu {
    padding: 10px;
  }

  .hero {
    padding: 22px;
  }

  .demo-band {
    padding: 24px;
    margin-top: 72px;
  }

  .hero::before {
    opacity: 0.7;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 16, 25, 0.9), rgba(7, 16, 25, 0.76)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%);
  }

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

  .chat-widget {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }

  .chat-form {
    grid-template-columns: 1fr;
  }
}
