/* =========================
   FILE 2: assets/css/vpn.css
   (Moved from your <style> tag)
   ========================= */

:root{
  --bg: #000;
  --card: rgba(255,255,255,.04);
  --card2: rgba(255,255,255,.02);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.16);
  --text: rgba(255,255,255,.84);
  --muted: rgba(255,255,255,.62);
  --brand: #FFD100;
  --shadow: 0 28px 90px rgba(0,0,0,.55);
  --radius: 22px;
}

/* Page wrapper */
.vpn-page{
  background: var(--bg);
  min-height: 100vh;
  padding-top: 96px; /* because your nav/logo are fixed */
  overflow: hidden;
  position: relative;
    
}

/* Big stripe glow background */
.vpn-glow{
  position:absolute;
  inset: 20px;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(1000px 420px at 15% 20%, rgba(255, 209, 0, .18), transparent 60%),
    radial-gradient(900px 420px at 85% 25%, rgba(255, 255, 255, .07), transparent 62%),
    radial-gradient(900px 520px at 50% 90%, rgba(255, 209, 0, .10), transparent 70%);
  filter: blur(18px);
}

.vpn-wrap{
  position:relative;
  z-index:2;
  width: min(1200px, 92vw);
  margin: 0 auto;
    
}

/* HERO */
.vpn-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: center;
  padding: 1px 0;
}

.vpn-badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--stroke);
  color: rgba(255,255,255,.70);
  font-size: 12px;
  letter-spacing: .9px;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 14px;
}
.vpn-badge strong{ color: var(--brand); }

.vpn-title{
  margin:0 0 12px;
  font-size: clamp(40px, 4.3vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #fff;
}
.vpn-title span{ color: var(--brand); }

.vpn-lead{
  margin:0 0 18px;
  max-width: 60ch;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}

.vpn-ctaRow{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  align-items:center;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--brand);
  color: #111;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration:none;
  transition: transform 200ms ease, filter 200ms ease;
}
.btn-primary:hover{ transform: translateY(-2px); filter: brightness(1.05); }

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: #fff;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: 1px solid var(--stroke2);
  cursor: pointer;
  text-decoration:none;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}
.btn-ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,209,0,.06);
  border-color: rgba(255,209,0,.45);
  color: var(--brand);
}

/* Right hero card */
.vpn-heroCard{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow:hidden;
  padding: 18px;
  position:relative;
}

.vpn-heroCard:before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(700px 280px at 20% 10%, rgba(255,209,0,.18), transparent 60%),
    radial-gradient(700px 280px at 85% 90%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
  opacity:.9;
  filter: blur(8px);
}

.vpn-heroCardInner{
  position:relative;
  z-index:2;
  border-radius: 18px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
  overflow:hidden;
}

/* GIF CARD */
.vpn-gifCard{
  position:relative;
  border-radius:18px;
  padding: 14px;
  background:
    radial-gradient(800px 260px at 40% -10%, rgba(255,209,0,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
}

.vpn-gifCard::before{
  content:"";
  position:absolute;
  inset:-20px;
  background: radial-gradient(420px 220px at 50% 20%, rgba(255,209,0,.20), transparent 70%);
  filter: blur(18px);
  opacity:.75;
  pointer-events:none;
}

.vpn-gifMedia{
  position:relative;
  z-index:2;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  aspect-ratio: 16/10;
  display:flex;
  align-items:center;
  justify-content:center;
}

.vpn-gifMedia img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  opacity:.98;
  transform: scale(1.02);
}

.vpn-gifCaption{
  position:relative;
  z-index:2;
  margin-top: 12px;
  text-align:center;
}

.vpn-gifCaption h4{
  margin:0 0 6px;
  color:#fff;
  font-size:16px;
  font-weight:900;
  letter-spacing:.2px;
}

.vpn-gifCaption p{
  margin:0;
  color: rgba(255,255,255,.70);
  font-size: 13.5px;
  line-height: 1.75;
}

/* DOWNLOAD STRIP */
.vpn-downloadBlock{
  margin: 44px auto 10px;
  border-radius: var(--radius);
  padding: 18px;
/*  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); 
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
    */
}

.vpn-downloadTitle{
  margin: 0 0 14px;
  text-align:center;
  color:#fff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .2px;
}

.vpn-downloads{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 12px;
}

.vpn-dl{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .3px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  min-width: 160px;
  justify-content:center;
}

.vpn-dl:hover{
  transform: translateY(-3px);
  background: rgba(255,209,0,.08);
  border-color: rgba(255,209,0,.45);
  color: var(--brand);
}

.vpn-dl::before{
  content:"";
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .95;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
}

.vpn-dl.win::before{ background-image:url("../img/icons/windows.svg"); }
.vpn-dl.mac::before{ background-image:url("../img/icons/apple.svg"); }
.vpn-dl.and::before{ background-image:url("../img/icons/android.svg"); }
.vpn-dl.iphone::before{ background-image:url("../img/icons/iphone.svg"); }
.vpn-dl.ipad::before{ background-image:url("../img/icons/ipad.svg"); }
.vpn-dl.tv::before{ background-image:url("../img/icons/android-tv.svg"); }

/* PRICING */
.vpn-section{ margin-top: 10px; padding-top: 60px; padding-bottom: 60px; }
.vpn-head{ text-align:center; margin-bottom: 28px; }
.vpn-head h2{
  margin:0;
  font-size: clamp(30px, 3.0vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color:#fff;
}
.vpn-head h2 span{ color: rgba(255,255,255,.35); -webkit-text-stroke: 1px rgba(255,255,255,.35); }
.vpn-underline{
  width: 90px; height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 0, .85), transparent);
  opacity: .9;
}
.vpn-sub{
  max-width: 80ch;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.vpn-pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-card{
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.price-card.popular{
  border-color: rgba(255,209,0,.45);
  background: linear-gradient(180deg, rgba(255,209,0,.08), rgba(255,255,255,.02));
}

.price-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.price-name{
  color:#fff;
  font-weight: 900;
  letter-spacing: .2px;
  margin:0;
  font-size: 16px;
}
.price-tag{
  color: rgba(255,255,255,.70);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.price{
  font-size: 34px;
  font-weight: 900;
  color: var(--brand);
  margin: 10px 0 4px;
}
.price small{
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 700;
}
.price-currency{
  font-size: 30px;               /* set this to match Starter */
  color: #fff;  /* match Starter */
  font-weight: 700;
  letter-spacing: .02em;

}

.price-list{
  margin: 14px 0 18px;
  padding:0;
  list-style:none;
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
}
.price-list li{
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* CTA STRIP */
.vpn-ctaStrip{
  margin-top: 56px;
  border-radius: var(--radius);
  padding: 22px;
  background: radial-gradient(900px 240px at 20% 20%, rgba(255,209,0,.18), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 70px;

}

.vpn-ctaStrip h3{
  margin:0;
  color:#fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .2px;
}
.vpn-ctaStrip p{
  margin: 6px 0 0;
  color: rgba(255,255,255,.70);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 70ch;
}

/* responsive */
@media (max-width: 980px){
  .vpn-hero{ grid-template-columns: 1fr; }
  .vpn-pricing{ grid-template-columns: 1fr; }
  .vpn-downloadBlock{ margin-top: 28px; }
  .vpn-dl{ min-width: 140px; }
}
/* =========================
   Buttons Colors
   ========================= */
.vpn-page .btn-primary:hover{
  background: #25D366;
  color: #fff;
  filter: none;
}
