:root {
  --navy-950: #040b1a;
  --navy-900: #07142f;
  --navy-850: #091a3b;
  --navy-800: #0f2557;
  --navy-700: #17366f;
  --blue-600: #2e6fd8;
  --blue-500: #3d83e8;
  --blue-400: #58a2ff;
  --blue-300: #84bcff;
  --white: #ffffff;
  --text: #f4f7fc;
  --muted: #b7c7e4;
  --muted-2: #8fa5c9;
  --line: rgba(183, 199, 228, 0.15);
  --line-strong: rgba(88, 162, 255, 0.28);
  --surface: rgba(15, 37, 87, 0.54);
  --surface-solid: #0c2049;
  --surface-dark: #081630;
  --green: #42db9a;
  --green-dark: #0f7e55;
  --red: #ff7f8d;
  --yellow: #ffd878;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-blue: 0 20px 60px rgba(46, 111, 216, 0.26);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shell: 1180px;
  --header-h: 82px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

/* Reemplaza el icono genérico del FAB de Retell por la marca de Mireles Voice. */
button[aria-label="Open Assistant"] img[alt="Support"] {
  display: none !important;
}

button[aria-label="Open Assistant"]::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
  background: url("/icono-mireles-voice.png") center / contain no-repeat;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 22px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(46, 111, 216, 0.14), transparent 24rem),
    radial-gradient(circle at 86% 20%, rgba(88, 162, 255, 0.09), transparent 30rem),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 22%, #061126 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.5vw, 5.65rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  font-weight: 650;
}

h1 span,
h2 span {
  background: linear-gradient(110deg, #ffffff 4%, var(--blue-400) 50%, var(--blue-300) 96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

::selection {
  color: #fff;
  background: rgba(46, 111, 216, 0.75);
}

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-600);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-noise {
  position: fixed;
  z-index: -5;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  z-index: -4;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.08;
}

.orb-one {
  top: -20rem;
  right: -12rem;
  background: var(--blue-400);
}

.orb-two {
  bottom: 3rem;
  left: -24rem;
  background: var(--blue-600);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 112px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.demo-copy > p,
.industries-copy > p,
.control-copy > p,
.faq-intro > p,
.founder-copy > p,
.final-copy > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--blue-400);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button svg,
.nav-cta svg,
.text-link svg,
.notification-action svg,
.mobile-cta svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-600), var(--blue-400));
  box-shadow: 0 14px 36px rgba(46, 111, 216, 0.32);
}

.button-primary:hover {
  box-shadow: 0 18px 45px rgba(46, 111, 216, 0.44);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(15, 37, 87, 0.36);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: var(--blue-400);
  background: rgba(46, 111, 216, 0.13);
}

.button-whatsapp {
  color: #052f1b;
  background: linear-gradient(120deg, #27d17f, #54e7a3);
  box-shadow: 0 14px 36px rgba(39, 209, 127, 0.2);
}

.button-whatsapp:hover {
  box-shadow: 0 18px 44px rgba(39, 209, 127, 0.32);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-300);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: #fff;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link svg {
  transition: transform 0.2s ease;
}

.play-mini {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.play-mini::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translate(-38%, -50%);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(4, 11, 26, 0.82);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 210px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: #d2ddf0;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(120deg, var(--blue-600), var(--blue-400));
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(46, 111, 216, 0.25);
}

.language-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(15, 37, 87, 0.45);
}

.language-switch button {
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 0;
  color: var(--muted-2);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--blue-600);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: rgba(15, 37, 87, 0.5);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 9px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 90px);
  padding-bottom: 64px;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  content: "";
  background:
    linear-gradient(rgba(88, 162, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 162, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 72px;
}

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

.eyebrow {
  padding: 9px 13px;
  border: 1px solid rgba(88, 162, 255, 0.25);
  border-radius: 999px;
  background: rgba(46, 111, 216, 0.08);
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(66, 219, 154, 0.1);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(66, 219, 154, 0.55);
  border-radius: inherit;
  content: "";
  animation: pulse 1.8s ease-out infinite;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #bdcce5;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0 0 8px;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d9e4f5;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-checks svg,
.final-badges svg,
.plan-card li svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-fineprint {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.hero-stage {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
}

.stage-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 111, 216, 0.28), transparent 67%);
  filter: blur(22px);
}

.call-console {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(88, 162, 255, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(165deg, rgba(18, 46, 100, 0.88), rgba(5, 15, 34, 0.96)),
    var(--navy-900);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.call-console::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  content: "";
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.045), transparent 35%);
}

.console-top,
.console-brand,
.incoming-card,
.voice-label,
.summary-top,
.notification-top,
.policy-head {
  display: flex;
  align-items: center;
}

.console-top {
  justify-content: space-between;
  padding-bottom: 18px;
}

.console-brand {
  gap: 10px;
}

.console-brand img {
  border-radius: 11px;
}

.console-brand strong,
.console-brand span,
.voice-label strong,
.voice-label small {
  display: block;
}

