:root {
  --navy: #041f38;
  --navy2: #062945;
  --orange: #ff5b0a;
  --orange2: #ff6a12;
  --ink: #0a1f34;
  --muted: #6d7b8b;
  --line: #e8edf2;
  --card: #fff;
  --bg: #f7f9fb;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(7,31,54,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: white;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  color: #fff;
  transition:
    background .3s ease,
    backdrop-filter .3s ease,
    box-shadow .3s ease;
}

.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  font: 800 31px/1 Manrope;
  color: #fff;
  letter-spacing: -1.5px;
}

.logo {
  width: 135px;
  height: auto;
  display: block;
}


/* =========================================
   NAVEGACIÓN
========================================= */

.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  font-size: 14px;
  position: relative;
}

.main-nav a {
  opacity: .86;
  position: relative;
  transition: opacity .25s ease;
}

.main-nav a.active,
.main-nav a:hover {
  opacity: 1;
}


/* Línea naranja que se desplaza */

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: -11px;

  width: 0;
  height: 3px;

  background: var(--orange);
  border-radius: 20px;

  pointer-events: none;

  transition:
    transform .48s cubic-bezier(.22, 1, .36, 1),
    width .48s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================
   BOTONES HEADER
========================================= */

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 9px;
  padding: 13px 18px;

  font-weight: 700;
  font-size: 14px;

  border: 1px solid transparent;

  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,91,10,.28);
}

.btn-primary:hover {
  background: var(--orange2);
}

.btn-ghost {
  background: rgba(255,255,255,.07);
  color: #fff;
  border-color: rgba(255,255,255,.1);
}

.btn-outline {
  border-color: rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.04);
}

.btn-lg {
  padding: 15px 22px;
  font-size: 15px;
}


/* =========================================
   HERO
========================================= */

