:root {
  --ink: #0a1120;
  --ink-soft: #111c31;
  --paper: #f6f7fb;
  --white: #ffffff;
  --text: #172036;
  --muted: #657086;
  --line: #dde2ec;
  --blue: #5267ff;
  --blue-bright: #7082ff;
  --blue-soft: #e9ecff;
  --green: #25d366;
  --violet: #a979ff;
  --orange: #ff8b5b;
  --pink: #ff6fae;
  --yellow: #f3bb38;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 24px 70px rgba(19, 32, 63, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family:
    "Manrope",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-feature-settings:
    "kern" 1,
    "liga" 1,
    "calt" 1;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
svg {
  display: block;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.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;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 120px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 10px 0;
  color: #fff;
  background: rgba(8, 14, 28, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(6, 10, 22, 0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 0 28px;
  margin: 0;
}
.brand {
  position: relative;
  width: 190px;
  height: 48px;
  flex: 0 0 190px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
  overflow: hidden;
}
.brand-logo {
  position: absolute;
  top: -27px;
  left: 0;
  width: 190px;
  height: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.brand-dot {
  color: var(--blue-bright);
}
.brand-mark {
  position: relative;
  display: inline-flex;
  gap: 3px;
  align-items: flex-end;
  width: 24px;
  height: 23px;
  transform: skew(-8deg);
}
.brand-mark span {
  width: 10px;
  border-radius: 3px 3px 5px 5px;
  background: var(--blue-bright);
}
.brand-mark span:first-child {
  height: 14px;
  transform: translateY(-5px);
}
.brand-mark span:last-child {
  height: 20px;
  background: #8a72ff;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.main-nav a {
  color: #a8b4cc;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.main-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-store-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7dd3fc !important;
  font-weight: 700 !important;
}
.nav-store-link::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 6px #38bdf8;
  flex-shrink: 0;
}
.nav-store-link:hover {
  color: #e0f2fe !important;
  background: rgba(56, 189, 248, 0.1) !important;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--blue);
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(82, 103, 255, 0.28);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #6477ff;
  box-shadow: 0 16px 34px rgba(82, 103, 255, 0.36);
}
.button svg,
.text-link svg,
.plan-help a svg,
.included-callout a svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-small {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}
.header-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  min-height: 36px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(148, 196, 242, 0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  color: #a8c8e8;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.header-admin-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.08), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.header-admin-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(148, 196, 242, 0.45);
  color: #dbeeff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 16px rgba(0,0,0,0.25);
}
.header-admin-btn:hover::before {
  opacity: 1;
}
.header-admin-btn svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  opacity: 0.8;
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 98px 0 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(82, 103, 255, 0.16),
      transparent 31%
    ),
    radial-gradient(
      circle at 5% 15%,
      rgba(105, 76, 255, 0.12),
      transparent 27%
    ),
    var(--ink);
  overflow: hidden;
}

/* Página Cómo trabajamos */
.info-hero {
  position: relative;
  padding: 168px 0 104px;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 28%,
      rgba(112, 130, 255, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(142, 90, 255, 0.13),
      transparent 27%
    ),
    var(--ink);
  overflow: hidden;
}
.info-hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -180px;
  top: 70px;
  border: 1px solid rgba(145, 160, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(82, 103, 255, 0.12) inset;
}
.info-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 80px;
}
.info-hero-copy {
  max-width: 760px;
}
.info-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.info-hero h1 em {
  color: #91a0ff;
  font-style: normal;
}
.info-hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #adb7ca;
  font-size: 18px;
  line-height: 1.7;
}
.info-hero-actions {
  margin-top: 34px;
}
.journey-card {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}
.journey-card > span {
  display: block;
  margin-bottom: 18px;
  color: #91a0ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.journey-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: #e9ecf5;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}
.journey-card li strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #aab5ff;
  background: rgba(112, 130, 255, 0.14);
  border-radius: 11px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.info-anchor-bar {
  position: relative;
  z-index: 3;
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.info-anchor-bar a {
  padding: 10px 14px;
  color: #cbd2e2;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.info-anchor-bar a:hover {
  color: #fff;
  background: rgba(112, 130, 255, 0.16);
  border-color: rgba(145, 160, 255, 0.4);
}

.fine-print-section {
  position: relative;
  padding: 78px 0;
  color: #fff;
  background: #101a2d;
  overflow: hidden;
}
.fine-print-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -250px;
  bottom: -330px;
  background: rgba(82, 103, 255, 0.12);
  border-radius: 50%;
  filter: blur(2px);
}
.fine-print-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 42px;
}
.fine-print-heading h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 62px);
}
.fine-print-heading > p:last-child {
  color: #aeb8cb;
}
.clarity-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.clarity-card {
  min-height: 245px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}