.console-brand strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.console-brand span {
  color: var(--muted-2);
  font-size: 0.66rem;
}

.availability {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(66, 219, 154, 0.18);
  border-radius: 999px;
  color: #baf2d8;
  background: rgba(66, 219, 154, 0.08);
  font-size: 0.66rem;
  font-weight: 700;
}

.availability span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.incoming-card {
  position: relative;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(4, 11, 26, 0.44);
}

.caller-avatar {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-300);
  background: linear-gradient(145deg, rgba(46, 111, 216, 0.38), rgba(88, 162, 255, 0.12));
}

.caller-avatar svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.caller-meta {
  min-width: 0;
  flex: 1;
}

.caller-meta span,
.caller-meta strong,
.caller-meta small {
  display: block;
}

.caller-meta span {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.caller-meta strong {
  margin-block: 1px;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.caller-meta small {
  color: var(--muted-2);
  font-size: 0.65rem;
}

.call-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d8e6fa;
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.pulse-ring {
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(66, 219, 154, 0.08);
}

.voice-strip {
  padding: 18px 4px 14px;
}

.voice-label {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}

.voice-label > div {
  min-width: 0;
  flex: 1;
}

.voice-label strong {
  font-size: 0.78rem;
}

.voice-label small {
  overflow: hidden;
  color: var(--muted-2);
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-badge {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-600), var(--blue-400));
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
}

.waveform {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.waveform i {
  display: block;
  width: 3px;
  height: 36%;
  border-radius: 9px;
  background: linear-gradient(to top, var(--blue-600), var(--blue-300));
  animation: wave 1.1s ease-in-out infinite;
}

.waveform i:nth-child(2n) { animation-delay: -0.72s; }
.waveform i:nth-child(3n) { animation-delay: -0.48s; }
.waveform i:nth-child(4n) { animation-delay: -0.26s; }

.call-timeline {
  display: grid;
  gap: 8px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  opacity: 0.72;
  background: rgba(4, 11, 26, 0.36);
}

.timeline-item.active {
  opacity: 1;
}

.timeline-item.is-processing {
  border-color: rgba(88, 162, 255, 0.3);
  opacity: 1;
}

.timeline-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #09291c;
  background: var(--green);
}

.timeline-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-loader {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(9, 41, 28, 0.25);
  border-top-color: #09291c;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.timeline-item strong,
.timeline-item small {
  display: block;
}

.timeline-item strong {
  font-size: 0.72rem;
}

.timeline-item small {
  color: var(--muted-2);
  font-size: 0.62rem;
}

.summary-card {
  margin-top: 13px;
  padding: 14px;
  border: 1px solid rgba(88, 162, 255, 0.26);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(46, 111, 216, 0.14), rgba(88, 162, 255, 0.05));
}

.summary-top {
  justify-content: space-between;
  gap: 12px;
}

.summary-top span,
.summary-top strong {
  display: block;
}

.summary-top span {
  color: var(--blue-300);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.summary-top strong {
  font-size: 0.72rem;
}

.summary-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--blue-300);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.summary-pills span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #cfe1fa;
  background: rgba(4, 11, 26, 0.48);
  font-size: 0.56rem;
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: #dbe8f8;
  background: rgba(7, 20, 47, 0.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  font-weight: 600;
}

.float-chip span {
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.float-chip-one {
  top: 9%;
  right: -3%;
  animation: float 5s ease-in-out infinite;
}

.float-chip-two {
  bottom: 7%;
  left: -7%;
  animation: float 5.8s ease-in-out -1.2s infinite;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 28px;
  margin-top: 72px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 20, 47, 0.52);
  backdrop-filter: blur(14px);
}

.trust-intro {
  max-width: 390px;
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 26px;
}

.trust-items span {
  color: #e2eafa;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-items b {
  margin-right: 5px;
  color: var(--blue-400);
  font-size: 0.65rem;
}

/* Problem */
.problem-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(46, 111, 216, 0.08), transparent 32rem),
    linear-gradient(180deg, rgba(4, 11, 26, 0.12), rgba(4, 11, 26, 0.65));
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(15, 37, 87, 0.58), rgba(7, 20, 47, 0.78));
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.problem-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: rgba(46, 111, 216, 0.12);
  filter: blur(40px);
}

.problem-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.card-index {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(183, 199, 228, 0.3);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.problem-icon,
.capability-icon,
.insight-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(88, 162, 255, 0.25);
  border-radius: 14px;
  color: var(--blue-300);
  background: rgba(46, 111, 216, 0.1);
}

.problem-icon svg,
.capability-icon svg,
.insight-icon svg,
.step-icon svg,
.shield svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  margin-bottom: 12px;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.problem-quote {
  position: relative;
  max-width: 850px;
  padding: 30px 48px;
  margin: 58px auto 0;
  text-align: center;
}

.problem-quote::before,
.problem-quote::after {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue-400));
}

.problem-quote::before {
  left: -50px;
}

