*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#071120;
  --bg-2:#0b1728;
  --bg-3:#0f1d31;
  --line:rgba(255,255,255,0.08);
  --text:#f4f7fb;
  --muted:#aab8ca;
  --white:#ffffff;
  --dark:#071120;
  --green:#25D366;
  --radius:18px;
  --shadow:0 18px 45px rgba(0,0,0,0.18);
  --gold:#d8b562;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

img{
  display:block;
  max-width:100%;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:92%;
  max-width:1240px;
  margin:0 auto;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#040a12;
  border-bottom:1px solid var(--line);
}

.header-inner{
  min-height:84px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:18px;
  font-weight:700;
}

.brand img{
  height:44px;
  width:auto;
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
}

.main-nav a{
  color:#dce5ef;
  font-size:15px;
  font-weight:600;
  position:relative;
}

.main-nav a:hover,
.main-nav a.active{
  color:#ffffff;
}

.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:#ffffff;
  border-radius:999px;
}

.header-wa{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 18px;
  border-radius:10px;
  background:var(--green);
  color:#fff;
  font-size:14px;
  font-weight:700;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:none;
  background:transparent;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  margin:5px auto;
  background:#fff;
  border-radius:999px;
}

/* GENERAL */

.section{
  padding:78px 0;
}

.section-alt{
  background:var(--bg-2);
}

.section-head{
  text-align:center;
  margin-bottom:34px;
}

.section-head-left{
  text-align:left;
}

.section-head span{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#b8c6d8;
  text-transform:uppercase;
}

.section-head h2{
  font-size:40px;
  line-height:1.15;
  margin-bottom:10px;
}

.section-head p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:16px;
}

.section-head-left p{
  margin:0;
}

.compact-head{
  margin-bottom:24px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#b8c6d8;
  text-transform:uppercase;
}

/* HERO */