.clarity-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  color: #a9b4ff;
  background: rgba(112, 130, 255, 0.14);
  border-radius: 14px;
}
.clarity-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.clarity-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 19px;
}
.clarity-card p {
  margin: 0;
  color: #aeb8cb;
  font-size: 14px;
  line-height: 1.65;
}
.hero-grid,
.final-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 85%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-orb-one {
  width: 500px;
  height: 500px;
  right: -260px;
  top: 160px;
  border: 1px solid rgba(112, 130, 255, 0.2);
  box-shadow: 0 0 120px rgba(82, 103, 255, 0.16) inset;
}
.hero-orb-two {
  width: 230px;
  height: 230px;
  left: -150px;
  bottom: 80px;
  border: 1px solid rgba(169, 121, 255, 0.17);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 36px;
}
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}
.eyebrow.light {
  color: #91a0ff;
}
.hero h1,
.section-heading h2,
.wizard-intro h2,
.confidence-header h2,
.faq-intro h2,
.final-content h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 820;
}
h1 em,
h2 em {
  color: var(--blue-bright);
  font-style: normal;
}
.hero-copy {
  padding-bottom: 46px;
}
.hero-lead {
  max-width: 580px;
  margin: 24px 0 0;
  color: #abb5c9;
  font-size: 18px;
  line-height: 1.65;
}
.hero-price {
  margin: 34px 0 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: fit-content;
  column-gap: 16px;
}
.hero-price > span {
  grid-column: 1 / -1;
  color: #909bb0;
  font-size: 13px;
}
.hero-price strong {
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.hero-price small {
  max-width: 105px;
  color: #768298;
  line-height: 1.35;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button-ghost {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.hero-trust {
  max-width: 560px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: #eef2fb;
  font-size: 13px;
  font-weight: 700;
}
.hero-trust span {
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.09),
    rgba(112, 130, 255, 0.07)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 22px rgba(0, 0, 0, 0.1);
}
.hero-trust svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  color: #73efa7;
  box-shadow: 0 0 0 1px rgba(72, 222, 132, 0.16);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.device-stage {
  position: relative;
  height: 600px;
  perspective: 1400px;
  transform: translateX(22px);
}
.laptop {
  position: absolute;
  width: 600px;
  max-width: 100%;
  left: 4%;
  top: 78px;
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(1deg);
  transform-style: preserve-3d;
}
.laptop-screen {
  padding: 10px;
  background: linear-gradient(145deg, #2c3548, #080c14 55%);
  border: 1px solid #3c4760;
  border-radius: 22px 22px 12px 12px;
  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.52),
    0 0 65px rgba(82, 103, 255, 0.18);
}
.browser-bar {
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: #151d2b;
  border-radius: 13px 13px 0 0;
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #485267;
}
.browser-url {
  display: flex;
  gap: 5px;
  align-items: center;
  margin: auto;
  padding: 3px 22px;
  border-radius: 5px;
  color: #667188;
  background: #0c121e;
  font-size: 7px;
}
.browser-url span {
  width: 5px;
  height: 6px;
  border: 1px solid #4b566b;
  border-radius: 2px;
}
.mock-site {
  height: 344px;
  overflow: hidden;
  background: #f6f0e8;
  color: #151c2b;
  border-radius: 0 0 7px 7px;
}
.mock-nav {
  height: 48px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ded7cf;
}
.mock-logo {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.7px;
}
.mock-logo span {
  color: var(--orange);
}
.mock-nav > div {
  display: flex;
  gap: 13px;
}
.mock-nav > div i {
  width: 30px;
  height: 3px;
  background: #c9c3ba;
  border-radius: 3px;
}
.mock-nav b {
  padding: 6px 10px;
  color: #fff;
  background: #162035;
  border-radius: 5px;
  font-size: 7px;
}
.mock-hero {
  height: 235px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.mock-copy small,
.phone-screen > small {
  color: #db6f46;
  font-size: 6px;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.mock-copy > strong,
.phone-screen > strong {
  display: block;
  margin: 8px 0 13px;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: -1.5px;
}
.mock-copy p {
  width: 85%;
  height: 4px;
  margin: 5px 0;
  background: #d4cec7;
  border-radius: 3px;
}
.mock-copy p:nth-of-type(2) {
  width: 62%;
}
.mock-copy button,
.phone-screen button {
  margin-top: 18px;
  padding: 8px 13px;
  color: #fff;
  background: #ee7547;
  border: 0;
  border-radius: 4px;
  font-size: 7px;
}
.mock-art {
  position: relative;
}
.art-ring {
  position: absolute;
  width: 168px;
  height: 168px;
  right: 6px;
  top: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #384e95, #8c6acd 45%, #f19762);
  box-shadow: inset 0 0 0 24px rgba(255, 255, 255, 0.22);
}
.art-card {
  position: absolute;
  width: 100px;
  height: 130px;
  top: 20px;
  left: 12px;
  transform: rotate(-8deg);
  border: 6px solid #fff;
  background: linear-gradient(165deg, #10172a 0 48%, #f08d61 49%);
  box-shadow: 0 18px 30px rgba(39, 38, 56, 0.25);
}
.art-dot {
  position: absolute;
  right: 9px;
  top: 17px;
  width: 28px;
  height: 28px;
  background: #ffd059;
  border-radius: 50%;
  border: 6px solid #f6f0e8;
}
.mock-stats {
  height: 62px;
  padding: 11px 28px;
  display: flex;
  gap: 42px;
  background: #192237;
  color: #aeb7c8;
  font-size: 6px;
}
.mock-stats span {
  display: flex;
  flex-direction: column;
}
.mock-stats b {
  color: #fff;
  font-size: 13px;
}
.laptop-base {
  position: relative;
  width: 108%;
  height: 20px;
  left: -4%;
  background: linear-gradient(#364052, #111722);
  border-radius: 2px 2px 20px 20px;
  transform: perspective(300px) rotateX(65deg);
  transform-origin: top;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.45);
}
.laptop-base span {
  position: absolute;
  width: 90px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: #05070b;
  border-radius: 0 0 6px 6px;
}
.phone {
  position: absolute;
  z-index: 5;
  width: 176px;
  height: 358px;
  right: 0;
  top: 228px;
  padding: 8px;
  border-radius: 28px;
  border: 1px solid #505a6c;
  background: linear-gradient(145deg, #30394b, #070a10 64%);
  transform: rotateY(-6deg) rotateZ(4deg);
  box-shadow:
    0 32px 60px rgba(0, 0, 0, 0.52),
    0 0 45px rgba(82, 103, 255, 0.18);
}
.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 50%;
  width: 46px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 0 0 9px 9px;
  background: #090d15;
}
.phone-screen {
  height: 100%;
  padding: 22px 14px 15px;
  border-radius: 21px;
  overflow: hidden;
  background: #f6f0e8;
  color: #151c2b;
}
.mobile-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 29px;
}
.mobile-top i {
  width: 14px;
  height: 10px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}
.phone-screen > strong {
  font-size: 23px;
}
.mobile-art {
  position: relative;
  height: 105px;
  margin-top: 18px;
}
.mobile-art div {
  position: absolute;
  inset: 5px 14px;
  border-radius: 50%;
  background: linear-gradient(140deg, #394e95, #a171c8 48%, #ef9262);
}
.mobile-art span {
  position: absolute;
  width: 62px;
  height: 85px;
  top: 8px;
  left: 36px;
  transform: rotate(-7deg);
  border: 4px solid #fff;
  background: linear-gradient(160deg, #12182a 0 48%, #ef8b60 49%);
}
.phone-screen button {
  width: 100%;
  margin-top: 8px;
}
.mobile-bars {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}
.mobile-bars i {
  flex: 1;
  height: 25px;
  border-radius: 4px;
  background: #e2ddd6;
}
.floating-note {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: #cad2e1;
  background: rgba(18, 27, 44, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  font-size: 10px;
  animation: float 4s ease-in-out infinite;
}
.floating-note strong {
  display: block;
  color: #fff;
  font-size: 11px;
}
.note-one {
  top: 25px;
  right: 36px;
}
.note-two {
  left: -10px;
  bottom: 42px;
  animation-delay: -1.5s;
}
.note-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #79e5a5;
  background: rgba(37, 211, 102, 0.12);
  border-radius: 9px;
}
.note-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}
.status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38db78;
  box-shadow: 0 0 0 5px rgba(56, 219, 120, 0.12);
}
@keyframes float {
  50% {
    transform: translateY(-7px);
  }
}
.hero-strip {
  position: relative;
  z-index: 4;
  isolation: isolate;
  min-height: 94px;
  margin-top: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(
    110deg,
    rgba(68, 88, 238, 0.96),
    rgba(106, 79, 224, 0.92)
  );
  border: 1px solid rgba(191, 199, 255, 0.48);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow:
    0 -12px 42px rgba(82, 103, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.hero-strip::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 180px;
  right: -70px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  filter: blur(2px);
  pointer-events: none;
}
.hero-strip span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(19, 24, 78, 0.28);
}
.hero-strip span::before {
  content: "✓";
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  color: #394bd0;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(20, 25, 86, 0.2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.hero-strip i {
  position: relative;
  z-index: 1;
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 60px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading.centered .eyebrow {
  justify-content: center;
}
.section-heading h2,
.wizard-intro h2,
.confidence-header h2,
.faq-intro h2,
.final-content h2 {
  font-size: clamp(38px, 4vw, 58px);
  color: var(--ink);
}
.section-heading h2 em,
.wizard-intro h2 em,
.confidence-header h2 em,
.faq-intro h2 em {
  color: var(--blue);
}
.section-heading > p:last-child,
.wizard-intro > p,
.faq-intro > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.included-section {
  padding: 56px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(82, 103, 255, 0.08), transparent 27%),
    #f7f8fc;
}
.included-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.5fr);
  column-gap: 54px;
  align-items: start;
}
.included-intro {
  position: sticky;
  top: 112px;
  max-width: 360px;
  margin: 0;
  padding: 10px 0;
}
.included-intro h2 {
  font-size: clamp(38px, 4vw, 52px);
}
.included-intro > p:last-of-type {
  margin-top: 18px;
  font-size: 16px;
}
.included-proof {
  width: fit-content;
  margin-top: 30px;
  padding: 12px 16px 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(82, 103, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(26, 38, 68, 0.06);
}
.included-proof strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 12px;
  font-size: 21px;
}
.included-proof span {
  color: #687388;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.included-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.included-card {
  position: relative;
  min-height: 0;
  padding: 18px 18px 18px 20px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "icon title number"
    "icon copy number";
  column-gap: 14px;
  align-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e8ebf2;
  border-radius: 17px;
  box-shadow: 0 10px 28px rgba(26, 38, 68, 0.045);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transition-delay: var(--delay, 0ms);
}
.included-card:hover {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--card-color) 26%, #e8ebf2);
  box-shadow: 0 14px 34px rgba(26, 38, 68, 0.09);
}
.included-card::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: var(--card-color);
}
.card-icon {
  grid-area: icon;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--card-color);
  background: color-mix(in srgb, var(--card-color) 11%, white);
  border-radius: 12px;
}
.card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-number {
  grid-area: number;
  align-self: start;
  color: color-mix(in srgb, var(--card-color) 55%, #b8c0ce);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.included-card h3 {
  grid-area: title;
  align-self: end;
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}
.included-card p {
  grid-area: copy;
  align-self: start;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.tone-blue {
  --card-color: #5267ff;
}
.tone-violet {
  --card-color: #9b6af8;
}
.tone-orange {
  --card-color: #f47d4f;
}
.tone-green {
  --card-color: #20b85a;
}
.tone-pink {
  --card-color: #ea559a;
}
.tone-yellow {
  --card-color: #d29a13;
}
.included-callout {
  grid-column: 2;
  margin-top: 14px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 17px;
  color: #fff;
  background: var(--ink);
}
.callout-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #9aa7ff;
  background: rgba(112, 130, 255, 0.12);
}
.callout-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
}
.included-callout > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.included-callout strong {
  font-size: 15px;
}
.included-callout span {
  color: #9ea8bb;
  font-size: 12px;
}
.included-callout a {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aab4ff;
  font-size: 13px;
  font-weight: 700;
}