.problem-quote::after {
  right: -50px;
  transform: rotate(180deg);
}

.problem-quote > span {
  color: var(--blue-400);
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.5;
}

.problem-quote p {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.35;
}

/* Demo */
.demo-section {
  overflow: hidden;
}

.demo-section::before {
  position: absolute;
  z-index: -1;
  top: 15%;
  left: 50%;
  width: 50rem;
  height: 30rem;
  border-radius: 50%;
  content: "";
  background: rgba(46, 111, 216, 0.09);
  filter: blur(130px);
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: 88px;
}

.demo-copy h2,
.industries-copy h2,
.control-copy h2,
.faq-intro h2,
.founder-copy h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #dde7f6;
  font-size: 0.92rem;
}

.feature-list li > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #082517;
  background: var(--green);
}

.feature-list svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audio-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(88, 162, 255, 0.3);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(21, 52, 112, 0.86), rgba(5, 15, 34, 0.96)),
    var(--navy-900);
  box-shadow: var(--shadow-md), var(--shadow-blue);
}

.audio-card::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(88, 162, 255, 0.25), transparent 68%);
}

.audio-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.audio-art {
  position: relative;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
}

.audio-art img {
  width: 100%;
  height: 100%;
  border-radius: 17px;
}

.audio-live {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--navy-850);
  border-radius: 50%;
  background: var(--green);
}

.audio-head span,
.audio-head strong,
.audio-head small {
  display: block;
}

.audio-head > div:last-child > span {
  color: var(--blue-300);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-head strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.audio-head small {
  color: var(--muted-2);
  font-size: 0.72rem;
}

.audio-wave {
  position: relative;
  display: flex;
  height: 92px;
  align-items: center;
  gap: 5px;
  margin-block: 25px 16px;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.audio-wave i {
  width: 4px;
  height: var(--h);
  flex: 1 1 auto;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(46, 111, 216, 0.6), var(--blue-300));
  opacity: 0.72;
  transform-origin: center;
}

.audio-card.is-playing .audio-wave i {
  animation: audio-bars 0.85s ease-in-out infinite alternate;
}

.audio-card.is-playing .audio-wave i:nth-child(2n) { animation-delay: -0.2s; }
.audio-card.is-playing .audio-wave i:nth-child(3n) { animation-delay: -0.45s; }
.audio-card.is-playing .audio-wave i:nth-child(5n) { animation-delay: -0.63s; }

.audio-controls {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.js #demo-audio {
  display: none;
}

.no-js #demo-audio {
  width: 100%;
  margin-top: 22px;
}

.no-js .audio-controls {
  display: none;
}

.audio-toggle,
.mute-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-600), var(--blue-400));
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(46, 111, 216, 0.35);
}

.mute-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  color: #cfe0f7;
  background: rgba(4, 11, 26, 0.42);
  box-shadow: none;
}

.audio-toggle svg,
.mute-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audio-toggle .icon-play {
  fill: currentColor;
  stroke: none;
}

.icon-pause,
.icon-muted {
  display: none;
}

.audio-card.is-playing .icon-play {
  display: none;
}

.audio-card.is-playing .icon-pause {
  display: block;
}

.mute-toggle.is-muted .icon-volume {
  display: none;
}

.mute-toggle.is-muted .icon-muted {
  display: block;
}

.audio-progress-wrap {
  flex: 1;
}

#audio-progress {
  width: 100%;
  height: 5px;
  margin: 0;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-400) var(--progress, 0%), rgba(183, 199, 228, 0.2) var(--progress, 0%));
  cursor: pointer;
}

#audio-progress::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  appearance: none;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

#audio-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue-400);
}

.time-row {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 0.64rem;
}

.audio-proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.audio-proof > div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(4, 11, 26, 0.36);
}

.audio-proof span {
  color: var(--blue-400);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
}

.audio-proof p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.audio-proof b {
  color: #fff;
}

.real-call-note {
  position: relative;
  margin: 15px 0 0;
  color: var(--muted-2);
  font-size: 0.58rem;
  line-height: 1.5;
  text-align: center;
}

/* Calculator */
.calculator-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 11, 26, 0.7), rgba(7, 20, 47, 0.7)),
    radial-gradient(circle at 50% 50%, rgba(46, 111, 216, 0.14), transparent 40rem);
}

.calculator-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(7, 20, 47, 0.78);
  box-shadow: var(--shadow-md);
}

.calculator-inputs {
  padding: 38px 40px;
}

.calculator-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.calculator-title > span {
  color: var(--blue-400);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.calculator-title h3 {
  margin: 0 0 3px;
  font-size: 1.35rem;
}

.calculator-title p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.calc-field {
  margin-bottom: 26px;
}

.calc-field.no-margin {
  margin-bottom: 0;
}

.calc-label {
  margin-bottom: 11px;
}

.calc-label label {
  display: block;
  color: #e9f0fb;
  font-size: 0.87rem;
  font-weight: 650;
}

.calc-label small {
  display: block;
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 0.71rem;
}

.range-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-range {
  width: 100%;
  height: 6px;
  flex: 1;
  appearance: none;
  border-radius: 99px;
  outline: none;
  background: linear-gradient(90deg, var(--blue-400) var(--range-progress, 0%), rgba(183, 199, 228, 0.16) var(--range-progress, 0%));
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  appearance: none;
  border: 3px solid #eaf3ff;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 4px 14px rgba(46, 111, 216, 0.55);
}

.calc-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid #eaf3ff;
  border-radius: 50%;
  background: var(--blue-600);
}