.section-dark {
  background: linear-gradient(135deg,#031b31,#062844);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 145px 0 120px;
  min-height: 690px;
}

.hero-grid {
  display: grid;
  grid-template-columns: .85fr 1.25fr;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font: 800 clamp(46px,5vw,72px)/1.04 Manrope;
  margin: 0 0 24px;
  letter-spacing: -2.5px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy > p {
  font-size: 17px;
  line-height: 1.7;
  color: #d6e0e9;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin: 31px 0 36px;
}

.play {
  font-size: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.12);
}


/* =========================================
   TRUST
========================================= */

.trust-mini {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;

  margin-top: 34px;
}

.trust-mini div {
  width: 120px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.trust-mini span {
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  line-height: 1;

  margin-bottom: 8px;
}

.trust-mini small {
  font-size: 11px;
  line-height: 1.25;

  color: #d8e1e9;

  white-space: nowrap;
}

/* =========================================
   DASHBOARD MOCKUP
========================================= */

.hero-visual {
  position: relative;
  min-height: 460px;
}

.dashboard-shell {
  position: absolute;
  width: 650px;
  height: 390px;
  right: 15px;
  top: 5px;

  background: white;
  border-radius: 12px;

  display: flex;
  overflow: hidden;

  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.dash-sidebar {
  width: 150px;
  background: #072039;
  color: #dbe4ec;

  padding: 15px 12px;

  font-size: 11px;
}

.dash-brand {
  font-weight: 800;
  font-size: 18px;

  display: flex;
  align-items: center;

  margin-bottom: 25px;
}

.dash-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  gap: 9px;
}

.dash-sidebar li {
  padding: 9px;
  border-radius: 6px;
}

.dash-sidebar li.sel {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.dash-main {
  flex: 1;
  padding: 22px;
  color: #10263c;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.dash-top span {
  font-size: 9px;
  color: #7b8793;
}


/* =========================================
   DASHBOARD STATS
========================================= */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;

  margin-top: 19px;
}

.stats-row div,
.raffles-card,
.chart-card {
  border: 1px solid #edf0f3;
  border-radius: 8px;

  background: #fff;

  box-shadow: 0 6px 15px rgba(10,31,52,.04);
}

.stats-row div {
  padding: 12px;
}

.stats-row small {
  display: block;
  color: #75808a;
  font-size: 8px;
}

.stats-row b {
  display: block;
  font-size: 15px;
  margin: 4px 0;
}

.stats-row em {
  font-style: normal;
  font-size: 8px;
  color: #23ae6c;
}

.stats-row em.orange {
  color: var(--orange);
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;

  margin-top: 14px;
}

.raffles-card,
.chart-card {
  padding: 13px;
}

.raffles-card h4,
.chart-card h4 {
  font-size: 10px;
  margin: 0 0 12px;
}


/* =========================================
   RIFAS
========================================= */

.r-item {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  gap: 8px;
  align-items: center;

  margin: 10px 0;
}

.thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;

  background: #f3c057;
}

.thumb.t2 {
  background: #c5d54e;
}

.thumb.t3 {
  background: #f38e73;
}

.r-item p {
  font-size: 8px;
  margin: 0;
}

.r-item p small {
  display: block;
  color: #94a0aa;
  margin-top: 2px;
}

.r-item b {
  font-size: 8px;
}


/* =========================================
   CHART
========================================= */

.chart {
  height: 115px;
  position: relative;

  background:
    repeating-linear-gradient(
      to bottom,
      #fff 0,
      #fff 27px,
      #eef1f4 28px
    );
}

.chart svg {
  position: absolute;
  inset: 8px 0 0;

  width: 100%;
  height: 95px;
}


/* =========================================
   PHONE
========================================= */

.phone {
  position: absolute;

  right: -5px;
  bottom: -18px;

  width: 190px;
  height: 355px;

  border: 7px solid #0a1f34;
  background: #fff;

  border-radius: 29px;

  box-shadow: 0 20px 45px rgba(0,0,0,.32);

  color: #0c2137;

  overflow: hidden;
}

.phone-notch {
  width: 70px;
  height: 11px;

  background: #0a1f34;

  border-radius: 0 0 10px 10px;

  margin: auto;
}

.phone-top {
  height: 41px;

  background: #061f38;
  color: white;

  padding: 12px 8px;

  font-size: 8px;

  display: flex;
  justify-content: space-between;
}

.phone-body {
  padding: 12px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
}

.progress {
  height: 5px;

  background: #edf1f5;

  border-radius: 5px;

  margin: 7px 0 15px;
}

.progress span {
  display: block;

  width: 66%;
  height: 100%;

  background: #1a66d9;

  border-radius: 5px;
}

.nums-title {
  font-size: 8px;
  font-weight: 700;

  margin-bottom: 8px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 5px;
}

.numbers span {
  font-size: 7px;

  background: #f3f5f7;

  border-radius: 50%;

  width: 22px;
  height: 22px;

  display: grid;
  place-items: center;
}

.numbers span.hot {
  background: var(--orange);
  color: white;
}

.legend {
  font-size: 5px;
  color: #9aa4ae;

  margin-top: 9px;

  display: flex;
  gap: 5px;
  align-items: center;
}

.legend i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #ddd;
}

.phone-nav {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;

  height: 38px;

  border-top: 1px solid #eee;

  display: flex;
  justify-content: space-around;
  align-items: center;

  font-size: 10px;
}


/* =========================================
   HERO DECORATION
========================================= */

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  opacity: .16;
}

.glow-a {
  width: 400px;
  height: 400px;

  background: #1c79c0;

  left: -180px;
  top: 120px;
}

.glow-b {
  width: 260px;
  height: 260px;

  background: #ff5b0a;

  right: 5%;
  top: 180px;

  opacity: .07;
}

.wave-separator {
  position: absolute;

  left: -2%;
  right: -2%;
  bottom: -56px;

  height: 100px;

  background: white;

  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}


/* =========================================
   LOGOS
========================================= */

.logos {
  padding: 25px 0 35px;
  text-align: center;
}

.logos p {
  color: #8a95a0;
  font-size: 13px;

  margin-bottom: 50px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;

  gap: 30px;

  width: 100%;
  max-width: 800px;

  margin: 0 auto;
}

.client-logo {
  width: 100%;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  display: block;

  max-width: 190px;
  max-height: 115px;

  width: auto;
  height: auto;

  object-fit: contain;
}