.showcase-section {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  background: #fff;
}
.showcase-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -260px;
  top: -320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 103, 255, 0.12),
    transparent 68%
  );
  pointer-events: none;
}
.showcase-heading {
  position: relative;
  max-width: 820px;
  margin-bottom: 42px;
}
.showcase-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.showcase-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe4ee;
  border-radius: 25px;
  box-shadow: 0 18px 45px rgba(24, 38, 70, 0.1);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(82, 103, 255, 0.42);
  box-shadow: 0 26px 58px rgba(24, 38, 70, 0.16);
}
.showcase-card:focus-visible {
  outline: 3px solid rgba(82, 103, 255, 0.35);
  outline-offset: 4px;
}
.showcase-browser {
  margin: 14px 14px 0;
  overflow: hidden;
  background: #101827;
  border: 1px solid #d7dde8;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(21, 32, 57, 0.13);
}
.showcase-browser-bar {
  height: 30px;
  padding: 0 11px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  color: #8995a9;
  background: #101827;
  font-size: 8px;
}
.showcase-browser-bar > span {
  display: flex;
  gap: 4px;
}
.showcase-browser-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #465168;
}
.showcase-browser-bar i:first-child {
  background: #ff7b73;
}
.showcase-browser-bar i:nth-child(2) {
  background: #f4bf4f;
}
.showcase-browser-bar i:last-child {
  background: #58c78a;
}
.showcase-browser-bar b {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}
.showcase-preview {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #07101f;
}
.showcase-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transition: transform 0.35s ease;
}
.showcase-card:hover .showcase-preview img {
  transform: scale(1.025);
}
.showcase-copy {
  flex: 1;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
}
.showcase-type {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.showcase-copy h3 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.025em;
}
.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.showcase-copy > strong {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
}
.showcase-copy > strong svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.showcase-card:hover .showcase-copy > strong svg {
  transform: translateX(4px);
}

