/* Tema claro: blanco / gris hielo, texto oscuro, acentos azules (marca) */
:root {
  --bg-deep: #f1f5f9;
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-solid: #ffffff;
  --border: rgba(51, 65, 85, 0.12);
  --border-strong: rgba(37, 99, 235, 0.28);
  --text: #0f172a;
  --muted: #64748b;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.1);
  --accent-glow: rgba(37, 99, 235, 0.22);
  --slate: #576795;
  --success: #16a34a;
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Saira Semi Condensed", system-ui, sans-serif;
  --shadow-3d: 0 22px 44px -14px rgba(15, 23, 42, 0.1), 0 0 0 1px var(--border);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

@media (max-width: 480px) {
  .container {
    width: min(1120px, 100% - 1.25rem);
  }
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo__img {
  height: clamp(34px, 5.5vw, 46px);
  width: auto;
  max-width: min(200px, 45vw);
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.logo__text {
  white-space: nowrap;
}

@media (max-width: 380px) {
  .logo__text {
    font-size: 0.92rem;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.nav-mobile[hidden] {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(145deg, var(--accent) 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.38);
}

.btn--whatsapp {
  background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28);
  border: none;
}

.btn--whatsapp:hover {
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.38);
  transform: translateY(-2px);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

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

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero__orb--1 {
  width: min(60vw, 480px);
  height: min(60vw, 480px);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.85) 0%, transparent 70%);
}

.hero__orb--2 {
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(199, 210, 254, 0.75) 0%, transparent 70%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.hero__head {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
}

.hero__title {
  margin: 0;
  font-size: clamp(2rem, 5vw + 0.5rem, 4.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

#hero-changing-word {
  display: inline-block;
  height: 1.2em;
  line-height: 1.2;
  overflow: hidden;
  vertical-align: bottom;
}

.text-gradient {
  background: linear-gradient(120deg, #0f172a 0%, var(--slate) 42%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36ch;
}

.hero__visual-row {
  display: grid;
  gap: clamp(0.75rem, 3vw, 2rem);
  align-items: end;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .hero__visual-row {
    grid-template-columns: minmax(145px, 0.64fr) minmax(265px, 1.98fr);
    gap: clamp(0.5rem, 2vw, 1.5rem);
  }
}

.hero__fox-side {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .hero__fox-side {
    justify-content: flex-end;
    padding-right: 0.25rem;
  }
}

.hero__fox-standalone {
  width: auto;
  max-width: min(100%, 220px);
  max-height: min(38vh, 320px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 480px) {
  .hero__fox-standalone {
    max-width: 160px;
    max-height: 200px;
  }
}

@media (min-width: 768px) {
  .hero__fox-standalone {
    max-width: 100%;
    max-height: min(52vh, 440px);
  }
}

.hero__screen-side {
  min-width: 0;
  width: 100%;
}

.hero__screen-stack {
  position: relative;
  overflow: visible;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__screen-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-3d), 0 0 48px rgba(37, 99, 235, 0.08);
  background: var(--surface-solid);
}

.hero__tagline {
  text-align: center;
  margin: 0.75rem auto 0.5rem;
  max-width: 760px;
}

.hero__tagline h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero__tagline p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--muted);
}

.hero__below {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-top: 0;
}

.hero__below .lead {
  max-width: none;
  margin: 0 auto 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 500px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .hero__stats li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  .hero__stats strong {
    margin-bottom: 0;
  }
}

.hero__stats li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero__stats li:hover {
  transform: translateY(-4px) perspective(600px) rotateX(4deg);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-3d);
}

.hero__stats strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.hero__stats span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* 3D scene */
.scene {
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

.section__head {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 3rem;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
}

.section--pricing .section__head {
  max-width: 100%;
  margin-bottom: 2rem;
}

.section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.billing-toggle {
  width: fit-content;
  margin: 0 auto 1.2rem;
  padding: 0.25rem;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border-strong);
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.billing-toggle__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--slate);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.95rem;
  border-radius: 9px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.billing-toggle__btn:hover {
  transform: translateY(-1px);
}

.billing-toggle__btn.is-active {
  background: linear-gradient(135deg, #2458d6, #2563eb);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.35rem 0 0.9rem;
}

.price-card__currency {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
  color: var(--slate);
  opacity: 0.9;
  margin-top: 0.3rem;
}

.price-card__amount {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--slate);
}

.price-card__period {
  margin: 0;
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  display: inline-block;
}

/* Cards 3D */
.cards-3d {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .cards-3d {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-3d {
  perspective: 900px;
}

.card-3d__inner {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  transform: rotateX(2deg);
}

.card-3d:hover .card-3d__inner {
  transform: rotateX(0deg) translateY(-6px) translateZ(12px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-3d);
}

.card-3d__icon {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.card-3d h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

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

/* Showcase */
.showcase {
  background: linear-gradient(180deg, transparent 0%, rgba(241, 245, 249, 0.95) 50%, transparent 100%);
}

.showcase__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .showcase__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.showcase__images {
  position: relative;
  min-height: 280px;
}

.showcase__images--single {
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__img--solo {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: none;
  display: block;
}

.showcase__img {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-3d);
  transition: transform var(--transition), z-index 0s;
  object-fit: cover;
}

.showcase__img--a {
  width: 58%;
  top: 0;
  left: 0;
  z-index: 1;
}

.showcase__img--b {
  width: 52%;
  top: 18%;
  right: 0;
  z-index: 2;
}

.showcase__img--c {
  width: 48%;
  bottom: 0;
  left: 22%;
  z-index: 3;
}

.showcase__images:hover .showcase__img--a {
  transform: translate(-4px, -4px) rotateY(-6deg);
}

.showcase__images:hover .showcase__img--b {
  transform: translate(4px, 4px) rotateY(6deg) scale(1.02);
}

.showcase__images:hover .showcase__img--c {
  transform: translateY(-6px) translateZ(20px);
}

.showcase__text h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}

.showcase__quote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.showcase__quote strong {
  color: var(--text);
  font-weight: 600;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--slate));
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Feature cards (layout tipo captura: ilustración + texto + CTA) */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.35rem 1.35rem 1.35rem 1.15rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: box-shadow var(--transition), border-color var(--transition), transform 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.feature-card__media {
  flex: 0 0 auto;
  width: clamp(72px, 22vw, 130px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__media img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  display: block;
}

.feature-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.feature-card__title {
  margin: 0;
  font-size: clamp(0.78rem, 1.25vw, 0.9rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--text);
}

.feature-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--slate);
}

.feature-card__cta {
  align-self: flex-end;
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #3b82f6 0%, var(--accent) 100%);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: transform 0.2s ease, box-shadow var(--transition);
}

.feature-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  color: #fff;
}

.feature-card__arrow {
  font-size: 0.95em;
  line-height: 1;
}

@media (max-width: 500px) {
  .feature-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem;
    gap: 0.85rem;
  }

  .feature-card__media {
    width: 100%;
    max-width: 140px;
    margin-inline: auto;
  }

  .feature-card__cta {
    align-self: center;
  }
}