.number-box {
  display: flex;
  min-width: 112px;
  height: 46px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(4, 11, 26, 0.56);
}

.number-box input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: right;
  appearance: textfield;
}

.number-box input::-webkit-outer-spin-button,
.number-box input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.number-box span {
  margin-left: 5px;
  color: var(--muted-2);
  font-size: 0.67rem;
  white-space: nowrap;
}

.money-box span {
  margin-right: 5px;
  margin-left: 0;
  font-size: 0.72rem;
  font-weight: 700;
}

.assumptions {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(4, 11, 26, 0.26);
}

.assumptions summary {
  position: relative;
  padding: 15px 42px 15px 17px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 650;
  list-style: none;
}

.assumptions summary::-webkit-details-marker {
  display: none;
}

.assumptions summary::before,
.assumptions summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  height: 2px;
  border-radius: 9px;
  content: "";
  background: var(--blue-400);
  transition: transform 0.2s ease;
}

.assumptions summary::after {
  transform: rotate(90deg);
}

.assumptions[open] summary::after {
  transform: rotate(0);
}

.assumptions-body {
  padding: 22px 17px 18px;
  border-top: 1px solid var(--line);
}

.calculator-result {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
  background:
    radial-gradient(circle at 82% 15%, rgba(88, 162, 255, 0.22), transparent 18rem),
    linear-gradient(150deg, #17386f 0%, #0b214a 48%, #07142f 100%);
}

.calculator-result::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(88, 162, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 162, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.calculator-result > * {
  position: relative;
}

.result-ribbon {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  margin-bottom: 22px;
  border: 1px solid rgba(66, 219, 154, 0.2);
  border-radius: 999px;
  color: #bdf1d9;
  background: rgba(66, 219, 154, 0.08);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-ribbon span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.result-label {
  margin-bottom: 5px;
  color: #cad8ed;
  font-size: 0.83rem;
}

.result-money {
  display: block;
  margin-bottom: 4px;
  color: #ff9aa7;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 127, 141, 0.22);
}

.result-year {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.8rem;
}

.result-year b {
  color: #ffc5cc;
}

.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.result-stats > div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(4, 11, 26, 0.38);
}

.result-stats span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.result-stats p {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.4;
}

.result-insight {
  display: flex;
  gap: 12px;
  padding: 15px;
  margin-bottom: 18px;
  border: 1px solid rgba(66, 219, 154, 0.22);
  border-radius: 13px;
  background: rgba(66, 219, 154, 0.07);
}

.result-insight .insight-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  margin: 0;
  border-color: rgba(66, 219, 154, 0.22);
  color: var(--green);
  background: rgba(66, 219, 154, 0.08);
}

.result-insight .insight-icon svg {
  width: 19px;
  height: 19px;
}

.result-insight strong {
  display: block;
  color: #a8eccb;
  font-size: 0.78rem;
}

.result-insight p {
  margin: 3px 0 0;
  color: #d2efe1;
  font-size: 0.69rem;
  line-height: 1.5;
}

.result-insight b {
  color: #fff;
}

.result-cta {
  width: 100%;
}

.result-disclaimer {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 0.58rem;
  line-height: 1.45;
  text-align: center;
}

/* Capabilities */
.solution-section {
  background: linear-gradient(180deg, rgba(7, 20, 47, 0.38), transparent);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.capability {
  position: relative;
  grid-column: span 4;
  min-height: 285px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(15, 37, 87, 0.52), rgba(7, 20, 47, 0.72)),
    var(--navy-900);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.capability:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.capability-large {
  grid-column: span 8;
}

.capability-wide {
  display: grid;
  grid-column: span 8;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1.15fr);
  align-items: center;
  gap: 28px;
}

.capability-icon {
  margin-bottom: 25px;
}

.capability-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(66, 219, 154, 0.17);
  border-radius: 999px;
  color: #a9e8c9;
  background: rgba(66, 219, 154, 0.06);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.capability h3 {
  margin-bottom: 10px;
}

.capability p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.coverage-chart {
  padding-top: 28px;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--muted-2);
  font-size: 0.55rem;
}

.chart-line {
  display: flex;
  height: 45px;
  align-items: flex-end;
  gap: 4px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}

.chart-line i {
  height: 62%;
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(46, 111, 216, 0.35), var(--blue-400));
}

.chart-line i:nth-child(2n) { height: 82%; }
.chart-line i:nth-child(3n) { height: 46%; }
.chart-line i:nth-child(5n) { height: 96%; }