.pricing-section {
  position: relative;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.pricing-glow {
  position: absolute;
  width: 760px;
  height: 760px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 103, 255, 0.23),
    transparent 68%
  );
}
.pricing-heading {
  position: relative;
  max-width: none;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
}
.pricing-heading h2 {
  max-width: 750px;
  color: #fff;
}
.pricing-heading > p {
  margin: 0 0 7px;
  padding: 13px 16px;
  color: #dce2f2;
  background: rgba(112, 130, 255, 0.09);
  border-left: 3px solid #8292ff;
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}
.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.price-card {
  position: relative;
  padding: 38px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: #151f32;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}
.price-card.featured {
  background: linear-gradient(150deg, #202c4c, #17223a 58%, #141f33);
  border-color: rgba(112, 130, 255, 0.65);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(112, 130, 255, 0.12) inset;
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 100% 0,
    rgba(112, 130, 255, 0.18),
    transparent 35%
  );
  pointer-events: none;
}
.popular-badge {
  position: absolute;
  right: 28px;
  top: 27px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: #cbd2ff;
  background: rgba(112, 130, 255, 0.13);
  border: 1px solid rgba(112, 130, 255, 0.28);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.popular-badge span {
  width: 6px;
  height: 6px;
  background: #8391ff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(131, 145, 255, 0.12);
}
.price-top > p:first-child {
  margin: 0 0 10px;
  color: #7e8aa1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.price-top h3 {
  margin: 0;
  font-size: 28px;
}
.price {
  margin: 25px 0 20px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
}
.price strong {
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.price span {
  padding-bottom: 5px;
  color: #808da3;
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-description {
  max-width: 450px;
  margin: 0;
  color: #a4aec0;
  font-size: 14px;
}
.price-features {
  margin: 30px 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.price-features > span {
  color: #78869e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-features ul {
  margin: 17px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}
.price-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #c6cede;
  font-size: 14px;
}
.price-features svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 3px;
  color: #73e19f;
  background: rgba(37, 211, 102, 0.12);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}
.plan-button {
  width: 100%;
  margin-top: auto;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.featured .plan-button {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(82, 103, 255, 0.25);
}
.plan-help {
  position: relative;
  margin-top: 22px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 20px;
}
.help-avatars {
  display: flex;
}
.help-avatars span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  color: #fff;
  background: var(--blue);
  border: 2px solid #151f32;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}
.help-avatars span:first-child {
  margin-left: 0;
  background: #9b6af8;
}
.plan-help strong {
  display: block;
  color: #e7ebf3;
  font-size: 14px;
}
.plan-help > div:nth-child(2) span {
  display: block;
  color: #818da3;
  font-size: 12px;
}
.plan-help a {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aab4ff;
  font-size: 13px;
  font-weight: 750;
}
.plan-conditions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}
.plan-conditions > div {
  padding: 15px 17px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.plan-conditions > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.plan-conditions > div > span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  color: #aab4ff;
  background: rgba(112, 130, 255, 0.1);
  border-radius: 9px;
}
.plan-conditions svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plan-conditions p {
  margin: 0;
  color: #7f8ba1;
  font-size: 11px;
  line-height: 1.45;
}
.plan-conditions strong {
  display: block;
  margin-bottom: 2px;
  color: #dfe4ef;
  font-size: 12px;
}

.process-section {
  padding: 56px 0;
  background:
    linear-gradient(rgba(82, 103, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 103, 255, 0.025) 1px, transparent 1px),
    #f5f6fa;
  background-size: 38px 38px;
}
.process-heading {
  max-width: 660px;
  margin-bottom: 30px;
}
.process-heading h2 {
  font-size: clamp(38px, 4vw, 54px);
}
.process-heading > p:last-child {
  margin-top: 16px;
  font-size: 15px;
}
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.process-card {
  position: relative;
  min-height: 190px;
  padding: 19px 20px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e6e9f0;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(26, 38, 68, 0.045);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  transition-delay: var(--delay, 0ms);
}
.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 103, 255, 0.25);
  box-shadow: 0 16px 36px rgba(26, 38, 68, 0.09);
}
.process-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 39px;
  right: -15px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, #bbc3d2, #7586ff);
}
.process-card:nth-child(3n)::after {
  display: none;
}
.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.process-number {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #273653);
  border: 4px solid #fff;
  outline: 1px solid #dfe3eb;
  border-radius: 13px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.process-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 11px;
}
.process-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-stage {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.process-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.payment-chip {
  width: fit-content;
  margin-top: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #7356d2;
  background: #f0ebff;
  font-size: 10px;
  font-weight: 700;
}
.payment-chip strong {
  margin-right: 4px;
}
.payment-chip.final {
  color: #138b46;
  background: #e7f8ee;
}

.wizard-section {
  position: relative;
  padding: 64px 0;
  color: #fff;
  background: #101a2d;
  overflow: hidden;
}
.wizard-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  left: -340px;
  bottom: -300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 103, 255, 0.18),
    transparent 68%
  );
}
.wizard-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: start;
}
.wizard-intro {
  position: sticky;
  top: 130px;
  padding-top: 10px;
}
.wizard-intro h2 {
  color: #fff;
}
.wizard-intro > p {
  color: #9faabd;
}
.wizard-benefits {
  margin-top: 32px;
  display: grid;
  gap: 21px;
}
.wizard-benefits > div {
  display: flex;
  gap: 14px;
}
.wizard-benefits > div > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #aeb7ff;
  background: rgba(112, 130, 255, 0.11);
  border: 1px solid rgba(112, 130, 255, 0.18);
  border-radius: 12px;
}
.wizard-benefits svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wizard-benefits p {
  margin: 0;
  color: #78859b;
  font-size: 13px;
}
.wizard-benefits strong {
  display: block;
  color: #dfe4ef;
  font-size: 14px;
}
.wizard-card {
  min-height: 560px;
  padding: 32px;
  color: var(--text);
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}
.wizard-progress-text {
  display: flex;
  justify-content: space-between;
  color: #8b94a5;
  font-size: 12px;
}
.wizard-progress-text strong {
  color: var(--blue);
}
.wizard-progress {
  height: 5px;
  margin-top: 10px;
  background: #edf0f5;
  border-radius: 99px;
  overflow: hidden;
}
.wizard-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #8d72ff);
  border-radius: inherit;
  transition: width 0.3s ease;
}
#project-wizard {
  margin-top: 42px;
}
.wizard-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  animation: stepIn 0.28s ease;
}
.wizard-step.active {
  display: block;
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
}
.wizard-step legend {
  padding: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.wizard-step > p {
  margin: 6px 0 26px;
  color: var(--muted);
  font-size: 14px;
}
.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.option-cards label:first-child,
.option-cards label:nth-child(2) {
  min-height: 130px;
}
.option-cards label:last-child {
  grid-column: 1 / -1;
}
.option-cards label {
  cursor: pointer;
}
.option-cards input,
.checkbox-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.option-cards label > span {
  position: relative;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #e3e7ef;
  border-radius: 17px;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.option-cards label:nth-child(-n + 2) > span {
  overflow: hidden;
  padding: 23px 22px;
  background: linear-gradient(145deg, #f5f7ff, #edf0ff);
  border: 2px solid #aeb8ff;
  border-radius: 21px;
  box-shadow:
    0 12px 28px rgba(82, 103, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.option-cards label:nth-child(-n + 2) > span::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #5267ff, #8a72ff);
}
.option-cards label:nth-child(-n + 2) > span::after {
  content: "✓";
  position: absolute;
  width: 25px;
  height: 25px;
  right: 15px;
  top: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(82, 103, 255, 0.3);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.75);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.option-cards label:nth-child(-n + 2):hover > span {
  transform: translateY(-3px);
  border-color: #8292ff;
  box-shadow:
    0 17px 34px rgba(82, 103, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.option-cards label:last-child > span {
  background: #fafbfe;
  border-style: dashed;
}
.option-cards input:checked + span {
  border-color: var(--blue);
  background: #eef1ff;
  box-shadow:
    0 0 0 4px rgba(82, 103, 255, 0.12),
    0 16px 34px rgba(82, 103, 255, 0.18);
}
.option-cards label:nth-child(-n + 2) input:checked + span::after {
  opacity: 1;
  transform: scale(1);
}
.option-cards b {
  color: var(--ink);
  font-size: 16px;
}
.option-cards small {
  color: #808a9c;
  font-size: 12px;
}
.option-cards strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 17px;
}
.option-cards .tax-note {
  display: block;
  margin-top: 1px;
  color: #7c879a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.option-cards span > svg {
  position: absolute;
  width: 22px;
  height: 22px;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.field-label {
  display: block;
  margin: 0 0 8px;
  color: #414b5e;
  font-size: 12px;
  font-weight: 750;
}
.text-input {
  width: 100%;
  min-height: 58px;
  padding: 15px 17px;
  border: 1.5px solid #dfe4ed;
  border-radius: 14px;
  outline: none;
  background: #fafbfc;
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
textarea.text-input {
  min-height: 150px;
  resize: vertical;
}
.text-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(82, 103, 255, 0.09);
  background: #fff;
}
.text-input::placeholder {
  color: #abb2c0;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkbox-grid label {
  cursor: pointer;
}
.checkbox-grid label > span {
  min-height: 51px;
  padding: 11px 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1.5px solid #e2e6ee;
  border-radius: 13px;
  color: #4d576a;
  font-size: 13px;
  font-weight: 650;
  transition: 0.2s ease;
}
.checkbox-grid label svg,
.privacy-check > span svg {
  width: 18px;
  height: 18px;
  padding: 4px;
  color: transparent;
  border: 1.5px solid #cdd3de;
  border-radius: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}
.checkbox-grid input:checked + span {
  border-color: var(--blue);
  background: #f6f7ff;
  color: var(--ink);
}
.checkbox-grid input:checked + span svg,
.privacy-check input:checked + span svg {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.upload-note {
  margin-top: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7a8496;
  background: #f7f8fb;
  border-radius: 13px;
  font-size: 11px;
  line-height: 1.5;
}
.upload-note svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.upload-note strong {
  display: block;
  color: #4a5465;
}
.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-fields > div:first-child {
  grid-column: 1 / -1;
}
.privacy-check {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #737d8f;
  font-size: 11px;
  cursor: pointer;
}
.privacy-check input {
  position: absolute;
  opacity: 0;
}
.privacy-check > span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.privacy-check > span svg {
  width: 18px;
  height: 18px;
}
.wizard-error {
  min-height: 22px;
  padding-top: 8px;
  color: #d84558;
  font-size: 12px;
}
.wizard-actions {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wizard-back {
  padding: 12px 4px;
  border: 0;
  background: transparent;
  color: #727c8e;
  cursor: pointer;
}
.wizard-back:disabled {
  opacity: 0.35;
  cursor: default;
}
.wizard-next,
.wizard-submit {
  min-width: 150px;
  min-height: 52px;
  border-radius: 14px;
}
.wizard-submit {
  display: none;
}
.wizard-success {
  padding: 54px 20px 20px;
  text-align: center;
}
.success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #20c768, #4bdd86);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
}
.success-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}
.wizard-success .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}
.wizard-success h3 {
  max-width: 490px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.wizard-success > p:not(.eyebrow) {
  max-width: 480px;
  margin: 16px auto 26px;
  color: var(--muted);
}
.whatsapp-final {
  background: #20bd5d;
  border-color: #20bd5d;
  box-shadow: 0 12px 30px rgba(32, 189, 93, 0.25);
}
.whatsapp-final:hover {
  background: #27ca66;
  box-shadow: 0 15px 33px rgba(32, 189, 93, 0.3);
}
.success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.email-final {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(82, 103, 255, 0.2);
}
.email-final:hover {
  background: #4258ed;
  box-shadow: 0 15px 33px rgba(82, 103, 255, 0.28);
}
.start-over {
  display: block;
  margin: 18px auto 0;
  border: 0;
  background: transparent;
  color: #737d8e;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.confidence-section {
  background: #fff;
}
.confidence-header {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  max-width: 900px;
  margin-bottom: 54px;
}
.confidence-emblem {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 32px;
  transform: rotate(-5deg);
}
.confidence-emblem svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.confidence-header .eyebrow {
  margin-bottom: 14px;
}
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}
.confidence-grid article {
  position: relative;
  min-height: 270px;
  padding: 30px;
  background: #fff;
}
.confidence-grid article + article {
  border-left: 1px solid var(--line);
}
.confidence-grid article > span {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #c5cad4;
  font-size: 11px;
  font-weight: 800;
}
.confidence-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #f0f2ff;
  border-radius: 16px;
}
.confidence-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.confidence-icon strong {
  font-size: 19px;
}
.confidence-icon small {
  font-size: 11px;
}
.confidence-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--ink);
}
.confidence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-section {
  position: relative;
  padding: 60px 0;
  background: #f6f7fb;
}
.faq-section::before {
  content: "";
  position: absolute;
  width: min(1180px, calc(100% - 40px));
  height: 2px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(82, 103, 255, 0.22) 12%,
    #7082ff 50%,
    rgba(82, 103, 255, 0.22) 88%,
    transparent
  );
  box-shadow: 0 3px 16px rgba(82, 103, 255, 0.24);
}
.faq-section::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #f6f7fb;
  border: 2px solid #7082ff;
  border-radius: 3px;
  box-shadow:
    0 0 0 6px #f6f7fb,
    0 4px 16px rgba(82, 103, 255, 0.3);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 110px;
}
.faq-intro h2 {
  font-size: clamp(38px, 4vw, 52px);
}
.faq-intro > p {
  margin-top: 16px;
  font-size: 15px;
}
.text-link {
  margin-top: 20px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}
