:root {
  --navy: #0D1B2A;
  --blue: #2563EB;
  --blue-2: #0D6EFD;
  --cyan: #06B6D4;
  --teal: #12D6C7;
  --slate: #475569;
  --muted: #64748B;
  --line: #DDE7F3;
  --light: #F2F7FF;
  --white: #FFFFFF;
  --shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: relative; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(221, 231, 243, 0.8);
}
.nav { height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img { width: 250px; max-height: 68px; height: auto; object-fit: contain; image-rendering: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 700; color: #24344d; }
.nav-links a:not(.btn):hover { color: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 28px; color: var(--navy); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #0756e9 55%, var(--cyan));
  color: white; font-weight: 900; box-shadow: 0 14px 28px rgba(37, 99, 235, .26);
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(37, 99, 235, .32); }
.btn:active { transform: translateY(0); }
.btn-outline { background: white; color: var(--blue); border-color: #BFD5FF; box-shadow: none; }
.btn-outline:hover { border-color: var(--blue); box-shadow: 0 12px 26px rgba(37, 99, 235, .12); }
.btn-disabled {
  cursor: default;
  color: var(--muted);
  background: #F8FAFC;
  border-color: var(--line);
  box-shadow: none;
}
.btn-disabled:hover {
  transform: none;
  color: var(--muted);
  border-color: var(--line);
  box-shadow: none;
}
.btn-small { min-height: 42px; padding: 0 18px; }
.full { width: 100%; }
.section { padding: 92px 0; }
.light { background: linear-gradient(180deg, #F8FBFF 0%, #EEF6FF 100%); }
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(6,182,212,.18), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(37,99,235,.12), transparent 24%),
    linear-gradient(180deg, #FFFFFF, #F8FBFF);
}
.hero-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  color: var(--blue); background: rgba(37,99,235,.09); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: 13px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: .98; letter-spacing: 0; margin: 24px 0 24px; }
h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.04; letter-spacing: 0; margin: 16px 0 18px; }
h3 { font-size: 23px; letter-spacing: -0.02em; margin-bottom: 12px; }
.hero-text, .section-head p, .split p, .cta-box p { color: var(--slate); font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row span {
  padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--muted); font-weight: 800; font-size: 14px;
}
.hero-card {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 15% -2% 6% 18%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.20), rgba(6,182,212,.10) 48%, transparent 72%);
  filter: blur(38px);
  z-index: 0;
}
.hero-card img {
  position: relative;
  width: min(100%, 690px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 28px 42px rgba(13, 27, 42, .10));
  -webkit-mask-image: radial-gradient(ellipse 74% 70% at 50% 54%, #000 58%, rgba(0,0,0,.78) 74%, transparent 100%);
  mask-image: radial-gradient(ellipse 74% 70% at 50% 54%, #000 58%, rgba(0,0,0,.78) 74%, transparent 100%);
  animation: floatPreview 6s ease-in-out infinite;
}
.section-head { max-width: 720px; text-align: center; margin: 0 auto 48px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card, .price-card, details {
  background: white; border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: 0 16px 50px rgba(13, 27, 42, 0.06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.step-card:hover, .price-card:hover, details:hover, .compare-card:hover, .trust-cards article:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, .24);
  box-shadow: 0 24px 60px rgba(13, 27, 42, .11);
}
.step-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.step-number {
  position: absolute;
  top: 42px;
  left: 42px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(13, 27, 42, .22);
}
.card-visual {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 22px;
  background: #F8FBFF;
  transition: transform .26s ease;
}
.step-card:hover .card-visual { transform: translateY(-4px) scale(1.015); }
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-card h3 {
  margin-top: 0;
  max-width: 280px;
}
.step-card p, .price-card li, details p { color: var(--slate); line-height: 1.6; }
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 46px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 34px; color: #24344d; font-size: 18px; line-height: 1.45; font-weight: 600; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: -2px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(6,182,212,.15); color: #0593ad; font-weight: 900;
}
.promo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-img img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 30px rgba(27, 79, 143, .12));
  transition: transform .28s ease, filter .28s ease;
}
.promo-img img:hover {
  transform: scale(1.025);
  filter: drop-shadow(0 30px 38px rgba(27, 79, 143, .17));
}
.compare-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FAFF 100%);
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.compare-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 48px rgba(13, 27, 42, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.compare-card::after {
  content: '';
  position: absolute;
  right: -42px;
  top: -42px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: .14;
}
.compare-card.before::after { background: #D81159; }
.compare-card.after::after { background: #12D6C7; }
.compare-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  color: white;
}
.compare-card.before .compare-label { background: #D81159; }
.compare-card.after .compare-label { background: #059669; }
.compare-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--slate);
  line-height: 1.7;
}
.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pricing-grid.two-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; margin: 0 auto; }
.price-card { position: relative; display: flex; flex-direction: column; }
.plan-icon {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 24px;
  background: #F8FBFF;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(37, 99, 235, .10);
}
.plan-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .28s ease;
}
.price-card:hover .plan-icon img { transform: scale(1.04); }
.price-card.featured { border: 2px solid rgba(37,99,235,.55); transform: translateY(-10px); }
.badge { position: absolute; top: -15px; left: 28px; background: var(--cyan); color: white; font-weight: 900; border-radius: 999px; padding: 8px 14px; font-size: 13px; }
.price { font-size: 62px; font-weight: 950; letter-spacing: -0.05em; margin: 8px 0 0; color: var(--blue); }
.price span { font-size: 28px; }
.price.custom { font-size: 42px; color: var(--navy); }
.price-note { color: var(--cyan); font-weight: 900; margin-bottom: 8px; }
.promo-note {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin: 10px 0 12px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563EB 0%, #06B6D4 55%, #22C55E 100%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .22), 0 0 0 6px rgba(6, 182, 212, .10);
  font-size: 14px;
  line-height: 1.2;
}
.promo-note::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue);
  background: #ffffff;
  font-size: 12px;
  font-weight: 950;
}
.trust-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(37,99,235,.12), transparent 24%),
    linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}