.coverage-chart small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #bfe7d5;
  font-size: 0.58rem;
}

.coverage-chart small span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.notification-card {
  padding: 17px;
  border: 1px solid rgba(88, 162, 255, 0.22);
  border-radius: 15px;
  background: rgba(4, 11, 26, 0.58);
  box-shadow: var(--shadow-sm);
}

.notification-top {
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.notification-top img {
  border-radius: 10px;
}

.notification-top > div {
  min-width: 0;
  flex: 1;
}

.notification-top strong,
.notification-top small {
  display: block;
}

.notification-top strong {
  font-size: 0.76rem;
}

.notification-top small {
  color: var(--muted-2);
  font-size: 0.58rem;
}

.notification-top > span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #ffd3d8;
  background: rgba(255, 127, 141, 0.12);
  font-size: 0.55rem;
  font-weight: 700;
}

.notification-card > p {
  margin: 13px 0;
  color: #c9d7eb;
  font-size: 0.67rem;
  line-height: 1.65;
}

.notification-card > p b {
  color: #fff;
}

.notification-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--blue-300);
  background: rgba(46, 111, 216, 0.1);
  font-size: 0.62rem;
  font-weight: 700;
}

.notification-action svg {
  width: 15px;
  height: 15px;
}

/* Industries */
.industries-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 50%, rgba(46, 111, 216, 0.12), transparent 33rem),
    linear-gradient(180deg, transparent, rgba(4, 11, 26, 0.45));
}

.industries-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 60px;
}

.industry-orbit {
  position: relative;
  min-height: 530px;
}

.industry-orbit::before,
.industry-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(88, 162, 255, 0.13);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.industry-orbit::before {
  width: 380px;
  height: 380px;
}

.industry-orbit::after {
  width: 255px;
  height: 255px;
}

.orbit-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(88, 162, 255, 0.3);
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(23, 54, 111, 0.92), rgba(7, 20, 47, 0.96));
  box-shadow: var(--shadow-blue);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.industry-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 185px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #dce7f6;
  background: rgba(7, 20, 47, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 650;
}

.industry-pill span {
  color: var(--blue-400);
  font-size: 0.6rem;
}

.p1 { top: 4%; left: 30%; }
.p2 { top: 24%; right: 0; }
.p3 { right: 5%; bottom: 20%; }
.p4 { bottom: 3%; left: 28%; }
.p5 { bottom: 19%; left: 0; }
.p6 { top: 21%; left: 1%; }

/* Steps */
.steps-section {
  background: linear-gradient(180deg, rgba(4, 11, 26, 0.6), rgba(7, 20, 47, 0.22));
}

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

.step {
  position: relative;
  padding: 0 26px;
}

.step:first-child {
  padding-left: 0;
}

.step:last-child {
  padding-right: 0;
}

.step-number {
  margin-bottom: 22px;
  color: var(--blue-400);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.step-line {
  position: absolute;
  z-index: 0;
  top: 61px;
  left: 68px;
  width: calc(100% - 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue-600), rgba(88, 162, 255, 0.15));
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(88, 162, 255, 0.27);
  border-radius: 16px;
  color: var(--blue-300);
  background: linear-gradient(145deg, #102d62, #091a3a);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.step h3 {
  margin-bottom: 9px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
}

/* Control */
.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.85fr);
  align-items: center;
  gap: 90px;
}

.control-points {
  display: grid;
  gap: 17px;
  margin-top: 30px;
}

.control-points > div {
  display: flex;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.control-points span {
  color: var(--blue-400);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
}

.control-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.control-points b {
  color: #fff;
}

.control-visual {
  position: relative;
}

.control-visual::before {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  content: "";
  background: rgba(46, 111, 216, 0.18);
  filter: blur(80px);
}

.policy-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(88, 162, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(18, 48, 102, 0.94), rgba(5, 15, 34, 0.97));
  box-shadow: var(--shadow-md);
}

.policy-head {
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.shield {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--green);
  background: rgba(66, 219, 154, 0.08);
}

.policy-head > div {
  min-width: 0;
  flex: 1;
}

.policy-head strong,
.policy-head small {
  display: block;
}

.policy-head strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.policy-head small {
  color: var(--muted-2);
  font-size: 0.64rem;
}

.verified {
  padding: 5px 8px;
  border: 1px solid rgba(66, 219, 154, 0.18);
  border-radius: 999px;
  color: #b8ebd2;
  background: rgba(66, 219, 154, 0.07);
  font-size: 0.58rem;
  font-weight: 700;
}

.policy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  color: #c9d6e9;
  font-size: 0.73rem;
}

.policy-row b {
  color: #d4f3e4;
  font-size: 0.68rem;
}

.policy-row b.blocked {
  color: #ffc2ca;
}

.policy-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 0.61rem;
}

.policy-footer span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