.faq-list {
  display: grid;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 17px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: #f0f2f6;
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 10px;
  height: 2px;
  background: #657086;
  transition: transform 0.2s;
}
.faq-item summary i::after {
  transform: rotate(90deg);
}
.faq-item[open] summary i::after {
  transform: rotate(0);
}
.faq-item[open] summary {
  color: var(--blue);
}
.faq-item > div {
  padding: 0 18px 16px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(140deg, #5167ff, #7c5cff);
  overflow: hidden;
}
.final-grid {
  opacity: 0.28;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}
.final-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  bottom: -230px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.035),
    0 0 0 120px rgba(255, 255, 255, 0.025);
}
.final-content {
  position: relative;
  text-align: center;
}
.final-content .eyebrow {
  justify-content: center;
  color: #d8dcff;
}
.final-content h2 {
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
}
.final-content h2 em {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}
.final-content > p:not(.eyebrow) {
  margin: 16px auto 0;
  color: #e2e5ff;
  font-size: 16px;
}
.final-price {
  margin: 24px auto 22px;
  display: flex;
  flex-direction: column;
}
.final-price span {
  color: #d4d8ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.final-price strong {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.05em;
}
.final-content .button-row {
  justify-content: center;
}
.button-white {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 15px 35px rgba(24, 26, 74, 0.2);
}
.button-white:hover {
  color: var(--blue);
  background: #fff;
}
.button-dark {
  color: #fff;
  background: #121b2f;
  border-color: #121b2f;
  box-shadow: 0 15px 35px rgba(24, 26, 74, 0.22);
}
.button-dark:hover {
  background: #1c2740;
}

