:root {
  --paper: #faf9f6;
  --paper-deep: #f4f1ec;
  --ink: #161511;
  --muted: #66635e;
  --line: #e4e0d9;
  --lilac: #63b3ff;
  --lilac-light: #e7f4ff;
  --lilac-pale: #f3f9ff;
  --purple: #2479c9;
  --recommended: #082b49;
  --green: #34ce73;
  --serif: "Space Grotesk", Arial, sans-serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 18px 60px rgba(8, 43, 73, 0.12);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.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;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.018;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 13% 27%, #000 0 0.45px, transparent 0.7px),
    radial-gradient(circle at 72% 64%, #000 0 0.45px, transparent 0.7px);
  background-size: 7px 7px, 11px 11px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 12px max(32px, calc((100vw - var(--max)) / 2));
  background: rgba(250, 249, 246, 0.92);
  border-bottom: 1px solid rgba(228, 224, 217, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  width: max-content;
}

.portrait {
  position: relative;
  width: 47px;
  height: 47px;
  overflow: visible;
  flex: 0 0 auto;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 7px 22px rgba(8, 43, 73, 0.18);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: inherit;
  filter: saturate(1.08) contrast(1.02);
}

.availability {
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
}

.identity-copy {
  display: grid;
  line-height: 1.05;
}

.identity-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.identity-copy strong em {
  color: var(--purple);
  font-style: normal;
}

.identity-copy small {
  margin-top: 5px;
  color: #75716d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--lilac);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.header-cta:hover {
  color: var(--ink);
  background: transparent;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 95px max(32px, calc((100vw - var(--max)) / 2)) 98px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(211, 235, 255, 0.66), transparent 27%),
    radial-gradient(circle at 82% 40%, rgba(205, 233, 255, 0.56), transparent 31%),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 55%;
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 7px 14px;
  color: #47434e;
  background: rgba(231, 244, 255, 0.86);
  border: 1px solid rgba(99, 179, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lilac);
  box-shadow: 0 0 0 5px rgba(99, 179, 255, 0.13);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 4px;
  color: #4c4852;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.hero-kicker span {
  width: 31px;
  height: 1px;
  background: var(--lilac);
}

.hero h1 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 7.6vw, 112px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em {
  position: relative;
  z-index: 2;
  color: #4c9ce8;
  font-weight: 500;
}

.lavender-stroke {
  position: absolute;
  z-index: 1;
  right: -45px;
  bottom: 5px;
  left: -3px;
  height: 24px;
  background: linear-gradient(90deg, rgba(99, 179, 255, 0.32), rgba(76, 156, 232, 0.7));
  transform: skewX(-10deg);
}

.hero-continuation {
  position: relative;
  margin-top: 56px;
}

.quote-mark {
  display: block;
  height: 36px;
  font-family: var(--serif);
  font-size: 55px;
  line-height: 1;
}

.hero-continuation h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(37px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.24;
}

.hero-continuation h2 b {
  color: var(--lilac);
  font-family: var(--sans);
  font-weight: 400;
}

.hero-continuation h2 u {
  text-decoration-color: var(--lilac);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.hero-intro {
  max-width: 590px;
  margin: 27px 0 0;
  color: #504d49;
  font-size: 18px;
}

.hero-intro strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 13px 23px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(22, 21, 17, 0.18);
}

.button-dark:hover {
  box-shadow: 0 16px 38px rgba(22, 21, 17, 0.24);
}

.button-orb {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--lilac);
  border-radius: 50%;
}

.button .arrow {
  margin-left: 4px;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid #a8a39c;
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  margin-left: 7px;
  color: var(--purple);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 21px;
  color: #77726b;
  font-size: 12px;
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52, 206, 115, 0.12);
}

.hero-visual {
  position: absolute;
  z-index: 3;
  top: 49%;
  right: max(20px, calc((100vw - 1280px) / 2));
  width: min(46vw, 620px);
  aspect-ratio: 1;
  user-select: none;
  touch-action: none;
  transform: translateY(-50%);
}

#particle-orb {
  position: absolute;
  z-index: 2;
  inset: 5%;
  width: 90%;
  height: 90%;
  cursor: grab;
  touch-action: none;
  filter: drop-shadow(0 28px 40px rgba(36, 121, 201, 0.17));
}

.hero-visual.is-dragging #particle-orb {
  cursor: grabbing;
}

.orb-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.halo-back {
  z-index: 0;
  inset: 7%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.95), rgba(188, 224, 255, 0.42) 55%, transparent 72%);
  box-shadow: 0 0 100px rgba(99, 179, 255, 0.28);
}

.halo-front {
  z-index: 1;
  inset: 18%;
  border: 1px solid rgba(99, 179, 255, 0.24);
  background: rgba(255, 255, 255, 0.15);
}