/* Plans */
.plans-section {
  background:
    linear-gradient(180deg, rgba(4, 11, 26, 0.65), rgba(7, 20, 47, 0.64)),
    radial-gradient(circle at 50% 50%, rgba(46, 111, 216, 0.12), transparent 40rem);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(15, 37, 87, 0.68), rgba(7, 20, 47, 0.9));
  box-shadow: var(--shadow-sm);
}

.plan-card.featured {
  border-color: rgba(88, 162, 255, 0.5);
  background:
    radial-gradient(circle at 85% 10%, rgba(88, 162, 255, 0.16), transparent 15rem),
    linear-gradient(155deg, rgba(23, 54, 111, 0.88), rgba(7, 20, 47, 0.92));
  box-shadow: var(--shadow-blue);
  transform: translateY(-10px);
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 12px;
  border-radius: 0 0 10px 10px;
  color: #fff;
  background: linear-gradient(120deg, var(--blue-600), var(--blue-400));
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.plan-top {
  min-height: 122px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.plan-name {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.plan-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.plan-price {
  display: flex;
  min-height: 86px;
  align-items: baseline;
  padding-top: 22px;
  margin-bottom: 3px;
}

.plan-price small {
  align-self: flex-start;
  margin-top: 8px;
  margin-right: 4px;
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-price strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.15rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan-price > span {
  margin-left: 7px;
  color: var(--muted-2);
  font-size: 0.68rem;
}

.plan-price.custom {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.plan-price.custom strong {
  font-size: 2.25rem;
}

.plan-price.custom span {
  margin: 4px 0 0;
}

.plan-minutes {
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(88, 162, 255, 0.14);
  border-radius: 10px;
  color: #c7d5e9;
  background: rgba(46, 111, 216, 0.07);
  font-size: 0.69rem;
}

.plan-minutes b {
  color: var(--blue-300);
}

.plan-card ul {
  display: grid;
  flex: 1;
  gap: 11px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #d2deef;
  font-size: 0.72rem;
}

.plan-card li svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.plan-card .button {
  width: 100%;
  min-height: 48px;
  font-size: 0.82rem;
}

.pricing-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  padding: 18px 22px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted-2);
  background: rgba(4, 11, 26, 0.35);
  font-size: 0.67rem;
}

.pricing-notes b {
  color: #dce8f8;
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(370px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 90px;
}

.founder-image {
  position: relative;
  max-width: 480px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(88, 162, 255, 0.26);
  border-radius: 34px;
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
}

.photo-frame::before {
  position: absolute;
  z-index: 2;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  content: "";
}

.photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 11, 26, 0.92), transparent 48%),
    linear-gradient(120deg, rgba(46, 111, 216, 0.12), transparent 50%);
}

.founder-badge {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(7, 20, 47, 0.72);
  backdrop-filter: blur(12px);
}

.founder-badge span {
  color: var(--muted-2);
  font-size: 0.62rem;
}

.founder-badge strong {
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.founder-wave {
  position: absolute;
  z-index: 4;
  top: -35px;
  right: -65px;
  width: 150px;
  opacity: 0.65;
  transform: rotate(9deg);
}

.founder-lead {
  color: #e1eaf7 !important;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem) !important;
}

.founder-copy b {
  color: #fff;
}

.founder-signoff {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.founder-signoff strong,
.founder-signoff span {
  display: block;
}

.founder-signoff strong {
  font-family: var(--font-display);
}

.founder-signoff > div span {
  color: var(--muted-2);
  font-size: 0.7rem;
}

.founder-slogan {
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, rgba(4, 11, 26, 0.5), rgba(7, 20, 47, 0.4));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(15, 37, 87, 0.34);
}

.faq-list summary {
  position: relative;
  padding: 19px 52px 19px 20px;
  color: #e7eef9;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span,
.faq-list summary > span::after {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 13px;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: var(--blue-400);
  transform: translateY(-50%);
}

.faq-list summary > span::after {
  top: 1px;
  right: 0;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary > span::after {
  transform: rotate(0);
}

.faq-list details p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Final CTA */
.final-section {
  padding-bottom: 90px;
}

.final-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 70px;
  padding: 58px;
  border: 1px solid rgba(88, 162, 255, 0.34);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 20%, rgba(88, 162, 255, 0.18), transparent 25rem),
    linear-gradient(145deg, #17386f, #0b214a 45%, #07142f);
  box-shadow: var(--shadow-md), var(--shadow-blue);
}

.final-copy {
  align-self: center;
}

.final-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.final-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 28px;
}

.final-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d4e0f1;
  font-size: 0.7rem;
  font-weight: 600;
}

.final-badges svg {
  width: 14px;
  height: 14px;
}

.lead-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(4, 11, 26, 0.56);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.lead-form label {
  display: block;
  margin-bottom: 13px;
  color: #dbe6f5;
  font-size: 0.7rem;
  font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 13px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  color: #fff;
  background: rgba(7, 20, 47, 0.75);
  font-size: 0.78rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7388aa;
}

.lead-form select {
  color-scheme: dark;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(88, 162, 255, 0.1);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .button {
  width: 100%;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 0.58rem;
  line-height: 1.45;
  text-align: center;
}

/* Footer */
.site-footer {
  padding-top: 58px;
  border-top: 1px solid var(--line);
  background: #040c1d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.85fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 210px;
}

.footer-brand p {
  max-width: 380px;
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 0.75rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 0.8rem;
}

.footer-links a,
.footer-links span {
  color: var(--muted-2);
  font-size: 0.7rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  color: #6f83a4;
  font-size: 0.62rem;
}

.footer-bottom span:last-child {
  color: var(--blue-400);
  font-family: var(--font-display);
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #06331d;
  background: linear-gradient(120deg, #28d17f, #59e4a5);
  box-shadow: 0 16px 42px rgba(39, 209, 127, 0.28);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa:hover {
  box-shadow: 0 20px 50px rgba(39, 209, 127, 0.38);
  transform: translateY(-3px);
}

/* Evita que WhatsApp y el chat de Retell ocupen el mismo espacio.
   La clase solo se activa cuando el widget se detecta en la página. */
.retell-widget-live .floating-wa {
  bottom: 100px !important;
}

.floating-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-cta {
  display: none;
}

/* Reveal animations */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.problem-card:nth-child(2),
.capability:nth-child(2),
.plan-card:nth-child(2) {
  transition-delay: 0.08s;
}

.problem-card:nth-child(3),
.capability:nth-child(3),
.plan-card:nth-child(3) {
  transition-delay: 0.16s;
}

.step:nth-child(2) { transition-delay: 0.08s; }
.step:nth-child(3) { transition-delay: 0.16s; }
.step:nth-child(4) { transition-delay: 0.24s; }

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.8); }
}

@keyframes wave {
  0%, 100% { height: 28%; opacity: 0.55; }
  50% { height: 96%; opacity: 1; }
}

@keyframes audio-bars {
  from { transform: scaleY(0.58); opacity: 0.5; }
  to { transform: scaleY(1.08); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* Tablet */
@media (max-width: 1080px) {
  :root {
    --header-h: 74px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav > a:not(.nav-cta) {
    font-size: 0.78rem;
  }

  .main-nav .language-switch {
    width: fit-content;
    margin: 13px 12px 2px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
    gap: 45px;
  }

  .hero-stage {
    min-height: 580px;
  }

  .trust-items {
    gap: 15px;
  }

  .demo-grid,
  .control-grid,
  .founder-grid,
  .faq-grid {
    gap: 55px;
  }

  .industries-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 35px;
  }

  .industry-pill {
    min-width: 165px;
    padding: 10px 12px;
    font-size: 0.64rem;
  }

  .final-card {
    gap: 45px;
    padding: 44px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 88px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    top: var(--header-h);
    right: 14px;
    left: 14px;
    display: grid;
    max-height: calc(100vh - var(--header-h) - 20px);
    overflow-y: auto;
    gap: 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(4, 11, 26, 0.97);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 70px);
  }

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

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

  .hero-stage {
    width: min(100%, 610px);
    min-height: 610px;
    margin-inline: auto;
  }

  .call-console {
    transform: none;
  }

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

  .trust-intro {
    max-width: none;
  }

  .trust-items {
    width: 100%;
    justify-content: space-between;
  }

  .demo-grid,
  .control-grid,
  .founder-grid,
  .faq-grid,
  .industries-shell,
  .final-card {
    grid-template-columns: 1fr;
  }

  .demo-copy,
  .industries-copy,
  .control-copy,
  .faq-intro,
  .founder-copy {
    max-width: 720px;
  }

  .audio-card {
    width: min(100%, 660px);
  }

  .calculator-panel {
    grid-template-columns: 1fr;
  }

  .calculator-result {
    min-height: 600px;
  }

  .capability {
    grid-column: span 6;
  }

  .capability-large,
  .capability-wide {
    grid-column: span 12;
  }

  .industry-orbit {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .step:nth-child(odd) {
    padding-left: 0;
  }

  .step:nth-child(even) {
    padding-right: 0;
  }

  .step:nth-child(2) .step-line {
    display: none;
  }

  .control-visual {
    width: min(100%, 590px);
  }

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

  .plan-card {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .plan-top {
    min-height: auto;
  }

  .founder-image {
    width: min(100%, 490px);
  }

  .faq-intro {
    position: static;
  }

  .final-card {
    gap: 35px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 35px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  /* El chat reemplaza la barra flotante para liberar espacio. Si Retell
     no carga, la barra continúa visible como respaldo de contacto. */
  .retell-widget-live .mobile-cta {
    display: none !important;
  }

  :root {
    --header-h: 68px;
  }

  body {
    padding-bottom: 72px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding-block: 72px;
  }

  h1 {
    font-size: clamp(2.65rem, 13.5vw, 4rem);
  }

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

  .section-heading {
    margin-bottom: 38px;
  }

  .brand {
    width: 178px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 44px;
  }

  .hero::before {
    background-size: 46px 46px;
  }

  .hero-grid {
    gap: 38px;
  }

  .eyebrow {
    font-size: 0.61rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-checks {
    gap: 8px 14px;
  }

  .hero-checks li {
    font-size: 0.76rem;
  }

  .hero-stage {
    min-height: 540px;
  }

  .call-console {
    padding: 15px;
    border-radius: 22px;
  }

  .console-top {
    align-items: flex-start;
    gap: 10px;
  }

  .availability {
    padding: 6px 8px;
    font-size: 0.55rem;
  }

  .incoming-card {
    padding: 12px;
  }

  .caller-avatar {
    width: 40px;
    height: 40px;
  }

  .caller-meta strong {
    font-size: 0.82rem;
  }

  .call-timer {
    font-size: 0.68rem;
  }

  .float-chip-one {
    top: 5%;
    right: -2%;
  }

  .float-chip-two {
    bottom: 2%;
    left: -1%;
  }

  .trust-bar {
    gap: 18px;
    padding: 18px;
    margin-top: 46px;
  }

  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

  .problem-card {
    min-height: 0;
    padding: 25px;
  }

  .problem-quote {
    padding-inline: 12px;
  }

  .problem-quote::before,
  .problem-quote::after {
    display: none;
  }

  .demo-grid {
    gap: 38px;
  }

  .audio-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .audio-head strong {
    font-size: 0.94rem;
  }

  .audio-wave {
    gap: 3px;
  }

  .audio-proof {
    grid-template-columns: 1fr;
  }

  .audio-proof > div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .audio-proof p {
    margin: 0;
  }

  .calculator-panel {
    border-radius: 22px;
  }

  .calculator-inputs,
  .calculator-result {
    padding: 27px 18px;
  }

  .calculator-result {
    min-height: 0;
  }

  .range-row {
    gap: 10px;
  }

  .number-box {
    min-width: 96px;
    height: 43px;
    padding-inline: 8px;
  }

  .number-box input {
    font-size: 0.88rem;
  }

  .result-money {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .capability,
  .capability-large,
  .capability-wide {
    display: block;
    grid-column: auto;
    min-height: 0;
    padding: 24px;
  }

  .notification-card {
    margin-top: 24px;
  }

  .industry-orbit {
    min-height: 500px;
    transform: scale(0.92);
  }

  .industry-orbit::before {
    width: 310px;
    height: 310px;
  }

  .industry-orbit::after {
    width: 210px;
    height: 210px;
  }

  .orbit-center {
    width: 105px;
    height: 105px;
    border-radius: 28px;
  }

  .orbit-center img {
    width: 76px;
  }

  .industry-pill {
    min-width: 145px;
    max-width: 165px;
    font-size: 0.58rem;
  }

  .p1 { top: 2%; left: 26%; }
  .p2 { top: 22%; right: -2%; }
  .p3 { right: -1%; bottom: 22%; }
  .p4 { bottom: 2%; left: 22%; }
  .p5 { bottom: 21%; left: -2%; }
  .p6 { top: 21%; left: -3%; }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .step,
  .step:first-child,
  .step:last-child,
  .step:nth-child(odd),
  .step:nth-child(even) {
    padding: 0 0 0 76px;
  }

  .step-number {
    position: absolute;
    top: 17px;
    left: 0;
  }

  .step-icon {
    position: absolute;
    top: 0;
    left: 22px;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .step-icon svg {
    width: 19px;
    height: 19px;
  }

  .step-line,
  .step:nth-child(2) .step-line {
    display: block;
    top: 48px;
    bottom: -36px;
    left: 44px;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, var(--blue-600), rgba(88, 162, 255, 0.12));
  }

  .step:last-child .step-line {
    display: none;
  }

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

  .plans-grid {
    gap: 13px;
  }

  .plan-card {
    padding: 26px 22px;
  }

  .plan-price strong {
    font-size: 2.55rem;
  }

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

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

  .founder-wave {
    top: -28px;
    right: -20px;
    width: 115px;
  }

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

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

  .faq-list summary {
    padding: 17px 46px 17px 17px;
    font-size: 0.82rem;
  }

  .final-section {
    padding-bottom: 72px;
  }

  .final-card {
    width: min(calc(100% - 20px), var(--shell));
    padding: 30px 20px;
    border-radius: 23px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    padding: 18px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .floating-wa {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 7px;
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(4, 11, 26, 0.94);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: #e5eefb;
    background: rgba(15, 37, 87, 0.7);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-cta a:last-child {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(120deg, var(--blue-600), var(--blue-400));
  }

  .mobile-cta svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 390px) {
  .hero-stage {
    min-height: 520px;
  }

  .call-console {
    padding: 12px;
  }

  .console-brand span,
  .summary-pills,
  .float-chip-two {
    display: none;
  }

  .timeline-item {
    padding: 9px 10px;
  }

  .industry-orbit {
    width: 108%;
    margin-left: -4%;
  }

  .result-stats {
    grid-template-columns: 1fr;
  }
}

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

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