.site-footer {
  padding: 44px 0 24px;
  color: #9ca7ba;
  background: #080f1c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-brand {
  padding-left: 18px;
}
.footer-brand .brand {
  color: #fff;
}
.footer-brand p {
  max-width: 330px;
  margin: 12px 0 12px;
  font-size: 13px;
}
.footer-brand > a:last-child {
  color: #d9deea;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-grid h3 {
  margin: 3px 0 8px;
  color: #fff;
  font-size: 13px;
}
.footer-grid > div:not(.footer-brand) a {
  font-size: 13px;
  transition: color 0.2s;
}
.footer-grid > div:not(.footer-brand) a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}
.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  min-height: 50px;
  padding: 0 17px 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #20bf5e;
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(15, 91, 47, 0.35);
  font-size: 13px;
  font-weight: 750;
  transition: transform 0.2s;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
}
.floating-whatsapp svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay {
  transition-delay: 0.12s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floating-note {
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
  }
  .info-hero-layout {
    gap: 42px;
  }
  .hero {
    min-height: auto;
  }
  .hero-layout {
    grid-template-columns: 1fr 1fr;
  }
  .device-stage {
    height: 540px;
    transform: scale(0.88) translateX(-4px);
    transform-origin: center;
  }
  .laptop {
    width: 570px;
    left: -5%;
  }
  .phone {
    right: -18px;
  }
  .wizard-layout {
    gap: 42px;
  }
  .faq-layout {
    gap: 52px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 90px 0;
  }
  .info-hero {
    padding: 138px 0 82px;
  }
  .info-hero-layout {
    grid-template-columns: 1fr;
  }
  .journey-card {
    max-width: 640px;
  }
  .clarity-grid {
    grid-template-columns: 1fr;
  }
  .clarity-card {
    min-height: 0;
  }
  .showcase-section {
    padding: 72px 0;
  }
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .showcase-card:last-child {
    width: calc(50% - 8px);
    grid-column: 1 / -1;
    justify-self: center;
  }
  .faq-section {
    padding: 56px 0;
  }
  .wizard-section {
    padding: 60px 0;
  }
  .menu-toggle {
    display: flex;
    order: 3;
  }
  .header-cta {
    margin-left: auto;
    margin-right: 10px;
  }
  .main-nav {
    position: fixed;
    inset: 62px 20px auto;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 20px;
    background: rgba(16, 26, 45, 0.98);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 13px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .main-nav a:last-child {
    border-bottom: 0;
  }
  .hero {
    padding-top: 128px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 680px;
    padding-bottom: 0;
  }
  .device-stage {
    width: 670px;
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.94);
  }
  .hero-strip {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 22px;
    margin-top: 0;
  }
  .hero-strip i {
    display: none;
  }
  .included-layout {
    grid-template-columns: 1fr;
  }
  .included-intro {
    position: static;
    max-width: 640px;
    margin: 0 0 30px;
    padding: 0;
  }
  .included-grid,
  .included-callout {
    grid-column: 1;
  }
  .included-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
  .process-card::after {
    display: block;
  }
  .process-card:nth-child(3n)::after {
    display: block;
  }
  .process-card:nth-child(even)::after {
    display: none;
  }
  .process-heading {
    margin-bottom: 32px;
  }
  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-grid {
    gap: 14px;
  }
  .plan-conditions {
    grid-template-columns: 1fr;
  }
  .plan-conditions > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .price-card {
    padding: 28px;
  }
  .price {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .price span br {
    display: none;
  }
  .wizard-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .wizard-intro,
  .faq-intro {
    position: static;
  }
  .wizard-intro {
    max-width: 650px;
  }
  .wizard-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
  .wizard-benefits > div {
    flex-direction: column;
  }
  .confidence-grid {
    grid-template-columns: 1fr;
  }
  .confidence-grid article {
    min-height: 220px;
  }
  .confidence-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 76px 0;
  }
  .included-section,
  .process-section {
    padding: 44px 0;
  }
  .showcase-section {
    padding: 62px 0;
  }
  .showcase-heading {
    margin-bottom: 32px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card:last-child {
    width: 100%;
    grid-column: auto;
  }
  .faq-section {
    padding: 44px 0;
  }
  .wizard-section {
    padding: 48px 0;
  }
  html {
    scroll-padding-top: 76px;
  }
  body {
    padding-bottom: 68px;
  }
  .site-header {
    padding: 0;
  }
  .header-inner {
    min-height: 68px;
  }
  .brand {
    width: 215px;
    height: 64px;
    flex-basis: 215px;
  }
  .brand-logo {
    top: -30px;
    width: 215px;
  }
  .header-cta {
    display: none;
  }
  .main-nav {
    inset: 68px 14px auto;
  }
  .hero {
    padding-top: 108px;
  }
  .info-hero {
    padding: 118px 0 62px;
  }
  .info-hero h1 {
    font-size: 45px;
  }
  .info-hero-lead {
    font-size: 16px;
  }
  .info-hero-actions .button {
    width: 100%;
  }
  .journey-card {
    padding: 18px;
    border-radius: 20px;
  }
  .info-anchor-bar {
    margin-top: 42px;
  }
  .fine-print-section {
    padding: 58px 0;
  }
  .fine-print-heading {
    margin-bottom: 30px;
  }
  .clarity-card {
    padding: 24px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-price {
    margin: 27px 0 25px;
  }
  .hero-price strong {
    font-size: 37px;
  }
  .button-row {
    flex-direction: column;
  }
  .button-row .button {
    width: 100%;
  }
  .hero-trust {
    grid-template-columns: 1fr;
  }
  .device-stage {
    height: 390px;
    width: 100%;
    margin-top: 10px;
    transform: none;
  }
  .laptop {
    width: 450px;
    max-width: none;
    left: 50%;
    top: 40px;
    transform: translateX(-54%) rotateY(-8deg) rotateX(3deg) rotateZ(1deg)
      scale(0.73);
    transform-origin: top center;
  }
  .phone {
    width: 145px;
    height: 295px;
    right: -2px;
    top: 115px;
    transform: rotateY(-6deg) rotateZ(4deg) scale(0.8);
    transform-origin: top right;
  }
  .phone-screen {
    padding: 20px 11px 12px;
  }
  .note-one {
    right: 2px;
    top: 6px;
  }
  .note-two {
    left: 0;
    bottom: 3px;
  }
  .hero-strip {
    margin-inline: -14px;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    padding: 18px 14px;
    font-size: 12px;
  }
  .hero-strip span {
    white-space: normal;
    line-height: 1.35;
  }
  .hero-strip span::before {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 12px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .included-intro {
    margin-bottom: 24px;
  }
  .process-heading {
    margin-bottom: 26px;
  }
  .section-heading h2,
  .wizard-intro h2,
  .confidence-header h2,
  .faq-intro h2 {
    font-size: 37px;
  }
  .included-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .included-card {
    min-height: 0;
  }
  .included-callout {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .included-callout a {
    width: 100%;
    margin: 6px 0 0 56px;
  }
  .price-card {
    padding: 25px;
    border-radius: 24px;
  }
  .price-card.featured {
    order: -1;
  }
  .popular-badge {
    right: 20px;
    top: 20px;
  }
  .price strong {
    font-size: 46px;
  }
  .plan-help {
    flex-wrap: wrap;
  }
  .plan-help a {
    width: 100%;
    margin-left: 55px;
  }
  .process-card {
    min-height: 0;
  }
  .process-card::after {
    display: none;
  }
  .wizard-layout {
    gap: 28px;
  }
  .wizard-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wizard-benefits > div {
    flex-direction: row;
  }
  .wizard-card {
    min-height: 540px;
    margin-inline: -4px;
    padding: 24px 20px;
    border-radius: 24px;
  }
#project-wizard {
  margin-top: 32px;
}
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
  .wizard-step legend {
    font-size: 24px;
  }
  .option-cards,
  .checkbox-grid,
  .contact-fields {
    grid-template-columns: 1fr;
  }
  .option-cards label:first-child,
  .option-cards label:nth-child(2) {
    min-height: 105px;
  }
  .contact-fields > div:first-child {
    grid-column: auto;
  }
  .wizard-actions {
    gap: 12px;
  }
  .wizard-next,
  .wizard-submit {
    min-width: 0;
    flex: 1;
    padding-inline: 16px;
  }
  .confidence-header {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .confidence-emblem {
    width: 80px;
    height: 80px;
  }
  .confidence-grid article {
    min-height: 230px;
  }
  .faq-layout {
    gap: 28px;
  }
  .final-cta {
    padding: 56px 0;
  }
  .final-content h2 {
    font-size: 44px;
  }
  .final-content > p:not(.eyebrow) {
    font-size: 16px;
  }
  .final-price strong {
    font-size: 42px;
  }
  .site-footer {
    padding: 38px 0 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-left: 0;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .floating-whatsapp {
    display: none;
  }
  .mobile-cta {
    position: fixed;
    z-index: 95;
    inset: auto 0 0;
    height: 68px;
    padding: 9px 12px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 8px;
    background: rgba(8, 15, 28, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 750;
  }
  .mobile-cta a:last-child {
    background: var(--blue);
    border-color: var(--blue);
  }
  .mobile-cta svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }
}

/* Tienda Digital */
.nav-store-link {
  color: #fff !important;
}
.nav-store-link::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #6ee7a2;
  box-shadow: 0 0 0 4px rgba(110, 231, 162, 0.12);
  vertical-align: 1px;
}
.digital-store-preview {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(112, 130, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #f8f9ff, #eef1fb);
}
.digital-store-preview-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 72px;
}
.digital-store-preview-copy h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.digital-store-preview-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 18px;
}
.digital-store-mini-products {
  display: grid;
  gap: 16px;
}
.digital-mini-card {
  min-width: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(115, 128, 164, 0.18);
  border-radius: 25px;
  box-shadow: 0 22px 60px rgba(35, 48, 90, 0.1);
}
.digital-mini-card img {
  width: 132px;
  height: 116px;
  display: block;
  object-fit: cover;
  border-radius: 17px;
}
.digital-mini-card h3 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}
.digital-mini-card p {
  margin: 3px 0 5px;
  color: var(--muted);
  font-size: 13px;
}
.digital-mini-card strong {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.availability-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #168447;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.availability-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #25c66b;
  box-shadow: 0 0 0 4px rgba(37, 198, 107, 0.12);
}

.store-page {
  background: #f4f6fb;
}
.store-page .site-header .main-nav a[aria-current="page"] {
  color: #fff;
}
.store-hero {
  position: relative;
  overflow: hidden;
  padding: 134px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(139, 112, 255, 0.32), transparent 24%),
    radial-gradient(circle at 12% 85%, rgba(82, 103, 255, 0.25), transparent 30%),
    #09111f;
}
.store-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.store-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
}
.store-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.store-hero h1 em {
  color: #8fa0ff;
}
.store-hero-lead {
  max-width: 660px;
  margin: 26px 0 32px;
  color: #b6c0d4;
  font-size: 19px;
}
.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-hero-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  backdrop-filter: blur(18px);
}
.store-hero-panel > span {
  display: block;
  margin-bottom: 18px;
  color: #9aa6bd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.store-hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 16px;
}
.store-hero-stat + .store-hero-stat {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.store-hero-stat strong {
  grid-row: 1 / 3;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 38px;
  line-height: 1;
}
.store-hero-stat b {
  color: #fff;
  font-size: 14px;
}
.store-hero-stat small {
  color: #8f9bb1;
  font-size: 12px;
}
.store-catalog {
  padding: 105px 0 120px;
}
.store-catalog-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.store-catalog-heading h2,
.store-process h2,
.store-faq h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.store-catalog-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}
.store-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.store-product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e5ef;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(19, 32, 63, 0.1);
}
.store-product-card--promo {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}
.store-product-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.store-product-card--promo .store-product-body {
  padding: 38px 38px 24px;
}
.store-product-card--promo .store-product-footer {
  margin: auto 38px 38px;
}
.store-product-visual {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #080e1b;
}
.store-product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.store-product-visual--poster {
  aspect-ratio: 3 / 4;
  max-height: 650px;
  background: #03060d;
}
.store-product-visual--poster img {
  object-fit: contain;
}
.store-product-card:hover .store-product-visual img {
  transform: scale(1.025);
}
.store-status {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a7039;
  background: rgba(239, 255, 246, 0.95);
  border: 1px solid rgba(58, 196, 113, 0.3);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(1, 30, 14, 0.16);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.store-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25c66b;
  box-shadow: 0 0 0 4px rgba(37, 198, 107, 0.14);
}
.store-product-body {
  padding: 30px 30px 20px;
  flex: 1;
}
.store-product-kicker {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.store-product-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.store-product-description {
  margin: 12px 0 22px;
  color: var(--muted);
}
.store-feature-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  list-style: none;
}
.store-feature-list li {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #263149;
  font-size: 13px;
  font-weight: 650;
}
.store-feature-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  padding: 4px;
  color: #1a9d54;
  background: #eaf9f0;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}