.service-pill {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 45px;
  padding: 10px 19px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(198, 224, 246, 0.92);
  border-radius: 999px;
  box-shadow: 0 11px 28px rgba(8, 43, 73, 0.13);
  backdrop-filter: blur(13px);
  font-size: 13px;
  font-weight: 600;
  animation: pill-float 5s ease-in-out infinite;
  touch-action: manipulation;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.service-pill span {
  color: var(--purple);
}

.service-pill:hover,
.service-pill:focus-visible {
  color: #0b5fa8;
  border-color: rgba(36, 121, 201, 0.55);
  box-shadow: 0 14px 34px rgba(8, 71, 124, 0.18);
  outline: none;
}

.pill-web {
  top: 29%;
  right: -1%;
  animation-delay: -1.1s;
}

.pill-google {
  top: 4%;
  right: 16%;
  animation-delay: -2.4s;
}

.pill-meta {
  right: 2%;
  bottom: 22%;
  animation-delay: -3.1s;
}

.pill-manychat {
  right: 21%;
  bottom: 5%;
  animation-delay: -2.2s;
}

.pill-auto {
  top: 9%;
  left: -1%;
  animation-delay: -0.5s;
}

.pill-voice {
  bottom: 22%;
  left: -2%;
  animation-delay: -1.8s;
}

.pill-content {
  bottom: 5%;
  left: 20%;
  animation-delay: -3.8s;
}

.orb-drag-hint {
  position: absolute;
  z-index: 6;
  top: 52%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #356b98;
  background: rgba(245, 251, 255, 0.76);
  border: 1px solid rgba(99, 179, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.hero-visual.is-dragging .orb-drag-hint {
  opacity: 0;
}

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

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
}

.glow-one {
  top: 10%;
  left: -9%;
  width: 350px;
  height: 350px;
  background: rgba(165, 215, 255, 0.26);
}

.glow-two {
  right: 11%;
  bottom: 6%;
  width: 350px;
  height: 350px;
  background: rgba(209, 235, 255, 0.52);
}

.hero-marquee {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 0;
  overflow: hidden;
  color: #625b6f;
  background: rgba(244, 241, 236, 0.8);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.hero-marquee div {
  display: flex;
  width: max-content;
  gap: 46px;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 120px max(32px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.section-heading.centered {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.method-intro h2,
.contact-copy h2 {
  margin: 24px 0 20px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading h2 span,
.method-intro h2 span,
.contact-copy h2 span {
  color: var(--purple);
  font-style: italic;
}

.section-heading > p,
.method-intro > p,
.contact-copy > p {
  max-width: 660px;
  margin: 0;
  color: #5f5b56;
  font-size: 18px;
}

.diagnostic {
  background: #fcfbf8;
}

.audit-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  max-width: var(--max);
  margin: 65px auto 0;
  padding: 62px;
  color: #fff;
  background:
    radial-gradient(circle at 25% 20%, rgba(99, 179, 255, 0.14), transparent 25%),
    #181713;
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(21, 18, 27, 0.15);
}

.audit-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  color: #c7e6ff;
  background: rgba(99, 179, 255, 0.13);
  border: 1px solid rgba(151, 204, 250, 0.34);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.audit-tag span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #92cbff;
  box-shadow: 0 0 12px #92cbff;
}

.audit-copy h3 {
  margin: 28px 0 20px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.audit-copy h3 em {
  color: #9ed0ff;
  font-weight: 500;
}

.audit-copy > p {
  color: #c3c0ba;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 25px 0 31px;
  padding: 0;
  list-style: none;
  color: #d8d5cf;
  font-size: 14px;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 5px;
}

.check-list li span {
  color: #8fc9ff;
  font-weight: 700;
}

.check-list li b {
  color: #fff;
}

.button-lilac {
  color: #221c31;
  background: linear-gradient(135deg, #cfe9ff, #67b3f3);
  box-shadow: 0 12px 34px rgba(99, 179, 255, 0.25);
}

.audit-copy > small {
  display: block;
  margin-top: 15px;
  color: #89857f;
  font-size: 11px;
}

.report-card {
  align-self: center;
  padding: 31px;
  color: var(--ink);
  background: #fbfaf7;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(1.5deg);
  transition: transform 0.35s ease;
}

.report-card:hover {
  transform: rotate(0deg) translateY(-5px);
}

.report-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #77716c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.report-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lilac);
}

.report-status {
  margin-left: auto;
  padding: 4px 8px;
  color: #258a50;
  background: #e2f7e9;
  border-radius: 999px;
}

.report-score {
  padding: 28px 0 23px;
  text-align: center;
}

.report-score strong {
  color: var(--purple);
  font-family: var(--serif);
  font-size: 74px;
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.report-score > span {
  font-family: var(--serif);
  font-size: 27px;
}

.report-score p {
  margin: 3px 0 0;
  color: #66605b;
  font-size: 13px;
}

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

.mini-scores div {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 15px 6px;
  background: #f2f0ed;
  border-radius: 13px;
}

.mini-scores strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.mini-scores span {
  color: #6f6963;
  font-size: 10px;
}

.opportunity {
  margin-top: 15px;
  padding: 17px;
  background: #fff;
  border-left: 3px solid var(--lilac);
  border-radius: 9px;
  box-shadow: 0 6px 22px rgba(20, 16, 28, 0.06);
}

.opportunity span {
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.opportunity p {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.services {
  background: var(--paper-deep);
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 27px 23px 25px;
  background: rgba(250, 249, 246, 0.84);
  border: 1px solid #ded9d1;
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.price-card.recommended {
  z-index: 2;
  min-height: 685px;
  margin-top: -19px;
  padding-top: 52px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(99, 179, 255, 0.22), transparent 25%),
    var(--recommended);
  border-color: var(--recommended);
  box-shadow: 0 23px 60px rgba(8, 43, 73, 0.2);
}

.recommended-label {
  position: absolute;
  top: 17px;
  right: 24px;
  padding: 7px 14px;
  color: #fff;
  background: linear-gradient(90deg, #257bc8, #71bcff);
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(99, 179, 255, 0.28);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.price-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--purple);
  background: var(--lilac-light);
  border-radius: 13px;
  font-size: 21px;
}

.recommended .price-icon {
  color: #c5e5ff;
  background: rgba(99, 179, 255, 0.14);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 25px;
  margin: 0;
  color: #aaa59d;
  font-family: var(--serif);
  font-size: 13px;
}

.recommended .card-number {
  top: 59px;
  color: #777083;
}

.price-card h3 {
  min-height: 64px;
  margin: 22px 0 6px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.price {
  display: flex;
  min-height: 56px;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.price span,
.price small {
  color: #7b756f;
  font-size: 11px;
}

.recommended .price span,
.recommended .price small {
  color: #b8b2bd;
}

.price-description {
  min-height: 104px;
  margin: 0 0 17px;
  color: #5f5a54;
  font-size: 13px;
  line-height: 1.55;
}

.recommended .price-description {
  color: #d0ccd4;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 20px;
  padding: 19px 0 0;
  border-top: 1px solid #ded9d1;
  list-style: none;
  color: #4f4a45;
  font-size: 12px;
  line-height: 1.4;
}

.recommended ul {
  color: #e7e3ea;
  border-top-color: #3f3949;
}

.price-card li::first-letter {
  color: var(--purple);
}

.recommended li::first-letter {
  color: #8fcaff;
}

.maintenance {
  margin-top: auto;
  padding: 11px 12px;
  color: #246aa8;
  background: var(--lilac-light);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.maintenance.neutral {
  color: #5b5650;
  background: #eeeae4;
}

.recommended .maintenance {
  color: #c7e6ff;
  background: rgba(99, 179, 255, 0.14);
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding: 13px 17px;
  background: #fff;
  border: 1px solid #ded9d1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.25s ease;
}

.card-button:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.recommended .card-button {
  color: var(--ink);
  border-color: #fff;
}

.recommended .card-button:hover {
  color: #fff;
  background: var(--purple);
  border-color: var(--purple);
}

.price-note {
  margin: 42px auto 0;
  color: #746f68;
  font-size: 13px;
  text-align: center;
}

.price-note a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-weight: 600;
}

.addons {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  margin-top: 70px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
}

.addon-heading,
.addons article {
  min-height: 150px;
  padding: 28px;
}

.addon-heading {
  color: #fff;
  background: var(--ink);
}

.addon-heading span {
  font-family: var(--serif);
  font-size: 24px;
}

.addon-heading p {
  max-width: 270px;
  margin: 12px 0 0;
  color: #aaa6a0;
  font-size: 12px;
}

.addons article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--line);
}

.addons article b {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--lilac);
  font-family: var(--serif);
  font-size: 13px;
}

.addons article span {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.addons article small {
  color: #7d7771;
}

.problems {
  background:
    radial-gradient(circle at 85% 25%, rgba(185, 224, 255, 0.38), transparent 25%),
    #fcfbf8;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-grid article {
  min-height: 250px;
  padding: 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.problem-grid article:hover {
  background: var(--lilac-pale);
}

.problem-grid article > span {
  color: var(--lilac);
  font-family: var(--serif);
  font-size: 13px;
}

.problem-grid h3 {
  max-width: 430px;
  margin: 27px 0 12px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.problem-grid p {
  max-width: 500px;
  margin: 0;
  color: #68625c;
  font-size: 14px;
}

.method {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(99, 179, 255, 0.14), transparent 24%),
    #171612;
}

.eyebrow.light {
  color: #d6d0df;
  background: rgba(99, 179, 255, 0.12);
  border-color: rgba(99, 179, 255, 0.25);
}

.method-intro {
  max-width: 780px;
}

.method-intro > p {
  color: #aaa6a0;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid #3a3834;
  border-left: 1px solid #3a3834;
}

.method-steps article {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border-right: 1px solid #3a3834;
  border-bottom: 1px solid #3a3834;
}

.method-steps article > strong {
  color: #716d68;
  font-family: var(--serif);
  font-size: 13px;
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 75px 0 27px;
  place-items: center;
  color: #c7e6ff;
  background: rgba(99, 179, 255, 0.12);
  border: 1px solid rgba(99, 179, 255, 0.22);
  border-radius: 15px;
  font-size: 24px;
}

.method-steps h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.method-steps p {
  margin: 0;
  color: #aaa6a0;
  font-size: 13px;
}

.case-study {
  background: var(--paper);
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 55px;
  padding: 58px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(99, 179, 255, 0.3), transparent 27%),
    var(--recommended);
  border-radius: 38px;
  box-shadow: 0 25px 70px rgba(8, 43, 73, 0.18);
}

.case-brand {
  color: #aaa4b0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.case-brand span {
  margin-left: 10px;
  padding: 5px 9px;
  color: #c9e7ff;
  background: rgba(99, 179, 255, 0.15);
  border-radius: 999px;
}

.case-copy h3 {
  max-width: 580px;
  margin: 25px 0 18px;
  font-family: var(--serif);
  font-size: 41px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.case-copy > p {
  max-width: 540px;
  color: #c5c0ca;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 35px;
}

.case-metrics div {
  display: grid;
  padding: 16px 11px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.case-metrics strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.case-metrics span {
  color: #aaa4b0;
  font-size: 9px;
  text-transform: uppercase;
}

.case-metrics .metric-highlight {
  background: var(--lilac);
}

.case-metrics .metric-highlight strong,
.case-metrics .metric-highlight span {
  color: #082b49;
}

.case-copy > small {
  display: block;
  margin-top: 15px;
  color: #77717d;
}

.case-visual {
  align-self: center;
  padding: 28px 26px 18px;
  color: var(--ink);
  background: #fbfaf7;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(2deg);
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.chart-head b {
  padding: 7px 10px;
  color: #216fb5;
  background: var(--lilac-light);
  border-radius: 999px;
}

.chart {
  display: flex;
  height: 250px;
  align-items: end;
  gap: 10px;
  padding: 35px 10px 0;
  background-image: linear-gradient(#ece8e2 1px, transparent 1px);
  background-size: 100% 25%;
}

.chart span {
  width: 10%;
  height: var(--h);
  min-height: 8px;
  background: linear-gradient(180deg, #4e9ee6, #c6e5ff);
  border-radius: 7px 7px 2px 2px;
  transform-origin: bottom;
  animation: bar-grow 1.2s ease both;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }
}

.chart-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
  color: #88817a;
  font-size: 9px;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  background: #fcfbf8;
}

.faq .section-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 29px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.faq-item button b {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--purple);
  background: var(--lilac-light);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-item.is-open button b {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #68625d;
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 60px 29px 0;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
  overflow: hidden;
  color: #fff;
  background: #171612;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-copy > p {
  color: #aaa6a0;
}

.contact-direct {
  display: grid;
  gap: 15px;
  margin-top: 42px;
}

.contact-direct a {
  display: grid;
  gap: 2px;
}

.contact-direct span {
  color: #79746f;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct b {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.contact-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: 36px;
  color: var(--ink);
  background: #fbfaf7;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 11px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #f2f0ec;
  border: 1px solid transparent;
  border-radius: 10px;
  outline: 0;
  font-size: 13px;
  transition: 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--lilac);
  box-shadow: 0 0 0 3px rgba(99, 179, 255, 0.14);
}

.full-field {
  grid-column: 1 / -1;
}

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

.form-note {
  margin: -10px 0 0;
  color: #817b74;
  font-size: 10px;
  text-align: center;
}

.contact-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 420px;
  height: 420px;
  background: rgba(99, 179, 255, 0.11);
  border-radius: 50%;
  filter: blur(80px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 45px;
  padding: 44px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-identity .portrait {
  width: 42px;
  height: 42px;
}

.site-footer > p {
  margin: 0;
  color: #6f6963;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 19px;
  font-size: 11px;
  font-weight: 600;
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: #99938c;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.floating-audit {
  position: fixed;
  z-index: 80;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 17px 11px 11px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 600;
}

.floating-audit > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--lilac);
  border-radius: 50%;
}

.floating-audit b {
  margin-left: 7px;
}

.social-floats {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.social-floats a {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.social-floats a:hover {
  transform: translateY(-3px);
}

.instagram {
  background: var(--ink);
}

.whatsapp {
  background: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

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

  .hero-copy {
    width: 59%;
  }

  .hero-visual {
    right: -6%;
    width: 54vw;
  }

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

  .price-card,
  .price-card.recommended {
    min-height: 610px;
    margin-top: 0;
  }

  .recommended-label {
    top: 17px;
  }

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

  .addon-heading {
    grid-column: 1 / -1;
  }

  .addons article:first-of-type {
    border-left: 0;
  }

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

  .case-card,
  .contact {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    padding: 10px 18px;
  }

  .portrait {
    width: 42px;
    height: 42px;
  }

  .identity-copy strong {
    font-size: 18px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1px;
    background: #fff;
    transition: 0.25s ease;
  }

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

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

  .main-nav {
    position: fixed;
    z-index: -1;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 20px;
    background: rgba(250, 249, 246, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: 0.3s ease;
  }

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

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 27px;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding: 52px 20px 75px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(57px, 17vw, 79px);
  }

  .lavender-stroke {
    right: 0;
    height: 18px;
  }

  .hero-continuation {
    margin-top: 42px;
  }

  .hero-continuation h2 {
    font-size: 34px;
  }

  .hero-intro {
    font-size: 16px;
  }

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

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 118%;
    margin: 35px -9% 0;
    transform: none;
  }

  .service-pill {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .pill-auto {
    top: 6%;
    left: 2%;
  }

  .pill-google {
    top: 5%;
    right: 3%;
  }

  .pill-web {
    top: 29%;
    right: -1%;
  }

  .pill-meta {
    right: 0;
    bottom: 25%;
  }

  .pill-manychat {
    right: 14%;
    bottom: 5%;
  }

  .pill-content {
    bottom: 5%;
    left: 14%;
  }

  .pill-voice {
    bottom: 25%;
    left: -1%;
  }

  .orb-drag-hint {
    padding: 7px 10px;
    font-size: 9px;
  }

  .section {
    padding: 85px 20px;
  }

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

  .section-heading h2,
  .method-intro h2,
  .contact-copy h2 {
    font-size: 45px;
  }

  .section-heading > p,
  .method-intro > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .audit-panel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 29px 22px;
    border-radius: 25px;
  }

  .audit-copy h3 {
    font-size: 36px;
  }

  .report-card {
    padding: 21px 17px;
  }

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

  .price-card,
  .price-card.recommended {
    min-height: auto;
    padding: 27px 23px;
  }

  .price-card.recommended {
    padding-top: 58px;
  }

  .price-description,
  .price-card h3 {
    min-height: auto;
  }

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

  .addon-heading {
    grid-column: auto;
  }

  .addons article {
    min-height: 120px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .problem-grid article {
    min-height: 220px;
    padding: 28px 23px;
  }

  .method-steps article {
    min-height: 290px;
  }

  .step-icon {
    margin-top: 50px;
  }

  .case-card {
    grid-template-columns: 1fr;
    padding: 29px 22px;
    border-radius: 25px;
  }

  .case-copy h3 {
    font-size: 35px;
  }

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

  .case-visual {
    transform: none;
  }

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

  .faq .section-heading {
    position: static;
  }

  .faq-item button span {
    font-size: 19px;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
    padding: 25px 18px;
  }

  .full-field {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 20px 115px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .floating-audit {
    right: 78px;
    bottom: 18px;
    left: 14px;
    justify-content: center;
  }

  .social-floats {
    right: 14px;
    bottom: 18px;
  }

  .social-floats .instagram {
    display: none;
  }

  .social-floats a {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 430px) {
  .identity-copy small {
    font-size: 8px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-continuation h2 {
    font-size: 30px;
  }

  .hero-visual {
    width: 128%;
    margin-right: -14%;
    margin-left: -14%;
  }

  .service-pill {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 8.5px;
  }

  .orb-drag-hint {
    font-size: 8px;
  }

  .section-heading h2,
  .method-intro h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .report-score strong {
    font-size: 60px;
  }

  .mini-scores {
    gap: 5px;
  }

  .case-metrics strong {
    font-size: 22px;
  }

  .chart {
    height: 200px;
  }

  .contact-direct b {
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .floating-audit {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Sobre mí: autoridad personal y trato directo */
.about-page {
  background: #f5f9fc;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
  min-height: 100svh;
  padding: 175px max(32px, calc((100vw - var(--max)) / 2)) 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 33%, rgba(85, 181, 250, 0.2), transparent 25%),
    linear-gradient(135deg, #f9fcfe 0%, #edf7fd 63%, #f8fbfd 100%);
}

.about-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(35, 121, 201, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 121, 201, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000, transparent 92%);
}

.about-hero-copy,
.about-portrait {
  position: relative;
  z-index: 1;
}

.about-hero-copy h1 {
  max-width: 850px;
  margin: 28px 0 26px;
  color: #081827;
  font-family: var(--display);
  font-size: clamp(62px, 6.3vw, 98px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.89;
}

.about-hero-copy h1 span,
.about-role h2 span,
.about-method-intro h2 span,
.about-direct-copy h2 span,
.about-contact-copy h2 span {
  color: #2588d7;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.about-hero-copy > p {
  max-width: 690px;
  color: #5c7284;
  font-size: 17px;
  line-height: 1.75;
}

.about-hero-copy .hero-actions {
  margin-top: 35px;
}

.about-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 29px;
  color: #536b7c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.about-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-proof i {
  width: 7px;
  height: 7px;
  background: #40b77b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(64, 183, 123, 0.1);
}

.about-portrait {
  width: min(100%, 535px);
  justify-self: end;
  padding: 30px;
}

.about-portrait::before,
.about-portrait::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px dashed rgba(38, 136, 212, 0.28);
  border-radius: 50%;
}

.about-portrait::before {
  inset: 3%;
  animation: about-orbit 26s linear infinite;
}

.about-portrait::after {
  inset: 13%;
  animation: about-orbit 19s linear infinite reverse;
}

.about-photo-frame {
  position: relative;
  height: clamp(530px, 56vw, 710px);
  overflow: hidden;
  background: #082d49;
  border: 1px solid rgba(39, 139, 215, 0.35);
  border-radius: 76px 18px 76px 76px;
  box-shadow:
    0 45px 100px rgba(7, 47, 78, 0.2),
    0 0 0 10px rgba(255, 255, 255, 0.62);
}

.about-photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 60%, rgba(3, 20, 34, 0.78)),
    radial-gradient(circle at 50% 42%, transparent 42%, rgba(3, 24, 40, 0.16));
}

.about-photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 67%;
  filter: saturate(1.04) contrast(1.02);
}

.about-photo-label {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.about-photo-label span {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.about-photo-label b {
  color: #bedef2;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-orbit-label {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  color: #2079be;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(38, 136, 212, 0.25);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(8, 45, 73, 0.12);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.about-orbit-label.label-one {
  top: 17%;
  right: -4%;
}

.about-orbit-label.label-two {
  bottom: 29%;
  left: -5%;
}

.about-personal-card {
  position: absolute;
  z-index: 4;
  right: -7%;
  bottom: 9%;
  width: min(330px, 72%);
  padding: 20px 22px;
  color: #fff;
  background: rgba(5, 38, 63, 0.9);
  border: 1px solid rgba(145, 210, 252, 0.25);
  border-radius: 20px 7px 20px 20px;
  box-shadow: 0 24px 60px rgba(4, 26, 43, 0.28);
  backdrop-filter: blur(16px);
}

.about-personal-card span {
  display: block;
  margin-bottom: 8px;
  color: #75c6fc;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-personal-card strong {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.25;
}

.about-role {
  background:
    radial-gradient(circle at 15% 22%, rgba(99, 184, 246, 0.12), transparent 24%),
    #fbfcfd;
}

.about-role .section-heading {
  max-width: 960px;
}

.about-role .section-heading > p {
  max-width: 760px;
}

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

.about-capability {
  position: relative;
  display: flex;
  min-height: 385px;
  flex-direction: column;
  padding: 27px;
  color: #0b1c2b;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cfe1ee;
  border-radius: 28px 8px 28px 28px;
  box-shadow: 0 18px 55px rgba(14, 59, 91, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about-capability:hover {
  transform: translateY(-6px);
  border-color: #75bdf0;
  box-shadow: 0 30px 70px rgba(14, 59, 91, 0.13);
}

.about-capability > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #1f7fc8;
  background: #e5f4fe;
  border-radius: 13px;
  font-size: 10px;
  font-weight: 800;
}

.about-capability > i {
  margin: 31px 0 13px;
  color: #2688d4;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.about-capability h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.about-capability p {
  margin: 17px 0 26px;
  color: #63798a;
  font-size: 13px;
  line-height: 1.7;
}

.about-capability > b {
  margin-top: auto;
  color: #1778c2;
  font-size: 11px;
}

.about-method {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(61, 168, 241, 0.24), transparent 28%),
    linear-gradient(145deg, #061d31, #083b5e);
}

.about-method-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.about-method-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.about-method-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 5.5vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.about-method-intro > p {
  margin: 0;
  color: #a9c4d6;
  font-size: 15px;
  line-height: 1.75;
}

.about-method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(132, 199, 241, 0.2);
  border-bottom: 1px solid rgba(132, 199, 241, 0.2);
}

.about-method-steps article {
  min-height: 335px;
  padding: 33px 27px;
  border-right: 1px solid rgba(132, 199, 241, 0.18);
}

.about-method-steps article:last-child {
  border-right: 0;
}

.about-method-steps article > span {
  color: #64baf5;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 600;
}

.about-method-steps article > small {
  display: block;
  margin: 38px 0 14px;
  color: #79c4f5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.about-method-steps h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.about-method-steps p {
  margin: 0;
  color: #9eb9ca;
  font-size: 13px;
  line-height: 1.7;
}

.about-direct {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(370px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 10vw, 170px);
  background:
    linear-gradient(rgba(43, 126, 191, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 126, 191, 0.045) 1px, transparent 1px),
    #f7fbfd;
  background-size: 42px 42px;
}

.about-direct-copy h2 {
  margin: 25px 0 0;
  color: #091a29;
  font-family: var(--display);
  font-size: clamp(52px, 5.2vw, 79px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.about-direct-note {
  padding: 33px;
  background: #fff;
  border: 1px solid #cde2f0;
  border-radius: 30px 8px 30px 30px;
  box-shadow: 0 25px 70px rgba(12, 58, 91, 0.09);
}

.about-direct-note > p {
  margin: 0 0 27px;
  color: #536b7d;
  font-size: 16px;
  line-height: 1.75;
}

.about-direct-note > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-direct-note span {
  padding: 9px 12px;
  color: #176fae;
  background: #eaf6fd;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.58fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  overflow: hidden;
  color: #fff;
  background: #061d31;
}

.about-contact-glow {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 650px;
  height: 650px;
  background: rgba(49, 162, 235, 0.21);
  border-radius: 50%;
  filter: blur(80px);
}

.about-contact-copy,
.about-contact-card {
  position: relative;
  z-index: 1;
}

.about-contact-copy h2 {
  margin: 25px 0 23px;
  font-family: var(--display);
  font-size: clamp(54px, 5.6vw, 84px);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.about-contact-copy > p {
  max-width: 720px;
  margin: 0;
  color: #a9c4d6;
  font-size: 15px;
  line-height: 1.75;
}

.about-contact-actions {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-top: 35px;
}

.about-contact-actions a {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 70px;
  padding: 14px 20px;
  color: #eaf7ff;
  border: 1px solid rgba(141, 205, 246, 0.2);
  border-radius: 16px;
  transition: background 180ms ease, border-color 180ms ease;
}

.about-contact-actions a:hover {
  background: rgba(120, 201, 253, 0.08);
  border-color: rgba(141, 205, 246, 0.44);
}

.about-contact-actions span {
  color: #6fc1f7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-contact-actions strong {
  font-size: 13px;
}

.about-contact-actions b {
  color: #70c3f8;
}

.about-contact-card {
  padding: 38px;
  background: linear-gradient(145deg, #edf8ff, #cceaff);
  border-radius: 38px 10px 38px 38px;
  box-shadow: 0 35px 90px rgba(0, 13, 23, 0.34);
  color: #082d49;
}

.about-contact-card > span {
  display: block;
  color: #2588d7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-contact-card > strong {
  display: block;
  margin: 23px 0 15px;
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: -0.055em;
}

.about-contact-card > p {
  color: #45667d;
  font-size: 14px;
  line-height: 1.7;
}

.about-contact-card > i {
  display: block;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 119, 183, 0.18);
  color: #1c75b6;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

@keyframes about-orbit {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-portrait {
    width: min(100%, 640px);
    justify-self: center;
  }

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

  .about-method-intro,
  .about-direct,
  .about-contact {
    grid-template-columns: 1fr;
  }

  .about-method-intro .eyebrow {
    margin-bottom: -30px;
  }
}

@media (max-width: 700px) {
  .about-hero {
    gap: 54px;
    padding: 130px 20px 78px;
  }

  .about-hero-copy h1 {
    font-size: 52px;
    line-height: 0.93;
  }

  .about-hero-copy .hero-actions {
    align-items: stretch;
  }

  .about-hero-copy .button {
    width: 100%;
    justify-content: space-between;
  }

  .about-portrait {
    padding: 16px;
  }

  .about-photo-frame {
    height: 560px;
    border-radius: 46px 12px 46px 46px;
  }

  .about-photo-label {
    right: 18px;
    bottom: 20px;
    left: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .about-personal-card {
    right: 0;
    bottom: 8%;
    width: 78%;
  }

  .about-orbit-label.label-one {
    right: 0;
  }

  .about-orbit-label.label-two {
    left: 0;
  }

  .about-capabilities,
  .about-method-steps {
    grid-template-columns: 1fr;
  }

  .about-capability {
    min-height: 330px;
  }

  .about-method-intro {
    gap: 34px;
    margin-bottom: 45px;
  }

  .about-method-intro .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .about-method-intro h2,
  .about-direct-copy h2,
  .about-contact-copy h2 {
    font-size: 48px;
  }

  .about-method-steps article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(132, 199, 241, 0.18);
  }

  .about-method-steps article:last-child {
    border-bottom: 0;
  }

  .about-method-steps article > small {
    margin-top: 26px;
  }

  .about-direct {
    gap: 40px;
  }

  .about-direct-note {
    padding: 25px;
  }

  .about-contact {
    gap: 48px;
  }

  .about-contact-actions a {
    grid-template-columns: 1fr auto;
    gap: 7px 16px;
  }

  .about-contact-actions span {
    grid-column: 1 / -1;
  }

  .about-contact-actions strong {
    overflow-wrap: anywhere;
  }

  .about-contact-card {
    padding: 30px 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-portrait::before,
  .about-portrait::after {
    animation: none;
  }
}

/* Página de asistentes de voz: llamada viva, dos integraciones y programa beta */
.voice-ai-page {
  background:
    radial-gradient(circle at 83% 8%, rgba(104, 188, 247, 0.17), transparent 28%),
    #f8fbfe;
}

.voice-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  align-items: center;
  min-height: 850px;
  gap: clamp(48px, 6vw, 105px);
  max-width: 1680px;
  margin: 0 auto;
  padding: 128px clamp(34px, 7vw, 120px) 84px;
  overflow: hidden;
}

.voice-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(34, 121, 183, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 121, 183, 0.052) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, #000 5%, transparent 94%);
}

.voice-hero-copy h1 {
  max-width: 820px;
  margin: 25px 0 27px;
  font-family: var(--display);
  font-size: clamp(61px, 6.2vw, 104px);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.89;
}

.voice-hero-copy h1 span,
.voice-how .section-heading h2 span,
.voice-versions .section-heading h2 span,
.voice-beta h2 span,
.voice-contact h2 span {
  color: #2688d4;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.voice-hero-copy > p {
  max-width: 710px;
  color: #52697b;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
}

.voice-hero-copy .hero-actions {
  margin-top: 34px;
}

.voice-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 29px;
  color: #51697b;
  font-size: 11px;
  font-weight: 700;
}

.voice-hero-notes span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-hero-notes i {
  width: 7px;
  height: 7px;
  background: #4db3f5;
  border: 2px solid #e6f5ff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(77, 179, 245, 0.16);
}

.voice-call-console {
  position: relative;
  min-height: 650px;
  padding: 23px;
  overflow: hidden;
  color: #edf9ff;
  background:
    radial-gradient(circle at 50% 30%, rgba(113, 202, 255, 0.3), transparent 30%),
    linear-gradient(150deg, #061e35, #0a3f65 70%, #0d527d);
  border: 1px solid rgba(125, 204, 255, 0.4);
  border-radius: 55px 16px 55px 55px;
  box-shadow:
    0 40px 90px rgba(7, 47, 78, 0.25),
    inset 0 0 0 9px rgba(255, 255, 255, 0.035);
}

.voice-call-console::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(117, 202, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 202, 255, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 18%, transparent 83%);
  opacity: 0.5;
}

.call-console-top,
.call-console-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  color: #cceaff;
  background: rgba(5, 27, 46, 0.68);
  border: 1px solid rgba(132, 205, 255, 0.22);
  border-radius: 13px 5px 13px 13px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.call-console-top span,
.call-console-bottom span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-console-top i,
.call-console-bottom i {
  width: 7px;
  height: 7px;
  background: #56d996;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 217, 150, 0.1), 0 0 13px #56d996;
  animation: voice-status-pulse 1.8s ease-in-out infinite;
}

.call-console-top > b {
  padding: 5px 8px;
  color: #082d49;
  background: #78caff;
  border-radius: 6px;
  font-size: 8px;
}

.voice-live-area {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 245px;
}

.voice-ai-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
}

.voice-ring {
  position: absolute;
  border: 1px solid rgba(126, 210, 255, 0.24);
  border-radius: 50%;
}

.ring-one {
  inset: 0;
  animation: voice-ring-pulse 3s ease-out infinite;
}

.ring-two {
  inset: 23px;
  animation: voice-ring-pulse 3s ease-out -1s infinite;
}

.ring-three {
  inset: 45px;
  animation: voice-ring-pulse 3s ease-out -2s infinite;
}

.voice-orb-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 30%, #a6e1ff, transparent 19%),
    linear-gradient(145deg, #58bff7, #0e6499);
  border: 1px solid rgba(206, 239, 255, 0.58);
  border-radius: 33px 9px 33px 33px;
  box-shadow:
    0 0 40px rgba(77, 187, 248, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.15);
  transform: rotate(-4deg);
}

.voice-orb-core::before,
.voice-orb-core::after {
  position: absolute;
  content: "";
  background: rgba(211, 242, 255, 0.22);
  border-radius: 50%;
}

.voice-orb-core::before {
  top: -17px;
  right: -12px;
  width: 55px;
  height: 55px;
}

.voice-orb-core::after {
  bottom: -23px;
  left: -15px;
  width: 65px;
  height: 65px;
}

.voice-orb-core span {
  position: relative;
  z-index: 2;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.voice-orb-core i {
  position: absolute;
  right: 17px;
  bottom: 16px;
  width: 8px;
  height: 8px;
  background: #5ae09d;
  border: 2px solid #1b7faf;
  border-radius: 50%;
}

.voice-wave {
  position: absolute;
  right: 35px;
  bottom: 30px;
  left: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 36px;
}

.voice-wave i {
  width: 3px;
  height: 20%;
  background: linear-gradient(to top, #4ca9e3, #b2e5ff);
  border-radius: 999px;
  animation: live-voice-wave 1.1s ease-in-out infinite alternate;
}

.voice-wave i:nth-child(2n) { height: 45%; animation-delay: -0.2s; }
.voice-wave i:nth-child(3n) { height: 80%; animation-delay: -0.4s; }
.voice-wave i:nth-child(4n) { height: 100%; animation-delay: -0.6s; }
.voice-wave i:nth-child(5n) { height: 60%; animation-delay: -0.8s; }

.voice-status {
  position: absolute;
  top: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8dcdf2;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.13em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.voice-status i {
  width: 5px;
  height: 5px;
  background: #6dccfb;
  border-radius: 50%;
  box-shadow: 0 0 9px #6dccfb;
}

@keyframes voice-ring-pulse {
  0% { opacity: 0.25; transform: scale(0.82); }
  60% { opacity: 0.65; }
  100% { opacity: 0; transform: scale(1.25); }
}

@keyframes live-voice-wave {
  to { transform: scaleY(0.38); }
}

@keyframes voice-status-pulse {
  50% { opacity: 0.5; transform: scale(0.8); }
}

.call-transcript {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 13px;
  background: rgba(5, 28, 47, 0.56);
  border: 1px solid rgba(126, 204, 253, 0.2);
  border-radius: 17px 6px 17px 17px;
}

.transcript-line {
  max-width: 86%;
  padding: 9px 11px;
  background: rgba(120, 204, 255, 0.09);
  border-radius: 10px 4px 10px 10px;
}

.transcript-line.assistant {
  justify-self: end;
  color: #0a304b;
  background: #e2f4ff;
  border-radius: 4px 10px 10px 10px;
}

.transcript-line span {
  display: block;
  margin-bottom: 3px;
  color: #76c5f5;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.transcript-line.assistant span {
  color: #3287bd;
}

.transcript-line p {
  font-size: 8px;
  line-height: 1.45;
}

.call-actions {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 11px 0;
}

.call-actions > div {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 9px;
  background: rgba(5, 28, 47, 0.54);
  border: 1px solid rgba(126, 204, 253, 0.17);
  border-radius: 12px 4px 12px 12px;
}

.action-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #78c9f8;
  background: rgba(108, 198, 253, 0.11);
  border-radius: 9px 3px 9px 9px;
  font-size: 10px;
}

.calendar-icon::before {
  width: 13px;
  height: 11px;
  content: "";
  border: 1px solid #7dcafa;
  border-radius: 2px;
}

.calendar-icon::after {
  position: absolute;
  top: 8px;
  width: 13px;
  height: 1px;
  content: "";
  background: #7dcafa;
}

.contact-icon::before {
  position: absolute;
  top: 6px;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid #7dcafa;
  border-radius: 50%;
}

.contact-icon::after {
  position: absolute;
  bottom: 5px;
  width: 13px;
  height: 7px;
  content: "";
  border: 1px solid #7dcafa;
  border-radius: 8px 8px 3px 3px;
}

.call-actions p {
  min-width: 0;
}

.call-actions small,
.call-actions strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.call-actions small {
  color: #6faed3;
  font-size: 4.5px;
  letter-spacing: 0.1em;
}

.call-actions strong {
  margin-top: 3px;
  color: #d6edf9;
  font-size: 6.5px;
}

.call-actions > div > b {
  color: #61d99b;
  font-size: 8px;
}

.call-console-bottom {
  padding-top: 9px;
  padding-bottom: 9px;
}

.call-console-bottom p {
  color: #8eb2c9;
  font-size: 7px;
}

.call-console-bottom p b {
  margin: 0 5px;
  color: #6ec8fb;
}

.voice-how {
  padding-top: 125px;
  padding-bottom: 115px;
  background:
    radial-gradient(circle at 50% 68%, rgba(102, 189, 248, 0.13), transparent 31%),
    #eef8ff;
}

.voice-how .section-heading,
.voice-versions .section-heading {
  max-width: 960px;
}

.voice-how .section-heading > p,
.voice-versions .section-heading > p {
  max-width: 790px;
}

.voice-principles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr) 68px minmax(0, 1fr);
  align-items: center;
  margin-top: 62px;
}

.voice-principle {
  position: relative;
  min-height: 525px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #cee4f3;
  border-radius: 33px 10px 33px 33px;
  box-shadow: 0 22px 55px rgba(18, 78, 119, 0.1);
}

.voice-principle.featured {
  color: #eff9ff;
  background:
    radial-gradient(circle at 80% 12%, rgba(84, 190, 255, 0.25), transparent 25%),
    linear-gradient(150deg, #062139, #0a466e);
  border-color: rgba(113, 198, 252, 0.39);
  transform: translateY(-14px);
}

.voice-principle > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #217dbd;
  background: #e7f5ff;
  border: 1px solid #badef4;
  border-radius: 12px 4px 12px 12px;
  font-size: 9px;
  font-weight: 700;
}

.voice-principle.featured > span {
  color: #dff3ff;
  background: rgba(104, 197, 255, 0.13);
  border-color: rgba(126, 206, 255, 0.23);
}

.principle-visual {
  position: relative;
  height: 250px;
  margin: 18px 0 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(46, 133, 192, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 133, 192, 0.055) 1px, transparent 1px),
    #f4faff;
  background-size: 30px 30px;
  border: 1px solid #d9eaf5;
  border-radius: 24px 7px 24px 24px;
}

.voice-principle.featured .principle-visual {
  background:
    linear-gradient(rgba(105, 197, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 197, 255, 0.09) 1px, transparent 1px),
    rgba(5, 29, 48, 0.54);
  background-size: 30px 30px;
  border-color: rgba(116, 200, 252, 0.2);
}

.mini-wave {
  position: absolute;
  top: 50px;
  right: 25px;
  left: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 70px;
}

.mini-wave i {
  width: 5px;
  height: 30%;
  background: linear-gradient(to top, #278bca, #85cff7);
  border-radius: 999px;
  animation: mini-voice-wave 1.2s ease-in-out infinite alternate;
}

.mini-wave i:nth-child(2n) { height: 65%; animation-delay: -0.25s; }
.mini-wave i:nth-child(3n) { height: 100%; animation-delay: -0.5s; }
.mini-wave i:nth-child(4n) { height: 48%; animation-delay: -0.75s; }

@keyframes mini-voice-wave {
  to { transform: scaleY(0.35); }
}

.intent-pill {
  position: absolute;
  right: 22px;
  bottom: 31px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid #c8e1ef;
  border-radius: 13px 5px 13px 13px;
  box-shadow: 0 13px 27px rgba(22, 88, 131, 0.12);
}

.intent-pill small {
  color: #3888bd;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.intent-pill b {
  color: #143a53;
  font-size: 8px;
}

.action-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 83px;
  height: 83px;
  background: linear-gradient(145deg, #58bff7, #0e6499);
  border: 1px solid rgba(206, 239, 255, 0.48);
  border-radius: 29px 8px 29px 29px;
  box-shadow: 0 0 35px rgba(76, 185, 244, 0.28);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.action-hub > span {
  font-size: 13px;
  font-weight: 700;
}

.action-hub i {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #bceaff;
  border-radius: 50%;
  box-shadow: 0 0 8px #7cd2ff;
}

.action-hub i:nth-child(2) { top: 8px; left: 12px; }
.action-hub i:nth-child(3) { right: 8px; top: 35px; }
.action-hub i:nth-child(4) { bottom: 9px; left: 29px; }

.action-node {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 98px;
  padding: 10px;
  color: #dff3ff;
  background: rgba(5, 28, 47, 0.73);
  border: 1px solid rgba(122, 201, 250, 0.23);
  border-radius: 11px 4px 11px 11px;
  box-shadow: 0 10px 24px rgba(1, 15, 25, 0.21);
}

.action-node small {
  color: #73c4f4;
  font-size: 4.5px;
  letter-spacing: 0.1em;
}

.action-node b {
  font-size: 7px;
}

.node-info { top: 22px; left: 16px; }
.node-calendar { top: 30px; right: 13px; }
.node-data { right: 50%; bottom: 17px; transform: translateX(50%); }

.action-node::after {
  position: absolute;
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(112, 198, 249, 0.34);
}

.node-info::after { right: -28px; bottom: 8px; transform: rotate(24deg); }
.node-calendar::after { bottom: 4px; left: -26px; transform: rotate(-28deg); }
.node-data::after { top: -16px; left: 35px; transform: rotate(90deg); }

.handoff-ai,
.handoff-human {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 27px 8px 27px 27px;
  transform: translateY(-50%);
}

.handoff-ai {
  left: 18px;
  color: #fff;
  background: linear-gradient(145deg, #57bff7, #176d9e);
}

.handoff-human {
  right: 18px;
  color: #153d56;
  background: #fff;
  border: 1px solid #bdddeb;
  box-shadow: 0 13px 25px rgba(22, 88, 131, 0.12);
}

.handoff-ai small,
.handoff-human small {
  font-size: 5px;
  letter-spacing: 0.1em;
}

.handoff-ai b,
.handoff-human b {
  font-size: 10px;
}

.handoff-human > i {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #4c9aca;
  border-radius: 50%;
}

.handoff-human > i::after {
  position: absolute;
  right: -5px;
  bottom: -9px;
  left: -5px;
  height: 10px;
  content: "";
  border: 1px solid #4c9aca;
  border-radius: 10px 10px 3px 3px;
}

.handoff-path {
  position: absolute;
  top: 50%;
  right: 100px;
  left: 100px;
  height: 1px;
  background: #b7dced;
}

.handoff-path i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #3c9ed8;
  border-radius: 50%;
  animation: voice-handoff-data 2.8s linear infinite;
}

.handoff-path span {
  position: absolute;
  top: 9px;
  left: 50%;
  color: #6e8da0;
  font-size: 5px;
  white-space: nowrap;
  transform: translateX(-50%);
}

@keyframes voice-handoff-data {
  to { left: calc(100% - 7px); }
}

.voice-principle h3 {
  margin: 0 0 11px;
  font-family: var(--display);
  font-size: clamp(29px, 2.2vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.voice-principle p {
  color: #647c8d;
  font-size: 11px;
  line-height: 1.7;
}

.voice-principle.featured p {
  color: #a9c5d8;
}

.voice-flow-arrow {
  position: relative;
  display: grid;
  place-items: center;
  height: 1px;
  background: #b9dcec;
}

.voice-flow-arrow i {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  background: #49a9e5;
  border-radius: 50%;
  animation: voice-principle-flow 2.6s linear infinite;
}

.voice-flow-arrow b {
  position: absolute;
  right: -2px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #2e8dcc;
  background: #eef8ff;
  border: 1px solid #b9dcec;
  border-radius: 50%;
  font-size: 12px;
}

@keyframes voice-principle-flow {
  to { left: calc(100% - 7px); }
}

.voice-versions {
  padding-top: 125px;
  padding-bottom: 120px;
  background: #fff;
}

.voice-version-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px;
  margin-top: 60px;
}

.voice-version {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(27px, 3vw, 43px);
  border-radius: 39px 12px 39px 39px;
  box-shadow: 0 26px 64px rgba(16, 73, 111, 0.11);
}

.phone-version {
  color: #eff9ff;
  background:
    radial-gradient(circle at 86% 8%, rgba(83, 188, 255, 0.26), transparent 23%),
    linear-gradient(150deg, #061e33, #0a456e);
  border: 1px solid rgba(125, 204, 255, 0.37);
}

.web-version {
  background:
    radial-gradient(circle at 85% 8%, rgba(97, 189, 247, 0.14), transparent 24%),
    #f4faff;
  border: 1px solid #cce3f1;
}

.version-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}

.version-top > div {
  max-width: 560px;
}

.version-top > div > span {
  color: #78c8f9;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.web-version .version-top > div > span {
  color: #2f86c2;
}

.version-top h3 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: clamp(37px, 3.4vw, 54px);
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.version-symbol {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 55px;
  height: 55px;
  background: rgba(104, 197, 255, 0.12);
  border: 1px solid rgba(129, 207, 255, 0.23);
  border-radius: 17px 6px 17px 17px;
  font-style: normal;
}

.web-version .version-symbol {
  background: #e2f3fd;
  border-color: #bbddf0;
}

.phone-symbol::before {
  width: 19px;
  height: 27px;
  content: "";
  border: 2px solid #83d0fc;
  border-radius: 8px;
  transform: rotate(-24deg);
}

.phone-symbol::after {
  position: absolute;
  width: 8px;
  height: 2px;
  content: "";
  background: #83d0fc;
  border-radius: 2px;
  transform: translate(-5px, 9px) rotate(-24deg);
}

.web-symbol::before {
  width: 27px;
  height: 21px;
  content: "";
  border: 2px solid #348bc3;
  border-radius: 5px;
}

.web-symbol::after {
  position: absolute;
  top: 20px;
  width: 27px;
  height: 1px;
  content: "";
  background: #348bc3;
}

.phone-system,
.web-voice-system {
  min-height: 320px;
  margin: 35px 0 28px;
  padding: 20px;
  overflow: hidden;
  border-radius: 25px 8px 25px 25px;
}

.phone-system {
  background:
    linear-gradient(rgba(110, 198, 252, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 198, 252, 0.08) 1px, transparent 1px),
    rgba(4, 27, 45, 0.55);
  background-size: 35px 35px;
  border: 1px solid rgba(124, 202, 251, 0.18);
}

.phone-system-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(4, 25, 42, 0.64);
  border: 1px solid rgba(124, 202, 251, 0.17);
  border-radius: 11px 4px 11px 11px;
}

.phone-system-status span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7bcafa;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.phone-system-status span i {
  width: 6px;
  height: 6px;
  background: #56db98;
  border-radius: 50%;
  box-shadow: 0 0 9px #56db98;
}

.phone-system-status b {
  color: #99b8cc;
  font-size: 7px;
}

.phone-system-route {
  display: grid;
  grid-template-columns: 90px 1fr 100px 1fr 105px;
  align-items: center;
  min-height: 170px;
}

.route-caller,
.route-ai,
.route-result {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 87px;
  padding: 10px;
  background: rgba(8, 46, 73, 0.82);
  border: 1px solid rgba(126, 205, 253, 0.22);
  border-radius: 19px 6px 19px 19px;
  text-align: center;
}

.route-caller > i {
  position: relative;
  width: 21px;
  height: 21px;
  border: 1px solid #7bcafa;
  border-radius: 50%;
}

.route-caller > i::after {
  position: absolute;
  right: -4px;
  bottom: -8px;
  left: -4px;
  height: 8px;
  content: "";
  border: 1px solid #7bcafa;
  border-radius: 9px 9px 3px 3px;
}

.route-ai {
  min-height: 100px;
  background: linear-gradient(145deg, #55bdf4, #146796);
}

.route-ai > span {
  font-size: 15px;
  font-weight: 700;
}

.route-ai > div {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 13px;
}

.route-ai > div i {
  width: 2px;
  height: 50%;
  background: #d8f2ff;
  border-radius: 3px;
  animation: route-wave 1s ease-in-out infinite alternate;
}

.route-ai > div i:nth-child(2) { height: 100%; animation-delay: -0.2s; }
.route-ai > div i:nth-child(3) { height: 70%; animation-delay: -0.4s; }
.route-ai > div i:nth-child(4) { height: 90%; animation-delay: -0.6s; }
.route-ai > div i:nth-child(5) { height: 45%; animation-delay: -0.8s; }

@keyframes route-wave {
  to { transform: scaleY(0.3); }
}

.route-result > i {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #0e5938;
  background: #72dda9;
  border-radius: 50%;
  font-style: normal;
  font-size: 9px;
}

.route-caller span,
.route-result span {
  color: #6fbfeF;
  font-size: 5px;
  letter-spacing: 0.1em;
}

.route-caller b,
.route-ai b,
.route-result b {
  font-size: 7px;
}

.route-line {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(111, 194, 245, 0.28);
}

.route-line i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #78cafa;
  border-radius: 50%;
  animation: route-data 2.4s linear infinite;
}

.route-line.second i {
  animation-delay: -1.2s;
}

@keyframes route-data {
  to { left: calc(100% - 7px); }
}

.phone-system-events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.phone-system-events span {
  padding: 8px;
  color: #8db2c9;
  background: rgba(5, 29, 48, 0.52);
  border: 1px solid rgba(124, 202, 251, 0.14);
  border-radius: 9px 3px 9px 9px;
  font-size: 5.5px;
  text-align: center;
}

.web-voice-system {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(58, 138, 190, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 138, 190, 0.055) 1px, transparent 1px),
    #eaf6fd;
  background-size: 35px 35px;
  border: 1px solid #c9e2f0;
}

.web-window {
  position: relative;
  width: 89%;
  min-height: 250px;
  background: #fff;
  border: 1px solid #bcd9ea;
  border-radius: 17px 6px 17px 17px;
  box-shadow: 0 20px 45px rgba(23, 87, 128, 0.17);
  transform: rotate(-1deg);
}

.web-window-top {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 31px;
  padding: 0 10px;
  background: #eaf3f8;
  border-radius: 16px 6px 0 0;
}

.web-window-top > i {
  width: 5px;
  height: 5px;
  background: #73bdec;
  border-radius: 50%;
}

.web-window-top span {
  flex: 1;
  color: #7b96a7;
  font-size: 5px;
  text-align: center;
}

.web-window-content {
  padding: 24px;
}

.web-window-content small,
.web-window-content strong,
.web-window-content > i {
  display: block;
}

.web-window-content small {
  color: #2c89c5;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.web-window-content strong {
  max-width: 210px;
  margin: 10px 0;
  color: #0e334d;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.web-window-content > i {
  width: 52%;
  height: 4px;
  margin: 6px 0;
  background: #dbe8ef;
  border-radius: 4px;
}

.web-window-content > i:nth-of-type(2) {
  width: 37%;
}

.web-window-content button {
  margin-top: 12px;
  padding: 7px 11px;
  color: #fff;
  background: #0b3756;
  border: 0;
  border-radius: 6px;
  font-size: 6px;
}

.web-assistant-widget {
  position: absolute;
  right: -27px;
  bottom: -23px;
  display: grid;
  grid-template-columns: 41px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 235px;
  padding: 12px;
  color: #e9f8ff;
  background: linear-gradient(145deg, #072740, #0b4e77);
  border: 1px solid rgba(115, 198, 250, 0.36);
  border-radius: 17px 6px 17px 17px;
  box-shadow: 0 17px 35px rgba(6, 45, 72, 0.28);
}

.widget-orb {
  position: relative;
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 41px;
  height: 41px;
  background: linear-gradient(145deg, #62c6fb, #1974a6);
  border-radius: 14px 5px 14px 14px;
}

.widget-orb span {
  font-size: 8px;
  font-weight: 700;
}

.widget-orb i {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 6px;
  height: 6px;
  background: #5edc9d;
  border: 1px solid #1b78a5;
  border-radius: 50%;
}

.web-assistant-widget p small,
.web-assistant-widget p b {
  display: block;
}

.web-assistant-widget p small {
  color: #74c6f6;
  font-size: 4.5px;
  letter-spacing: 0.1em;
}

.web-assistant-widget p b {
  margin-top: 3px;
  font-size: 7px;
}

.widget-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 11px;
}

.widget-wave i {
  width: 2px;
  height: 50%;
  background: #88d4fc;
  border-radius: 3px;
  animation: route-wave 1s ease-in-out infinite alternate;
}

.widget-wave i:nth-child(2n) { height: 100%; animation-delay: -0.2s; }
.widget-wave i:nth-child(3n) { height: 70%; animation-delay: -0.4s; }

.voice-version > p {
  color: #abc5d6;
  font-size: 12px;
  line-height: 1.72;
}

.web-version > p {
  color: #5f798b;
}

.voice-version ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(127, 204, 251, 0.17);
  list-style: none;
}

.web-version ul {
  border-color: #d2e5f1;
}

.voice-version li {
  color: #c2d8e6;
  font-size: 10px;
  line-height: 1.5;
}

.web-version li {
  color: #48677a;
}

.voice-version li::before {
  margin-right: 8px;
  color: #71c8fb;
  content: "✓";
  font-weight: 700;
}

.voice-version > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  margin-top: auto;
  padding: 0 18px;
  color: #0b3858;
  background: #dff3ff;
  border-radius: 15px 5px 15px 15px;
  font-size: 10px;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease;
}

.web-version > a {
  color: #fff;
  background: #0a3858;
}

.voice-version > a:hover {
  background: #fff;
  transform: translateY(-3px);
}

.web-version > a:hover {
  background: #1784c8;
}

.voice-build-strip {
  display: grid;
  grid-template-columns: 1fr 35px 1fr 35px 1fr 35px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 22px;
  background: #f1f8fc;
  border: 1px solid #cde3f0;
  border-radius: 24px 8px 24px 24px;
}

.voice-build-strip > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.voice-build-strip > div > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #2081c3;
  background: #e0f2fd;
  border-radius: 11px 4px 11px 11px;
  font-size: 8px;
  font-weight: 700;
}

.voice-build-strip strong,
.voice-build-strip small {
  display: block;
}

.voice-build-strip strong {
  font-family: var(--sans);
  font-size: 9px;
}

.voice-build-strip small {
  margin-top: 3px;
  color: #6e8798;
  font-size: 6.5px;
  line-height: 1.45;
}

.voice-build-strip > i {
  position: relative;
  height: 1px;
  background: #b9d9e9;
}

.voice-build-strip > i::after {
  position: absolute;
  right: -1px;
  top: -3px;
  content: "›";
  color: #3c94c9;
  font-style: normal;
  font-size: 10px;
}

.voice-beta {
  padding-top: 105px;
  padding-bottom: 105px;
  background:
    radial-gradient(circle at 83% 20%, rgba(91, 188, 248, 0.22), transparent 23%),
    linear-gradient(145deg, #061d31, #083b5e);
}

.voice-beta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  overflow: hidden;
  color: #eef9ff;
  background: rgba(5, 27, 45, 0.59);
  border: 1px solid rgba(126, 205, 255, 0.24);
  border-radius: 42px 13px 42px 42px;
  box-shadow: 0 30px 70px rgba(1, 16, 28, 0.28);
}

.beta-copy,
.beta-price {
  padding: clamp(35px, 5vw, 70px);
}

.beta-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7fcdfa;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.beta-label i {
  width: 7px;
  height: 7px;
  background: #59dc9a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(89, 220, 154, 0.1), 0 0 12px #59dc9a;
}

.voice-beta h2 {
  max-width: 750px;
  margin: 26px 0 23px;
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.beta-copy > p {
  max-width: 670px;
  color: #a7c1d3;
  font-size: 13px;
  line-height: 1.75;
}

.beta-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
  margin: 31px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(129, 205, 253, 0.16);
  list-style: none;
}

.beta-copy li {
  color: #c0d5e3;
  font-size: 10px;
}

.beta-copy li::before {
  margin-right: 8px;
  color: #6fc7fa;
  content: "✓";
  font-weight: 700;
}

.beta-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(112, 200, 255, 0.08);
  border-left: 1px solid rgba(126, 204, 253, 0.18);
}

.beta-price > span {
  color: #78b8dc;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.beta-price > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 7px 0 6px;
}

.beta-price > div small {
  color: #77c8f8;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.beta-price > div strong {
  font-family: var(--serif);
  font-size: clamp(46px, 4.3vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.beta-price > div b {
  color: #9ab8ca;
  font-size: 10px;
}

.beta-price > p {
  color: #91adbf;
  font-size: 9px;
  line-height: 1.55;
}

.beta-price hr {
  width: 100%;
  margin: 25px 0;
  border: 0;
  border-top: 1px solid rgba(126, 204, 253, 0.17);
}

.beta-price .button {
  justify-content: space-between;
  width: 100%;
  margin-top: 27px;
}

.voice-contact {
  background:
    radial-gradient(circle at 11% 28%, rgba(83, 184, 247, 0.16), transparent 28%),
    #071f35;
}

@media (max-width: 1180px) {
  .voice-hero {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
    gap: 45px;
  }

  .voice-principles {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
  }

  .voice-version-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 980px) {
  .voice-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 125px;
  }

  .voice-hero-copy {
    max-width: 830px;
  }

  .voice-call-console {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .voice-principles {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .voice-principle,
  .voice-principle.featured {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 330px;
    gap: 0 25px;
    transform: none;
  }

  .voice-principle > span {
    position: absolute;
    top: 23px;
    right: 23px;
  }

  .principle-visual {
    grid-row: 1 / span 3;
    height: 100%;
    min-height: 280px;
    margin: 0;
  }

  .voice-principle h3 {
    align-self: end;
  }

  .voice-flow-arrow {
    width: 1px;
    height: 45px;
    margin: 0 auto;
  }

  .voice-flow-arrow i {
    top: 0;
    left: -3px;
    animation: voice-flow-vertical 2.6s linear infinite;
  }

  .voice-flow-arrow b {
    right: auto;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .voice-build-strip {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .voice-build-strip > i {
    display: none;
  }

  .voice-beta-card {
    grid-template-columns: 1fr;
  }

  .beta-price {
    border-top: 1px solid rgba(126, 204, 253, 0.18);
    border-left: 0;
  }
}

@keyframes voice-flow-vertical {
  to { top: calc(100% - 7px); }
}

@media (max-width: 700px) {
  .voice-hero {
    gap: 42px;
    padding: 111px 17px 64px;
  }

  .voice-hero-copy h1 {
    margin: 19px 0 22px;
    font-size: clamp(48px, 14.8vw, 69px);
  }

  .voice-hero-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .voice-hero-copy .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 27px;
  }

  .voice-hero-copy .button {
    justify-content: space-between;
    width: 100%;
  }

  .voice-hero-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    font-size: 10px;
  }

  .voice-call-console {
    min-height: 625px;
    padding: 15px;
    border-radius: 32px 10px 32px 32px;
  }

  .voice-live-area {
    min-height: 225px;
  }

  .voice-ai-orb {
    width: 155px;
    height: 155px;
  }

  .call-actions {
    grid-template-columns: 1fr;
  }

  .call-actions > div {
    grid-template-columns: 30px 1fr auto;
  }

  .call-actions small,
  .call-actions strong {
    white-space: normal;
  }

  .voice-how,
  .voice-versions,
  .voice-beta,
  .voice-contact {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .voice-principles {
    margin-top: 40px;
  }

  .voice-principle,
  .voice-principle.featured {
    display: block;
    min-height: 0;
    padding: 20px;
  }

  .voice-principle > span {
    position: static;
  }

  .principle-visual {
    height: 245px;
    min-height: 0;
    margin: 18px 0 23px;
  }

  .voice-principle h3 {
    font-size: 31px;
  }

  .voice-version-grid {
    margin-top: 42px;
  }

  .voice-version {
    padding: 25px 20px;
    border-radius: 28px 9px 28px 28px;
  }

  .version-top h3 {
    font-size: 38px;
  }

  .version-symbol {
    width: 48px;
    height: 48px;
  }

  .phone-system,
  .web-voice-system {
    min-height: 360px;
    margin-top: 28px;
    padding: 14px;
  }

  .phone-system-route {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 18px 28px;
  }

  .route-caller,
  .route-ai,
  .route-result {
    min-height: 77px;
  }

  .route-line {
    justify-self: center;
    width: 1px;
    height: 25px;
  }

  .route-line i {
    top: 0;
    left: -3px;
    animation: voice-route-vertical 2.4s linear infinite;
  }

  .phone-system-events {
    grid-template-columns: 1fr;
  }

  .web-window {
    width: 100%;
  }

  .web-assistant-widget {
    right: 8px;
    bottom: -46px;
    min-width: 220px;
  }

  .voice-build-strip {
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .beta-copy,
  .beta-price {
    padding: 31px 23px;
  }

  .voice-beta h2 {
    font-size: 48px;
  }

  .beta-copy ul {
    grid-template-columns: 1fr;
  }
}

@keyframes voice-route-vertical {
  to { top: calc(100% - 7px); }
}

@media (prefers-reduced-motion: reduce) {
  .voice-ai-page .call-console-top i,
  .voice-ai-page .call-console-bottom i,
  .voice-ai-page .voice-ring,
  .voice-ai-page .voice-wave i,
  .voice-ai-page .mini-wave i,
  .voice-ai-page .handoff-path i,
  .voice-ai-page .voice-flow-arrow i,
  .voice-ai-page .route-ai > div i,
  .voice-ai-page .route-line i,
  .voice-ai-page .widget-wave i {
    animation: none;
  }
}

/* Página de Meta Ads: anuncios entre historias y descubrimiento de públicos */
.meta-ads-page {
  background:
    radial-gradient(circle at 83% 8%, rgba(105, 185, 247, 0.16), transparent 28%),
    #f8fbfe;
}

.meta-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  align-items: center;
  min-height: 830px;
  gap: clamp(48px, 6vw, 105px);
  max-width: 1680px;
  margin: 0 auto;
  padding: 128px clamp(34px, 7vw, 120px) 84px;
  overflow: hidden;
}

.meta-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(34, 121, 183, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 121, 183, 0.052) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, #000 5%, transparent 94%);
}

.meta-hero-copy h1 {
  max-width: 820px;
  margin: 25px 0 27px;
  font-family: var(--display);
  font-size: clamp(61px, 6.2vw, 104px);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.89;
}

.meta-hero-copy h1 span,
.meta-how .section-heading h2 span,
.meta-plans .section-heading h2 span,
.meta-contact h2 span {
  color: #2688d4;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.meta-hero-copy > p {
  max-width: 700px;
  color: #52697b;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
}

.meta-hero-copy .hero-actions {
  margin-top: 34px;
}

.meta-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 29px;
  color: #51697b;
  font-size: 11px;
  font-weight: 700;
}

.meta-hero-notes span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-hero-notes i {
  width: 7px;
  height: 7px;
  background: #4db3f5;
  border: 2px solid #e6f5ff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(77, 179, 245, 0.16);
}

.story-stage {
  position: relative;
  min-height: 580px;
  padding: 23px 20px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(113, 202, 255, 0.3), transparent 34%),
    linear-gradient(150deg, #061e35, #0a3f65 70%, #0d527d);
  border: 1px solid rgba(125, 204, 255, 0.4);
  border-radius: 55px 16px 55px 55px;
  box-shadow:
    0 40px 90px rgba(7, 47, 78, 0.25),
    inset 0 0 0 9px rgba(255, 255, 255, 0.035);
}

.story-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(117, 202, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 202, 255, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 18%, transparent 82%);
  opacity: 0.45;
}

.story-stage-top {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  color: #cceaff;
  background: rgba(5, 27, 46, 0.68);
  border: 1px solid rgba(132, 205, 255, 0.22);
  border-radius: 13px 5px 13px 13px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.story-stage-top span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-stage-top i {
  width: 7px;
  height: 7px;
  background: #56d996;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 217, 150, 0.1), 0 0 13px #56d996;
}

.story-stage-top b {
  padding: 5px 8px;
  color: #082d49;
  background: #78caff;
  border-radius: 6px;
  font-size: 7px;
}

.story-carousel {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  padding-top: 21px;
  perspective: 1200px;
}

.story-main,
.story-preview {
  position: absolute;
  overflow: hidden;
  color: #fff;
  background: #092842;
  border: 1px solid rgba(158, 216, 252, 0.33);
  box-shadow: 0 25px 55px rgba(2, 16, 28, 0.39);
}

.story-main {
  z-index: 3;
  width: 285px;
  height: 465px;
  border-radius: 29px 8px 29px 29px;
  animation: story-main-breathe 6s ease-in-out infinite;
}

.story-preview {
  z-index: 1;
  width: 228px;
  height: 380px;
  padding: 12px;
  border-radius: 25px 8px 25px 25px;
  opacity: 0.48;
  filter: blur(3.2px) saturate(0.75);
}

.story-left {
  left: -70px;
  transform: rotateY(18deg) scale(0.93);
  animation: story-left-drift 6s ease-in-out infinite;
}

.story-right {
  right: -70px;
  transform: rotateY(-18deg) scale(0.93);
  animation: story-right-drift 6s ease-in-out infinite;
}

.story-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 10px 11px 0;
}

.story-bars i {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 3px;
}

.story-main .story-bars i:first-child {
  background: #fff;
}

.story-main .story-bars i:nth-child(2) {
  position: relative;
}

.story-main .story-bars i:nth-child(2)::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  transform-origin: left;
  animation: story-progress 6s linear infinite;
}

.story-account {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-main .story-account {
  padding: 11px 12px;
}

.story-account > i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  background: linear-gradient(145deg, #54baf8, #175f90);
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  font-style: normal;
  font-size: 8px;
  font-weight: 700;
}

.story-account p {
  flex: 1;
  line-height: 1.1;
}

.story-account b,
.story-account small {
  display: block;
}

.story-account b {
  font-size: 8px;
}

.story-account small {
  margin-top: 2px;
  color: #adc5d5;
  font-size: 6px;
}

.story-account > span {
  color: #a9c2d2;
  font-size: 8px;
}

.story-preview > .story-account {
  margin: 10px 2px;
}

.story-creative {
  position: relative;
  height: 207px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(116, 207, 255, 0.31), transparent 31%),
    linear-gradient(145deg, #0a385a, #0a5c8c);
}

.creative-orbit {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(146, 218, 255, 0.24);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: meta-orbit-spin 12s linear infinite;
}

.creative-orbit::before,
.creative-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(146, 218, 255, 0.18);
  border-radius: 50%;
}

.creative-orbit::before { inset: 28px; }
.creative-orbit::after { inset: 54px; }

.creative-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #8ed7ff;
  border-radius: 50%;
  box-shadow: 0 0 12px #61c2fa;
}

.creative-orbit i:nth-child(1) { top: 22px; left: 21px; }
.creative-orbit i:nth-child(2) { right: 6px; top: 85px; }
.creative-orbit i:nth-child(3) { left: 72px; bottom: -3px; }

.creative-product {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 125px;
  height: 125px;
  background: rgba(4, 29, 49, 0.84);
  border: 1px solid rgba(146, 216, 255, 0.32);
  border-radius: 37px 11px 37px 37px;
  box-shadow: 0 18px 35px rgba(3, 18, 31, 0.36);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.creative-product span {
  color: #7ccbf9;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.creative-product b {
  color: #a9e1ff;
  font-size: 30px;
  font-weight: 300;
  line-height: 0.5;
}

.creative-product small {
  max-width: 82px;
  color: #a8c3d4;
  font-size: 7px;
  line-height: 1.35;
  text-align: center;
}

.creative-shape {
  position: absolute;
  border: 1px solid rgba(137, 212, 255, 0.23);
}

.creative-shape.one {
  bottom: -15px;
  left: -7px;
  width: 73px;
  height: 73px;
  border-radius: 50%;
}

.creative-shape.two {
  top: 29px;
  right: -11px;
  width: 53px;
  height: 53px;
  border-radius: 17px;
  transform: rotate(20deg);
}

.story-offer {
  padding: 12px 14px 8px;
}

.story-offer > span {
  color: #76c8fa;
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-offer h2 {
  margin: 5px 0;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.story-offer p {
  color: #a9c2d2;
  font-size: 7px;
  line-height: 1.45;
}

.story-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-top: 1px solid rgba(156, 216, 252, 0.18);
  border-bottom: 1px solid rgba(156, 216, 252, 0.18);
  color: #e9f7ff;
  font-size: 7px;
  font-weight: 700;
}

.story-action b {
  font-size: 11px;
}

.story-reactions {
  display: flex;
  gap: 13px;
  padding: 9px 13px;
}

.story-reactions i {
  font-style: normal;
  font-size: 13px;
}

.story-abstract {
  position: relative;
  height: 235px;
  margin-top: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #194c70, #0c769d);
  border-radius: 18px 6px 18px 18px;
}

.story-abstract i {
  position: absolute;
  background: rgba(199, 236, 255, 0.26);
}

.story-abstract i:nth-child(1) {
  top: 30px;
  left: 35px;
  width: 120px;
  height: 120px;
  border-radius: 36px;
  transform: rotate(18deg);
}

.story-abstract i:nth-child(2) {
  right: -15px;
  bottom: 19px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.story-abstract i:nth-child(3) {
  bottom: 26px;
  left: 30px;
  width: 72px;
  height: 9px;
  border-radius: 8px;
}

.story-preview > strong {
  display: block;
  margin: 16px 7px;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1;
}

.right-art {
  background: linear-gradient(145deg, #23506c, #3989b8);
}

@keyframes story-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes story-main-breathe {
  50% { transform: translateY(-6px) scale(1.015); }
}

@keyframes story-left-drift {
  50% { transform: translateX(15px) rotateY(13deg) scale(0.95); opacity: 0.57; }
}

@keyframes story-right-drift {
  50% { transform: translateX(-15px) rotateY(-13deg) scale(0.95); opacity: 0.57; }
}

@keyframes meta-orbit-spin {
  to { transform: translateX(-50%) rotate(360deg); }
}

.meta-how {
  padding-top: 125px;
  padding-bottom: 115px;
  background:
    radial-gradient(circle at 48% 65%, rgba(102, 189, 248, 0.13), transparent 31%),
    #eef8ff;
}

.meta-how .section-heading,
.meta-plans .section-heading {
  max-width: 940px;
}

.meta-how .section-heading > p,
.meta-plans .section-heading > p {
  max-width: 790px;
}

.meta-journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr) 68px minmax(0, 1fr);
  align-items: center;
  margin-top: 62px;
}

.meta-step-card {
  position: relative;
  min-height: 545px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #cee4f3;
  border-radius: 33px 10px 33px 33px;
  box-shadow: 0 22px 55px rgba(18, 78, 119, 0.1);
}

.meta-step-card.featured {
  color: #eff9ff;
  background:
    radial-gradient(circle at 80% 12%, rgba(84, 190, 255, 0.25), transparent 25%),
    linear-gradient(150deg, #062139, #0a466e);
  border-color: rgba(113, 198, 252, 0.39);
  transform: translateY(-14px);
}

.meta-step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.meta-step-head span {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  color: #217dbd;
  background: #e7f5ff;
  border: 1px solid #badef4;
  border-radius: 12px 4px 12px 12px;
  font-size: 9px;
  font-weight: 700;
}

.meta-step-card.featured .meta-step-head span {
  color: #dff3ff;
  background: rgba(104, 197, 255, 0.13);
  border-color: rgba(126, 206, 255, 0.23);
}

.meta-step-head small {
  color: #3184bc;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.meta-step-card.featured .meta-step-head small { color: #78c9fa; }

.audience-illustration,
.feed-illustration,
.meta-contact-illustration {
  position: relative;
  height: 260px;
  overflow: hidden;
  background:
    linear-gradient(rgba(46, 133, 192, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 133, 192, 0.055) 1px, transparent 1px),
    #f4faff;
  background-size: 30px 30px;
  border: 1px solid #d9eaf5;
  border-radius: 24px 7px 24px 24px;
}

.meta-step-card.featured .feed-illustration {
  background:
    linear-gradient(rgba(105, 197, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 197, 255, 0.09) 1px, transparent 1px),
    rgba(5, 29, 48, 0.54);
  background-size: 30px 30px;
  border-color: rgba(116, 200, 252, 0.2);
}

.audience-radar {
  position: absolute;
  top: 23px;
  left: 50%;
  width: 170px;
  height: 170px;
  border: 1px solid #b9dff3;
  border-radius: 50%;
  transform: translateX(-50%);
}

.audience-radar::before,
.audience-radar::after {
  position: absolute;
  content: "";
  border: 1px solid #cfe7f4;
  border-radius: 50%;
}

.audience-radar::before { inset: 30px; }
.audience-radar::after { inset: 59px; }

.audience-radar > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 77px;
  height: 77px;
  overflow: hidden;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.audience-radar > span::before {
  position: absolute;
  inset: 0;
  content: "";
  background: conic-gradient(from 0deg, rgba(67, 168, 230, 0.42), transparent 29%);
  animation: audience-scan 4s linear infinite;
}

.audience-radar i {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  background: #55ade4;
  border: 3px solid #eaf7ff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(77, 170, 229, 0.14);
}

.audience-radar i:nth-child(1) { top: 16px; left: 37px; }
.audience-radar i:nth-child(2) { top: 52px; right: 10px; }
.audience-radar i:nth-child(3) { right: 37px; bottom: 11px; }
.audience-radar i:nth-child(4) { bottom: 45px; left: 13px; }
.audience-radar i:nth-child(5) { top: 76px; left: 78px; background: #0d79bb; }

.audience-filter {
  position: absolute;
  bottom: 25px;
  left: 18px;
  display: grid;
  gap: 3px;
  min-width: 105px;
  padding: 9px 11px;
  background: #fff;
  border: 1px solid #cee4f1;
  border-radius: 11px 4px 11px 11px;
  box-shadow: 0 10px 20px rgba(30, 95, 135, 0.11);
}

.audience-filter.second {
  right: 18px;
  left: auto;
}

.audience-filter span {
  color: #3989bf;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.audience-filter b {
  color: #173c55;
  font-size: 8px;
}

@keyframes audience-scan {
  to { transform: rotate(360deg); }
}

.feed-phone {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 156px;
  height: 225px;
  padding: 9px;
  overflow: hidden;
  background: #f8fcff;
  border: 1px solid #a9d6ef;
  border-radius: 22px 7px 22px 22px;
  box-shadow: 0 17px 35px rgba(2, 18, 30, 0.32);
  transform: translateX(-50%) rotate(-2deg);
}

.feed-top {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 6px;
  align-items: center;
  color: #143c56;
}

.feed-top i {
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  background: linear-gradient(145deg, #55baf1, #1a6f9f);
  border-radius: 50%;
}

.feed-top b { font-size: 6px; }
.feed-top span { color: #718d9f; font-size: 5px; }

.feed-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 128px;
  margin-top: 8px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #0c3d60, #167ba9);
  border-radius: 9px 3px 9px 9px;
}

.feed-art i {
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(159, 224, 255, 0.16);
  border: 1px solid rgba(196, 237, 255, 0.25);
  border-radius: 29px;
  transform: rotate(20deg);
}

.feed-art i:nth-child(2) {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translate(38px, 42px);
}

.feed-art strong {
  position: relative;
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.feed-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 9px 3px;
  color: #1e5273;
}

.feed-bottom > span:first-child { font-size: 12px; }
.feed-bottom > span:nth-child(2) { font-size: 6px; font-weight: 700; text-align: center; }
.feed-bottom b { font-size: 8px; }

.feed-attention {
  position: absolute;
  right: 12px;
  bottom: 26px;
  display: grid;
  gap: 2px;
  padding: 9px;
  color: #dff4ff;
  background: rgba(6, 34, 55, 0.89);
  border: 1px solid rgba(127, 207, 255, 0.26);
  border-radius: 11px 4px 11px 11px;
}

.feed-attention span {
  color: #74c7f7;
  font-size: 5px;
  letter-spacing: 0.12em;
}

.feed-attention b { font-size: 7px; }

.feed-attention i {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #58d796;
  border: 2px solid #0a395b;
  border-radius: 50%;
  animation: meta-attention-pulse 2s ease-in-out infinite;
}

@keyframes meta-attention-pulse {
  50% { box-shadow: 0 0 0 7px rgba(88, 215, 150, 0.11); }
}

.meta-contact-illustration {
  padding: 22px;
}

.meta-message,
.meta-form {
  position: relative;
  display: grid;
  gap: 5px;
  width: 84%;
  padding: 14px;
  background: #fff;
  border: 1px solid #cce2ef;
  border-radius: 14px 5px 14px 14px;
  box-shadow: 0 13px 28px rgba(21, 87, 131, 0.14);
}

.meta-message {
  animation: meta-contact-float 3.4s ease-in-out infinite;
}

.meta-form {
  margin: 14px 0 0 auto;
  animation: meta-contact-float 3.4s ease-in-out -1.7s infinite;
}

.meta-message span,
.meta-form span {
  color: #3989bf;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.meta-message b,
.meta-form b {
  color: #153d57;
  font-size: 8px;
}

.meta-message i {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 9px;
  height: 9px;
  background: #51d28d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(81, 210, 141, 0.11);
}

.meta-form i {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #fff;
  background: #2e91cd;
  border-radius: 50%;
  font-style: normal;
  font-size: 7px;
}

.meta-opportunities {
  position: absolute;
  right: 22px;
  bottom: 19px;
  left: 22px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 11px;
  border-top: 1px solid #d7e8f2;
}

.meta-opportunities small {
  flex: 1;
  color: #688da4;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.meta-opportunities strong {
  color: #1988cc;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

@keyframes meta-contact-float {
  50% { transform: translateY(-7px); }
}

.meta-step-card h3 {
  margin: 24px 0 11px;
  font-family: var(--display);
  font-size: clamp(28px, 2.2vw, 37px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.meta-step-card p {
  color: #647c8d;
  font-size: 11px;
  line-height: 1.7;
}

.meta-step-card.featured p { color: #a9c5d8; }

.meta-flow-arrow {
  position: relative;
  display: grid;
  place-items: center;
  height: 1px;
  background: #b9dcec;
}

.meta-flow-arrow i {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  background: #49a9e5;
  border-radius: 50%;
  animation: meta-flow 2.6s linear infinite;
}

.meta-flow-arrow span {
  position: absolute;
  right: -2px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #2e8dcc;
  background: #eef8ff;
  border: 1px solid #b9dcec;
  border-radius: 50%;
  font-size: 12px;
}

@keyframes meta-flow {
  to { left: calc(100% - 7px); }
}

.meta-explanation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1020px;
  margin: 42px auto 0;
}

.meta-explanation > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid #cce4f3;
  border-radius: 17px 6px 17px 17px;
}

.meta-explanation span {
  color: #2586c7;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.meta-explanation p {
  color: #60798b;
  font-size: 10px;
  line-height: 1.6;
}

.meta-plans {
  background:
    radial-gradient(circle at 14% 20%, rgba(112, 193, 247, 0.12), transparent 25%),
    #f7fbfd;
}

.meta-plan-grid .google-plan.recommended {
  border-color: #6cb9e9;
}

.meta-plan-grid .google-plan {
  overflow: hidden;
}

.meta-offer-visual {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 150px;
  margin: 0 0 18px;
  padding: 13px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(82, 181, 246, 0.2), transparent 32%),
    linear-gradient(135deg, #eef8ff, #f8fcff);
  border: 1px solid #d2e8f6;
  border-radius: 23px 7px 23px 23px;
}

.meta-offer-visual::after {
  position: absolute;
  right: -26px;
  bottom: -35px;
  width: 105px;
  height: 105px;
  background: rgba(86, 184, 244, 0.12);
  border: 1px solid rgba(72, 169, 231, 0.18);
  border-radius: 50%;
  content: "";
}

.meta-offer-story {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 122px;
  padding: 8px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 70% 30%, rgba(101, 201, 255, 0.45), transparent 30%),
    linear-gradient(155deg, #081f36, #0b5c8f);
  border: 1px solid rgba(132, 209, 255, 0.38);
  border-radius: 17px 5px 17px 17px;
  box-shadow: 0 12px 24px rgba(10, 75, 118, 0.18);
}

.meta-offer-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.meta-offer-progress i {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 99px;
}

.meta-offer-progress i:first-child {
  background: rgba(255, 255, 255, 0.88);
}

.meta-offer-progress i:nth-child(2)::after {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  content: "";
  transform: translateX(-100%);
  animation: meta-offer-progress 3.2s linear infinite;
}

.meta-offer-account {
  display: grid;
  grid-template-columns: 15px 1fr;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.meta-offer-account > i {
  grid-row: 1 / 3;
  width: 15px;
  height: 15px;
  background: linear-gradient(145deg, #8fd4ff, #2795d8);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.meta-offer-account span {
  overflow: hidden;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.meta-offer-account small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 4px;
}

.meta-offer-creative {
  position: absolute;
  right: 8px;
  bottom: 9px;
  left: 8px;
  display: grid;
  place-items: center;
  height: 72px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(94, 195, 255, 0.2)),
    #0a3454;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px 3px 10px 10px;
}

.meta-offer-creative span {
  position: relative;
  z-index: 1;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.meta-offer-creative i {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(94, 196, 255, 0.22);
  border: 1px solid rgba(152, 222, 255, 0.35);
  border-radius: 50%;
  animation: meta-offer-orbit 4.8s ease-in-out infinite;
}

.meta-offer-outcome {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 8px;
  min-width: 0;
  padding: 13px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d5e9f5;
  border-radius: 16px 5px 16px 16px;
  box-shadow: 0 10px 24px rgba(17, 91, 139, 0.08);
  animation: meta-offer-result 3.8s ease-in-out infinite;
}

.meta-offer-outcome small {
  grid-column: 1 / -1;
  color: #3e8bbd;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.meta-offer-outcome strong {
  overflow: hidden;
  color: #0b2b43;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.meta-offer-outcome > span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #fff;
  background: #278ed0;
  border-radius: 9px 3px 9px 9px;
  font-size: 9px;
  font-weight: 800;
}

.meta-offer-visual.direct-route {
  background:
    radial-gradient(circle at 82% 18%, rgba(115, 203, 255, 0.22), transparent 31%),
    linear-gradient(135deg, #e9f7ff, #f9fdff);
  border-color: #9ed7f7;
}

.meta-offer-visual.direct-route .meta-offer-outcome > span {
  background: #25b866;
}

.google-plan.dark .meta-offer-visual {
  background:
    radial-gradient(circle at 18% 20%, rgba(91, 190, 250, 0.18), transparent 30%),
    rgba(4, 28, 48, 0.5);
  border-color: rgba(131, 206, 249, 0.2);
}

.google-plan.dark .meta-offer-outcome {
  background: rgba(223, 245, 255, 0.1);
  border-color: rgba(148, 214, 253, 0.22);
}

.google-plan.dark .meta-offer-outcome small {
  color: #7bcafa;
}

.google-plan.dark .meta-offer-outcome strong {
  color: #eff9ff;
}

@keyframes meta-offer-progress {
  0% { transform: translateX(-100%); }
  72%,
  100% { transform: translateX(0); }
}

@keyframes meta-offer-orbit {
  0%,
  100% { transform: translate(-10px, 6px) scale(0.84); }
  50% { transform: translate(14px, -7px) scale(1.08); }
}

@keyframes meta-offer-result {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.meta-contact {
  background:
    radial-gradient(circle at 11% 28%, rgba(83, 184, 247, 0.16), transparent 28%),
    #071f35;
}

@media (max-width: 1180px) {
  .meta-hero {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
    gap: 45px;
  }

  .meta-journey {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
  }

  .meta-step-card {
    min-height: 570px;
  }
}

@media (max-width: 980px) {
  .meta-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 125px;
  }

  .meta-hero-copy {
    max-width: 820px;
  }

  .story-stage {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .meta-journey {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .meta-step-card,
  .meta-step-card.featured {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 340px;
    gap: 0 25px;
    transform: none;
  }

  .meta-step-head {
    grid-column: 2;
    align-self: end;
    margin-bottom: 10px;
  }

  .audience-illustration,
  .feed-illustration,
  .meta-contact-illustration {
    grid-row: 1 / span 3;
    height: 100%;
    min-height: 285px;
  }

  .meta-step-card h3,
  .meta-step-card p {
    grid-column: 2;
  }

  .meta-step-card h3 {
    margin-top: 12px;
  }

  .meta-flow-arrow {
    width: 1px;
    height: 45px;
    margin: 0 auto;
  }

  .meta-flow-arrow i {
    top: 0;
    left: -3px;
    animation: meta-flow-vertical 2.6s linear infinite;
  }

  .meta-flow-arrow span {
    right: auto;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

@keyframes meta-flow-vertical {
  to { top: calc(100% - 7px); }
}

@media (max-width: 700px) {
  .meta-hero {
    gap: 42px;
    padding: 111px 17px 64px;
  }

  .meta-hero-copy h1 {
    margin: 19px 0 22px;
    font-size: clamp(48px, 14.8vw, 69px);
  }

  .meta-hero-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .meta-hero-copy .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 27px;
  }

  .meta-hero-copy .button {
    justify-content: space-between;
    width: 100%;
  }

  .meta-hero-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    font-size: 10px;
  }

  .story-stage {
    min-height: 525px;
    padding: 15px 10px 20px;
    border-radius: 32px 10px 32px 32px;
  }

  .story-stage-top {
    margin: 0 5px;
  }

  .story-carousel {
    min-height: 465px;
    padding-top: 12px;
  }

  .story-main {
    width: 260px;
    height: 445px;
  }

  .story-preview {
    width: 185px;
    height: 345px;
  }

  .story-left { left: -122px; }
  .story-right { right: -122px; }

  .story-creative {
    height: 190px;
  }

  .meta-how,
  .meta-plans,
  .meta-contact {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .meta-journey {
    margin-top: 40px;
  }

  .meta-step-card,
  .meta-step-card.featured {
    display: block;
    min-height: 0;
    padding: 20px;
  }

  .meta-step-head {
    margin-bottom: 18px;
  }

  .audience-illustration,
  .feed-illustration,
  .meta-contact-illustration {
    height: 245px;
    min-height: 0;
  }

  .meta-step-card h3 {
    margin-top: 23px;
    font-size: 31px;
  }

  .meta-explanation {
    grid-template-columns: 1fr;
  }

  .meta-explanation > div {
    grid-template-columns: 62px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .meta-ads-page .story-main,
  .meta-ads-page .story-preview,
  .meta-ads-page .story-main .story-bars i:nth-child(2)::after,
  .meta-ads-page .creative-orbit,
  .meta-ads-page .audience-radar > span::before,
  .meta-ads-page .feed-attention i,
  .meta-ads-page .meta-message,
  .meta-ads-page .meta-form,
  .meta-ads-page .meta-flow-arrow i {
    animation: none;
  }
}

/* Página de Google Ads: de la búsqueda al contacto */
.google-ads-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(106, 187, 247, 0.16), transparent 28%),
    #f8fbfe;
}

.google-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  min-height: 820px;
  gap: clamp(48px, 6vw, 105px);
  max-width: 1680px;
  margin: 0 auto;
  padding: 128px clamp(34px, 7vw, 120px) 84px;
  overflow: hidden;
}

.google-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(34, 121, 183, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 121, 183, 0.052) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, #000 5%, transparent 94%);
}

.google-hero-copy h1 {
  max-width: 800px;
  margin: 25px 0 27px;
  font-family: var(--display);
  font-size: clamp(61px, 6.2vw, 104px);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.89;
}

.google-hero-copy h1 span,
.google-how .section-heading h2 span,
.google-case .section-heading h2 span,
.google-plans .section-heading h2 span,
.google-contact h2 span {
  color: #2688d4;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.google-hero-copy > p {
  max-width: 700px;
  color: #52697b;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
}

.google-hero-copy .hero-actions {
  margin-top: 34px;
}

.google-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 29px;
  color: #51697b;
  font-size: 11px;
  font-weight: 700;
}

.google-hero-notes span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-hero-notes i {
  width: 7px;
  height: 7px;
  background: #4db3f5;
  border: 2px solid #e6f5ff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(77, 179, 245, 0.16);
}

.google-search-scene {
  position: relative;
  min-height: 610px;
  padding: 22px 22px 100px;
  background:
    radial-gradient(circle at 50% 42%, rgba(114, 202, 255, 0.29), transparent 37%),
    linear-gradient(150deg, #062038, #0a3f65 72%, #0c527e);
  border: 1px solid rgba(125, 204, 255, 0.4);
  border-radius: 55px 16px 55px 55px;
  box-shadow:
    0 40px 90px rgba(7, 47, 78, 0.25),
    inset 0 0 0 9px rgba(255, 255, 255, 0.035);
}

.google-search-scene::before,
.google-search-scene::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.google-search-scene::before {
  top: 60px;
  right: 45px;
  width: 85px;
  height: 85px;
  border: 1px solid rgba(110, 199, 255, 0.2);
  box-shadow:
    0 0 0 35px rgba(110, 199, 255, 0.035),
    0 0 0 75px rgba(110, 199, 255, 0.025);
}

.google-search-scene::after {
  bottom: 20px;
  left: 45px;
  width: 8px;
  height: 8px;
  background: #61c0fc;
  box-shadow: 0 0 17px #61c0fc;
  animation: google-float-dot 3s ease-in-out infinite;
}

.search-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(185, 220, 242, 0.9);
  border-radius: 28px 9px 28px 28px;
  box-shadow: 0 28px 65px rgba(2, 20, 34, 0.38);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
  transition: transform 500ms ease;
}

.google-search-scene:hover .search-window {
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-4px);
}

.search-window-top {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  align-items: center;
  min-height: 43px;
  padding: 0 14px;
  color: #7790a3;
  background: #eaf3f8;
  border-bottom: 1px solid #d6e5ee;
  font-size: 8px;
  text-align: center;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  background: #76bdec;
  border-radius: 50%;
}

.window-dots i:nth-child(2) { background: #9ed4f4; }
.window-dots i:nth-child(3) { background: #c0e3f7; }

.search-page {
  position: relative;
  min-height: 455px;
  padding: 24px 35px 28px;
  color: #30383f;
  background: #fff;
}

.google-wordmark {
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.11em;
  text-align: center;
}

.google-wordmark span:nth-child(1),
.google-wordmark span:nth-child(4) { color: #4285f4; }
.google-wordmark span:nth-child(2),
.google-wordmark span:nth-child(6) { color: #ea4335; }
.google-wordmark span:nth-child(3) { color: #fbbc05; }
.google-wordmark span:nth-child(5) { color: #34a853; }

.search-query {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 450px;
  margin: 0 auto;
  padding: 10px 15px;
  border: 1px solid #d4dce2;
  border-radius: 999px;
  box-shadow: 0 3px 9px rgba(30, 60, 80, 0.08);
  font-size: 10px;
}

.search-query i {
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid #488bd7;
  border-radius: 50%;
}

.search-query i::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  content: "";
  background: #488bd7;
  border-radius: 2px;
  transform: rotate(48deg);
}

.search-count {
  max-width: 450px;
  margin: 14px auto 7px;
  color: #8b959c;
  font-size: 7px;
}

.search-result {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.promoted-result {
  z-index: 2;
  padding: 16px;
  background: #fff;
  border: 1px solid #6cbcf1;
  border-radius: 16px 5px 16px 16px;
  box-shadow: 0 12px 31px rgba(42, 134, 199, 0.18);
  animation: promoted-result-pulse 3.2s ease-in-out infinite;
}

.result-position {
  position: absolute;
  top: -15px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  color: #fff;
  background: #1688d4;
  border-radius: 8px 3px 8px 8px;
  box-shadow: 0 7px 15px rgba(25, 133, 205, 0.24);
}

.result-position span {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #1688d4;
  background: #fff;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.result-position small {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.result-site {
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-site > i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #fff;
  background: #0b5f98;
  border-radius: 50%;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
}

.result-site p {
  flex: 1;
  line-height: 1.2;
}

.result-site strong,
.result-site small {
  display: block;
}

.result-site strong { font-size: 9px; }
.result-site small { color: #68747d; font-size: 7px; }
.result-site > b { color: #68747d; }

.sponsored {
  display: block;
  margin: 9px 0 4px;
  color: #2b3338;
  font-size: 6px;
  font-weight: 700;
}

.promoted-result h2 {
  margin: 0 0 5px;
  color: #1a5cb8;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
}

.promoted-result > p {
  color: #59666e;
  font-size: 8px;
  line-height: 1.5;
}

.result-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.result-links span {
  padding: 6px 8px;
  color: #1b66b3;
  background: #edf6fd;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 700;
}

.result-glow {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 1px solid rgba(72, 173, 239, 0.35);
  border-radius: 20px 7px 20px 20px;
  animation: result-glow 2.4s ease-out infinite;
}

.muted-result {
  padding: 16px 10px 10px;
  opacity: 0.32;
  filter: blur(0.3px);
}

.muted-result .result-site > i {
  background: #c8d2d8;
}

.muted-result h3 {
  margin: 7px 0 4px;
  color: #1a5cb8;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.muted-result > p {
  color: #6e787e;
  font-size: 7px;
}

.muted-result.second {
  padding-top: 9px;
  opacity: 0.18;
}

.search-cursor {
  position: absolute;
  z-index: 4;
  top: 365px;
  right: 72px;
  width: 27px;
  height: 34px;
  animation: search-cursor-move 4.8s ease-in-out infinite;
}

.search-cursor::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #092f4c;
  clip-path: polygon(0 0, 0 100%, 27% 73%, 44% 100%, 59% 91%, 42% 65%, 78% 62%);
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.25));
}

.search-cursor span {
  position: absolute;
  top: 15px;
  left: 8px;
  width: 15px;
  height: 15px;
  border: 1px solid #65baf0;
  border-radius: 50%;
  opacity: 0;
  animation: cursor-click-ring 4.8s ease-out infinite;
}

.google-scene-caption {
  position: absolute;
  z-index: 3;
  right: 35px;
  bottom: 27px;
  left: 35px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 20px;
  padding: 15px 18px;
  color: #e9f7ff;
  background: rgba(5, 28, 47, 0.64);
  border: 1px solid rgba(121, 202, 255, 0.25);
  border-radius: 15px 5px 15px 15px;
}

.google-scene-caption span {
  color: #70c6fb;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.google-scene-caption strong {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.4;
}

@keyframes promoted-result-pulse {
  50% { box-shadow: 0 15px 42px rgba(42, 134, 199, 0.3); transform: translateY(-2px); }
}

@keyframes result-glow {
  70%, 100% { opacity: 0; transform: scale(1.035); }
}

@keyframes search-cursor-move {
  0%, 18% { transform: translate(15px, 25px); }
  45%, 66% { transform: translate(-80px, -55px); }
  82%, 100% { transform: translate(15px, 25px); }
}

@keyframes cursor-click-ring {
  0%, 43%, 58%, 100% { opacity: 0; transform: scale(0.3); }
  47% { opacity: 0.9; }
  56% { opacity: 0; transform: scale(2.3); }
}

@keyframes google-float-dot {
  50% { transform: translateY(-12px); }
}

.google-how {
  padding-top: 125px;
  padding-bottom: 115px;
  background:
    radial-gradient(circle at 48% 65%, rgba(102, 189, 248, 0.13), transparent 31%),
    #eef8ff;
}

.google-how .section-heading,
.google-case .section-heading,
.google-plans .section-heading {
  max-width: 920px;
}

.google-how .section-heading > p,
.google-case .section-heading > p,
.google-plans .section-heading > p {
  max-width: 760px;
}

.google-journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  margin-top: 62px;
}

.journey-card {
  position: relative;
  min-height: 535px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #cee4f3;
  border-radius: 33px 10px 33px 33px;
  box-shadow: 0 22px 55px rgba(18, 78, 119, 0.1);
}

.journey-card.featured {
  color: #eef9ff;
  background:
    radial-gradient(circle at 80% 12%, rgba(84, 190, 255, 0.25), transparent 25%),
    linear-gradient(150deg, #062139, #0a466e);
  border-color: rgba(113, 198, 252, 0.39);
  transform: translateY(-14px);
}

.journey-number {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  color: #217dbd;
  background: #e7f5ff;
  border: 1px solid #badef4;
  border-radius: 12px 4px 12px 12px;
  font-size: 9px;
  font-weight: 700;
}

.journey-card.featured .journey-number {
  color: #dff3ff;
  background: rgba(104, 197, 255, 0.13);
  border-color: rgba(126, 206, 255, 0.23);
}

.journey-illustration {
  position: relative;
  display: grid;
  place-items: center;
  height: 245px;
  margin-bottom: 25px;
  overflow: hidden;
  background:
    linear-gradient(rgba(46, 133, 192, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 133, 192, 0.055) 1px, transparent 1px),
    #f4faff;
  background-size: 30px 30px;
  border: 1px solid #d9eaf5;
  border-radius: 24px 7px 24px 24px;
}

.journey-card.featured .journey-illustration {
  background:
    linear-gradient(rgba(105, 197, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 197, 255, 0.09) 1px, transparent 1px),
    rgba(5, 29, 48, 0.54);
  background-size: 30px 30px;
  border-color: rgba(116, 200, 252, 0.2);
}

.mini-browser {
  width: 84%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #bcd9ea;
  border-radius: 14px 5px 14px 14px;
  box-shadow: 0 18px 35px rgba(23, 87, 128, 0.16);
  transform: rotate(-2deg);
}

.mini-browser > span {
  display: flex;
  gap: 4px;
  padding: 8px;
  background: #eaf3f8;
}

.mini-browser > span i {
  width: 5px;
  height: 5px;
  background: #72bdec;
  border-radius: 50%;
}

.mini-browser > div {
  padding: 18px;
}

.mini-browser b,
.mini-browser strong,
.mini-browser small {
  display: block;
}

.mini-browser b {
  color: #2687c9;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.mini-browser strong {
  max-width: 180px;
  margin: 10px 0;
  color: #0b2c44;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.25;
}

.mini-browser small {
  width: 75%;
  height: 4px;
  margin: 5px 0;
  background: #dce9f0;
  border-radius: 3px;
}

.mini-browser small:nth-of-type(2) { width: 55%; }

.mini-browser button {
  margin-top: 10px;
  padding: 6px 10px;
  color: #fff;
  background: #0a395a;
  border: 0;
  border-radius: 5px;
  font-size: 7px;
}

.search-illustration {
  align-content: center;
  gap: 10px;
  padding: 21px;
}

.mini-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  color: #a8c3d5;
  background: rgba(4, 24, 40, 0.72);
  border: 1px solid rgba(117, 199, 250, 0.23);
  border-radius: 999px;
  font-size: 8px;
}

.mini-search b {
  width: 14px;
  height: 14px;
  border: 2px solid #69bff6;
  border-radius: 50%;
}

.mini-ad {
  width: 100%;
  padding: 14px;
  background: #f5fbff;
  border: 1px solid #69bdf2;
  border-radius: 12px 4px 12px 12px;
  box-shadow: 0 10px 25px rgba(2, 18, 30, 0.24);
}

.mini-ad small,
.mini-ad strong,
.mini-ad span {
  display: block;
}

.mini-ad small {
  color: #334653;
  font-size: 6px;
}

.mini-ad strong {
  margin: 4px 0;
  color: #1a63b4;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.mini-ad span {
  color: #667984;
  font-size: 7px;
}

.investment-control {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  color: #92b2c6;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.investment-control div {
  position: relative;
  height: 3px;
  background: rgba(117, 200, 252, 0.22);
  border-radius: 4px;
}

.investment-control div i {
  position: absolute;
  top: -3px;
  left: 64%;
  width: 9px;
  height: 9px;
  background: #70c7fb;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(104, 198, 255, 0.8);
  animation: investment-slider 3s ease-in-out infinite;
}

.investment-control b {
  color: #d9f1ff;
  font-size: 7px;
}

@keyframes investment-slider {
  50% { left: 40%; }
}

.contacts-illustration {
  display: block;
  padding: 22px;
}

.contact-phone,
.contact-message {
  position: absolute;
  display: grid;
  padding: 13px;
  background: #fff;
  border: 1px solid #c9e0ee;
  border-radius: 14px 5px 14px 14px;
  box-shadow: 0 13px 28px rgba(21, 87, 131, 0.14);
}

.contact-phone {
  top: 35px;
  left: 26px;
  width: 53%;
  animation: contact-card-float 3.4s ease-in-out infinite;
}

.contact-message {
  top: 108px;
  right: 24px;
  width: 59%;
  animation: contact-card-float 3.4s ease-in-out -1.7s infinite;
}

.contact-phone span,
.contact-message span {
  color: #3288c4;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-phone b,
.contact-message b {
  margin-top: 6px;
  color: #0c314b;
  font-family: var(--sans);
  font-size: 10px;
}

.contact-phone i {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  background: #4bd38b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(75, 211, 139, 0.12);
}

.contact-message i {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 8px 2px 0 0;
  background: #6bbcea;
  border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}

.contact-message i:nth-of-type(2) { animation-delay: 0.2s; }
.contact-message i:nth-of-type(3) { animation-delay: 0.4s; }

.contacts-total {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #d7e8f2;
}

.contacts-total small {
  color: #6e8ca0;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.contacts-total strong {
  color: #1685ce;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 0.8;
}

.contacts-total span {
  color: #7e97a7;
  font-size: 7px;
}

@keyframes contact-card-float {
  50% { transform: translateY(-7px); }
}

@keyframes typing-dot {
  50% { opacity: 0.35; transform: translateY(-2px); }
}

.journey-label {
  color: #2c85c2;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.journey-card.featured .journey-label { color: #77c9fb; }

.journey-card h3 {
  margin: 10px 0 12px;
  font-family: var(--display);
  font-size: clamp(28px, 2.25vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.journey-card p {
  color: #647c8d;
  font-size: 11px;
  line-height: 1.7;
}

.journey-card.featured p { color: #a9c5d8; }

.journey-arrow {
  position: relative;
  display: grid;
  place-items: center;
  height: 1px;
  background: #b9dcec;
}

.journey-arrow i {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  background: #49a9e5;
  border-radius: 50%;
  animation: journey-flow 2.6s linear infinite;
}

.journey-arrow span {
  position: absolute;
  right: -2px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #2e8dcc;
  background: #eef8ff;
  border: 1px solid #b9dcec;
  border-radius: 50%;
  font-size: 12px;
}

@keyframes journey-flow {
  to { left: calc(100% - 7px); }
}

.google-investment-note {
  display: flex;
  align-items: center;
  gap: 17px;
  max-width: 920px;
  margin: 42px auto 0;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid #cce4f3;
  border-radius: 17px 6px 17px 17px;
}

.google-investment-note > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 39px;
  height: 39px;
  color: #1d80c3;
  background: #e0f2fd;
  border-radius: 12px 4px 12px 12px;
  font-family: var(--serif);
  font-size: 20px;
}

.google-investment-note p {
  color: #61798a;
  font-size: 11px;
  line-height: 1.6;
}

.google-investment-note strong { color: #113b58; }

.google-case {
  padding-top: 125px;
  padding-bottom: 125px;
}

.google-case .case-card {
  margin-top: 56px;
}

.google-plans {
  padding-top: 125px;
  padding-bottom: 115px;
  background:
    radial-gradient(circle at 85% 18%, rgba(105, 192, 250, 0.15), transparent 23%),
    #edf7fd;
}

.google-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 58px;
}

.google-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: clamp(26px, 2.8vw, 40px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #ccdfec;
  border-radius: 36px 11px 36px 36px;
  box-shadow: 0 22px 55px rgba(19, 76, 114, 0.1);
}

.google-plan.recommended {
  border-color: #55b1eb;
  box-shadow: 0 28px 65px rgba(29, 125, 188, 0.18);
  transform: translateY(-14px);
}

.google-plan.dark {
  color: #eff9ff;
  background:
    radial-gradient(circle at 82% 10%, rgba(83, 187, 254, 0.24), transparent 22%),
    linear-gradient(150deg, #061e33, #0a446b);
  border-color: rgba(121, 201, 252, 0.35);
}

.plan-recommended-label {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 7px 14px;
  color: #fff;
  background: #1989d1;
  border-radius: 999px;
  box-shadow: 0 8px 19px rgba(26, 137, 209, 0.25);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transform: translateX(-50%);
}

.google-plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 47px;
}

.google-plan-top > span {
  color: #3984b8;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.google-plan.dark .google-plan-top > span { color: #78c8f9; }

.google-plan-top > i {
  display: grid;
  place-items: center;
  min-width: 45px;
  height: 45px;
  padding: 0 9px;
  color: #197dc0;
  background: #e5f4fd;
  border-radius: 14px 5px 14px 14px;
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
}

.google-plan.dark .google-plan-top > i {
  color: #dff4ff;
  background: rgba(103, 194, 249, 0.13);
}

.google-plan h3 {
  min-height: 80px;
  margin: 27px 0 17px;
  font-family: var(--display);
  font-size: clamp(36px, 3vw, 48px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.google-plan-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-height: 57px;
}

.google-plan-price small {
  color: #2d87c5;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.google-plan-price strong {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.google-plan-price span {
  color: #71899a;
  font-size: 10px;
}

.google-plan.dark .google-plan-price span { color: #94b4c9; }

.google-plan > p {
  min-height: 89px;
  margin: 16px 0 20px;
  color: #617a8b;
  font-size: 11px;
  line-height: 1.7;
}

.google-plan.dark > p { color: #abc5d6; }

.google-plan ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 19px 0 0;
  border-top: 1px solid #d9e8f1;
  list-style: none;
}

.google-plan.dark ul { border-color: rgba(128, 203, 250, 0.17); }

.google-plan li {
  color: #425f73;
  font-size: 10px;
  line-height: 1.45;
}

.google-plan.dark li { color: #c0d7e6; }

.google-plan li::before {
  margin-right: 8px;
  color: #2589cd;
  content: "✓";
  font-weight: 700;
}

.google-plan-monthly {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding: 21px 0;
}

.google-plan-monthly span {
  color: #6d92aa;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.google-plan-monthly strong {
  font-family: var(--sans);
  font-size: 13px;
}

.google-plan > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 53px;
  padding: 0 17px;
  color: #fff;
  background: #092f4d;
  border-radius: 15px 5px 15px 15px;
  font-size: 10px;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease;
}

.google-plan.recommended > a {
  background: #208bd1;
}

.google-plan.dark > a {
  color: #0a3453;
  background: #dff3ff;
}

.google-plan > a:hover {
  background: #147fc3;
  transform: translateY(-3px);
}

.google-plan.dark > a:hover {
  background: #fff;
}

.google-plan-note {
  max-width: 850px;
  margin: 32px auto 0;
  color: #668095;
  font-size: 10px;
  line-height: 1.65;
  text-align: center;
}

.google-contact {
  background:
    radial-gradient(circle at 11% 28%, rgba(83, 184, 247, 0.16), transparent 28%),
    #071f35;
}

@media (max-width: 1180px) {
  .google-hero {
    grid-template-columns: minmax(0, 1fr) minmax(455px, 0.95fr);
    gap: 45px;
  }

  .google-journey {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
  }

  .journey-card {
    min-height: 560px;
  }
}

@media (max-width: 980px) {
  .google-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 125px;
  }

  .google-hero-copy {
    max-width: 810px;
  }

  .google-search-scene {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .google-journey {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .journey-card,
  .journey-card.featured {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 340px;
    gap: 0 25px;
    transform: none;
  }

  .journey-illustration {
    grid-row: 1 / span 4;
    height: 100%;
    min-height: 285px;
    margin: 0;
  }

  .journey-card .journey-label {
    align-self: end;
  }

  .journey-arrow {
    width: 1px;
    height: 45px;
    margin: 0 auto;
  }

  .journey-arrow i {
    top: 0;
    left: -3px;
    animation: journey-flow-vertical 2.6s linear infinite;
  }

  .journey-arrow span {
    right: auto;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .google-plan-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .google-plan,
  .google-plan.recommended {
    min-height: 0;
    transform: none;
  }

  .google-plan h3,
  .google-plan > p {
    min-height: 0;
  }
}

@keyframes journey-flow-vertical {
  to { top: calc(100% - 7px); }
}

@media (max-width: 700px) {
  .google-hero {
    gap: 42px;
    padding: 111px 17px 64px;
  }

  .google-hero-copy h1 {
    margin: 19px 0 22px;
    font-size: clamp(48px, 14.8vw, 69px);
  }

  .google-hero-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .google-hero-copy .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 27px;
  }

  .google-hero-copy .button {
    justify-content: space-between;
    width: 100%;
  }

  .google-hero-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    font-size: 10px;
  }

  .google-search-scene {
    min-height: 540px;
    padding: 15px 15px 92px;
    border-radius: 32px 10px 32px 32px;
  }

  .search-page {
    min-height: 420px;
    padding: 20px 14px;
  }

  .promoted-result {
    padding: 13px;
  }

  .promoted-result h2 {
    font-size: 12px;
  }

  .result-position small {
    display: none;
  }

  .search-cursor {
    right: 38px;
  }

  .google-scene-caption {
    right: 21px;
    bottom: 20px;
    left: 21px;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .google-how,
  .google-case,
  .google-plans,
  .google-contact {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .google-journey {
    margin-top: 40px;
  }

  .journey-card,
  .journey-card.featured {
    display: block;
    min-height: 0;
    padding: 20px;
  }

  .journey-illustration {
    height: 235px;
    min-height: 0;
    margin-bottom: 23px;
  }

  .journey-card h3 {
    font-size: 31px;
  }

  .google-investment-note {
    align-items: flex-start;
  }

  .google-case .case-card {
    margin-top: 38px;
  }

  .google-plan-grid {
    margin-top: 42px;
  }

  .google-plan {
    padding: 27px 22px 24px;
    border-radius: 27px 8px 27px 27px;
  }

  .google-plan h3 {
    margin-top: 21px;
    font-size: 39px;
  }

  .google-plan-price strong {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-ads-page .promoted-result,
  .google-ads-page .result-glow,
  .google-ads-page .search-cursor,
  .google-ads-page .search-cursor span,
  .google-ads-page .google-search-scene::after,
  .google-ads-page .investment-control div i,
  .google-ads-page .contact-phone,
  .google-ads-page .contact-message,
  .google-ads-page .contact-message i,
  .google-ads-page .journey-arrow i {
    animation: none;
  }
}

/* Rediseño original: cabecera flotante, tipografía geométrica y mapa de captación */
.site-header {
  top: 14px;
  width: min(calc(100% - 32px), 1240px);
  min-height: 68px;
  margin: 14px auto 0;
  padding: 9px 16px;
  background: rgba(250, 249, 246, 0.84);
  border: 1px solid rgba(190, 213, 232, 0.82);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(8, 43, 73, 0.08);
}

.identity-copy strong {
  font-size: 18px;
  font-weight: 700;
}

.main-nav {
  gap: 27px;
  font-size: 13px;
}

.header-cta {
  min-height: 45px;
  padding: 10px 18px;
  background: #082b49;
  border-color: #082b49;
  border-radius: 13px;
  font-size: 12px;
}

.hero {
  min-height: calc(100vh - 96px);
  padding-top: 86px;
  padding-bottom: 112px;
  background:
    linear-gradient(rgba(36, 121, 201, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 121, 201, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(164, 216, 255, 0.48), transparent 25%),
    radial-gradient(circle at 84% 40%, rgba(188, 226, 255, 0.42), transparent 31%),
    #fbfaf7;
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

.hero::before {
  position: absolute;
  top: 7%;
  right: 46%;
  width: 1px;
  height: 78%;
  content: "";
  background: linear-gradient(transparent, rgba(36, 121, 201, 0.18), transparent);
}

.hero-copy {
  width: 56%;
  max-width: 720px;
}

.hero .eyebrow {
  border-radius: 9px;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero-kicker {
  margin-top: 43px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.hero-kicker span {
  width: 44px;
  height: 2px;
}

.hero h1 {
  display: grid;
  width: min(100%, 780px);
  margin-top: 16px;
  font-size: clamp(64px, 6.7vw, 104px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 span,
.hero h1 em,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: #082b49;
}

.hero h1 em {
  width: max-content;
  max-width: 100%;
  padding-right: 0.08em;
  color: transparent;
  background: linear-gradient(92deg, #2479c9, #65baff 65%, #2479c9);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero h1 strong {
  margin-top: 0.1em;
  color: #161511;
  font-weight: 700;
}

.hero-intro {
  max-width: 570px;
  margin-top: 34px;
  padding-left: 19px;
  border-left: 3px solid #63b3ff;
  font-size: 17px;
}

.hero-actions {
  margin-top: 34px;
}

.button-dark {
  background: #082b49;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(8, 43, 73, 0.2);
}

.button-orb {
  border-radius: 8px;
}

.growth-map {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --light-x: 50%;
  --light-y: 50%;
  position: absolute;
  z-index: 3;
  top: 49%;
  right: max(24px, calc((100vw - 1240px) / 2));
  width: min(41vw, 550px);
  height: min(68vh, 610px);
  min-height: 510px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at var(--light-x) var(--light-y), rgba(99, 179, 255, 0.2), transparent 25%),
    linear-gradient(145deg, #0a3151 0%, #061f35 58%, #041827 100%);
  border: 1px solid rgba(141, 207, 255, 0.28);
  border-radius: 42px 12px 42px 42px;
  box-shadow:
    0 35px 85px rgba(8, 43, 73, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-1.4deg);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.growth-map::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 70%, rgba(99, 179, 255, 0.07));
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(140, 208, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 208, 255, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}

#growth-flow {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-heading {
  position: absolute;
  z-index: 6;
  top: 26px;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9dcff4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.map-heading b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d8f0ff;
  font-size: 8px;
}

.map-heading i {
  width: 6px;
  height: 6px;
  background: #47e28a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(71, 226, 138, 0.1), 0 0 18px rgba(71, 226, 138, 0.7);
}

.map-node {
  position: absolute;
  z-index: 7;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 13px 8px 9px;
  color: #f5fbff;
  background: rgba(8, 43, 73, 0.74);
  border: 1px solid rgba(143, 207, 255, 0.24);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 9, 18, 0.2);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 600;
  transform: translateZ(28px);
  transition: 0.25s ease;
}

.map-node b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #082b49;
  background: #7dc5ff;
  border-radius: 8px;
  font-size: 8px;
}

.map-node:hover,
.map-node:focus-visible {
  background: rgba(25, 94, 147, 0.9);
  border-color: rgba(161, 220, 255, 0.7);
  box-shadow: 0 16px 32px rgba(0, 9, 18, 0.28);
  outline: none;
  transform: translateZ(34px) translateY(-3px);
}

.node-web {
  top: 16%;
  left: 7%;
}

.node-google {
  top: 13%;
  right: 7%;
}

.node-meta {
  top: 37%;
  right: 3%;
}

.node-manychat {
  right: 8%;
  bottom: 17%;
}

.node-auto {
  bottom: 12%;
  left: 6%;
}

.node-voice {
  top: 42%;
  left: 3%;
}

.node-content {
  right: 32%;
  bottom: 5%;
}

.map-core {
  position: absolute;
  z-index: 8;
  top: 49%;
  left: 50%;
  display: grid;
  width: 178px;
  min-height: 138px;
  align-content: center;
  justify-items: center;
  padding: 19px;
  text-align: center;
  background: rgba(248, 252, 255, 0.95);
  border: 1px solid #fff;
  border-radius: 28px 8px 28px 28px;
  box-shadow:
    0 25px 60px rgba(0, 8, 17, 0.38),
    0 0 0 9px rgba(99, 179, 255, 0.06);
  transform: translate(-50%, -50%) translateZ(52px);
}

.map-core span {
  color: #2479c9;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.map-core strong {
  margin: 7px 0 3px;
  color: #082b49;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.map-core small {
  color: #658099;
  font-size: 9px;
}

.map-hint {
  position: absolute;
  z-index: 7;
  bottom: 22px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #72a9d1;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-proofbar {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(32px, calc((100vw - 1200px) / 2));
  color: #38536a;
  background: rgba(247, 250, 251, 0.9);
  border-top: 1px solid rgba(151, 194, 225, 0.45);
  backdrop-filter: blur(12px);
}

.hero-proofbar span {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 0 21px;
  border-right: 1px solid rgba(151, 194, 225, 0.35);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-proofbar span:first-child {
  border-left: 1px solid rgba(151, 194, 225, 0.35);
}

.hero-proofbar b {
  color: #2479c9;
  font-size: 8px;
}

.section-heading h2,
.method-intro h2,
.contact-copy h2 {
  font-weight: 600;
  letter-spacing: -0.06em;
}

.section-heading h2 span,
.method-intro h2 span,
.contact-copy h2 span {
  font-style: normal;
}

@media (max-width: 1120px) {
  .hero-copy {
    width: 54%;
  }

  .growth-map {
    right: -3%;
    width: 46vw;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    margin-top: 8px;
    border-radius: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(53px, 15.7vw, 78px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .growth-map {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: min(132vw, 590px);
    min-height: 500px;
    margin-top: 50px;
    border-radius: 32px 10px 32px 32px;
    transform: none;
  }

  .map-node {
    min-height: 38px;
    padding: 7px 10px 7px 7px;
    font-size: 9px;
  }

  .map-node b {
    width: 23px;
    height: 23px;
  }

  .map-core {
    width: 160px;
    min-height: 126px;
  }

  .map-core strong {
    font-size: 21px;
  }

  .hero-proofbar {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    margin: 55px -20px -54px;
    padding: 0 20px;
  }

  .hero-proofbar span {
    min-height: 52px;
    padding: 0 11px;
    border-bottom: 1px solid rgba(151, 194, 225, 0.35);
    font-size: 8.5px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 52px;
  }

  .growth-map {
    width: 108%;
    margin-left: -4%;
  }

  .map-heading {
    right: 19px;
    left: 19px;
  }

  .map-node {
    font-size: 8px;
  }

  .node-content {
    right: 29%;
  }
}

/* Segunda pasada: identidad editorial propia, SEO visual y bloques más ligeros */
:root {
  --paper: #f8fafc;
  --paper-deep: #eef5fa;
  --ink: #0b1825;
  --muted: #607184;
  --line: #d7e4ed;
  --lilac: #63b3ff;
  --lilac-light: #dff1ff;
  --lilac-pale: #f0f8ff;
  --purple: #2479c9;
  --recommended: #071f35;
  --shadow: 0 24px 70px rgba(7, 43, 73, 0.12);
}

body {
  color: var(--ink);
  background: var(--paper);
}

::selection {
  color: #fff;
  background: #2479c9;
}

:focus-visible {
  outline: 3px solid rgba(99, 179, 255, 0.72);
  outline-offset: 4px;
}

.section {
  position: relative;
  padding-top: clamp(92px, 10vw, 136px);
  padding-bottom: clamp(92px, 10vw, 136px);
}

.diagnostic,
.services,
.problems,
.case-study {
  content-visibility: auto;
  contain-intrinsic-size: auto 950px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 64px;
}

.section-heading h2,
.method-intro h2,
.contact-copy h2 {
  color: #0b1825;
  font-size: clamp(47px, 5.5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading h2 span,
.method-intro h2 span,
.contact-copy h2 span {
  color: #2479c9;
}

.section-heading > p,
.method-intro > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.eyebrow {
  border-color: rgba(36, 121, 201, 0.2);
  background: rgba(240, 248, 255, 0.82);
}

.button,
.card-button,
.floating-audit {
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

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

/* Diagnóstico: panel de revisión claro con informe técnico en contraste */
.diagnostic {
  background:
    radial-gradient(circle at 82% 26%, rgba(98, 183, 255, 0.16), transparent 26%),
    #f8fafc;
}

.audit-panel {
  position: relative;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(38px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 245, 255, 0.92)),
    #fff;
  border: 1px solid #cfe2ef;
  border-radius: 34px 10px 34px 34px;
  box-shadow: 0 28px 80px rgba(28, 88, 132, 0.1);
}

.audit-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 121, 201, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 121, 201, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.audit-copy,
.report-card {
  position: relative;
  z-index: 2;
}

.audit-tag {
  color: #1263a7;
  background: #e3f3ff;
  border-color: #b9dcf4;
}

.audit-tag span {
  background: #2479c9;
  box-shadow: 0 0 12px rgba(36, 121, 201, 0.65);
}

.audit-copy h3 {
  color: #0b1825;
  font-size: clamp(37px, 4vw, 52px);
  font-weight: 600;
}

.audit-copy h3 em {
  color: #2479c9;
  font-style: normal;
  font-weight: 600;
}

.audit-copy > p,
.check-list {
  color: #607184;
}

.check-list {
  gap: 17px;
}

.check-list li {
  grid-template-columns: 26px 1fr;
  gap: 10px;
}

.check-list li > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #0b5d99;
  background: #dff1ff;
  border-radius: 7px;
  font-size: 11px;
}

.check-list li b {
  color: #122333;
}

.audit-copy > small {
  color: #738497;
}

.report-card {
  padding: clamp(25px, 3vw, 38px);
  color: #f6fbff;
  background:
    radial-gradient(circle at 78% 12%, rgba(83, 173, 247, 0.28), transparent 28%),
    #071f35;
  border: 1px solid rgba(144, 207, 255, 0.25);
  border-radius: 30px 9px 30px 30px;
  box-shadow: 0 30px 70px rgba(7, 31, 53, 0.24);
  transform: rotate(1deg);
}

.report-top {
  color: #91b7d4;
  border-bottom-color: rgba(168, 213, 244, 0.16);
}

.report-status {
  color: #b8f4d1;
  background: rgba(52, 206, 115, 0.14);
}

.report-score strong {
  color: #7cc5ff;
}

.report-score p,
.mini-scores span {
  color: #a9bfd0;
}

.mini-scores div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.opportunity {
  background: rgba(255, 255, 255, 0.07);
  border-left-color: #63b3ff;
  box-shadow: none;
}

.opportunity span {
  color: #8dceff;
}

.opportunity p {
  color: #d8e8f3;
}

/* Servicios: composición asimétrica para evitar el aspecto de tabla clonada */
.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(103, 185, 255, 0.18), transparent 22%),
    #edf5fa;
}

.services::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44vw;
  height: 44vw;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(36, 121, 201, 0.15) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle, #000, transparent 68%);
}

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

.price-card {
  min-height: 0;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border-color: #d2e2ec;
  border-radius: 30px 10px 30px 30px;
  box-shadow: 0 14px 38px rgba(42, 90, 124, 0.055);
}

.price-card:nth-child(1) {
  grid-column: span 5;
}

.price-card:nth-child(2) {
  grid-column: span 7;
}

.price-card:nth-child(3),
.price-card:nth-child(4) {
  grid-column: span 6;
}

.price-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 15%, rgba(99, 179, 255, 0.22), transparent 25%),
    #f8fcff;
}

.price-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(225, 242, 255, 0.92));
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(24, 73, 108, 0.13);
}

.price-card.recommended {
  min-height: 0;
  margin-top: 0;
  padding: clamp(36px, 4vw, 50px);
  background:
    linear-gradient(rgba(115, 190, 244, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 190, 244, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 82% 12%, rgba(99, 179, 255, 0.3), transparent 31%),
    #071f35;
  background-size: 38px 38px, 38px 38px, auto, auto;
  border-color: #173f5f;
  border-radius: 12px 36px 36px 36px;
  box-shadow: 0 27px 70px rgba(7, 43, 73, 0.2);
}

.recommended-label {
  top: 22px;
  right: 24px;
  background: #63b3ff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(60, 153, 229, 0.2);
}

.price-icon {
  width: 53px;
  height: 53px;
  background: #e2f3ff;
  border-radius: 16px 6px 16px 16px;
}

.recommended .price-icon {
  background: rgba(99, 179, 255, 0.16);
}

.card-number {
  top: 34px;
  right: 34px;
  color: #7992a4;
}

.recommended .card-number {
  top: 67px;
  color: #7192aa;
}

.price-card h3 {
  min-height: 0;
  margin-top: 26px;
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 600;
}

.price strong {
  color: #0b1825;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 600;
}

.price-card.recommended .price strong,
.price-card.recommended h3 {
  color: #fff;
}

.price-description {
  min-height: 0;
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 14px;
}

.price-card ul {
  gap: 12px;
  padding-top: 23px;
  color: #526477;
  font-size: 13px;
}

.recommended ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  color: #d9e8f3;
  border-top-color: rgba(158, 207, 241, 0.17);
}

.maintenance {
  margin-top: 24px;
  padding: 13px 15px;
  color: #155e98;
  background: #e2f3ff;
  border-radius: 12px;
}

.recommended .maintenance {
  color: #c9e9ff;
  background: rgba(99, 179, 255, 0.14);
}

.card-button {
  border-radius: 13px;
}

.recommended .card-button {
  color: #082b49;
  background: #eaf7ff;
  border-color: #eaf7ff;
}

.price-note {
  max-width: 680px;
  line-height: 1.65;
}

.addons {
  grid-template-columns: 1.2fr repeat(3, 1fr);
  border-color: #cfe0eb;
  border-radius: 28px 9px 28px 28px;
  box-shadow: 0 15px 45px rgba(30, 82, 119, 0.06);
}

.addon-heading {
  background:
    radial-gradient(circle at 15% 15%, rgba(99, 179, 255, 0.22), transparent 35%),
    #0b2942;
}

.addons article {
  border-left-color: #d7e5ee;
}

/* Problemas: bento editorial en lugar de cuadrícula uniforme */
.problems {
  background:
    radial-gradient(circle at 88% 16%, rgba(165, 216, 255, 0.3), transparent 23%),
    #f8fafc;
}

.problem-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.problem-grid article {
  min-height: 260px;
  padding: clamp(30px, 4vw, 48px);
  background: #fff;
  border: 1px solid #d9e6ee;
  border-radius: 28px 8px 28px 28px;
  box-shadow: 0 14px 45px rgba(33, 78, 110, 0.05);
}

.problem-grid article:nth-child(1),
.problem-grid article:nth-child(4) {
  grid-column: span 7;
}

.problem-grid article:nth-child(2),
.problem-grid article:nth-child(3) {
  grid-column: span 5;
}

.problem-grid article:nth-child(1) {
  background:
    radial-gradient(circle at 88% 22%, rgba(99, 179, 255, 0.26), transparent 28%),
    #edf8ff;
}

.problem-grid article:nth-child(4) {
  color: #fff;
  background:
    linear-gradient(rgba(122, 192, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 192, 245, 0.06) 1px, transparent 1px),
    #082b49;
  background-size: 36px 36px;
  border-color: #082b49;
}

.problem-grid article:hover {
  background-color: #f0f8ff;
  transform: translateY(-3px);
}

.problem-grid article:nth-child(4):hover {
  background-color: #082b49;
}

.problem-grid article > span {
  display: inline-grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: #1768aa;
  background: #dff1ff;
  border-radius: 11px 4px 11px 11px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
}

.problem-grid article:nth-child(4) > span {
  color: #d9efff;
  background: rgba(99, 179, 255, 0.18);
}

.problem-grid h3 {
  max-width: 590px;
  margin-top: 36px;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 600;
}

.problem-grid p {
  color: #647587;
}

.problem-grid article:nth-child(4) p {
  color: #b6cede;
}

/* Método: ruta vertical, más comprensible y con personalidad */
.method {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(54px, 8vw, 110px);
  overflow: hidden;
  background:
    linear-gradient(rgba(120, 189, 241, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 189, 241, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 8% 14%, rgba(99, 179, 255, 0.22), transparent 23%),
    #061d31;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.method::after {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(99, 179, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(99, 179, 255, 0.035),
    0 0 0 140px rgba(99, 179, 255, 0.025);
}

.method-intro {
  position: relative;
  z-index: 2;
  align-self: start;
}

.method-intro h2 {
  color: #fff;
}

.method-intro > p {
  color: #a9c2d4;
}

.method-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin-top: 0;
  border: 0;
}

.method-steps::before {
  position: absolute;
  z-index: -1;
  top: 37px;
  bottom: 37px;
  left: 81px;
  width: 1px;
  content: "";
  background: linear-gradient(#63b3ff, rgba(99, 179, 255, 0.06));
}

.method-steps article {
  display: grid;
  grid-template-columns: 40px 58px 1fr;
  min-height: 0;
  align-items: center;
  gap: 17px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(163, 208, 239, 0.12);
  border-radius: 22px 7px 22px 22px;
  backdrop-filter: blur(8px);
}

.method-steps article:hover {
  background: rgba(99, 179, 255, 0.1);
  border-color: rgba(135, 202, 249, 0.28);
}

.method-steps article > strong {
  grid-column: 1;
  color: #7da6c2;
}

.step-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 16px 5px 16px 16px;
}

.method-steps h3 {
  grid-column: 3;
  margin: 0;
  font-size: 23px;
  font-weight: 600;
}

.method-steps p {
  grid-column: 3;
  margin-top: -7px;
  color: #9fb8c9;
}

/* Caso real: datos claros y visualización independiente */
.case-study {
  background:
    radial-gradient(circle at 10% 80%, rgba(99, 179, 255, 0.15), transparent 22%),
    #f8fafc;
}

.case-card {
  gap: clamp(38px, 6vw, 76px);
  padding: clamp(36px, 6vw, 72px);
  color: #0b1825;
  background:
    linear-gradient(rgba(36, 121, 201, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 121, 201, 0.045) 1px, transparent 1px),
    #eff7fc;
  background-size: 42px 42px;
  border: 1px solid #cfe1ed;
  border-radius: 38px 12px 38px 38px;
  box-shadow: 0 25px 70px rgba(35, 88, 124, 0.1);
}

.case-brand {
  color: #587185;
}

.case-brand span {
  color: #1765a4;
  background: #dcefff;
}

.case-copy h3 {
  color: #0b1825;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 600;
}

.case-copy > p {
  color: #607184;
}

.case-metrics div {
  background: rgba(255, 255, 255, 0.72);
  border-color: #d5e5ef;
}

.case-metrics span {
  color: #708395;
}

.case-metrics .metric-highlight {
  background: #2479c9;
  border-color: #2479c9;
}

.case-metrics .metric-highlight strong,
.case-metrics .metric-highlight span {
  color: #fff;
}

.case-copy > small {
  color: #718395;
}

.case-visual {
  color: #eaf7ff;
  background:
    radial-gradient(circle at 80% 12%, rgba(99, 179, 255, 0.22), transparent 27%),
    #071f35;
  border: 1px solid rgba(137, 203, 250, 0.21);
  border-radius: 29px 9px 29px 29px;
  box-shadow: 0 27px 62px rgba(7, 31, 53, 0.24);
  transform: rotate(1deg);
}

.chart-head {
  color: #b2ccde;
  border-bottom-color: rgba(181, 219, 244, 0.15);
}

.chart-head b {
  color: #d9efff;
  background: rgba(99, 179, 255, 0.15);
}

.chart {
  background-image: linear-gradient(rgba(188, 220, 241, 0.12) 1px, transparent 1px);
}

.chart span {
  background: linear-gradient(180deg, #83c9ff, #2479c9);
  box-shadow: 0 0 18px rgba(99, 179, 255, 0.15);
}

.chart-footer {
  color: #7fa1ba;
}

/* Preguntas y contacto: lectura más cómoda en móvil y escritorio */
.faq {
  grid-template-columns: 0.72fr 1.28fr;
  background: #f8fafc;
}

.faq-list {
  display: grid;
  gap: 12px;
  border: 0;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e5ed;
  border-radius: 19px 6px 19px 19px;
}

.faq-item button {
  padding: 24px 25px;
}

.faq-item button span {
  color: #132434;
  font-size: 20px;
  font-weight: 600;
}

.faq-item button b {
  width: 34px;
  height: 34px;
  color: #1768aa;
  background: #e0f2ff;
  border-radius: 11px 4px 11px 11px;
}

.faq-item.is-open {
  border-color: #b8d9ef;
  box-shadow: 0 14px 38px rgba(29, 81, 117, 0.07);
}

.faq-item.is-open .faq-answer p {
  padding: 0 72px 25px 25px;
}

.contact {
  background:
    linear-gradient(rgba(116, 190, 245, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 190, 245, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 14% 20%, rgba(99, 179, 255, 0.22), transparent 24%),
    #061d31;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p {
  color: #abc3d4;
}

.contact-direct span {
  color: #7297b0;
}

.contact-form {
  background: rgba(248, 252, 255, 0.98);
  border: 1px solid rgba(178, 220, 248, 0.42);
  border-radius: 30px 9px 30px 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #edf4f8;
  border-color: #d4e2eb;
}

.site-footer {
  background: #f8fafc;
  border-top-color: #d7e4ed;
}

.floating-audit {
  background: #082b49;
  box-shadow: 0 16px 44px rgba(8, 43, 73, 0.25);
}

.floating-audit > span {
  color: #082b49;
  background: #75c2ff;
  border-radius: 10px 4px 10px 10px;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card:nth-child(1),
  .price-card:nth-child(2),
  .price-card:nth-child(3),
  .price-card:nth-child(4) {
    grid-column: span 1;
  }

  .price-card.recommended {
    order: -1;
  }

  .recommended ul {
    grid-template-columns: 1fr;
  }

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

  .method-intro {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

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

  .audit-panel {
    grid-template-columns: 1fr;
    padding: 28px 22px 24px;
    border-radius: 28px 8px 28px 28px;
  }

  .audit-panel::before {
    width: 100%;
    height: 42%;
    mask-image: linear-gradient(transparent, #000);
  }

  .report-card {
    transform: none;
  }

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

  .price-card:nth-child(1),
  .price-card:nth-child(2),
  .price-card:nth-child(3),
  .price-card:nth-child(4) {
    grid-column: 1;
  }

  .price-card,
  .price-card.recommended {
    padding: 30px 24px;
  }

  .recommended-label {
    position: static;
    width: max-content;
    margin-bottom: 23px;
  }

  .recommended .card-number {
    top: 35px;
  }

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

  .addons article {
    min-height: 125px;
    border-top: 1px solid #d7e5ee;
    border-left: 0;
  }

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

  .problem-grid article:nth-child(1),
  .problem-grid article:nth-child(2),
  .problem-grid article:nth-child(3),
  .problem-grid article:nth-child(4) {
    grid-column: 1;
  }

  .problem-grid article {
    min-height: 0;
  }

  .method {
    gap: 44px;
  }

  .method-steps::before {
    left: 67px;
  }

  .method-steps article {
    grid-template-columns: 29px 47px 1fr;
    gap: 12px;
    padding: 19px 16px;
  }

  .step-icon {
    width: 45px;
    height: 45px;
  }

  .method-steps h3 {
    font-size: 19px;
  }

  .case-card {
    grid-template-columns: 1fr;
    padding: 29px 22px;
  }

  .case-visual {
    transform: none;
  }

  .faq-list {
    gap: 9px;
  }

  .faq-item button {
    padding: 21px 18px;
  }

  .faq-item button span {
    font-size: 17px;
  }

  .faq-item.is-open .faq-answer p {
    padding: 0 54px 22px 18px;
  }
}

@media (max-width: 430px) {
  .section-heading h2,
  .method-intro h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .audit-copy h3 {
    font-size: 34px;
  }

  .price-card h3 {
    font-size: 29px;
  }

  .price strong {
    font-size: 44px;
  }

  .method-steps article {
    grid-template-columns: 27px 42px 1fr;
    gap: 10px;
  }

  .method-steps::before {
    left: 58px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .method-steps h3 {
    font-size: 17px;
  }

  .method-steps p {
    font-size: 12px;
  }

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

/* Iteración 3: nuevo titular, analizador web y catálogo de complementos */
.main-nav {
  gap: 21px;
}

.main-nav .is-current::after {
  transform: scaleX(1);
}

.hero h1 em {
  font-size: 0.68em;
  letter-spacing: -0.065em;
}

.hero h1 .hero-ai-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-top: 25px;
  color: #173149;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(35px, 3.7vw, 57px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.hero-ai-title i {
  position: relative;
  display: inline-block;
  color: #2479c9;
  font-style: italic;
  white-space: nowrap;
}

.hero-ai-title i::after {
  position: absolute;
  right: -2%;
  bottom: -9px;
  left: -2%;
  height: 7px;
  content: "";
  background:
    linear-gradient(90deg, transparent, #63b3ff 12%, #2479c9 78%, transparent)
    center / 100% 2px no-repeat;
  filter: drop-shadow(0 3px 7px rgba(36, 121, 201, 0.28));
  transform: scaleX(0);
  transform-origin: left;
  animation: title-underline 1.15s 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-ai-title i::before {
  position: absolute;
  z-index: -1;
  right: -7px;
  bottom: 1px;
  left: -7px;
  height: 40%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(99, 179, 255, 0.18), transparent);
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0;
  animation: title-glow 1s 1.1s ease forwards;
}

@keyframes title-underline {
  to {
    transform: scaleX(1);
  }
}

@keyframes title-glow {
  to {
    opacity: 1;
  }
}

.website-analysis {
  width: min(100%, 720px);
  margin: 34px auto 0;
}

.diagnostic .section-heading.centered > p {
  max-width: 720px;
  margin: 22px auto 0;
  text-align: center;
}

.analysis-toggle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(100%, 540px);
  min-height: 62px;
  align-items: center;
  gap: 13px;
  margin: 0 auto;
  padding: 9px 12px 9px 10px;
  color: #fff;
  background: #082b49;
  border: 1px solid #082b49;
  border-radius: 17px 6px 17px 17px;
  box-shadow: 0 17px 42px rgba(8, 43, 73, 0.18);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: 0.28s ease;
}

.analysis-toggle > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  color: #082b49;
  background: #73c1ff;
  border-radius: 13px 5px 13px 13px;
}

.analysis-toggle b {
  padding: 8px 11px;
  color: #b7d9ef;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysis-toggle:hover,
.analysis-toggle[aria-expanded="true"] {
  background: #0c3b61;
  border-color: #307eb9;
  box-shadow: 0 20px 48px rgba(8, 43, 73, 0.24);
  transform: translateY(-2px);
}

.analysis-panel {
  display: block;
  width: min(100%, 650px);
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-9px);
  transition:
    max-height 0.48s ease,
    margin-top 0.42s ease,
    opacity 0.32s ease,
    transform 0.42s ease;
}

.analysis-panel.is-open {
  max-height: 190px;
  margin-top: 15px;
  opacity: 1;
  transform: translateY(0);
}

.analysis-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #cde1ee;
  border-radius: 17px 6px 17px 17px;
  box-shadow: 0 17px 44px rgba(28, 78, 113, 0.1);
}

.analysis-panel input {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: #102436;
  background: #eef5f9;
  border: 1px solid #d1e1ea;
  border-radius: 11px;
  outline: none;
}

.analysis-panel input:focus {
  background: #fff;
  border-color: #63b3ff;
  box-shadow: 0 0 0 3px rgba(99, 179, 255, 0.14);
}

.analysis-panel form button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 17px;
  color: #fff;
  background: #2479c9;
  border: 0;
  border-radius: 11px 4px 11px 11px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.analysis-panel > small {
  display: block;
  padding: 9px 12px 0;
  color: #718395;
  font-size: 10px;
  text-align: center;
}

.audit-copy .button {
  border: 0;
  cursor: pointer;
}

/* Tres opciones de web alineadas en escritorio */
.services .pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.services .price-card:nth-child(1),
.services .price-card:nth-child(2),
.services .price-card:nth-child(3),
.services .price-card:nth-child(4) {
  grid-column: auto;
}

.services .price-card,
.services .price-card.recommended {
  min-height: 690px;
  padding: 28px 23px 25px;
  border-radius: 25px 8px 25px 25px;
}

.services .price-card.recommended {
  padding-top: 52px;
}

.services .recommended ul {
  grid-template-columns: 1fr;
  gap: 11px;
}

.services .price-card h3 {
  min-height: 75px;
  font-size: 29px;
}

.services .price-description {
  min-height: 112px;
}

.services .price strong {
  font-size: 43px;
}

.services .price-card ul {
  font-size: 12px;
}

.complements-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 220px;
  align-items: end;
  gap: 40px;
  margin-top: 68px;
  padding: clamp(32px, 5vw, 58px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(122, 194, 246, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 194, 246, 0.065) 1px, transparent 1px),
    radial-gradient(circle at 86% 18%, rgba(99, 179, 255, 0.32), transparent 25%),
    #071f35;
  background-size: 38px 38px, 38px 38px, auto, auto;
  border: 1px solid #17405f;
  border-radius: 34px 10px 34px 34px;
  box-shadow: 0 26px 65px rgba(8, 43, 73, 0.16);
}

.complements-cta::after {
  position: absolute;
  top: -110px;
  right: 8%;
  width: 270px;
  height: 270px;
  content: "";
  border: 1px solid rgba(116, 194, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(99, 179, 255, 0.04),
    0 0 0 90px rgba(99, 179, 255, 0.025);
  transition: transform 0.5s ease;
}

.complements-cta:hover::after {
  transform: scale(1.08) rotate(12deg);
}

.complements-cta > div,
.complements-cta > b {
  position: relative;
  z-index: 2;
}

.complements-cta > div > span {
  color: #79c4ff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.complements-cta h3 {
  max-width: 720px;
  margin: 17px 0 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.complements-cta p {
  max-width: 650px;
  margin: 0;
  color: #a9c3d5;
}

.complements-cta > b {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 18px;
  color: #082b49;
  background: #e7f5ff;
  border-radius: 14px 5px 14px 14px;
  font-size: 12px;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.complements-cta:hover > b {
  transform: translateX(5px);
}

.complements-cta i {
  font-style: normal;
}

/* Página de complementos */
.complements-page {
  background: #f8fafc;
}

.complements-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 96px);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  padding: 120px max(32px, calc((100vw - var(--max)) / 2)) 95px;
  overflow: hidden;
  background:
    linear-gradient(rgba(36, 121, 201, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 121, 201, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 30%, rgba(99, 179, 255, 0.3), transparent 27%),
    #f8fafc;
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.complements-hero-copy {
  position: relative;
  z-index: 3;
}

.complements-hero h1 {
  margin: 28px 0 25px;
  color: #0b1825;
  font-family: var(--serif);
  font-size: clamp(55px, 6.4vw, 95px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.complements-hero h1 span {
  color: #2479c9;
}

.complements-hero-copy > p {
  max-width: 650px;
  margin: 0 0 34px;
  color: #5e7183;
  font-size: 18px;
  line-height: 1.65;
}

.complements-hero-visual {
  position: relative;
  width: min(42vw, 525px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid #c4deef;
  border-radius: 50% 18% 50% 50%;
  background:
    radial-gradient(circle, rgba(99, 179, 255, 0.22), transparent 55%),
    rgba(235, 247, 255, 0.62);
  box-shadow: 0 35px 80px rgba(33, 91, 132, 0.12);
}

.orbit {
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(36, 121, 201, 0.36);
  border-radius: 50%;
  animation: orbit-rotate 22s linear infinite;
}

.orbit-two {
  inset: 28%;
  border-style: solid;
  border-color: rgba(36, 121, 201, 0.22);
  animation-duration: 15s;
  animation-direction: reverse;
}

.orbit::after,
.orbit::before {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  background: #63b3ff;
  border: 4px solid #f4faff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(36, 121, 201, 0.52);
}

.orbit::before {
  top: 7%;
  left: 20%;
}

.orbit::after {
  right: 2%;
  bottom: 28%;
}

.orbit-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 160px;
  height: 160px;
  place-content: center;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 68% 20%, rgba(99, 179, 255, 0.35), transparent 30%),
    #071f35;
  border: 1px solid #265879;
  border-radius: 42px 12px 42px 42px;
  box-shadow: 0 27px 55px rgba(7, 31, 53, 0.28);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.orbit-core span {
  color: #9bcff2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.orbit-core strong {
  margin: -4px 0;
  color: #70beff;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 61px;
  font-weight: 400;
  line-height: 1;
}

.orbit-core small {
  color: #c3d9e8;
  font-size: 9px;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  color: #124f80;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid #c4deef;
  border-radius: 13px 5px 13px 13px;
  box-shadow: 0 13px 30px rgba(32, 82, 118, 0.1);
  font-size: 10px;
  font-weight: 700;
}

.label-ads {
  top: 12%;
  left: -3%;
}

.label-auto {
  top: 20%;
  right: -5%;
}

.label-voice {
  right: 0;
  bottom: 13%;
}

.label-content {
  bottom: 9%;
  left: 2%;
}

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

.complements-catalog {
  content-visibility: auto;
  contain-intrinsic-size: auto 1400px;
  background:
    radial-gradient(circle at 92% 8%, rgba(99, 179, 255, 0.17), transparent 22%),
    #edf5fa;
}

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

.complement-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  padding: 31px 28px 27px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d2e2ec;
  border-radius: 28px 8px 28px 28px;
  box-shadow: 0 14px 42px rgba(31, 79, 113, 0.055);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.complement-card::after {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 220px;
  height: 220px;
  content: "";
  background: radial-gradient(circle, rgba(99, 179, 255, 0.2), transparent 68%);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
}

.complement-card:hover {
  z-index: 2;
  border-color: #a9d2ec;
  box-shadow: 0 27px 68px rgba(29, 84, 123, 0.14);
  transform: translateY(-8px);
}

.complement-card:hover::after {
  opacity: 1;
  transform: translate(-34px, 34px) scale(1.15);
}

.complement-card.featured {
  color: #fff;
  background:
    linear-gradient(rgba(119, 194, 249, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 194, 249, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 84% 8%, rgba(99, 179, 255, 0.28), transparent 25%),
    #071f35;
  background-size: 36px 36px, 36px 36px, auto, auto;
  border-color: #174360;
}

.complement-card.voice-card {
  grid-column: span 2;
  background:
    radial-gradient(circle at 91% 10%, rgba(99, 179, 255, 0.25), transparent 25%),
    linear-gradient(135deg, #fff, #eaf7ff);
}

.complement-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.complement-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #1768aa;
  background: #e1f2ff;
  border-radius: 16px 5px 16px 16px;
  font-size: 17px;
  font-weight: 700;
}

.featured .complement-icon {
  color: #d8efff;
  background: rgba(99, 179, 255, 0.16);
}

.complement-top > b {
  color: #8ba0b1;
  font-size: 10px;
}

.featured .complement-top > b {
  color: #789bb4;
}

.complement-badge {
  position: absolute;
  z-index: 4;
  top: 31px;
  right: 62px;
  padding: 7px 9px;
  color: #082b49;
  background: #73c1ff;
  border-radius: 9px 3px 9px 9px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.complement-category {
  position: relative;
  z-index: 2;
  margin: 26px 0 8px;
  color: #2479c9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.featured .complement-category {
  color: #80c8ff;
}

.complement-card h3 {
  position: relative;
  z-index: 2;
  min-height: 70px;
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.complement-price {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 53px;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 17px;
}

.complement-price strong {
  font-family: var(--serif);
  font-size: 41px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.complement-price small,
.complement-price span {
  color: #718395;
  font-size: 10px;
}

.featured .complement-price small,
.featured .complement-price span {
  color: #a9c4d7;
}

.complement-card > p:not(.complement-category) {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: #607184;
  font-size: 13px;
  line-height: 1.6;
}

.featured > p:not(.complement-category) {
  color: #bfd3e2;
}

.complement-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid #dce7ee;
  list-style: none;
  color: #4e6476;
  font-size: 12px;
}

.complement-card li::before {
  margin-right: 8px;
  color: #2479c9;
  content: "✓";
  font-weight: 800;
}

.featured ul {
  color: #d4e5f0;
  border-top-color: rgba(174, 214, 241, 0.16);
}

.featured li::before {
  color: #78c5ff;
}

.case-dependent {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 15px;
  color: #7c8d9b;
  font-size: 9px;
}

.featured .case-dependent {
  color: #819eb2;
}

.complement-card > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 13px 15px;
  color: #14354f;
  background: #eef7fd;
  border: 1px solid #d1e5f2;
  border-radius: 12px 4px 12px 12px;
  font-size: 11px;
  font-weight: 700;
  transition: 0.27s ease;
}

.complement-card > a:hover {
  color: #fff;
  background: #2479c9;
  border-color: #2479c9;
}

.featured > a {
  color: #082b49;
  background: #e7f5ff;
  border-color: #e7f5ff;
}

.complements-final {
  color: #fff;
  background:
    linear-gradient(rgba(120, 191, 244, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 191, 244, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 80% 22%, rgba(99, 179, 255, 0.24), transparent 25%),
    #061d31;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.complements-final > div {
  max-width: 900px;
}

.complements-final h2 {
  margin: 26px 0 20px;
  font-family: var(--serif);
  font-size: clamp(47px, 6vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.complements-final h2 span {
  color: #73c1ff;
}

.complements-final p {
  max-width: 680px;
  color: #acc4d5;
  font-size: 17px;
}

.light-link {
  color: #e3f3ff;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 15px;
    font-size: 12px;
  }

  .services .price-card,
  .services .price-card.recommended {
    min-height: 640px;
  }

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

  .complement-card.voice-card {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  .hero h1 .hero-ai-title {
    margin-top: 20px;
    font-size: clamp(31px, 8.8vw, 44px);
  }

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

  .analysis-panel form button {
    justify-content: space-between;
  }

  .complements-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .complements-cta > b {
    width: max-content;
    max-width: 100%;
  }

  .complements-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 100px 20px 80px;
  }

  .complements-hero h1 {
    font-size: clamp(51px, 14vw, 74px);
  }

  .complements-hero-visual {
    width: min(100%, 520px);
    justify-self: center;
  }

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

  .complement-card {
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .services .pricing-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: min(86vw, 340px);
    grid-auto-flow: column;
    gap: 13px;
    margin-right: -20px;
    margin-left: -20px;
    padding: 8px 20px 23px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: #83bce5 transparent;
  }

  .services .price-card,
  .services .price-card.recommended {
    min-height: 650px;
    scroll-snap-align: start;
  }

  .services .price-card.recommended {
    order: initial;
  }
}

/* Página de automatizaciones: sistemas visuales centrados en recuperar tiempo */
.automation-page {
  background:
    radial-gradient(circle at 83% 10%, rgba(112, 192, 255, 0.17), transparent 28%),
    linear-gradient(180deg, #f9fcff 0%, #f4faff 42%, #f8fbfd 100%);
}

.automation-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  min-height: 790px;
  gap: clamp(44px, 6vw, 110px);
  max-width: 1680px;
  margin: 0 auto;
  padding: 128px clamp(34px, 7vw, 120px) 82px;
  overflow: hidden;
}

.automation-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(45, 124, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 124, 183, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 92%);
}

.automation-hero-copy h1 {
  max-width: 780px;
  margin: 25px 0 27px;
  font-family: var(--display);
  font-size: clamp(62px, 6.2vw, 106px);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.automation-hero-copy h1 span,
.automation-catalog .section-heading h2 span,
.automation-process .section-heading h2 span,
.automation-diagnostic h2 span {
  color: #2588d7;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.automation-hero-copy > p {
  max-width: 670px;
  color: #52697c;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.7;
}

.automation-hero-copy .hero-actions {
  margin-top: 34px;
}

.automation-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 29px;
  color: #50677a;
  font-size: 12px;
  font-weight: 700;
}

.automation-hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.automation-hero-proof i {
  width: 7px;
  height: 7px;
  background: #51b5fa;
  border: 2px solid #e6f5ff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(81, 181, 250, 0.16);
}

.automation-machine {
  position: relative;
  min-height: 565px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(74, 174, 246, 0.24), transparent 34%),
    linear-gradient(145deg, #071f35, #0a385b 72%, #0a4771);
  border: 1px solid rgba(130, 205, 255, 0.4);
  border-radius: 54px 16px 54px 54px;
  box-shadow:
    0 40px 90px rgba(7, 47, 78, 0.24),
    inset 0 0 0 9px rgba(255, 255, 255, 0.035);
}

.automation-machine::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(109, 198, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 198, 255, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 25%, transparent 85%);
}

.machine-status {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  color: #cdeaff;
  background: rgba(5, 29, 49, 0.68);
  border: 1px solid rgba(132, 205, 255, 0.22);
  border-radius: 13px 5px 13px 13px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.machine-status span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.machine-status i {
  width: 8px;
  height: 8px;
  background: #55db9a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 219, 154, 0.12), 0 0 16px #55db9a;
  animation: machine-pulse 1.8s ease-in-out infinite;
}

.machine-status b {
  padding: 5px 8px;
  color: #071f35;
  background: #7cc9ff;
  border-radius: 6px;
  letter-spacing: 0.08em;
}

.machine-workflow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 140px minmax(170px, 1fr) 150px;
  align-items: center;
  min-height: 360px;
}

.machine-node {
  position: relative;
  z-index: 3;
  padding: 16px;
  color: #eff9ff;
  background: rgba(5, 27, 46, 0.82);
  border: 1px solid rgba(129, 203, 255, 0.32);
  border-radius: 18px 6px 18px 18px;
  box-shadow: 0 17px 38px rgba(2, 17, 29, 0.28);
}

.machine-node span {
  display: block;
  margin-bottom: 20px;
  color: #69bfff;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.machine-node strong,
.machine-node small {
  display: block;
}

.machine-node strong {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.25;
}

.machine-node small {
  margin-top: 5px;
  color: #87a7bd;
  font-size: 10px;
  line-height: 1.4;
}

.machine-connector {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 30%;
  height: 1px;
  overflow: hidden;
  background: rgba(108, 194, 251, 0.34);
}

.machine-connector-in {
  left: 18%;
}

.machine-connector-out {
  right: 19%;
}

.machine-connector i {
  position: absolute;
  top: -3px;
  left: -8px;
  width: 7px;
  height: 7px;
  background: #87d2ff;
  border-radius: 50%;
  box-shadow: 0 0 13px #71c8ff;
  animation: machine-data 2.4s linear infinite;
}

.machine-connector-out i {
  animation-delay: 1.2s;
}

.automation-gears {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 220px;
  height: 220px;
}

.automation-gears::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px dashed rgba(128, 207, 255, 0.38);
  border-radius: 50%;
  animation: gear-spin 18s linear infinite;
}

.automation-gear {
  position: absolute;
  border-radius: 50%;
  filter: drop-shadow(0 12px 25px rgba(30, 144, 218, 0.28));
}

.automation-gear::before,
.automation-gear::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.gear-large {
  top: 34px;
  left: 27px;
  width: 128px;
  height: 128px;
  background: repeating-conic-gradient(from 0deg, #55b7f7 0deg 10deg, transparent 10deg 27deg);
  animation: gear-spin 8s linear infinite;
}

.gear-large::before {
  inset: 17px;
  background: #0b3555;
  border: 12px solid #4daae7;
  box-shadow: inset 0 0 24px rgba(96, 194, 255, 0.24);
}

.gear-large::after {
  inset: 52px;
  background: #8bd2ff;
  box-shadow: 0 0 20px rgba(100, 199, 255, 0.76);
}

.gear-small {
  right: 28px;
  bottom: 30px;
  width: 88px;
  height: 88px;
  background: repeating-conic-gradient(from 0deg, #8ed6ff 0deg 14deg, transparent 14deg 36deg);
  animation: gear-spin-reverse 6s linear infinite;
}

.gear-small::before {
  inset: 12px;
  background: #0b3555;
  border: 9px solid #79c9f7;
}

.gear-small::after {
  inset: 35px;
  background: #c8ecff;
  box-shadow: 0 0 18px rgba(128, 208, 255, 0.72);
}

.gear-label {
  position: absolute;
  z-index: 5;
  top: 90px;
  left: 55px;
  color: #d7f0ff;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.machine-result {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: #dff4ff;
  background: rgba(116, 202, 255, 0.1);
  border: 1px solid rgba(132, 207, 255, 0.26);
  border-radius: 18px 6px 18px 18px;
}

.machine-result > span {
  color: #77c8fb;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.machine-result strong {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
}

.machine-result div {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 5px;
  height: 35px;
}

.machine-result div i {
  width: 7px;
  height: 40%;
  background: linear-gradient(to top, #3b9ee1, #90d7ff);
  border-radius: 3px 3px 1px 1px;
  animation: machine-bars 2.2s ease-in-out infinite;
}

.machine-result div i:nth-child(2) { height: 58%; animation-delay: -0.35s; }
.machine-result div i:nth-child(3) { height: 78%; animation-delay: -0.7s; }
.machine-result div i:nth-child(4) { height: 65%; animation-delay: -1.05s; }
.machine-result div i:nth-child(5) { height: 100%; animation-delay: -1.4s; }

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

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

@keyframes machine-data {
  to { left: calc(100% + 8px); }
}

@keyframes machine-pulse {
  50% { opacity: 0.55; transform: scale(0.82); }
}

@keyframes machine-bars {
  50% { transform: scaleY(0.64); transform-origin: bottom; }
}

.automation-catalog {
  padding-top: 125px;
  padding-bottom: 125px;
  background:
    radial-gradient(circle at 85% 12%, rgba(116, 198, 255, 0.19), transparent 23%),
    #eef8ff;
}

.automation-catalog .section-heading,
.automation-process .section-heading {
  max-width: 920px;
}

.automation-catalog .section-heading > p,
.automation-process .section-heading > p {
  max-width: 760px;
}

.automation-offers-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(330px, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 58px;
}

.custom-automation-card,
.manychat-card {
  border-radius: 38px 11px 38px 38px;
  box-shadow: 0 26px 65px rgba(16, 73, 111, 0.11);
}

.custom-automation-card {
  padding: clamp(27px, 3vw, 45px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #cfe5f4;
}

.automation-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9eaf5;
}

.automation-card-head > div:first-child {
  max-width: 610px;
}

.automation-card-head > div:first-child > span,
.manychat-card-head > span {
  color: #2b87ca;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.automation-card-head h3,
.manychat-card h3 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.1vw, 50px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.automation-price {
  min-width: 120px;
  text-align: right;
}

.automation-price small,
.automation-price span,
.automation-price strong {
  display: block;
}

.automation-price small {
  color: #6790ad;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.automation-price strong {
  margin: 3px 0 0;
  color: #0a3150;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
}

.automation-price span {
  color: #7890a1;
  font-size: 9px;
}

.automation-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.automation-tile {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  min-height: 160px;
  padding: 20px;
  background: #f7fbfe;
  border: 1px solid #daeaf4;
  border-radius: 20px 6px 20px 20px;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.automation-tile:hover {
  background: #fff;
  border-color: #9ed2f2;
  box-shadow: 0 14px 30px rgba(27, 103, 153, 0.1);
  transform: translateY(-4px);
}

.automation-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #2185ce;
  background: #e3f4ff;
  border-radius: 14px 5px 14px 14px;
}

.automation-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.automation-tile small {
  color: #3186c2;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.automation-tile h4 {
  margin: 7px 0 7px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.25;
}

.automation-tile p {
  color: #657d8f;
  font-size: 11px;
  line-height: 1.6;
}

.automation-card-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 28px;
}

.automation-card-footer p {
  max-width: 540px;
  color: #71899a;
  font-size: 10px;
  line-height: 1.65;
}

.manychat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(27px, 3vw, 42px);
  overflow: hidden;
  color: #eff9ff;
  background:
    radial-gradient(circle at 83% 12%, rgba(79, 187, 255, 0.27), transparent 26%),
    linear-gradient(155deg, #061e32, #093c60 72%, #09517d);
  border: 1px solid rgba(128, 206, 255, 0.36);
}

.manychat-orbit {
  position: absolute;
  top: -85px;
  right: -70px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(124, 204, 255, 0.17);
  border-radius: 50%;
}

.manychat-orbit::before,
.manychat-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(124, 204, 255, 0.16);
  border-radius: 50%;
}

.manychat-orbit::before { inset: 35px; }
.manychat-orbit::after { inset: 72px; }

.manychat-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #67c6ff;
  border-radius: 50%;
  box-shadow: 0 0 15px #55b9f7;
}

.manychat-orbit i:nth-child(2) { top: 47px; left: 27px; }
.manychat-orbit i:nth-child(3) { right: 50px; bottom: 34px; }
.manychat-orbit i:nth-child(4) { top: 116px; left: 104px; }

.manychat-card-head,
.manychat-demo,
.manychat-card > ul,
.manychat-card-footer {
  position: relative;
  z-index: 2;
}

.manychat-card-head > span {
  color: #83ceff;
}

.manychat-card h3 {
  margin-top: 16px;
  font-size: clamp(36px, 3.1vw, 50px);
}

.manychat-card-head p {
  margin-top: 20px;
  color: #a9c4d7;
  font-size: 13px;
  line-height: 1.7;
}

.manychat-demo {
  display: grid;
  gap: 9px;
  margin: 32px 0 27px;
  padding: 15px;
  background: rgba(5, 27, 45, 0.63);
  border: 1px solid rgba(124, 201, 251, 0.22);
  border-radius: 19px 6px 19px 19px;
}

.manychat-demo > div {
  max-width: 86%;
  padding: 10px 12px;
  background: rgba(130, 207, 255, 0.1);
  border-radius: 11px 4px 11px 11px;
}

.manychat-demo > div:nth-child(2) {
  justify-self: end;
  background: #dff3ff;
  color: #092f4b;
  border-radius: 4px 11px 11px 11px;
}

.manychat-demo small {
  display: block;
  margin-bottom: 3px;
  color: #76c4f4;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.manychat-demo > div:nth-child(2) small {
  color: #3187c4;
}

.manychat-demo p {
  font-size: 10px;
  line-height: 1.45;
}

.manychat-demo > span {
  color: #779eb8;
  font-size: 7px;
  text-align: center;
}

.manychat-card > ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.manychat-card > ul li {
  padding-bottom: 11px;
  color: #c3d9e8;
  border-bottom: 1px solid rgba(132, 204, 250, 0.14);
  font-size: 11px;
}

.manychat-card > ul li::before {
  margin-right: 9px;
  color: #72c7fb;
  content: "✓";
  font-weight: 700;
}

.manychat-card-footer {
  display: grid;
  gap: 19px;
  margin-top: auto;
  padding-top: 35px;
}

.manychat-card-footer > div small,
.manychat-card-footer > div strong {
  display: block;
}

.manychat-card-footer > div small {
  color: #82b4d4;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.manychat-card-footer > div strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
}

.automation-process {
  padding-top: 130px;
  padding-bottom: 135px;
  background: #fff;
}

.automation-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 65px;
}

.automation-process-step {
  position: relative;
  min-width: 0;
  padding: 0 20px;
}

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

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

.automation-process-step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #1679bc;
  background: #e8f6ff;
  border: 1px solid #b8def4;
  border-radius: 14px 4px 14px 14px;
  font-size: 10px;
  font-weight: 700;
}

.process-line {
  position: absolute;
  top: 21px;
  right: -5px;
  left: 62px;
  height: 1px;
  overflow: hidden;
  background: #cce4f3;
}

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

.process-line i {
  position: absolute;
  top: -3px;
  left: -8px;
  width: 7px;
  height: 7px;
  background: #3fa4e4;
  border-radius: 50%;
  animation: machine-data 4s linear infinite;
}

.automation-process-step:nth-child(2) .process-line i { animation-delay: -0.8s; }
.automation-process-step:nth-child(3) .process-line i { animation-delay: -1.6s; }
.automation-process-step:nth-child(4) .process-line i { animation-delay: -2.4s; }

.automation-process-step h3 {
  margin: 25px 0 10px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.25;
}

.automation-process-step p {
  color: #687f90;
  font-size: 11px;
  line-height: 1.7;
}

.automation-diagnostic {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(45px, 8vw, 130px);
  padding-top: 100px;
  padding-bottom: 100px;
  color: #eff9ff;
  background:
    radial-gradient(circle at 86% 15%, rgba(77, 185, 255, 0.25), transparent 24%),
    linear-gradient(145deg, #061d31, #083b5e);
}

.automation-diagnostic h2 {
  margin: 24px 0 22px;
  font-family: var(--display);
  font-size: clamp(49px, 5.4vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.automation-diagnostic-copy > p {
  max-width: 690px;
  color: #a9c4d6;
  font-size: 15px;
  line-height: 1.75;
}

.automation-diagnostic-copy .button {
  margin-top: 29px;
}

.automation-fit {
  padding: 32px;
  background: rgba(5, 28, 47, 0.58);
  border: 1px solid rgba(127, 205, 255, 0.24);
  border-radius: 30px 8px 30px 30px;
}

.automation-fit > span {
  display: block;
  padding-bottom: 20px;
  color: #7ecbfa;
  border-bottom: 1px solid rgba(122, 199, 248, 0.17);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.automation-fit > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(122, 199, 248, 0.14);
}

.automation-fit > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.automation-fit b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #78caff;
  background: rgba(105, 197, 255, 0.09);
  border: 1px solid rgba(130, 207, 255, 0.2);
  border-radius: 11px 4px 11px 11px;
  font-size: 9px;
}

.automation-fit strong,
.automation-fit small {
  display: block;
}

.automation-fit strong {
  font-family: var(--sans);
  font-size: 14px;
}

.automation-fit small {
  margin-top: 5px;
  color: #91afc4;
  font-size: 10px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .automation-hero {
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.95fr);
    gap: 45px;
  }

  .machine-workflow {
    grid-template-columns: 125px minmax(160px, 1fr) 135px;
  }

  .automation-offers-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(310px, 0.85fr);
  }

  .automation-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 0;
  }

  .automation-process-step:nth-child(3) .process-line,
  .automation-process-step:last-child .process-line {
    display: none;
  }
}

@media (max-width: 980px) {
  .automation-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 125px;
  }

  .automation-hero-copy {
    max-width: 790px;
  }

  .automation-machine {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .automation-offers-grid {
    grid-template-columns: 1fr;
  }

  .manychat-card {
    min-height: 690px;
  }

  .automation-diagnostic {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .automation-hero {
    gap: 38px;
    padding: 111px 21px 64px;
  }

  .automation-hero-copy h1 {
    margin: 19px 0 22px;
    font-size: clamp(44px, 12.2vw, 54px);
    letter-spacing: -0.062em;
    line-height: 0.92;
  }

  .automation-hero-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .automation-hero-copy .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 27px;
  }

  .automation-hero-copy .button {
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    gap: 12px;
    padding: 11px 16px;
    font-size: 12.5px;
    line-height: 1.3;
    text-align: left;
  }

  .automation-hero-copy .button span {
    flex: 0 0 auto;
  }

  .automation-hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    font-size: 10px;
  }

  .automation-machine {
    width: calc(100% - 8px);
    min-height: 500px;
    margin-right: auto;
    margin-left: auto;
    padding: 16px;
    border-radius: 32px 10px 32px 32px;
  }

  .machine-workflow {
    grid-template-columns: 1fr 1fr;
    min-height: 330px;
    gap: 170px 12px;
    padding-top: 28px;
  }

  .automation-gears {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
  }

  .gear-large {
    width: 110px;
    height: 110px;
  }

  .gear-small {
    width: 75px;
    height: 75px;
  }

  .gear-large::after {
    inset: 45px;
  }

  .gear-small::after {
    inset: 30px;
  }

  .gear-label {
    top: 79px;
    left: 50px;
  }

  .machine-node {
    padding: 13px;
  }

  .machine-node span {
    margin-bottom: 13px;
  }

  .machine-node strong {
    font-size: 12px;
  }

  .machine-connector {
    top: 50%;
    width: 45%;
  }

  .machine-connector-in {
    left: 4%;
  }

  .machine-connector-out {
    right: 4%;
  }

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

  .machine-result div {
    display: none;
  }

  .automation-catalog,
  .automation-process,
  .automation-diagnostic {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .automation-offers-grid {
    margin-top: 38px;
  }

  .custom-automation-card,
  .manychat-card {
    border-radius: 27px 8px 27px 27px;
  }

  .automation-card-head {
    display: grid;
    gap: 22px;
  }

  .automation-price {
    text-align: left;
  }

  .automation-tile-grid {
    grid-template-columns: 1fr;
  }

  .automation-tile {
    min-height: 0;
  }

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

  .automation-card-footer .button,
  .manychat-card-footer .button {
    justify-content: space-between;
    width: 100%;
  }

  .manychat-card {
    min-height: 650px;
  }

  .automation-process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 44px;
  }

  .automation-process-step,
  .automation-process-step:first-child,
  .automation-process-step:last-child {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 0 17px;
    padding: 0 0 32px;
  }

  .automation-process-step h3 {
    align-self: center;
    margin: 0;
  }

  .automation-process-step p {
    grid-column: 2;
    margin-top: 10px;
  }

  .process-line,
  .automation-process-step:nth-child(3) .process-line,
  .automation-process-step:last-child .process-line {
    top: 47px;
    right: auto;
    bottom: 0;
    left: 21px;
    display: block;
    width: 1px;
    height: auto;
  }

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

  .process-line i {
    top: -8px;
    left: -3px;
    animation: machine-data-vertical 3s linear infinite;
  }

  .automation-diagnostic {
    gap: 42px;
  }

  .automation-diagnostic h2 {
    font-size: 49px;
  }

  .automation-fit {
    padding: 23px;
  }
}

@keyframes machine-data-vertical {
  to { top: calc(100% + 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .automation-page .automation-gear,
  .automation-page .automation-gears::before,
  .automation-page .machine-connector i,
  .automation-page .machine-status i,
  .automation-page .machine-result div i,
  .automation-page .process-line i {
    animation: none;
  }
}

/* Landing SEO de diseño web */
.web-design-page {
  background: #f8fafc;
}

.web-design-page .site-header {
  backdrop-filter: blur(18px);
}

.web-design-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  min-height: 760px;
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
  padding: 112px max(32px, calc((100vw - var(--max)) / 2)) 72px;
  overflow: hidden;
  background:
    linear-gradient(rgba(36, 121, 201, 0.044) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 121, 201, 0.044) 1px, transparent 1px),
    radial-gradient(circle at 84% 30%, rgba(99, 179, 255, 0.26), transparent 27%),
    #f8fafc;
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.web-design-hero::before {
  position: absolute;
  top: -90px;
  left: -110px;
  width: 420px;
  height: 420px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(125, 205, 255, 0.14), transparent 67%);
}

.web-design-hero-copy {
  position: relative;
  z-index: 3;
}

.web-design-hero h1 {
  margin: 22px 0 24px;
  color: #0b1825;
  font-family: var(--serif);
  font-size: clamp(62px, 7.2vw, 104px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.web-design-hero h1 span {
  color: #2479c9;
  font-style: italic;
  font-weight: 400;
}

.web-design-hero-copy > p {
  max-width: 680px;
  margin: 0 0 30px;
  color: #576c7f;
  font-size: 17px;
  line-height: 1.7;
}

.web-design-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.web-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 27px;
  color: #567083;
  font-size: 11px;
  font-weight: 600;
}

.web-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.web-hero-proof b {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #0d659f;
  background: #dff2ff;
  border-radius: 50%;
  font-size: 9px;
}

.web-demo {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 16%, rgba(112, 198, 255, 0.29), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(225, 243, 255, 0.86));
  border: 1px solid #bddbee;
  border-radius: 48px 14px 48px 48px;
  box-shadow: 0 32px 78px rgba(21, 73, 110, 0.15);
  isolation: isolate;
}

.web-demo::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.57) 45%, transparent 68%);
  transform: translateX(-120%);
  animation: web-demo-shine 6.5s ease-in-out infinite;
}

.web-demo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 129, 191, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 129, 191, 0.065) 1px, transparent 1px);
  background-size: 35px 35px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.web-demo-label {
  position: absolute;
  z-index: 4;
  top: 26px;
  left: 29px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2b668e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.web-demo-label i {
  width: 7px;
  height: 7px;
  background: #3ca5ec;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(60, 165, 236, 0.11);
}

.web-demo-browser {
  position: absolute;
  z-index: 3;
  top: 90px;
  right: 50%;
  width: min(76%, 420px);
  overflow: hidden;
  background: #fff;
  border: 1px solid #bdd6e6;
  border-radius: 23px 7px 23px 23px;
  box-shadow: 0 28px 60px rgba(22, 70, 102, 0.19);
  transform: translateX(50%) rotate(-1.8deg);
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.web-demo:hover .web-demo-browser {
  transform: translateX(50%) rotate(0deg) translateY(-6px);
}

.browser-top {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  background: #eaf3f8;
  border-bottom: 1px solid #d7e5ed;
}

.browser-top > span {
  width: 7px;
  height: 7px;
  background: #a9bdca;
  border-radius: 50%;
}

.browser-top > span:first-child {
  background: #6fc1f8;
}

.browser-top > div {
  flex: 1;
  margin-left: 7px;
  padding: 6px 10px;
  color: #6b8190;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 7px;
  font-size: 7px;
}

.browser-content {
  min-height: 275px;
  padding: 29px 27px 25px;
  background:
    radial-gradient(circle at 90% 12%, rgba(99, 179, 255, 0.19), transparent 27%),
    #fbfdff;
}

.browser-content > small {
  color: #2174b6;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.browser-content > strong {
  display: block;
  margin: 18px 0 12px;
  color: #0a1c2b;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.browser-content > p {
  width: 75%;
  margin: 0;
  color: #607587;
  font-size: 8px;
  line-height: 1.55;
}

.browser-buttons {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}

.browser-buttons span {
  padding: 8px 10px;
  color: #fff;
  background: #082b49;
  border-radius: 8px 3px 8px 8px;
  font-size: 7px;
  font-weight: 700;
}

.browser-buttons span:last-child {
  color: #0e6e3a;
  background: #dff8e9;
}

.browser-lines {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 6px;
  margin-top: 25px;
}

.browser-lines i {
  height: 35px;
  background: linear-gradient(135deg, #e6f2f9, #d7ebf7);
  border-radius: 8px 3px 8px 8px;
}

.web-demo-source {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
  padding: 13px 14px;
  color: #274c67;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #c4deef;
  border-radius: 15px 5px 15px 15px;
  box-shadow: 0 15px 34px rgba(27, 76, 108, 0.12);
  animation: web-float 4.8s ease-in-out infinite;
}

.web-demo-source span {
  grid-row: span 2;
  align-self: center;
  color: #2685c9;
  font-family: var(--serif);
  font-size: 18px;
}

.web-demo-source b {
  font-size: 10px;
}

.web-demo-source small {
  color: #758b9b;
  font-size: 7px;
}

.source-search {
  top: 128px;
  left: 4%;
}

.source-contact {
  right: 3%;
  bottom: 105px;
  animation-delay: -2.2s;
}

.web-demo-pulse {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  background: #58b6f6;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(88, 182, 246, 0.13);
  animation: web-pulse-move 4s ease-in-out infinite;
}

.pulse-one {
  top: 185px;
  left: 24%;
}

.pulse-two {
  right: 21%;
  bottom: 155px;
  animation-delay: -2s;
}

.web-demo-caption {
  position: absolute;
  z-index: 4;
  right: 29px;
  bottom: 25px;
  left: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 16px;
  color: #fff;
  background: #071f35;
  border-radius: 15px 5px 15px 15px;
  box-shadow: 0 17px 35px rgba(7, 31, 53, 0.19);
}

.web-demo-caption span {
  color: #84cbfb;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.web-demo-caption strong {
  font-size: 10px;
}

@keyframes web-demo-shine {
  0%,
  40% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes web-float {
  50% {
    transform: translateY(-7px);
  }
}

@keyframes web-pulse-move {
  50% {
    opacity: 0.45;
    transform: scale(1.35);
  }
}

.web-value {
  background:
    radial-gradient(circle at 8% 12%, rgba(99, 179, 255, 0.15), transparent 22%),
    #edf5fa;
}

.web-value .section-heading > p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.web-journey {
  display: grid;
  grid-template-columns: 1fr 70px 1.08fr 70px 1fr;
  align-items: center;
  gap: 13px;
}

.web-journey article {
  position: relative;
  min-height: 310px;
  padding: 31px 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #cfe1ec;
  border-radius: 29px 9px 29px 29px;
  box-shadow: 0 16px 43px rgba(28, 79, 113, 0.07);
  transition: 0.32s ease;
}

.web-journey article:hover {
  border-color: #9cccec;
  box-shadow: 0 25px 58px rgba(28, 79, 113, 0.14);
  transform: translateY(-6px);
}

.web-journey .journey-featured {
  min-height: 350px;
  color: #fff;
  background:
    radial-gradient(circle at 83% 12%, rgba(99, 179, 255, 0.31), transparent 29%),
    #071f35;
  border-color: #1e4d6c;
  box-shadow: 0 27px 64px rgba(7, 31, 53, 0.21);
}

.journey-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin-bottom: 42px;
  color: #1d78b9;
  background: #e1f2ff;
  border-radius: 17px 6px 17px 17px;
  font-size: 22px;
}

.journey-featured .journey-icon {
  color: #c3e8ff;
  background: rgba(99, 179, 255, 0.16);
}

.web-journey article > span {
  color: #2378b7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.journey-featured > span {
  color: #7cc6f8 !important;
}

.web-journey h3 {
  margin: 13px 0 12px;
  font-family: var(--serif);
  font-size: 35px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.web-journey p {
  margin: 0;
  color: #607486;
  font-size: 12px;
  line-height: 1.7;
}

.journey-featured p {
  color: #b7cedd;
}

.journey-arrow {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: center;
  place-items: center;
}

.journey-arrow i {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #89c6ec 20%, #89c6ec 80%, transparent);
}

.journey-arrow b {
  position: relative;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: visible;
  color: #1975b8;
  background: #f8fcff;
  border: 1px solid #a9d2ec;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(37, 111, 161, 0.13);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
}

.web-value-summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) minmax(250px, 0.75fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  margin-top: 30px;
  padding: clamp(27px, 4vw, 44px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(113, 193, 251, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 193, 251, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 88% 18%, rgba(99, 179, 255, 0.29), transparent 25%),
    #071f35;
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid #1a496a;
  border-radius: 28px 8px 28px 28px;
  box-shadow: 0 24px 58px rgba(7, 31, 53, 0.17);
}

.web-value-summary strong {
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.web-value-summary strong em {
  color: #75c4fb;
  font-style: italic;
  font-weight: 400;
}

.web-value-summary-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a9d8f7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.web-value-summary-label i {
  width: 7px;
  height: 7px;
  background: #69bdf5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(105, 189, 245, 0.12);
}

.web-value-summary-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.web-value-summary-points span {
  padding: 8px 10px;
  color: #c2dcea;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(174, 215, 241, 0.15);
  border-radius: 10px 4px 10px 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.web-plans {
  scroll-margin-top: 100px;
  background:
    radial-gradient(circle at 92% 8%, rgba(99, 179, 255, 0.14), transparent 24%),
    #f8fafc;
}

.web-plans .price-card h3 {
  min-height: 68px;
}

.web-plans .price-description {
  min-height: 112px;
}

.web-process {
  background:
    linear-gradient(rgba(36, 121, 201, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 121, 201, 0.042) 1px, transparent 1px),
    #f8fafc;
  background-size: 52px 52px;
}

.web-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.web-process-track::before {
  position: absolute;
  z-index: 0;
  top: 61px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #88c4e8 12%, #88c4e8 88%, transparent);
}

.web-process-track article {
  position: relative;
  z-index: 1;
  min-height: 315px;
  padding: 27px 24px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid #cfdfeb;
  border-radius: 26px 8px 26px 26px;
  box-shadow: 0 13px 38px rgba(31, 79, 113, 0.055);
}

.web-process-track article > span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #6f8ca0;
  font-family: var(--serif);
  font-size: 13px;
}

.process-symbol {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 58px;
  color: #176cab;
  background: #e1f2ff;
  border: 8px solid #f8fafc;
  border-radius: 20px 7px 20px 20px;
  box-shadow: 0 0 0 1px #c8e0ef;
  font-size: 21px;
}

.web-process-track h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.web-process-track p {
  margin: 0;
  color: #5f7485;
  font-size: 12px;
  line-height: 1.7;
}

.web-contact {
  scroll-margin-top: 100px;
}

@media (max-width: 1120px) {
  .web-design-hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }

  .web-journey {
    grid-template-columns: 1fr 44px 1fr 44px 1fr;
  }

  .web-process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-process-track::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .web-design-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 100px 20px 72px;
  }

  .web-design-hero h1 {
    font-size: clamp(57px, 14vw, 82px);
  }

  .web-demo {
    width: min(100%, 570px);
    min-height: 510px;
    justify-self: center;
  }

  .web-journey {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .web-journey article,
  .web-journey .journey-featured {
    min-height: 0;
  }

  .journey-icon {
    margin-bottom: 30px;
  }

  .journey-arrow {
    width: 34px;
    height: 38px;
    justify-self: center;
    background: none;
  }

  .journey-arrow i {
    top: -10px;
    right: auto;
    bottom: -10px;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, #89c6ec 24%, #89c6ec 76%, transparent);
  }

  .journey-arrow b {
    transform: rotate(90deg);
  }

  .web-value-summary {
    grid-template-columns: auto 1fr;
    align-items: flex-start;
  }

  .web-value-summary-label {
    grid-row: span 2;
  }

  .web-value-summary-points {
    justify-content: flex-start;
  }

  .web-process-track {
    grid-template-columns: 1fr;
  }

  .web-process-track article {
    min-height: 0;
  }

  .process-symbol {
    margin-bottom: 35px;
  }
}

@media (max-width: 520px) {
  .web-design-hero {
    padding-top: 92px;
  }

  .web-design-hero h1 {
    font-size: clamp(51px, 15.5vw, 68px);
  }

  .web-design-hero-copy > p {
    font-size: 15px;
  }

  .web-design-hero .hero-actions {
    display: grid;
  }

  .web-design-hero .button {
    width: 100%;
    justify-content: space-between;
  }

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

  .web-demo {
    min-height: 445px;
    border-radius: 31px 9px 31px 31px;
  }

  .web-demo-label {
    top: 20px;
    left: 21px;
  }

  .web-demo-browser {
    top: 71px;
    width: 84%;
  }

  .browser-content {
    min-height: 245px;
    padding: 23px 20px 20px;
  }

  .browser-content > strong {
    font-size: 28px;
  }

  .source-search {
    top: 111px;
    left: 1%;
  }

  .source-contact {
    right: 1%;
    bottom: 87px;
  }

  .web-demo-source {
    padding: 10px 11px;
  }

  .web-demo-caption {
    right: 18px;
    bottom: 17px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .web-value-summary {
    padding: 19px;
  }

  .web-value-summary strong {
    font-size: 26px;
  }

  .web-value-summary-points {
    grid-column: 1 / -1;
  }

  .web-value-summary-label {
    display: none;
  }

  .web-value-summary-points span {
    line-height: 1.3;
  }

  .web-plans .price-card h3,
  .web-plans .price-description {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .web-demo::after,
  .web-demo-source,
  .web-demo-pulse {
    animation: none;
  }
}

/* Catálogo de servicios y páginas SEO */
.identity-copy small {
  font-size: 8px;
  letter-spacing: 0.08em;
}

.card-actions,
.complement-actions {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 17px;
}

.card-actions {
  margin-top: 0;
}

.complement-actions {
  margin-top: auto;
}

.card-actions .card-button {
  margin-top: 0;
}

.card-detail-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #205b87;
  background: transparent;
  border: 1px solid #bcd7e8;
  border-radius: 13px 5px 13px 13px;
  font-size: 11px;
  font-weight: 700;
  transition: 0.25s ease;
}

.card-detail-link:hover {
  color: #fff;
  background: #2479c9;
  border-color: #2479c9;
}

.recommended .card-detail-link {
  color: #bfe2fa;
  border-color: rgba(185, 224, 249, 0.3);
}

.recommended .card-detail-link:hover {
  color: #082b49;
  background: #dff2ff;
  border-color: #dff2ff;
}

.services-page .services-catalog-pricing {
  scroll-margin-top: 100px;
  background: #f4f8fb;
}

.services-page #complementos,
.services-page #diagnostico {
  scroll-margin-top: 100px;
}

.services-page #complementos .complement-card.voice-card {
  grid-column: auto;
}

.services-hero .hero-actions {
  align-items: center;
}

.services-hero .text-link {
  color: #155e98;
  font-size: 13px;
  font-weight: 700;
}

.complement-actions > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  color: #fff;
  background: #2479c9;
  border: 1px solid #2479c9;
  border-radius: 12px 4px 12px 12px;
  font-size: 11px;
  font-weight: 700;
  transition: 0.27s ease;
}

.complement-actions > a:hover {
  background: #155e98;
  border-color: #155e98;
  transform: translateY(-2px);
}

.complement-actions > .complement-detail-link {
  color: #205b87;
  background: transparent;
  border-color: #bcd7e8;
}

.complement-actions > .complement-detail-link:hover {
  color: #fff;
  background: #2479c9;
  border-color: #2479c9;
}

.featured .complement-actions > a {
  color: #082b49;
  background: #e7f5ff;
  border-color: #e7f5ff;
}

.featured .complement-actions > .complement-detail-link {
  color: #bfe2fa;
  background: transparent;
  border-color: rgba(185, 224, 249, 0.3);
}

.featured .complement-actions > .complement-detail-link:hover {
  color: #082b49;
  background: #e7f5ff;
}

.service-detail-page {
  background: #f8fafc;
}

.service-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  min-height: 760px;
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
  padding: 150px max(32px, calc((100vw - var(--max)) / 2)) 95px;
  overflow: hidden;
  background:
    linear-gradient(rgba(36, 121, 201, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 121, 201, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 83% 28%, rgba(99, 179, 255, 0.27), transparent 28%),
    #f8fafc;
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.service-detail-hero h1 {
  margin: 25px 0 24px;
  color: #0b1825;
  font-family: var(--serif);
  font-size: clamp(55px, 6.2vw, 92px);
  font-weight: 600;
  letter-spacing: -0.072em;
  line-height: 0.94;
}

.service-detail-hero h1 span {
  color: #2479c9;
}

.service-detail-hero p {
  max-width: 680px;
  margin: 0 0 31px;
  color: #5e7183;
  font-size: 17px;
  line-height: 1.65;
}

.service-detail-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-visual-card {
  position: relative;
  min-height: 470px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(111, 193, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 193, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 78% 15%, rgba(99, 179, 255, 0.33), transparent 29%),
    #071f35;
  background-size: 38px 38px, 38px 38px, auto, auto;
  border: 1px solid #1c4a6b;
  border-radius: 46px 14px 46px 46px;
  box-shadow: 0 32px 78px rgba(7, 31, 53, 0.22);
}

.service-visual-card > span {
  display: inline-flex;
  padding: 8px 11px;
  color: #bfe5ff;
  background: rgba(99, 179, 255, 0.13);
  border: 1px solid rgba(157, 212, 249, 0.2);
  border-radius: 10px 4px 10px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-visual-card h2 {
  margin: 70px 0 18px;
  font-family: var(--serif);
  font-size: clamp(39px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-visual-card p {
  margin: 0;
  color: #b6ccdb;
  font-size: 13px;
}

.service-visual-metric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
}

.service-visual-metric div {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(170, 214, 243, 0.13);
  border-radius: 13px 5px 13px 13px;
}

.service-visual-metric strong,
.service-visual-metric small {
  display: block;
}

.service-visual-metric strong {
  color: #75c3ff;
  font-size: 20px;
}

.service-visual-metric small {
  margin-top: 4px;
  color: #9eb7c8;
  font-size: 8px;
}

.service-content {
  background: #edf5fa;
}

.service-benefit-grid,
.service-process-grid,
.service-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.service-benefit,
.service-step,
.service-example {
  position: relative;
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid #d2e2ec;
  border-radius: 26px 8px 26px 26px;
  box-shadow: 0 13px 38px rgba(31, 79, 113, 0.05);
}

.service-benefit > span,
.service-step > span,
.service-example > span {
  color: #2479c9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-benefit h3,
.service-step h3,
.service-example h3 {
  margin: 36px 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-benefit p,
.service-step p,
.service-example p {
  margin: 0;
  color: #607184;
  font-size: 13px;
  line-height: 1.65;
}

.service-offer {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.service-offer-copy,
.service-offer-price {
  padding: clamp(30px, 5vw, 60px);
  border-radius: 34px 11px 34px 34px;
}

.service-offer-copy {
  background: #fff;
  border: 1px solid #d2e2ec;
}

.service-offer-copy h2,
.service-offer-price h2 {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.service-offer-copy p {
  color: #607184;
  line-height: 1.7;
}

.service-offer-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #465e70;
}

.service-offer-copy li::before {
  margin-right: 9px;
  color: #2479c9;
  content: "✓";
  font-weight: 800;
}

.service-offer-price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: #071f35;
  border: 1px solid #1a496a;
}

.service-offer-price > span {
  color: #80c8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-offer-price h2 {
  color: #fff;
}

.service-offer-price p {
  color: #b5ccdc;
  font-size: 13px;
  line-height: 1.65;
}

.service-offer-price .button {
  margin-top: 30px;
}

.service-cross-sell {
  color: #fff;
  background:
    radial-gradient(circle at 85% 25%, rgba(99, 179, 255, 0.24), transparent 28%),
    #061d31;
}

.service-cross-sell .section-heading h2,
.service-cross-sell .section-heading p {
  color: #fff;
}

.service-cross-sell .section-heading p {
  color: #acc4d5;
}

.service-faq {
  background: #f8fafc;
}

.service-faq .faq {
  padding: 0;
}

.legal-page main {
  min-height: 70vh;
  padding: 150px max(24px, calc((100vw - 900px) / 2)) 90px;
}

.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(49px, 7vw, 78px);
  letter-spacing: -0.06em;
}

.legal-page h2 {
  margin-top: 38px;
  font-family: var(--serif);
  font-size: 29px;
}

.legal-page p,
.legal-page li {
  color: #52697b;
  line-height: 1.75;
}

.legal-notice {
  padding: 16px;
  color: #7a5100;
  background: #fff4d6;
  border: 1px solid #ead290;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .service-detail-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 130px;
  }

  .service-visual-card {
    min-height: 410px;
  }

  .service-benefit-grid,
  .service-process-grid,
  .service-example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .identity-copy small {
    max-width: 175px;
    white-space: nowrap;
  }

  .service-detail-hero {
    padding: 110px 20px 70px;
  }

  .service-detail-hero h1 {
    font-size: clamp(49px, 15vw, 69px);
  }

  .service-detail-hero .hero-actions {
    display: grid;
  }

  .service-detail-hero .button {
    width: 100%;
    justify-content: space-between;
  }

  .service-visual-card {
    min-height: 360px;
    padding: 27px 22px;
    border-radius: 30px 9px 30px 30px;
  }

  .service-visual-card h2 {
    margin-top: 54px;
  }

  .service-visual-metric {
    margin-top: 35px;
  }

  .service-benefit-grid,
  .service-process-grid,
  .service-example-grid,
  .service-offer {
    grid-template-columns: 1fr;
  }

  .service-benefit,
  .service-step,
  .service-example {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .hero h1 em {
    font-size: 0.69em;
  }

  .hero h1 .hero-ai-title {
    font-size: 30px;
    line-height: 1.05;
  }

  .analysis-toggle {
    grid-template-columns: auto 1fr;
    font-size: 12px;
  }

  .analysis-toggle b {
    display: none;
  }

  .analysis-panel {
    width: 100%;
  }

  .complements-cta {
    padding: 28px 22px;
  }

  .complements-cta > b {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }

  .complements-hero-visual {
    width: min(86vw, 340px);
    margin: 20px auto 0;
    justify-self: center;
  }

  .orbit-core {
    width: 128px;
    height: 128px;
  }

  .orbit-label {
    padding: 8px 10px;
    font-size: 8px;
    white-space: nowrap;
  }

  .label-ads {
    left: 2%;
  }

  .label-auto {
    right: 2%;
  }

  .label-voice {
    right: 2%;
  }

  .label-content {
    left: 2%;
  }

  .complement-card {
    min-height: 535px;
    padding: 27px 22px 24px;
  }

  .complement-card h3 {
    min-height: 0;
    font-size: 28px;
  }

  .complement-price strong {
    font-size: 37px;
  }

  .complement-badge {
    top: 28px;
    right: 54px;
    font-size: 7px;
  }
}

/* Acciones flotantes finales: WhatsApp sobre el análisis web */
.floating-audit {
  right: 24px;
  bottom: 22px;
  left: auto;
}

.social-floats {
  right: 24px;
  bottom: 88px;
}

.social-floats .whatsapp {
  position: relative;
  isolation: isolate;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: linear-gradient(145deg, #31dc72, #1dbb59);
  border: 3px solid #fff;
  box-shadow:
    0 15px 36px rgba(15, 128, 60, 0.32),
    0 0 0 6px rgba(37, 211, 102, 0.1);
}

.social-floats .whatsapp::after {
  position: absolute;
  z-index: -1;
  inset: 4px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}

.social-floats .whatsapp img {
  display: block;
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.social-floats .whatsapp:hover {
  box-shadow:
    0 18px 42px rgba(15, 128, 60, 0.38),
    0 0 0 7px rgba(37, 211, 102, 0.13);
  transform: translateY(-3px) scale(1.04);
}

.social-floats .whatsapp:focus-visible {
  outline: 3px solid #8beab0;
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .floating-audit {
    right: 12px;
    bottom: 12px;
    left: auto;
    width: max-content;
    max-width: calc(100vw - 24px);
    gap: 7px;
    padding: 7px 11px 7px 7px;
    font-size: 9.5px;
    box-shadow: 0 10px 28px rgba(8, 43, 73, 0.2);
  }

  .floating-audit > span {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .social-floats {
    right: 12px;
    bottom: 63px;
  }

  .social-floats .whatsapp {
    width: 45px;
    height: 45px;
    border-width: 2px;
    box-shadow:
      0 10px 26px rgba(15, 128, 60, 0.25),
      0 0 0 4px rgba(37, 211, 102, 0.08);
  }

  .social-floats .whatsapp img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 430px) {
  .floating-audit {
    padding-right: 10px;
    font-size: 9px;
  }

  .floating-audit b {
    display: none;
  }
}

/* Experiencia móvil final: menú legible, servicios visibles y FAQ compacta */
.contact-form {
  scroll-margin-top: 110px;
}

@media (max-width: 820px) {
  .site-header {
    overflow: visible;
    background: #f9fcff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .noise {
    display: none;
  }

  /*
   * Las entradas con opacidad y desplazamiento obligaban al navegador móvil a
   * recomponer secciones completas mientras se hacía scroll. En pantallas
   * pequeñas mostramos el contenido directamente y conservamos únicamente las
   * animaciones internas que no alteran el flujo de la página.
   */
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .problems,
  .complements-cta,
  .case-card,
  .case-visual {
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .complements-cta::after {
    transition: none;
  }

  .main-nav {
    position: absolute;
    z-index: 120;
    top: calc(100% + 9px);
    right: 0;
    bottom: auto;
    left: 0;
    max-height: calc(100vh - 105px);
    gap: 7px;
    padding: 12px;
    overflow-y: auto;
    visibility: hidden;
    background: rgba(249, 252, 255, 0.98);
    border: 1px solid rgba(169, 205, 231, 0.85);
    border-radius: 18px 7px 18px 18px;
    box-shadow: 0 24px 60px rgba(8, 43, 73, 0.2);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    min-height: 48px;
    padding: 13px 15px;
    border: 1px solid transparent;
    border-radius: 12px 5px 12px 12px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }

  .main-nav a + a {
    border-top-color: transparent;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-current {
    color: #0d5f9f;
    background: #e7f4fc;
    border-color: #c7e1f2;
  }

  .main-nav a::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .services .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    grid-auto-flow: row;
    gap: 16px;
    margin: 0;
    padding: 0;
    overflow: visible;
    scroll-padding-inline: 0;
    scroll-snap-type: none;
  }

  .services .price-card,
  .services .price-card.recommended {
    min-height: 0;
    width: 100%;
    padding: 27px 22px 24px;
    scroll-snap-align: none;
  }

  .services .price-card.recommended {
    order: initial;
    padding-top: 29px;
  }

  .services .recommended-label {
    margin-bottom: 20px;
  }

  .services .price-card h3,
  .services .price-description {
    min-height: 0;
  }

  .faq {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .faq .section-heading {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }

  .faq-list {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .faq-item {
    border-radius: 17px 6px 17px 17px;
  }

  .faq-item button {
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
  }

  .faq-item button span {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 16px;
    line-height: 1.35;
  }

  .faq-item button b {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }

  .faq-item.is-open .faq-answer p {
    padding: 0 16px 19px;
    font-size: 13px;
    line-height: 1.65;
  }
}

/* Microanimaciones reutilizables para todas las ofertas */
.offer-scene {
  --scene-accent: #55b6f4;
  --scene-accent-soft: rgba(85, 182, 244, 0.18);
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 112px;
  margin: 4px 0 20px;
  padding: 11px;
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 24%, var(--scene-accent-soft), transparent 33%),
    linear-gradient(135deg, #edf8ff, #fbfdff);
  border: 1px solid #cfe6f4;
  border-radius: 22px 7px 22px 22px;
}

.offer-scene::before {
  position: absolute;
  right: -26px;
  bottom: -42px;
  width: 105px;
  height: 105px;
  background: var(--scene-accent-soft);
  border: 1px solid rgba(85, 182, 244, 0.18);
  border-radius: 50%;
  content: "";
  animation: offer-scene-breathe 4.8s ease-in-out infinite;
}

.offer-scene-screen {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 88px;
  padding: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, var(--scene-accent-soft), transparent 34%),
    linear-gradient(150deg, #071f35, #0b527f);
  border: 1px solid rgba(132, 208, 255, 0.3);
  border-radius: 15px 5px 15px 15px;
  box-shadow: 0 11px 24px rgba(12, 70, 107, 0.16);
}

.offer-scene-toolbar {
  display: grid;
  grid-template-columns: repeat(3, 3px) minmax(0, 1fr);
  align-items: center;
  gap: 3px;
}

.offer-scene-toolbar > i {
  width: 3px;
  height: 3px;
  background: rgba(219, 241, 255, 0.72);
  border-radius: 50%;
}

.offer-scene-toolbar b {
  overflow: hidden;
  color: #dff3ff;
  font-size: 4px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-scene-signal {
  position: absolute;
  right: 9px;
  bottom: 11px;
  left: 9px;
  display: grid;
  gap: 6px;
}

.offer-scene-signal > i {
  position: relative;
  display: block;
  height: 4px;
  overflow: hidden;
  background: rgba(217, 241, 255, 0.14);
  border-radius: 99px;
}

.offer-scene-signal > i::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--scene-accent), #d9f2ff);
  border-radius: inherit;
  content: "";
  transform: translateX(-105%);
  animation: offer-scene-flow 3.4s ease-in-out infinite;
}

.offer-scene-signal > i:nth-child(2) {
  width: 78%;
}

.offer-scene-signal > i:nth-child(2)::after {
  animation-delay: 0.22s;
}

.offer-scene-signal > i:nth-child(3) {
  width: 88%;
}

.offer-scene-signal > i:nth-child(3)::after {
  animation-delay: 0.44s;
}

.offer-scene-signal > i:nth-child(4) {
  width: 58%;
}

.offer-scene-signal > i:nth-child(4)::after {
  animation-delay: 0.66s;
}

.offer-scene-result {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 8px;
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #d5e8f3;
  border-radius: 15px 5px 15px 15px;
  box-shadow: 0 9px 22px rgba(18, 84, 126, 0.07);
  animation: offer-scene-result 4s ease-in-out infinite;
}

.offer-scene-result small {
  grid-column: 1 / -1;
  color: #4386b2;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.offer-scene-result strong {
  overflow: hidden;
  color: #0b2b43;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-scene-result > i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--scene-accent);
  border-radius: 9px 3px 9px 9px;
  font-style: normal;
  font-size: 8px;
  font-weight: 800;
  box-shadow: 0 7px 16px var(--scene-accent-soft);
}

.offer-scene--web {
  --scene-accent: #55b6f4;
  --scene-accent-soft: rgba(85, 182, 244, 0.18);
}

.offer-scene--capture {
  --scene-accent: #29bd72;
  --scene-accent-soft: rgba(41, 189, 114, 0.17);
}

.offer-scene--google {
  --scene-accent: #4d9df2;
  --scene-accent-soft: rgba(77, 157, 242, 0.18);
}

.offer-scene--google .offer-scene-screen::after,
.offer-scene--system .offer-scene-screen::after {
  position: absolute;
  right: 9px;
  bottom: 12px;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 3px solid var(--scene-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--scene-accent-soft);
  content: "";
  animation: offer-scene-search 3.2s ease-in-out infinite;
}

.offer-scene--system {
  --scene-accent: #6dbef5;
  --scene-accent-soft: rgba(109, 190, 245, 0.2);
}

.offer-scene--meta {
  --scene-accent: #4fb4f3;
  --scene-accent-soft: rgba(79, 180, 243, 0.2);
}

.offer-scene--meta .offer-scene-signal {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  height: 49px;
  gap: 4px;
}

.offer-scene--meta .offer-scene-signal > i {
  width: auto;
  height: 100%;
  transform-origin: bottom;
  animation: offer-scene-story 2.8s ease-in-out infinite;
}

.offer-scene--meta .offer-scene-signal > i:nth-child(2) {
  height: 70%;
  animation-delay: 0.2s;
}

.offer-scene--meta .offer-scene-signal > i:nth-child(3) {
  height: 88%;
  animation-delay: 0.4s;
}

.offer-scene--meta .offer-scene-signal > i:nth-child(4) {
  height: 58%;
  animation-delay: 0.6s;
}

.offer-scene--dual {
  --scene-accent: #6ac5fa;
  --scene-accent-soft: rgba(106, 197, 250, 0.2);
}

.offer-scene--dual .offer-scene-screen::after {
  position: absolute;
  right: 17px;
  bottom: 17px;
  width: 28px;
  height: 28px;
  border: 1px dashed #86d4ff;
  border-radius: 50%;
  box-shadow:
    -20px -7px 0 -5px rgba(118, 206, 255, 0.45),
    18px 8px 0 -7px rgba(208, 241, 255, 0.8);
  content: "";
  animation: offer-scene-orbit 5s linear infinite;
}

.offer-scene--automation {
  --scene-accent: #55b9f7;
  --scene-accent-soft: rgba(85, 185, 247, 0.2);
}

.offer-scene--automation .offer-scene-signal > i {
  height: 7px;
  border-radius: 3px;
}

.offer-scene--voice {
  --scene-accent: #73c8fb;
  --scene-accent-soft: rgba(115, 200, 251, 0.2);
}

.offer-scene--voice .offer-scene-signal {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  height: 48px;
  gap: 5px;
}

.offer-scene--voice .offer-scene-signal > i {
  width: auto;
  height: 48%;
  background: var(--scene-accent);
  transform-origin: center;
  animation: offer-scene-wave 1.45s ease-in-out infinite;
}

.offer-scene--voice .offer-scene-signal > i:nth-child(2) {
  height: 90%;
  animation-delay: 0.14s;
}

.offer-scene--voice .offer-scene-signal > i:nth-child(3) {
  height: 68%;
  animation-delay: 0.28s;
}

.offer-scene--voice .offer-scene-signal > i:nth-child(4) {
  height: 35%;
  animation-delay: 0.42s;
}

.offer-scene--content {
  --scene-accent: #61bdf5;
  --scene-accent-soft: rgba(97, 189, 245, 0.2);
}

.offer-scene--content .offer-scene-screen::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #dff4ff;
  content: "";
  filter: drop-shadow(0 0 10px var(--scene-accent));
  transform: translate(-40%, -42%);
  animation: offer-scene-play 2.6s ease-in-out infinite;
}

.price-card.recommended .offer-scene,
.google-plan.dark .offer-scene {
  background:
    radial-gradient(circle at 17% 24%, var(--scene-accent-soft), transparent 34%),
    rgba(4, 30, 51, 0.58);
  border-color: rgba(131, 205, 249, 0.22);
}

.price-card.recommended .offer-scene-result,
.google-plan.dark .offer-scene-result {
  background: rgba(220, 244, 255, 0.1);
  border-color: rgba(148, 215, 253, 0.2);
}

.price-card.recommended .offer-scene-result small,
.google-plan.dark .offer-scene-result small {
  color: #79c9fa;
}

.price-card.recommended .offer-scene-result strong,
.google-plan.dark .offer-scene-result strong {
  color: #eff9ff;
}

.meta-plan-grid .google-plan {
  overflow: visible;
}

.meta-plan-grid .plan-recommended-label {
  z-index: 8;
  white-space: nowrap;
}

.automation-tile .automation-icon {
  animation: offer-icon-float 4s ease-in-out infinite;
}

.automation-tile:nth-child(2n) .automation-icon {
  animation-delay: 0.45s;
}

.manychat-demo > div {
  animation: offer-chat-step 4.6s ease-in-out infinite;
}

.manychat-demo > div:nth-child(2) {
  animation-delay: 0.55s;
}

@keyframes offer-scene-flow {
  0%,
  16% { transform: translateX(-105%); }
  58%,
  100% { transform: translateX(0); }
}

@keyframes offer-scene-result {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes offer-scene-breathe {
  0%,
  100% { transform: scale(0.92); }
  50% { transform: scale(1.08); }
}

@keyframes offer-scene-search {
  0%,
  100% { transform: translate(-42px, -25px); }
  50% { transform: translate(0, 0); }
}

@keyframes offer-scene-story {
  0%,
  100% { opacity: 0.38; transform: scaleY(0.45); }
  50% { opacity: 0.9; transform: scaleY(1); }
}

@keyframes offer-scene-orbit {
  to { transform: rotate(360deg); }
}

@keyframes offer-scene-wave {
  0%,
  100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

@keyframes offer-scene-play {
  0%,
  100% { opacity: 0.66; transform: translate(-40%, -42%) scale(0.86); }
  50% { opacity: 1; transform: translate(-40%, -42%) scale(1.08); }
}

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

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

@media (max-width: 700px) {
  .offer-scene {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 103px;
    margin-bottom: 17px;
    padding: 10px;
  }

  .offer-scene-screen {
    min-height: 81px;
  }

  .offer-scene-result {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-scene::before,
  .offer-scene-signal > i,
  .offer-scene-signal > i::after,
  .offer-scene-result,
  .offer-scene-screen::after,
  .automation-tile .automation-icon,
  .manychat-demo > div {
    animation: none;
  }

  .offer-scene-signal > i::after {
    transform: translateX(-30%);
  }
}

main [id] {
  scroll-margin-top: 116px;
}

@media (max-width: 700px) {
  main [id] {
    scroll-margin-top: 96px;
  }

  .meta-offer-visual {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 136px;
    margin: 0 0 17px;
    padding: 11px;
  }

  .meta-offer-story {
    min-height: 112px;
  }

  .meta-offer-outcome {
    padding: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .meta-offer-progress i:nth-child(2)::after,
  .meta-offer-creative i,
  .meta-offer-outcome {
    animation: none;
  }

  .meta-offer-progress i:nth-child(2)::after {
    transform: translateX(-34%);
  }
}