.hero{
  padding:88px 0 72px;
  background:linear-gradient(135deg, #071120 0%, #0b1830 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr 0.92fr;
  gap:34px;
  align-items:center;
}

.hero-copy h1{
  font-size:56px;
  line-height:1.08;
  margin-bottom:18px;
}

.hero-copy p{
  max-width:700px;
  color:var(--muted);
  font-size:18px;
  margin-bottom:24px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.point-card{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
}

.point-card strong{
  display:block;
  font-size:17px;
  margin-bottom:4px;
}

.point-card span{
  color:var(--muted);
  font-size:14px;
}

.hero-box{
  display:flex;
  justify-content:flex-end;
}

.info-panel{
  width:100%;
  max-width:420px;
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.info-panel h3{
  font-size:26px;
  margin-bottom:18px;
}

/* STRIP */

.top-strip{
  background:var(--bg-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.top-strip-grid{
  min-height:70px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  align-items:center;
}

.top-strip-grid div{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  font-weight:600;
  color:#d9e4ee;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  border-radius:10px;
  font-weight:700;
  transition:0.2s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--white);
  color:var(--dark);
}

.btn-secondary{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.18);
}

.btn-dark{
  width:100%;
  background:#152338;
  color:#fff;
  border:1px solid var(--line);
}

.full-width{
  width:100%;
}

/* CARDS */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.two-cols{
  grid-template-columns:repeat(2, 1fr);
}

.feature-card,
.device-card,
.cta-card,
.side-panel,
.form-panel,
.result-card{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:16px;
}

.feature-card{
  padding:26px 22px;
}

.feature-card i{
  font-size:28px;
  margin-bottom:14px;
  color:#dde6f0;
}

.feature-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.feature-card p{
  color:var(--muted);
}

.device-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.device-card{
  padding:24px 18px;
  text-align:center;
}

.device-card i{
  font-size:32px;
  margin-bottom:12px;
}

.device-card span{
  font-size:18px;
  font-weight:700;
}

/* CATALOG */

.catalog-block{
  margin-top:30px;
}

.row-title{
  margin-bottom:14px;
}

.row-title h3{
  font-size:24px;
}

.content-row{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding-bottom:12px;
  scroll-behavior:smooth;
}

.content-row::-webkit-scrollbar{
  height:8px;
}

.content-row::-webkit-scrollbar-thumb{
  background:#2c3d56;
  border-radius:999px;
}

.poster-card{
  min-width:165px;
  max-width:165px;
  flex-shrink:0;
}

.poster-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--line);
  cursor:pointer;
}

.poster-card h4{
  margin-top:10px;
  font-size:14px;
  color:#e6edf6;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* CTA */

.cta-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.cta-card{
  padding:28px;
}

.cta-card h3{
  font-size:26px;
  margin-bottom:10px;
}

.cta-card p{
  color:var(--muted);
  margin-bottom:18px;
}

.single-cta{
  max-width:960px;
  margin:0 auto;
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:22px;
  padding:38px 28px;
  text-align:center;
}

.single-cta h2{
  font-size:34px;
  margin-bottom:10px;
}

.single-cta p{
  color:var(--muted);
  margin-bottom:20px;
}

/* INNER PAGES */

.page-hero{
  padding:76px 0 42px;
  background:linear-gradient(135deg, #071120 0%, #0b1830 100%);
}

.page-hero-copy{
  max-width:920px;
  text-align:center;
}

.page-hero-left{
  text-align:left;
  max-width:none;
}

.page-hero-copy h1{
  font-size:48px;
  line-height:1.1;
  margin-bottom:14px;
}

.page-hero-copy p{
  color:var(--muted);
  font-size:18px;
}

.split-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:24px;
  align-items:start;
}

.side-panel{
  padding:26px;
}

.side-panel h3{
  font-size:24px;
  margin-bottom:16px;
}

.side-note{
  margin-top:18px;
  color:var(--muted);
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.benefit-item{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
  text-align:center;
  font-weight:700;
}

/* DISTRIBUIDORES */

.distributor-hero{
  padding-bottom:62px;
}

.distributor-hero-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:28px;
  align-items:center;
}

.distributor-panel{
  max-width:none;
}

.hero-mini-note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:12px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
}

.credits-tier-grid{
  display:grid;
  gap:18px;
}

.credits-tier-grid-five{
  grid-template-columns:repeat(5, 1fr);
}

.tier-card{
  position:relative;
  background:linear-gradient(180deg, #10345f 0%, #0b2443 100%);
  border:1px solid rgba(216,181,98,0.35);
  border-radius:22px;
  padding:28px 20px;
  text-align:center;
  box-shadow:var(--shadow);
}

.tier-card-featured{
  border-color:rgba(216,181,98,0.65);
  transform:translateY(-4px);
}

.tier-badge{
  position:absolute;
  top:-20px;
  right:8px;
  background:linear-gradient(180deg, #f2d67b 0%, #d8b562 100%);
  color:#14233b;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  padding:7px 10px;
  border-radius:999px;
}

.tier-range{
  font-size:40px;
  line-height:1;
  font-weight:700;
  margin-bottom:6px;
}

.tier-label{
  font-size:16px;
  color:#d9e4ee;
  margin-bottom:20px;
  letter-spacing:1px;
}

.tier-price{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  min-height:72px;
  padding:10px 18px;
  border-radius:16px;
  background:linear-gradient(180deg, #f2d67b 0%, #d8b562 100%);
  color:#14233b;
  font-size:34px;
  font-weight:700;
  margin-bottom:10px;
}

.tier-price-text{
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#d7e4f3;
}

.plans-role-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.role-panel{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
}

.role-panel-featured{
  border-color:rgba(216,181,98,0.35);
  background:linear-gradient(180deg, rgba(216,181,98,0.08) 0%, rgba(15,29,49,1) 100%);
}

.role-header{
  margin-bottom:20px;
}

.role-badge{
  display:inline-block;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}

.role-badge-gold{
  background:linear-gradient(180deg, #f2d67b 0%, #d8b562 100%);
  color:#14233b;
}

.role-header h3{
  font-size:30px;
  margin-bottom:8px;
}

.role-header p{
  color:var(--muted);
}

.role-cards{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.role-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,0.03);
}

.role-card strong{
  font-size:19px;
}

.role-card span{
  font-size:22px;
  font-weight:700;
  color:var(--gold);
}

.role-card-multiline{
  align-items:flex-start;
}

.role-card-copy{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.role-card-copy small{
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
}

.credits-note{
  margin-top:18px;
  text-align:center;
  color:var(--muted);
  font-size:15px;
}

.simulator-shell{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:20px;
  align-items:start;
  margin-bottom:28px;
}

.simulator-left{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.simulator-form{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.simulator-note{
  color:var(--muted);
  font-size:14px;
  padding:0 4px;
}

.simulator-right{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.simulator-summary-card{
  background:linear-gradient(180deg, rgba(216,181,98,0.10) 0%, rgba(15,29,49,1) 100%);
  border:1px solid rgba(216,181,98,0.28);
  border-radius:18px;
  padding:24px;
}

.summary-label{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#d8c48a;
  text-transform:uppercase;
  margin-bottom:8px;
}

.simulator-summary-card h3{
  font-size:28px;
  margin-bottom:10px;
}

.simulator-summary-card p{
  color:var(--muted);
  font-size:16px;
}

.simulator-results{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.result-card{
  padding:22px;
}

.result-card span{
  display:block;
  color:var(--muted);
  font-size:14px;
  margin-bottom:10px;
}

.result-card strong{
  font-size:28px;
  line-height:1.1;
}

.result-card-highlight{
  border-color:rgba(216,181,98,0.45);
  background:linear-gradient(180deg, rgba(216,181,98,0.12) 0%, rgba(15,29,49,1) 100%);
}

.result-card-app{
  border-color:rgba(216,181,98,0.28);
  background:linear-gradient(180deg, rgba(216,181,98,0.08) 0%, rgba(15,29,49,1) 100%);
}

.simulator-table-wrap{
  overflow-x:auto;
}

.simulator-table{
  width:100%;
  border-collapse:collapse;
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}

.simulator-table thead{
  background:rgba(255,255,255,0.04);
}

.simulator-table th,
.simulator-table td{
  padding:16px 14px;
  text-align:center;
  border-bottom:1px solid var(--line);
  font-size:15px;
}

.simulator-table th{
  font-weight:700;
}

.simulator-table tbody tr:last-child td{
  border-bottom:none;
}

.closing-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.closing-card{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px;
}

.closing-card h3{
  font-size:26px;
  margin-bottom:10px;
}

.closing-card p{
  color:var(--muted);
  margin-bottom:18px;
}

/* FORM */

.form-panel{
  padding:28px;
}

.form-panel h2{
  font-size:30px;
  margin-bottom:20px;
}

.trial-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.field label{
  font-size:14px;
  font-weight:700;
}

.field input,
.field select,
.field textarea{
  width:100%;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#081321;
  color:#fff;
  outline:none;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(255,255,255,0.25);
}

/* LISTS */

.check-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.check-list li{
  position:relative;
  padding-left:28px;
  color:#e5edf6;
}

.check-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  font-weight:700;
}

/* FOOTER */

.site-footer{
  background:#040a12;
  border-top:1px solid var(--line);
  margin-top:24px;
}

.footer-grid{
  padding:46px 0 24px;
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:28px;
}

.site-footer h3,
.site-footer h4{
  margin-bottom:14px;
}

.site-footer p,
.site-footer a{
  color:var(--muted);
  font-size:15px;
}

.site-footer a{
  display:block;
  margin-bottom:10px;
}

.footer-copy{
  text-align:center;
  font-size:14px;
  color:#8ea1b7;
  padding:18px 0 22px;
  border-top:1px solid var(--line);
}

/* MODAL */

.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  z-index:3000;
  padding:20px;
}

.modal-content{
  position:relative;
  width:90%;
  max-width:900px;
  height:70vh;
  margin:5vh auto 0;
}

.modal-content iframe{
  width:100%;
  height:100%;
  border-radius:14px;
}

.close{
  position:absolute;
  top:-44px;
  right:0;
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  color:#fff;
  font-size:40px;
  cursor:pointer;
}

/* FLOAT */

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  z-index:2000;
  box-shadow:0 12px 25px rgba(0,0,0,0.20);
}

/* RESPONSIVE */

@media (max-width: 1200px){
  .credits-tier-grid-five{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 1100px){
  .hero-grid,
  .split-grid,
  .footer-grid,
  .distributor-hero-grid,
  .simulator-shell{
    grid-template-columns:1fr;
  }

  .feature-grid,
  .device-grid,
  .benefit-grid,
  .cta-grid,
  .simulator-results,
  .closing-grid,
  .plans-role-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .hero-box{
    justify-content:flex-start;
  }
}

@media (max-width: 820px){
  .header-inner{
    grid-template-columns:auto auto;
  }

  .menu-toggle{
    display:block;
    justify-self:end;
  }

  .header-wa{
    display:none;
  }

  .main-nav{
    display:none;
    grid-column:1 / -1;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:0 0 18px;
  }

  .main-nav.open{
    display:flex;
  }

  .main-nav a.active::after{
    display:none;
  }

  .hero,
  .section{
    padding:64px 0;
  }

  .hero-copy h1,
  .page-hero-copy h1{
    font-size:38px;
  }

  .section-head h2,
  .single-cta h2,
  .form-panel h2{
    font-size:30px;
  }

  .hero-points,
  .top-strip-grid,
  .feature-grid,
  .two-cols,
  .device-grid,
  .benefit-grid,
  .cta-grid,
  .form-grid,
  .simulator-results,
  .closing-grid,
  .plans-role-grid,
  .credits-tier-grid-five{
    grid-template-columns:1fr;
  }

  .poster-card{
    min-width:145px;
    max-width:145px;
  }

  .poster-card img{
    height:210px;
  }

  .tier-range{
    font-size:32px;
  }
}

@media (max-width: 480px){
  .container{
    width:93%;
  }

  .hero-copy h1,
  .page-hero-copy h1{
    font-size:32px;
  }

  .hero-copy p,
  .page-hero-copy p{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .feature-card,
  .form-panel,
  .side-panel,
  .cta-card,
  .simulator-form,
  .result-card,
  .closing-card,
  .simulator-summary-card,
  .role-panel,
  .tier-card{
    padding:22px;
  }

  .role-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .tier-badge{
    position:static;
    display:inline-block;
    margin-bottom:12px;
  }
}

/* =========================================================
   PAGINA PRUEBA
========================================================= */

.trial-hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:28px;
  align-items:center;
}

.trial-side-panel{
  max-width:none;
}

.demo-screen-wrap{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:20px;
  align-items:start;
}

.demo-screen{
  background:#091221;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.demo-screen-top{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,0.03);
}

.demo-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#7f91a8;
}

.demo-screen-label{
  margin-left:auto;
  color:#cbd6e3;
  font-size:13px;
  font-weight:700;
}

.demo-video-switcher{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:16px 16px 0;
}

.demo-video-btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
  color:#dce5ef;
  padding:10px 16px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  transition:0.2s ease;
}

.demo-video-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,0.18);
}

.demo-video-btn.active{
  background:linear-gradient(180deg, #f2d67b 0%, #d8b562 100%);
  color:#14233b;
  border-color:rgba(216,181,98,0.5);
}

.demo-screen-body{
  padding:16px;
}

.demo-screen video{
  width:100%;
  max-height:560px;
  border-radius:16px;
  background:#000;
  display:block;
}

.demo-note{
  text-align:center;
  color:var(--muted);
  font-size:15px;
  padding:0 18px 16px;
}

.demo-features{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  padding:16px;
  border-top:1px solid var(--line);
}

.demo-feature{
  background:rgba(255,255,255,0.05);
  border:1px solid var(--line);
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  color:#e6edf6;
}

.demo-help{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.demo-help-card{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:16px;
  padding:20px;
}

.demo-help-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.demo-help-card p{
  color:var(--muted);
}

.trial-layout{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:22px;
  align-items:start;
}

.trial-info-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.form-title{
  font-size:30px;
  margin-bottom:20px;
}

.stats-strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.stat-box{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px 18px;
  text-align:center;
  box-shadow:var(--shadow);
}

.stat-box strong{
  display:block;
  font-size:38px;
  line-height:1;
  margin-bottom:8px;
  color:var(--white);
}

.stat-box span{
  color:var(--muted);
  font-size:15px;
  font-weight:700;
  letter-spacing:.3px;
}

/* Responsive prueba */
@media (max-width: 1100px){
  .trial-hero-grid,
  .demo-screen-wrap,
  .trial-layout{
    grid-template-columns:1fr;
  }

  .stats-strip{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 820px){
  .form-title{
    font-size:30px;
  }

  .stats-strip{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   PAGINA DESCARGAS
========================================================= */

.downloads-hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:28px;
  align-items:center;
}

.downloads-side-panel{
  max-width:none;
}

.downloads-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.download-card{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px 22px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.download-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--line);
  font-size:28px;
}

.download-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid var(--line);
  color:#dce5ef;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}

.download-card h3{
  font-size:24px;
  margin-bottom:10px;
}

.download-card p{
  color:var(--muted);
  margin-bottom:16px;
}

.download-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}

.download-list li{
  position:relative;
  padding-left:22px;
  color:#e5edf6;
  font-size:15px;
}

.download-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  font-weight:700;
}

.download-actions{
  margin-top:auto;
}

.install-steps-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.install-step-card{
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px 20px;
  box-shadow:var(--shadow);
}

.install-step-number{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  background:linear-gradient(180deg, #f2d67b 0%, #d8b562 100%);
  color:#14233b;
  font-weight:700;
  font-size:20px;
}

.install-step-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.install-step-card p{
  color:var(--muted);
}

.downloads-help-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

/* Responsive descargas */
@media (max-width: 1100px){
  .downloads-hero-grid,
  .downloads-help-grid{
    grid-template-columns:1fr;
  }

  .downloads-grid,
  .install-steps-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 820px){
  .downloads-grid,
  .install-steps-grid{
    grid-template-columns:1fr;
  }
}
.download-cover{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:16px;
  border:1px solid var(--line);
  background:#091221;
}

.download-code-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 0 18px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
}

.download-code-box span{
  color:var(--muted);
  font-size:14px;
  font-weight:600;
}

.download-code-box strong{
  color:var(--white);
  font-size:22px;
  font-weight:700;
  letter-spacing:.5px;
}

.download-card-wide{
  grid-column:span 2;
}

@media (max-width: 1100px){
  .download-card-wide{
    grid-column:span 1;
  }
}

/* =========================================================
   PAGINA INDEX
========================================================= */

.index-hero{
  min-height:auto;
}

.index-hero-panel{
  max-width:none;
}

.catalog-error{
  color:var(--muted);
  font-size:15px;
  padding:12px 0;
}

.poster-card img{
  transition:0.25s ease;
}

.poster-card img:hover{
  transform:scale(1.04);
}

@media (max-width: 1100px){
  .index-hero .hero-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 820px){
  .index-hero .hero-points{
    grid-template-columns:1fr;
  }
}

/* =========================
   PRECIOS
========================= */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.pricing-card{
  position:relative;
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
}

.pricing-featured{
  border-color:rgba(216,181,98,0.6);
  transform:translateY(-6px);
}

.pricing-badge{
  position:absolute;
  top:-12px;
  right:16px;
  background:linear-gradient(180deg,#f2d67b,#d8b562);
  color:#14233b;
  font-size:11px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
}

.pricing-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.pricing-price{
  font-size:42px;
  font-weight:700;
  margin-bottom:6px;
}

.pricing-time{
  display:block;
  color:var(--muted);
  margin-bottom:16px;
}

.pricing-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}

.pricing-list li{
  color:#e5edf6;
}

/* responsive */
@media (max-width: 900px){
  .pricing-grid{
    grid-template-columns:1fr;
  }
}