:root {
  --void: #020617;
  --ink: #0b1224;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-solid: #0f172a;
  --line: rgba(56, 189, 248, 0.18);
  --line-soft: rgba(148, 163, 184, 0.14);
  --cyan: #22d3ee;
  --cyan-deep: #06b6d4;
  --mint: #2dd4bf;
  --ice: #e2e8f0;
  --muted: #94a3b8;
  --ok: #34d399;
  --danger: #fb7185;
  --text: #e2e8f0;
  --text-dark: #0f172a;
  --paper: #f1f5f9;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
  --radius: 20px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --grad-cta: linear-gradient(120deg, #0891b2 0%, #22d3ee 55%, #2dd4bf 100%);
  --grad-hero:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(34, 211, 238, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(45, 212, 191, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(14, 165, 233, 0.12), transparent 55%),
    linear-gradient(165deg, #020617 0%, #07111f 40%, #0a1628 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-dark);
  background: #e8eef5;
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: rgba(2, 6, 23, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.site-brand img {
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.35);
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem 1rem;
  flex-wrap: wrap;
}
.site-nav-links a {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.site-nav-links a:hover,
.site-nav-links a.is-active { color: #fff; }
.nav-cta-ghost {
  border: 1px solid rgba(34, 211, 238, 0.35);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  color: #cffafe !important;
}
.nav-cta-login {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-cta-primary {
  background: var(--grad-cta);
  color: #042f2e !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.35);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  padding: 5rem 1.5rem 3.5rem;
  color: #fff;
  background: var(--grad-hero);
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
  animation: gridDrift 28s linear infinite;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.92) 0%, transparent 42%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 1.35rem;
}
.hero-brand {
  font-family: var(--display);
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  animation: rise 0.75s ease-out both;
}
.hero-brand span {
  background: linear-gradient(100deg, #22d3ee, #2dd4bf 60%, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(226, 232, 240, 0.92);
  animation: rise 0.85s 0.06s ease-out both;
}
.hero p.lead {
  margin: 0;
  max-width: 44ch;
  color: rgba(148, 163, 184, 0.95);
  font-size: 1.05rem;
  animation: rise 0.95s 0.1s ease-out both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 1s 0.14s ease-out both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.88rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad-cta);
  color: #042f2e;
  box-shadow: 0 14px 36px rgba(6, 182, 212, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-wide { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.28;
  mix-blend-mode: screen;
  filter: saturate(0.85) contrast(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

/* —— Sections —— */
.section {
  padding: 4.75rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.section-head {
  max-width: 40rem;
  margin-bottom: 2.1rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.12);
  color: #0e7490;
  border: 1px solid rgba(8, 145, 178, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0f172a;
}
.section-head p {
  margin: 0;
  color: #64748b;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.feature {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 18px 40px rgba(6, 182, 212, 0.12);
}
.feature i {
  font-size: 1.7rem;
  color: #0891b2;
  margin-bottom: 0.65rem;
}
.feature h3 { margin: 0 0 0.35rem; font-size: 1.08rem; color: #0f172a; }
.feature p { margin: 0; color: #64748b; font-size: 0.95rem; }

/* —— Carousel —— */
.carousel-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--void);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(34, 211, 238, 0.2);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease-in-out;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.carousel-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--void);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-in-out;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.06); }
.carousel-btn.prev { left: 0.9rem; }
.carousel-btn.next { right: 0.9rem; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(8, 145, 178, 0.28);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease-in-out, background 0.25s ease-in-out;
}
.carousel-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: #0891b2;
}

/* —— Manuals —— */
.manual-list { display: grid; gap: 0.85rem; }
.manual-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.manual-item:hover {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 14px 32px rgba(6, 182, 212, 0.1);
  transform: translateY(-2px);
}
.manual-item h3 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.manual-item p { margin: 0; color: #64748b; font-size: 0.9rem; }
.manual-item .btn { flex-shrink: 0; padding: 0.55rem 1rem; font-size: 0.9rem; }

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  align-items: stretch;
}
.contact-aside {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(34, 211, 238, 0.2), transparent 55%),
    linear-gradient(160deg, #020617, #0f172a 70%);
  color: #fff;
  border: 1px solid rgba(34, 211, 238, 0.2);
  box-shadow: var(--shadow);
}
.contact-aside h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.contact-aside p { margin: 0 0 1rem; color: rgba(148, 163, 184, 0.95); }
.contact-aside a { color: #67e8f9; font-weight: 600; }
.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.88rem; font-weight: 600; color: #0f172a; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
}
.form-msg {
  display: none;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem;
}
.form-msg.is-ok { display: block; background: #ecfdf5; color: #065f46; }
.form-msg.is-err { display: block; background: #fff1f2; color: #9f1239; }

.field-hint {
  margin: 0;
  min-height: 1.15rem;
  font-size: 0.82rem;
  color: #64748b;
  transition: color 0.2s ease-in-out;
}
.field-hint.is-ok { color: #059669; font-weight: 600; }
.field-hint.is-err { color: #e11d48; font-weight: 600; }
.field-hint.is-wait { color: #0284c7; }

.pass-reqs {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0.55rem 0.7rem;
  display: grid;
  gap: 0.35rem;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.35);
}
.pass-reqs li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.84rem;
  color: #64748b;
  transition: color 0.2s ease-in-out;
}
.pass-reqs li::before {
  content: '○';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}
.pass-reqs li.is-ok {
  color: #047857;
  font-weight: 600;
}
.pass-reqs li.is-ok::before {
  content: '✓';
  color: #059669;
}
.pass-reqs li.is-bad {
  color: #be123c;
}
.pass-reqs li.is-bad::before {
  content: '✕';
  color: #e11d48;
}

.field input.is-invalid {
  border-color: #fb7185;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.14);
}
.field input.is-valid {
  border-color: #34d399;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
}

.site-footer {
  margin-top: 2rem;
  padding: 2.25rem 1.5rem;
  background: var(--void);
  color: rgba(148, 163, 184, 0.9);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer-brand strong { color: #fff; display: block; font-family: var(--display); }
.footer-brand p { margin: 0; font-size: 0.85rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a:hover { color: #67e8f9; }

/* —— Pricing —— */
body.page-precios {
  background:
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(6, 182, 212, 0.12), transparent 55%),
    #eef3f8;
}
.pricing-hero {
  text-align: center;
  padding: 3.75rem 1.5rem 1.5rem;
}
.pricing-hero h1 {
  margin: 0.55rem auto 0.65rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.03em;
  color: #0f172a;
}
.pricing-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #0e7490, #06b6d4 50%, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-hero p { margin: 0 auto; max-width: 36rem; color: #64748b; }
.pricing-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.plan-stack { display: grid; gap: 1rem; }
.plan-card {
  position: relative;
  padding: 1.45rem 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}
.plan-card.is-popular {
  border-color: rgba(6, 182, 212, 0.65);
  box-shadow: 0 18px 48px rgba(6, 182, 212, 0.16);
}
.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(120deg, #ecfeff, #ccfbf1);
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.35);
}
.plan-card .label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}
.plan-card .price {
  margin: 0.4rem 0;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.plan-card .price small { font-size: 1rem; font-weight: 600; color: #64748b; }
.plan-card .promo { color: #0e7490; font-weight: 700; margin: 0 0 0.35rem; }
.plan-card .total { font-weight: 700; margin: 0 0 0.25rem; }
.plan-card .note { margin: 0 0 1rem; font-size: 0.85rem; color: #64748b; }
.plan-card .blurb { margin: 0 0 1rem; color: #64748b; }
.pricing-trust {
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}
.benefits-panel {
  padding: 1.45rem;
  border-radius: 22px;
  background:
    linear-gradient(165deg, rgba(236, 254, 255, 0.95), rgba(204, 251, 241, 0.55));
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.benefits-support {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(6, 182, 212, 0.15);
}
.benefits-panel h3 { margin: 0 0 0.75rem; font-family: var(--display); }
.benefits-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.benefits-panel li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.benefits-panel li i { color: var(--ok); font-size: 1.15rem; margin-top: 0.1rem; }

/* —— Registro —— */
body.page-registro {
  background: var(--void);
  min-height: 100vh;
}
.reg-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.15fr;
}
.reg-side {
  padding: 1.75rem 1.5rem 2rem;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 45% at 15% 10%, rgba(34, 211, 238, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(45, 212, 191, 0.12), transparent 50%),
    linear-gradient(165deg, #020617, #0b1729 55%, #07111f);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-right: 1px solid var(--line);
}
.reg-side .logo-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
}
.reg-side h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.reg-side .side-lead { margin: 0; color: rgba(148, 163, 184, 0.95); }
.reg-side-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #000;
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.reg-side-carousel .carousel-track { height: 100%; }
.reg-side-carousel img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.reg-side-carousel .carousel-btn { width: 34px; height: 34px; font-size: 1.1rem; }
.side-proof { font-size: 0.92rem; color: rgba(186, 230, 253, 0.85); }
.side-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.side-tags span {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.18);
  font-size: 0.78rem;
}
.reg-main {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 1.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.reg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.reg-back {
  color: #64748b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.reg-progress { display: flex; gap: 0.35rem; }
.reg-progress span {
  width: 36px;
  height: 6px;
  border-radius: 999px;
  background: #cbd5e1;
}
.reg-progress span.is-on { background: linear-gradient(90deg, #0891b2, #22d3ee); }
.reg-step { display: none; animation: rise 0.35s ease-out; }
.reg-step.is-active { display: block; }
.reg-step h1 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.reg-step .sub { margin: 0 0 1.25rem; color: #64748b; }
.time-pill {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #64748b;
  font-size: 0.85rem;
  margin: 0.5rem 0 1rem;
}
.plan-pick { display: grid; gap: 0.75rem; margin-bottom: 1.25rem; }
.plan-option {
  position: relative;
  text-align: left;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.plan-option.is-selected {
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}
.plan-option .check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0.85rem;
}
.plan-option.is-selected .check {
  background: #0891b2;
  border-color: #0891b2;
  color: #fff;
}
.mini-benefits {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border-radius: 14px;
  background: #ecfeff;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.mini-benefits li { display: flex; gap: 0.45rem; font-size: 0.9rem; }
.mini-benefits i { color: var(--ok); }
.pay-banner {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(115deg, #0e7490, #0891b2 50%, #14b8a6);
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 12px 28px rgba(8, 145, 178, 0.28);
}
.pay-banner strong { display: block; font-size: 1.1rem; }
.pay-banner span { opacity: 0.92; font-size: 0.9rem; }
.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.pay-method {
  padding: 0.9rem;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  text-align: left;
}
.pay-method.is-selected { border-color: #06b6d4; }
.pay-method .tag {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0e7490;
  background: #ecfeff;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}
.totals {
  margin: 0 0 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}
.totals div { display: flex; justify-content: space-between; }
.totals .disc { color: #059669; }
.totals .grand { font-weight: 800; font-size: 1.1rem; }
.copy-box { display: grid; gap: 0.55rem; margin-bottom: 0.85rem; }
.copy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.copy-row .k { font-size: 0.82rem; color: #64748b; }
.copy-row .v { font-weight: 700; }
.copy-row button {
  border: 0;
  background: transparent;
  color: #0891b2;
  cursor: pointer;
  font-size: 1.2rem;
}
.rate-note { font-size: 0.82rem; color: #64748b; margin: 0 0 1rem; }
.ref-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: end;
}
.info-box {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  background: #ecfeff;
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
}
.terms {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.75rem;
}
.success-box { text-align: center; padding: 2rem 1rem; }
.success-box i { font-size: 3rem; color: var(--ok); }
.success-box h1 { margin: 0.75rem 0 0.4rem; font-family: var(--display); }

@media (max-width: 960px) {
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid,
  .pricing-layout,
  .reg-shell { grid-template-columns: 1fr; }
  .reg-side { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .site-nav-links.is-open { display: flex; }
  .pay-methods { grid-template-columns: 1fr; }
}