.store-product-footer {
  margin: 0 30px 30px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e7ebf2;
}
.store-price {
  display: flex;
  flex-direction: column;
}
.store-price small {
  color: var(--muted);
  font-size: 11px;
}
.store-price strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.store-buy-button {
  min-height: 50px;
  padding-inline: 18px;
  border-radius: 14px;
  font-size: 13px;
}
.store-availability-note {
  margin: 24px 0 0;
  padding: 15px 18px;
  color: #5e6a81;
  background: #eef1f8;
  border: 1px solid #e0e5ef;
  border-radius: 15px;
  font-size: 12px;
  text-align: center;
}
.store-process {
  padding: 110px 0;
  color: #fff;
  background: #0a1120;
}
.store-process-heading {
  max-width: 700px;
  margin-bottom: 46px;
}
.store-process-heading > p:last-child {
  margin: 20px 0 0;
  color: #9faabe;
  font-size: 18px;
}
.store-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.store-step {
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}
.store-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #b7c0ff;
  background: rgba(112, 130, 255, 0.15);
  border-radius: 13px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.store-step h3 {
  margin: 20px 0 8px;
  color: #fff;
  font-size: 18px;
}
.store-step p {
  margin: 0;
  color: #9ca7ba;
  font-size: 14px;
}
.store-faq {
  padding: 110px 0;
}
.store-faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
}
.store-faq-intro > p:last-child {
  max-width: 450px;
  margin-top: 22px;
  color: var(--muted);
}
.store-faq-list {
  display: grid;
  gap: 12px;
}
.store-faq-item {
  padding: 21px 22px;
  background: #fff;
  border: 1px solid #e0e5ef;
  border-radius: 18px;
}
.store-faq-item h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
}
.store-faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .digital-store-preview-grid {
    gap: 42px;
  }
  .store-hero-layout {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .digital-store-preview-grid,
  .store-hero-layout,
  .store-faq-layout {
    grid-template-columns: 1fr;
  }
  .digital-store-preview-grid,
  .store-faq-layout {
    gap: 44px;
  }
  .store-hero-layout {
    gap: 38px;
  }
  .store-hero-panel {
    max-width: 560px;
  }
  .store-catalog-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .store-product-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }
  .store-product-card--promo {
    grid-template-columns: 1fr;
  }
  .store-product-visual--poster {
    max-height: 620px;
  }
  .store-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .digital-store-preview {
    padding: 38px 0;
  }
  .digital-store-preview-copy h2 {
    font-size: 43px;
  }
  .digital-store-preview-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .digital-mini-card {
    grid-template-columns: 94px 1fr;
    gap: 14px;
  }
  .digital-mini-card img {
    width: 94px;
    height: 94px;
  }
  .digital-mini-card h3 {
    font-size: 19px;
  }
  .digital-mini-card strong {
    font-size: 23px;
  }
  .store-hero {
    padding: 132px 0 72px;
  }
  .store-hero h1 {
    font-size: 48px;
  }
  .store-hero-lead {
    font-size: 17px;
  }
  .store-hero-actions .button {
    width: 100%;
  }
  .store-hero-panel {
    padding: 20px;
  }
  .store-catalog,
  .store-process,
  .store-faq {
    padding: 76px 0;
  }
  .store-product-visual {
    aspect-ratio: 1;
  }
  .store-product-visual--poster {
    aspect-ratio: 3 / 4;
    max-height: 520px;
  }
  .store-product-card--promo .store-product-body {
    padding: 24px 20px 18px;
  }
  .store-product-card--promo .store-product-footer {
    margin: 0 20px 24px;
  }
  .store-product-body {
    padding: 24px 20px 18px;
  }
  .store-product-body h2 {
    font-size: 30px;
  }
  .store-feature-list {
    grid-template-columns: 1fr;
  }
  .store-product-footer {
    margin: 0 20px 24px;
    align-items: stretch;
    flex-direction: column;
  }
  .store-buy-button {
    width: 100%;
  }
  .store-faq-layout {
    gap: 36px;
  }
}

