:root{
  --bg:#050505;
  --bg-soft:#0b0b0b;
  --card:#171717;
  --card-strong:#1f1f1f;
  --line:rgba(255,255,255,.1);
  --line-strong:rgba(207,255,4,.55);
  --accent:#cfff04;
  --text:#fff;
  --muted:#a6a6a6;
  --muted-2:#626262;
  --font-display:'Poppins',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
  --font-price:'Unbounded',system-ui,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  min-height:100vh;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
    radial-gradient(circle at 10% 4%,rgba(207,255,4,.12),transparent 28%),
    var(--bg);
  background-size:72px 72px,72px 72px,100% 100%,100% 100%;
  color:var(--text);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
}

img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}

.page-shell{
  width:100%;
  overflow:hidden;
}

.hero-section{
  min-height:100svh;
  width:min(100%,1240px);
  margin:0 auto;
  padding:44px 32px 36px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.78fr);
  align-items:center;
  gap:70px;
}

.eyebrow{
  color:var(--accent);
  font-family:var(--font-body);
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.hero-copy h1{
  max-width:760px;
  margin-top:22px;
  color:#fff;
  font-family:var(--font-display);
  font-size:clamp(56px,7.3vw,92px);
  font-weight:900;
  letter-spacing:0;
  line-height:.86;
}

.hero-copy__text{
  max-width:600px;
  margin-top:26px;
  color:#b5b5b5;
  font-size:19px;
  font-weight:500;
  line-height:1.55;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}

.btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:0 24px;
  font-family:var(--font-display);
  font-size:13px;
  font-weight:800;
  line-height:1;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  background:var(--accent);
  color:#090909;
}

.btn-ghost{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.035);
  color:#f5f5f5;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}

.trust-row span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:0 13px;
  color:#9c9c9c;
  font-size:12px;
  line-height:1;
}

.phone-preview{
  display:flex;
  justify-content:center;
}

.hero-phone{
  position:relative;
  width:min(100%,438px);
  aspect-ratio:438/576;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:38px;
  background:#151515;
  box-shadow:
    0 0 0 8px rgba(255,255,255,.025),
    0 28px 80px rgba(0,0,0,.68);
}

.hero__slides{position:absolute;inset:0}

.hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .6s ease;
}

.hero__slide--active{opacity:1}

.hero__image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 24%;
}

.hero__overlay{
  position:absolute;
  inset:auto 0 0;
  height:42%;
  background:linear-gradient(to top,rgba(0,0,0,.9),rgba(0,0,0,.25),transparent);
  pointer-events:none;
}

.hero__title{
  position:absolute;
  left:28px;
  right:28px;
  bottom:32px;
  z-index:2;
  color:#fff;
  font-family:var(--font-display);
  font-size:29px;
  font-weight:900;
  letter-spacing:0;
  line-height:.98;
}

.hero__title span{color:var(--accent)}

.hero__dots{
  position:absolute;
  right:24px;
  bottom:24px;
  z-index:3;
  display:flex;
  gap:7px;
}

.hero__dots span{
  width:6px;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.32);
  transition:all .3s ease;
  cursor:pointer;
}

.hero__dots span.active{
  width:18px;
  background:var(--accent);
}

.offer-section{
  width:min(100%,900px);
  margin:0 auto;
  padding:72px 24px 28px;
}

.offer-head{
  max-width:600px;
  margin:0 auto 28px;
  text-align:center;
}

.offer-head h2{
  margin-top:12px;
  font-family:var(--font-display);
  font-size:clamp(32px,5vw,58px);
  font-weight:900;
  line-height:.95;
}

.offer-head p:not(.eyebrow){
  margin-top:14px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}

.package-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.package-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) max-content 14px;
  align-items:center;
  column-gap:16px;
  min-height:94px;
  padding:18px 20px;
  border:1px solid transparent;
  border-radius:20px;
  background:var(--card);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.package-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.16);
}

.package-card--highlight{
  border-color:var(--line-strong);
  background:var(--card-strong);
  box-shadow:0 0 22px rgba(207,255,4,.12);
}

.package-card__info{min-width:0}

.package-card__name{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:#f0ede8;
  font-family:var(--font-price);
  font-size:13px;
  font-weight:700;
  line-height:1.3;
}

.badge{
  display:inline-flex;
  align-items:center;
  min-height:19px;
  padding:0 8px;
  border-radius:999px;
  background:var(--accent);
  color:#101010;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
}

.package-card__desc{
  margin-top:5px;
  color:var(--muted-2);
  font-size:12px;
  line-height:1.4;
}

.package-card__price{
  justify-self:end;
  text-align:right;
}

.package-card__value{
  color:#f0ede8;
  font-family:var(--font-price);
  font-size:22px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}

.package-card__value strong,
.package-card__value span{font:inherit}

.package-card__unit{
  margin-top:4px;
  color:var(--muted-2);
  font-size:12px;
  white-space:nowrap;
}

.package-card__arrow{
  justify-self:end;
  color:#888;
  font-size:24px;
  line-height:1;
}

.package-card__arrow--accent{color:var(--accent)}

.footer{
  padding:26px 20px 46px;
  color:#777;
  font-size:12px;
  text-align:center;
}

@media (max-width:920px){
  .hero-section{
    min-height:auto;
    padding:34px 18px 36px;
    grid-template-columns:1fr;
    gap:42px;
  }

  .hero-copy h1{
    max-width:680px;
    font-size:clamp(48px,13vw,82px);
  }

  .hero-copy__text{
    max-width:620px;
    font-size:17px;
  }

  .phone-preview{justify-content:flex-start}
}

@media (max-width:560px){
  body{
    background-size:52px 52px,52px 52px,100% 100%,100% 100%;
  }

  .hero-section{
    padding:28px 16px 24px;
    gap:30px;
  }

  .hero-copy h1{
    margin-top:18px;
    max-width:100%;
    font-size:clamp(38px,12.5vw,50px);
    line-height:.92;
  }

  .hero-copy__text{
    margin-top:20px;
    font-size:15px;
  }

  .hero-actions{
    margin-top:26px;
  }

  .btn{
    width:100%;
  }

  .trust-row span{
    font-size:11px;
  }

  .hero-phone{
    width:100%;
    border-radius:28px;
  }

  .hero__title{
    left:20px;
    right:72px;
    bottom:24px;
    font-size:24px;
  }

  .offer-section{
    padding:54px 16px 22px;
  }

  .offer-head{
    text-align:left;
  }

  .package-card{
    grid-template-columns:minmax(0,1fr) max-content 12px;
    column-gap:10px;
    min-height:86px;
    padding:16px;
  }

  .package-card__value{
    font-size:19px;
  }

  .package-card__unit{
    font-size:11px;
  }
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}

  .btn,
  .hero__slide,
  .hero__dots span,
  .package-card{
    transition:none;
  }
}