/* Pricing */
.section--pricing {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(219, 234, 254, 0.55), transparent 55%);
}

.pricing-cards {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
  width: min(1400px, 100% - 2rem);
  margin-inline: auto;
}

@media (min-width: 720px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
}

.price-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.price-card:hover .price-card__inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
  border-color: var(--border-strong);
}

.price-card--highlight .price-card__inner {
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.06) 0%, var(--surface-solid) 55%);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.1), 0 8px 24px rgba(37, 99, 235, 0.08);
}

.price-card--highlight:hover .price-card__inner {
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2), 0 20px 48px rgba(37, 99, 235, 0.13);
  border-color: rgba(37, 99, 235, 0.5);
}

.price-card__ribbon {
  position: absolute;
  top: 0;
  left: 1.25rem;
  transform: translateY(-55%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem 0.3rem 0.6rem;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
  pointer-events: none;
}

.price-card__ribbon::before {
  content: "★";
  font-size: 0.75rem;
}

.price-card__name {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--slate);
}

.price-card--highlight .price-card__name {
  color: var(--accent);
}

.price-card__for {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.price-card__amount--custom {
  font-size: 1.5rem;
}

.price-card__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  flex: 1;
  max-height: 690px;
  overflow: hidden;
  position: relative;
  transition: max-height var(--transition);
}

.price-card__list::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96));
  pointer-events: none;
}

.price-card.is-expanded .price-card__list {
  max-height: 2200px;
}

.price-card.is-expanded .price-card__list::after {
  display: none;
}

.price-card__list li {
  padding: 0.32rem 0 0.32rem 1.4rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.4;
}

.price-card__list li.item--yes {
  color: var(--text);
}

.price-card__list li.item--yes::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
}

.price-card__list li.item--no {
  color: var(--muted);
  opacity: 0.45;
}

.price-card__list li.item--no::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.75rem;
}

.price-card__toggle {
  margin-bottom: 0.75rem;
}

.price-card.is-expanded .price-card__toggle {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.compare-wrap {
  margin-top: 1rem;
  width: min(1600px, 100% - 2.5rem);
  margin-inline: auto;
}

.compare__title {
  text-align: center;
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
}

.compare-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.compare-scroll:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: rgba(219, 234, 254, 0.65);
  font-weight: 600;
  color: var(--text);
  position: sticky;
  top: 0;
}

.compare-table th[scope="row"] {
  text-align: left;
  font-weight: 500;
  color: var(--muted);
  min-width: 200px;
}

.compare-table tbody tr:hover {
  background: rgba(241, 245, 249, 0.95);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.yes {
  color: var(--success);
  font-weight: 700;
}

.no {
  color: var(--muted);
  opacity: 0.5;
}

.partial {
  color: #ca8a04;
  font-size: 0.8rem;
}

/* CTA */
.section--cta {
  padding-bottom: 4rem;
}

.cta__box {
  max-width: 560px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 2.75rem);
  text-align: center;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, #ffffff 0%, rgba(219, 234, 254, 0.45) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-3d), 0 0 48px rgba(37, 99, 235, 0.08);
  transform-style: preserve-3d;
  transition: transform var(--transition);
}

.cta__box:hover {
  transform: perspective(900px) rotateX(2deg) translateY(-4px);
}

.cta__box h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
}

.cta__box > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .cta__form {
    flex-direction: row;
  }
}

.cta__form input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
}

.cta__form input::placeholder {
  color: var(--muted);
}

.cta__form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.cta__note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  text-align: center;
}

.footer p {
  margin: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

.footer__fine {
  font-size: 0.78rem;
  opacity: 0.75;
}

.single-line {
  text-wrap: pretty;
}

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