/* Instrucciones de Pago y Contacto */
.store-payment-section {
  padding: 72px 0;
  background: #080e1b;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.store-payment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(82, 103, 255, 0.35), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(243, 187, 56, 0.25), transparent 35%);
  pointer-events: none;
}
.store-payment-container {
  position: relative;
  z-index: 2;
}
.store-payment-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.store-payment-header h2 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}
.store-payment-header h2 em {
  color: #f3bb38;
  font-style: normal;
}
.store-payment-header p {
  color: #b0b9cc;
  font-size: 17px;
  margin: 0;
}
.store-payment-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: stretch;
}
.payment-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.payment-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.binance-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-color: rgba(243, 187, 56, 0.35);
  background: radial-gradient(circle at 0% 0%, rgba(243, 187, 56, 0.09), transparent 50%), rgba(255, 255, 255, 0.035);
}
.payment-card-badge {
  position: absolute;
  top: 18px;
  right: 22px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(243, 187, 56, 0.18);
  color: #fbd672;
  border: 1px solid rgba(243, 187, 56, 0.35);
}
.payment-card-badge.alt {
  background: rgba(37, 211, 102, 0.16);
  color: #6ee7a2;
  border-color: rgba(37, 211, 102, 0.3);
}
.payment-icon-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.binance-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f3bb38;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 6px 16px rgba(243, 187, 56, 0.3);
}
.payment-icon-header h3 {
  margin: 0;
  font-size: 22px;
  color: #fff;
}
.payment-card p {
  color: #aab4c7;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.binance-id-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(243, 187, 56, 0.35);
  border-radius: 14px;
  width: fit-content;
}
.binance-id-box span {
  font-size: 13px;
  color: #8f9bb3;
}
.binance-id-box strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: #f3bb38;
  letter-spacing: 0.05em;
}
.copy-binance-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(243, 187, 56, 0.18);
  border: 1px solid rgba(243, 187, 56, 0.45);
  border-radius: 8px;
  color: #fbd672;
  font-size: 12.5px;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.copy-binance-btn:hover {
  background: rgba(243, 187, 56, 0.32);
  transform: translateY(-1px);
}
.copy-binance-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.payment-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.binance-qr-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}
.payment-qr-wrap span {
  font-size: 11px;
  font-weight: 750;
  color: #111c31;
  letter-spacing: -0.01em;
}
.whatsapp-contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.whatsapp-icon-bg {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}
.whatsapp-icon-bg svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.payment-phone-display {
  margin: 10px 0 18px;
  padding: 12px 16px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 14px;
}
.payment-phone-display strong {
  display: block;
  font-size: 21px;
  color: #25d366;
  font-family: "Space Grotesk", sans-serif;
}
.payment-phone-display span {
  font-size: 12px;
  color: #9cb0c9;
}
.whatsapp-payment-btn {
  width: 100%;
  min-height: 46px;
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}
.whatsapp-payment-btn:hover {
  background: #22c45e;
}

@media (max-width: 900px) {
  .store-payment-grid {
    grid-template-columns: 1fr;
  }
  .binance-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .binance-id-box {
    margin: 0 auto;
  }
  .payment-icon-header {
    justify-content: center;
  }
}

/* ============================================================
   SECCIÓN DE RESEÑAS / TESTIMONIOS (E-E-A-T SEO)
   ============================================================ */
.reviews-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(82, 103, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(10px);
}
.review-card:hover {
  border-color: rgba(82, 103, 255, 0.4);
  transform: translateY(-4px);
}
.review-card--featured {
  border-color: rgba(82, 103, 255, 0.35);
  background: rgba(82, 103, 255, 0.08);
}
.review-stars {
  font-size: 22px;
  color: #f3bb38;
  letter-spacing: 2px;
}
.review-card blockquote {
  margin: 0;
  padding: 0;
  flex: 1;
}
.review-card blockquote p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.review-author strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.review-role {
  color: var(--muted);
  font-size: 12px;
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: fit-content;
}
.aggregate-proof {
  color: #91a0ff;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.aggregate-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.aggregate-copy strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}
.aggregate-copy span {
  color: var(--muted);
  font-size: 13px;
}
.aggregate-copy b {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid .review-card:last-child {
    grid-column: auto;
  }
  .review-card {
    padding: 24px;
  }
  .reviews-aggregate {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  .success-actions .button {
    width: 100%;
  }
}

/* Guía editorial de precios */
.guide-preview-section {
  background: #fff;
}
.guide-preview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: 42px 48px;
  background: #f4f5ff;
  border: 1px solid #dfe3ff;
  border-radius: 26px;
}
.guide-preview-card h2 {
  max-width: 780px;
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.guide-preview-card > div > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.guide-preview-card > .button {
  white-space: nowrap;
}
.article-page {
  background: #fff;
}
.article-hero {
  position: relative;
  padding: 142px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 30%, rgba(82, 103, 255, 0.22), transparent 28%),
    var(--ink);
  overflow: hidden;
}
.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
}
.article-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  color: #aab5c9;
  font-size: 13px;
}
.article-breadcrumb a {
  color: #cbd3ff;
}
.article-hero h1 {
  max-width: 920px;
  margin: 18px 0 22px;
  font-size: clamp(46px, 6.4vw, 78px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}
.article-deck {
  max-width: 760px;
  margin: 0;
  color: #c2cad9;
  font-size: 19px;
  line-height: 1.65;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  color: #8f9bb0;
  font-size: 12px;
}
.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 72px;
  padding-top: 76px;
  padding-bottom: 100px;
}
.article-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 4px;
  padding: 20px;
  background: #f6f7fb;
  border: 1px solid #e5e8ef;
  border-radius: 18px;
}
.article-toc strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
}
.article-toc a {
  padding: 7px 0;
  color: #606b7d;
  font-size: 12px;
}
.article-toc a:hover {
  color: var(--blue);
}
.article-content section {
  scroll-margin-top: 100px;
  margin-bottom: 66px;
}
.article-content h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.article-content h3 {
  margin: 30px 0 9px;
  color: #15223a;
  font-size: 20px;
}
.article-content p,
.article-content li {
  color: #566276;
  font-size: 16px;
  line-height: 1.8;
}
.article-content p {
  margin: 0 0 20px;
}
.article-content strong {
  color: #27344a;
}
.article-answer-box {
  margin-top: 30px;
  padding: 25px 28px;
  background: #eff1ff;
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
}
.article-answer-box > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
}
.article-answer-box p {
  margin: 0;
}
.article-table-wrap {
  margin: 28px 0;
  border: 1px solid #e1e5ed;
  border-radius: 18px;
  overflow-x: auto;
}
.article-content table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}
.article-content th,
.article-content td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #e8ebf1;
}
.article-content th {
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-content tr:last-child td {
  border-bottom: 0;
}
.article-content td {
  color: #596579;
  font-size: 14px;
}
.article-content td:last-child strong,
.article-content td:last-child small {
  display: block;
  white-space: nowrap;
}
.article-content td:last-child strong {
  color: var(--blue);
  font-size: 19px;
}
.article-checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.article-checklist li {
  display: flex;
  gap: 13px;
  padding: 17px 18px;
  background: #f8f9fc;
  border: 1px solid #e9ecf2;
  border-radius: 14px;
  font-size: 14px;
}
.article-checklist svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  margin-top: 2px;
  fill: none;
  stroke: #20a95b;
  stroke-width: 2.4;
}
.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, #445bf4, #7658ef);
  border-radius: 22px;
}
.article-cta span {
  display: block;
  margin-bottom: 8px;
  color: #dfe3ff;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
}
.article-cta .button {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
  white-space: nowrap;
}
.article-faq {
  border-top: 1px solid #e2e6ed;
}
.article-faq:last-child {
  border-bottom: 1px solid #e2e6ed;
}
.article-faq summary {
  padding: 20px 36px 20px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
}
.article-faq p {
  padding: 0 20px 20px 0;
  font-size: 14px;
}
@media (max-width: 900px) {
  .guide-preview-card {
    grid-template-columns: 1fr;
  }
  .guide-preview-card > .button {
    width: fit-content;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .article-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-toc strong {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .guide-preview-card {
    gap: 26px;
    padding: 28px 24px;
  }
  .guide-preview-card > .button {
    width: 100%;
  }
  .article-hero {
    padding: 112px 0 62px;
  }
  .article-hero h1 {
    font-size: 43px;
  }
  .article-deck {
    font-size: 16px;
  }
  .article-layout {
    padding-top: 44px;
    padding-bottom: 72px;
  }
  .article-toc {
    grid-template-columns: 1fr;
  }
  .article-content section {
    margin-bottom: 50px;
  }
  .article-content p,
  .article-content li {
    font-size: 15px;
  }
  .article-cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .article-cta .button {
    width: 100%;
  }
}