@media (max-width: 680px) {

  .logo-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .client-logo {
    height: 65px;
  }

  .client-logo img {
    max-width: 160px;
    max-height: 60px;
  }

}


/* =========================================
   FEATURES
========================================= */

.features {
  padding: 80px 0 90px;

  background: linear-gradient(#fff,#fafbfd);
}

.feature-layout {
  display: grid;
  grid-template-columns: .8fr 1.6fr;
  gap: 60px;

  align-items: start;
}

.section-intro {

  padding-top: 20px;

}

.section-intro h2 {

  font: 800 34px/1.25 Manrope;

  margin: 0;

  letter-spacing: -1px;

}

.section-intro h2 span {

  color: var(--orange);

}

.section-intro p {

  color: #75808b;

  line-height: 1.7;

  font-size: 14px;

}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.feature-card {
  background: #fff;

  border: 1px solid #edf0f3;
  border-radius: 10px;

  padding: 20px;

  min-height: 155px;

  box-shadow: 0 10px 35px rgba(11,39,67,.05);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(11,39,67,.1);
}

.feature-card .icon {
  width: 32px;
  height: 32px;

  border-radius: 9px;

  background: #fff1e9;
  color: var(--orange);

  display: grid;
  place-items: center;

  font-size: 16px;
}

.feature-card h3 {
  font-size: 14px;

  margin: 12px 0 7px;
}

.feature-card p {
  font-size: 11px;
  line-height: 1.55;

  color: #6e7a86;

  margin: 0;
}


/* =========================================
   SEGURIDAD
========================================= */

.security-block {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
}

.security-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.security-glow-a {
  width: 420px;
  height: 420px;
  top: -240px;
  left: -170px;
  background: rgba(255,91,10,.1);
}

.security-glow-b {
  width: 360px;
  height: 360px;
  right: -210px;
  bottom: -240px;
  background: rgba(55,133,205,.1);
}

.security-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 76px;
  align-items: center;
}

.security-intro {
  max-width: 410px;
}

.security-kicker,
.welcome-kicker {
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.security-intro h2 {
  margin: 0 0 20px;
  font: 800 39px/1.12 Manrope;
  letter-spacing: -1.1px;
}

.security-intro h2 span {
  color: var(--orange);
}

.security-intro > p {
  margin: 0;
  color: #9fb1c1;
  font-size: 13px;
  line-height: 1.75;
}

.security-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #c6d2dc;
  font-size: 10px;
  font-weight: 700;
}

.security-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31c980;
  box-shadow: 0 0 0 4px rgba(49,201,128,.12);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.security-card {
  position: relative;
  min-height: 185px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.security-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,91,10,.32);
  background: rgba(255,255,255,.055);
}

.security-card > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255,255,255,.2);
  font: 800 10px Manrope;
}

.security-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 9px;
  background: rgba(255,91,10,.12);
  color: var(--orange);
  font-weight: 800;
}

.security-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
}

.security-card p {
  margin: 0;
  color: #94a7b8;
  font-size: 10.5px;
  line-height: 1.65;
}


/* =========================================
   COMO FUNCIONA
========================================= */

.how {
  padding: 70px 0 95px;
}

.center-head {
  text-align: center;
}

.center-head h2 {
  font: 800 30px Manrope;

  margin: 0 0 8px;
}

.center-head p {
  color: #86919d;

  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;

  margin-top: 45px;

  text-align: center;
}

.step {
  position: relative;
}

.step-icon {
  width: 72px;
  height: 72px;

  border-radius: 50%;

  margin: 0 auto 15px;

  display: grid;
  place-items: center;

  font-size: 27px;

  border: 1px solid #e8edf2;
}

.step-icon.orange {
  background: #fff5ef;
  color: var(--orange);
}

.step-icon.navy {
  background: #f5f7fb;
  color: var(--navy);
}

.step h3 {
  font-size: 13px;

  margin: 0 0 7px;
}

.step p {
  font-size: 11px;

  color: #7f8b96;

  line-height: 1.55;
}

.step-arrow {
  position: absolute;

  top: 28px;
  right: -28px;

  color: #a9b3be;

  font-size: 22px;
}