.trust-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.trust-grid > div:first-child p {
  color: var(--slate);
  font-size: 19px;
  line-height: 1.7;
}
.trust-cards {
  display: grid;
  gap: 16px;
}
.trust-cards article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  grid-template-rows: auto 1fr;
  column-gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(13, 27, 42, .06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.tech-card-head {
  display: contents;
}
.tech-card-head img {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 160px;
  height: 160px;
  object-fit: contain;
  padding: 8px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(207, 224, 246, .8);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .10);
  cursor: zoom-in;
  transform-origin: right center;
  transition: transform .28s ease, box-shadow .28s ease;
}
.tech-card-head img:hover {
  position: relative;
  z-index: 5;
  transform: scale(1.55);
  box-shadow: 0 24px 52px rgba(13, 27, 42, .24);
}
.trust-cards strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}
.tech-card-head strong {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin-bottom: 10px;
}
.trust-cards p {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin: 0;
  color: var(--slate);
  line-height: 1.55;
}
.old-price { color: var(--muted); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  flex: 1;
  display: grid;
  gap: 12px;
}
.price-card li {
  position: relative;
  margin: 0;
  padding-left: 34px;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .1em;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 18px rgba(37, 99, 235, .18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.cta-band { padding-top: 30px; }
.cta-box {
  border-radius: 34px; padding: 46px; color: white;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: linear-gradient(135deg, #0D1B2A, #0b54d6 55%, #06B6D4);
  box-shadow: var(--shadow);
}
.cta-box h2 { color: white; margin-bottom: 6px; }
.cta-box p { color: rgba(255,255,255,.84); margin-bottom: 0; }
.faq-wrap { max-width: 1080px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.faq-column {
  display: grid;
  gap: 16px;
  align-content: start;
}
details { margin-bottom: 0; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { margin: 16px 0 0; }
.footer { background: #08111F; color: white; padding: 58px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-logo {
  width: 178px;
  height: 178px;
  object-fit: contain;
  background: white;
  border: 1px solid rgba(221, 231, 243, .9);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}
.footer p { color: rgba(255,255,255,.72); line-height: 1.6; }
.footer a { color: rgba(255,255,255,.86); font-weight: 700; }
.footer a:hover { color: var(--teal); }
.social-links { display: flex; gap: 12px; align-items: center; margin-top: 12px; }
.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
}
.social-links svg { width: 23px; height: 23px; fill: currentColor; }
.footer-bottom { text-align: center; padding: 24px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.65); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 20px 38px rgba(18, 140, 126, .28), 0 0 0 7px rgba(37, 211, 102, .12);
  font-weight: 900;
  opacity: .86;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.whatsapp-float:hover {
  color: white;
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(18, 140, 126, .34), 0 0 0 9px rgba(37, 211, 102, .14);
}
.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
@keyframes floatPreview {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 96px; left: 20px; right: 20px; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 18px; flex-direction: column; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .pricing-grid, .steps, .footer-grid, .compare-grid, .trust-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .section { padding: 64px 0; }
  .brand img { width: 190px; max-height: 54px; }
  .nav { height: 82px; }
  .nav-links { top: 82px; }
  .cta-box { padding: 32px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 48px 0; }
  .hero {
    padding-top: 34px;
    background:
      radial-gradient(circle at 88% 10%, rgba(6,182,212,.12), transparent 24%),
      linear-gradient(180deg, #FFFFFF, #F8FBFF);
  }
  .hero-grid,
  .beta-grid,
  .split,
  .trust-grid {
    gap: 28px;
  }
  h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
    margin: 16px 0;
  }
  h2 {
    font-size: 29px;
    line-height: 1.12;
    letter-spacing: 0;
  }
  h3 {
    font-size: 21px;
    line-height: 1.22;
  }
  .brand img { width: 168px; max-height: 48px; }
  .nav { height: 74px; }
  .nav-links {
    top: 74px;
    left: 14px;
    right: 14px;
    gap: 14px;
    align-items: stretch;
    padding: 16px;
  }
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links .btn {
    min-height: 48px;
  }
  .hero-text, .section-head p, .split p, .cta-box p, .beta-copy p {
    font-size: 16px;
    line-height: 1.58;
  }
  .eyebrow {
    max-width: 100%;
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }
  .hero-actions {
    margin: 24px 0;
    gap: 12px;
  }
  .trust-row {
    gap: 8px;
  }
  .trust-row span {
    padding: 8px 11px;
    font-size: 12px;
  }
  .hero-card::before {
    inset: 20% 0 8% 0;
    filter: blur(24px);
  }
  .hero-card img {
    width: 100%;
    filter: drop-shadow(0 18px 28px rgba(13, 27, 42, .10));
  }
  .section-head { margin-bottom: 32px; }
  .step-card, .price-card, details {
    padding: 20px;
    border-radius: 18px;
  }
  .step-number {
    top: 28px;
    left: 28px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .card-visual,
  .plan-icon {
    border-radius: 16px;
    margin-bottom: 18px;
  }
  .check-list {
    gap: 12px;
    margin-top: 22px;
  }
  .check-list li {
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.38;
  }
  .check-list li::before {
    width: 22px;
    height: 22px;
    top: -1px;
  }
  .promo-img img {
    max-height: 420px;
  }
  .pricing-grid.two-plans {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .price-card li {
    padding-left: 30px;
  }
  .price-card li::before {
    width: 21px;
    height: 21px;
  }
  .promo-note {
    align-self: stretch;
    justify-content: center;
    border-radius: 14px;
    text-align: center;
  }
  .beta-form {
    padding: 20px;
    border-radius: 20px;
    gap: 14px;
  }
  .beta-form input,
  .beta-form select,
  .beta-form textarea {
    min-height: 50px;
    border-radius: 13px;
    padding: 12px 14px;
    font-size: 16px;
  }
  .beta-form label {
    gap: 7px;
    font-size: 15px;
    line-height: 1.25;
  }
  .form-success {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }
  .faq-grid { grid-template-columns: 1fr; }
  summary {
    font-size: 16px;
    line-height: 1.35;
  }
  .footer {
    padding-top: 44px;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-logo {
    width: 128px;
    height: 128px;
  }
  .whatsapp-float {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 42px;
    width: 42px;
    padding: 0;
    justify-content: center;
    opacity: .72;
    box-shadow: 0 12px 24px rgba(18, 140, 126, .22), 0 0 0 4px rgba(37, 211, 102, .09);
  }
  .whatsapp-float span { display: none; }
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
  .trust-cards article {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding: 20px;
    border-radius: 18px;
  }
  .tech-card-head {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }
  .tech-card-head img {
    grid-column: 1;
    grid-row: 1;
    width: 74px;
    height: 74px;
    padding: 5px;
    border-radius: 14px;
    transform-origin: center;
  }
  .tech-card-head strong {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
  }
  .trust-cards p {
    grid-column: 1;
    grid-row: auto;
    font-size: 15px;
    line-height: 1.5;
  }
  .cta-box {
    padding: 26px 20px;
    border-radius: 22px;
  }
}

@media (max-width: 380px) {
  .container { width: min(100% - 22px, 1160px); }
  .brand img { width: 148px; }
  h1 { font-size: 31px; }
  h2 { font-size: 27px; }
  .btn { min-height: 50px; padding: 0 18px; }
  .step-card, .price-card, details, .beta-form { padding: 18px; }
  .tech-card-head {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }
  .tech-card-head img {
    width: 62px;
    height: 62px;
  }
}

@media (hover: none) {
  .tech-card-head img {
    cursor: default;
  }
  .tech-card-head img:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .10);
  }
}

/* Registro beta */
.beta-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(6,182,212,.18), transparent 28%),
    linear-gradient(180deg, #FFFFFF, #F2F7FF);
}
.beta-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.beta-copy p {
  color: var(--slate);
  font-size: 20px;
  line-height: 1.65;
}
.beta-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.beta-form label {
  display: grid;
  gap: 8px;
  color: #1f2f46;
  font-weight: 800;
}
.beta-form input,
.beta-form select,
.beta-form textarea {
  width: 100%;
  border: 1px solid #CFE0F6;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--navy);
  background: #FBFDFF;
  outline: none;
}
.beta-form input:focus,
.beta-form select:focus,
.beta-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .11);
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.form-success {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(18, 214, 199, .48);
  background: linear-gradient(135deg, rgba(18,214,199,.14), rgba(37,99,235,.08));
  color: var(--navy);
  animation: successPop .34s ease both;
}
.form-success[hidden] {
  display: none;
}
.success-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #12D6C7, #059669);
  color: white;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(5, 150, 105, .24);
}
.form-success strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}
.form-success p {
  margin: 0;
  color: var(--slate);
  line-height: 1.45;
  font-size: 14px;
}
@keyframes successPop {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
  .beta-grid { grid-template-columns: 1fr; }
}