/* =========================================
   EQUIPO
========================================= */

.welcome {
  overflow: hidden;
  padding: 90px 0 35px;
  background: #f7f9fb;
}

.welcome-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.welcome-copy {
  max-width: 480px;
}

.welcome-copy h2 {
  margin: 0 0 18px;
  font: 800 38px/1.13 Manrope;
  letter-spacing: -1.2px;
}

.welcome-copy p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.welcome-photo {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.welcome-photo-shape {
  position: absolute;
  inset: 58px 10px 0;
  border-radius: 180px 180px 24px 24px;
  background: linear-gradient(145deg,#e9eef3,#fff);
  border: 1px solid #e1e7ed;
}

.welcome-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 510px;
  object-fit: contain;
  object-position: center bottom;
}

.welcome-photo-label {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 25px;
  min-width: 178px;
  padding: 13px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.welcome-photo-label strong,
.welcome-photo-label span {
  display: block;
}

.welcome-photo-label strong {
  margin-bottom: 3px;
  font: 800 12px Manrope;
}

.welcome-photo-label span {
  color: var(--muted);
  font-size: 9px;
}


/* =========================================
   CTA
========================================= */

.cta {
  padding: 70px 0 40px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;

  min-height: 260px;
}

.cta-copy h2 {
  font: 800 34px Manrope;

  margin: 0 0 10px;
}

.cta-copy p {
  color: #d9e2ea;
}

.cta-copy small {
  display: block;

  color: #9eb0bf;

  margin-top: 13px;
}


/* =========================================
   RAFFLE MACHINE
========================================= */

.raffle-machine {
  position: relative;

  width: 360px;
  height: 230px;

  margin-left: auto;
}

.machine-drum {
  position: absolute;

  left: 50px;
  top: 10px;

  width: 230px;
  height: 150px;

  border-radius: 44% 44% 37% 37%;

  border: 8px solid #164b81;

  background: rgba(34,100,170,.25);

  overflow: hidden;

  box-shadow:
    inset 0 0 0 3px rgba(96,154,216,.18);
}

.machine-drum:before {
  content: "";

  position: absolute;

  width: 10px;
  height: 100%;

  left: 50%;

  background: #164b81;
}

.tickets {
  position: absolute;

  inset: 70px 20px 10px;

  display: flex;
  align-items: flex-end;

  gap: 3px;

  transform: rotate(-2deg);
}

.tickets i {
  width: 28px;
  height: 32px;

  background: var(--orange);

  border-radius: 5px;

  transform: rotate(var(--r,5deg));
}

.tickets i:nth-child(2) {
  --r: -12deg;
}

.tickets i:nth-child(3) {
  --r: 15deg;
}

.tickets i:nth-child(4) {
  --r: -5deg;
}

.machine-base {
  position: absolute;

  left: 56px;
  bottom: 11px;

  width: 240px;
  height: 22px;

  background: #123c68;

  border-radius: 12px;
}

.machine-leg {
  position: absolute;

  bottom: 31px;

  width: 15px;
  height: 65px;

  background: #164b81;
}

.machine-leg.l {
  left: 82px;
  transform: rotate(13deg);
}

.machine-leg.r {
  right: 82px;
  transform: rotate(-13deg);
}

.crank {
  position: absolute;

  right: 33px;
  top: 57px;

  width: 58px;
  height: 12px;

  background: var(--orange);

  border-radius: 8px;
}

.crank:after {
  content: "";

  position: absolute;

  right: -14px;
  top: -9px;

  width: 20px;
  height: 30px;

  background: var(--orange);

  border-radius: 8px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
  background: #041c31;

  color: #d8e2eb;

  padding: 45px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4,1fr);

  gap: 38px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer p {
  font-size: 11px;
  line-height: 1.7;

  color: #9eb0c0;
}

.footer h4 {
  font-size: 12px;

  color: #fff;

  margin: 5px 0 16px;
}

.footer a,
.footer span {
  display: block;

  font-size: 11px;

  color: #b7c5d0;

  margin: 0 0 11px;
}

.social {
  letter-spacing: 10px;

  color: #95a7b7;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.1);

  margin-top: 30px;
  padding-top: 17px;

  text-align: center;

  font-size: 10px;

  color: #8194a5;
}


/* =========================================
   SCROLL ANIMATIONS
========================================= */

.reveal {
  opacity: 0;

  transform: translateY(26px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.in-view {
  opacity: 1;

  transform: none;
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .22s;
}

.delay-3 {
  transition-delay: .32s;
}


/* =========================================
   FLOATING ANIMATION
========================================= */

.floaty {
  animation: float 6s ease-in-out infinite;
}

.floaty-slow {
  animation: float 7.5s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }

}


/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle {
  display: none;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1000px) {

  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;

    margin-left: auto;

    background: none;

    border: 0;
  }

  .menu-toggle span {
    display: block;

    width: 28px;
    height: 2px;

    background: #fff;

    margin: 6px;
  }

  .menu-toggle.open + .main-nav {
    display: flex;

    position: absolute;

    top: 75px;
    left: 20px;
    right: 20px;

    background: #072039;

    padding: 20px;

    border-radius: 12px;

    flex-direction: column;
  }

  .nav-indicator {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;

    margin-top: 20px;
  }

  .dashboard-shell {
    left: 0;
    right: auto;

    width: 90%;
  }

  .phone {
    right: 2%;
  }

  .feature-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:680px) {

  .container {
    width: min(100% - 28px,1180px);
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: flex-start;
  }

  .trust-mini {
    gap: 20px;
  }

  .dashboard-shell {
    transform: scale(.75);

    transform-origin: left top;

    width: 650px;
  }

  .phone {
    transform: scale(.8);

    transform-origin: right bottom;
  }

  .hero-visual {
    min-height: 390px;
  }

  .logo-row {
    display: grid;

    grid-template-columns: repeat(2,1fr);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step-arrow {
    display: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .raffle-machine {
    margin: 35px auto 0;

    transform: scale(.85);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-wrap {
    height: 76px;
  }

  .section-intro h2 {
    font-size: 27px;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media(prefers-reduced-motion:reduce) {

  * {
    scroll-behavior: auto !important;
  }

  .reveal,
  .floaty,
  .floaty-slow {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .nav-indicator {
    transition: none !important;
  }

} 
/* =========================================
   PRICING ONGLEX
========================================= */

.pricing {
  padding: 100px 0 110px;
  background: #061f38;
  color: white;
  scroll-margin-top: 125px;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 91, 10, .08);
  top: -180px;
  right: -130px;
  filter: blur(20px);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.pricing-title {
  max-width: 670px;
}

.pricing-kicker {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.pricing-title h2 {
  font: 800 46px/1.08 Manrope;
  margin: 0 0 16px;
  letter-spacing: -1.5px;
}

.pricing-title h2 span {
  color: var(--orange);
}

.pricing-title p {
  margin: 0;
  max-width: 560px;
  color: #9fb1c1;
  line-height: 1.7;
  font-size: 14px;
}

.setup-chip {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.setup-chip > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255,91,10,.14);
  color: var(--orange);
}

.setup-chip small,
.setup-chip strong {
  display: block;
}

.setup-chip small {
  margin-bottom: 2px;
  color: #8fa2b2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.setup-chip strong {
  font: 800 16px Manrope;
}

.setup-message {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding: 15px 20px;
  border: 1px solid rgba(255,91,10,.25);
  border-radius: 13px;
  background: rgba(255,91,10,.07);
}

.setup-message-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font: 800 10px Manrope;
}

.setup-message strong {
  display: block;
  font-size: 13px;
}

.setup-message p {
  margin: 3px 0 0;
  color: #9fb0bf;
  font-size: 11px;
}


/* GRID */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}


/* CARDS */

.price-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 31px;

  border-radius: 17px;

  background: #0a2945;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow: 0 20px 55px rgba(0,0,0,.15);

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,91,10,.4);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.price-card.featured {
  border: 2px solid var(--orange);
  background: #0b2c4a;
  transform: translateY(-12px);
}

.price-card.featured:hover {
  transform: translateY(-18px);
}


/* POPULAR */

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);

  padding: 7px 17px;

  border-radius: 30px;

  background: var(--orange);
  color: white;

  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 800;

  white-space: nowrap;
}


/* NUMBER */

.plan-number {
  position: absolute;
  right: 25px;
  top: 22px;

  font: 800 45px Manrope;

  color: rgba(255,255,255,.035);
}


/* TITLE */

.plan-label {
  display: inline-block;

  color: var(--orange);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;

  margin-bottom: 10px;
}

.price-top h3 {
  font: 800 23px Manrope;
  margin: 0 0 10px;
}

.price-top p {
  margin: 0;

  color: #99aabb;

  font-size: 12px;
  line-height: 1.6;

  min-height: 58px;
}


/* PRICE */

.price-value {
  display: flex;
  align-items: flex-end;

  gap: 4px;

  margin: 27px 0 7px;
}

.currency {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
}

.price-number {
  font: 800 40px/1 Manrope;
}

.price-period {
  margin-bottom: 6px;

  color: #91a2b2;

  font-size: 11px;
}

/* DIVIDER */

.plan-divider {
  width: 100%;
  height: 1px;

  background: rgba(255,255,255,.08);

  margin: 24px 0;
}


/* FEATURES */

.plan-features {
  list-style: none;

  padding: 0;
  margin: 0 0 25px;

  display: grid;
  gap: 14px;

  flex: 1;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;

  font-size: 11px;
  color: #c1ccd5;

  line-height: 1.45;
}

.plan-features li span {
  color: var(--orange);
  font-weight: 900;
}


/* RULE */

.plan-rule {
  padding: 13px 14px;

  border-radius: 9px;

  background: rgba(255,255,255,.045);

  color: #9cafbd;

  font-size: 10px;
  line-height: 1.55;

  margin-bottom: 21px;
}

.plan-rule strong {
  color: white;
}


/* BUTTON */

.plan-button {
  width: 100%;
  min-height: 49px;

  background: transparent;
  border: 1px solid rgba(255,255,255,.18);

  color: white;
}

.plan-button:hover {
  border-color: var(--orange);
  background: rgba(255,91,10,.08);
  color: white;
}

.price-card.featured .plan-button {
  background: var(--orange);
  border-color: var(--orange);
}


/* FOOTER */

.pricing-footer {
  margin-top: 45px;

  padding-top: 30px;

  border-top: 1px solid rgba(255,255,255,.08);

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 35px;

  color: #8ea0b0;

  font-size: 11px;
}


/* TABLET */

@media(max-width:1000px) {

  .pricing-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }

  .security-layout,
  .welcome-layout {
    grid-template-columns: 1fr;
  }

  .security-intro,
  .welcome-copy {
    max-width: 620px;
  }

  .welcome-photo {
    width: 100%;
    max-width: 650px;
    margin: auto;
  }

}


/* MOBILE */

@media(max-width:680px) {

  .pricing {
    padding: 75px 0;
  }

  .pricing-title h2 {
    font-size: 34px;
  }

  .price-card {
    padding: 26px 23px;
  }

  .security-block {
    padding: 75px 0;
  }

  .security-layout {
    gap: 42px;
  }

  .security-intro h2,
  .welcome-copy h2 {
    font-size: 31px;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-card {
    min-height: 0;
  }

  .setup-chip {
    width: 100%;
  }

  .setup-message {
    align-items: flex-start;
  }

  .welcome {
    padding: 70px 0 15px;
  }

  .welcome-layout {
    gap: 25px;
  }

  .welcome-photo,
  .welcome-photo img {
    min-height: 0;
    height: 390px;
  }

  .welcome-photo-label {
    right: 0;
  }

}

/* =========================================
   CORRECCIÓN NAVEGACIÓN FIJA Y OFFSET
========================================= */

.nav-wrap {
  position: relative;
  z-index: 100000;
}

#caracteristicas,
#seguridad,
#precios,
#nosotros,
#contacto {
  scroll-margin-top: 65px;
}
.dash-brand {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.dash-logo {
  width: 75px;
  height: auto;
  display: block;
}
