:root{
  --bg:#04070c;

  --glass: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.14);

  --accent: rgba(120,255,255,.6);
  --gold: rgba(255,200,120,.6);

  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:#fff;
}


/* HEADER */

.jd-header{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:20px 28px;

  background: rgba(0,0,0,.6);
  backdrop-filter: blur(16px);

  border-bottom:1px solid var(--border);
}

.jd-logo img{
  height:34px;
  border-radius: 8px;
}

.jd-back{
  color:#fff;
  text-decoration:none;
  opacity:.8;
}


/* HERO */

.jd-hero{
  text-align:center;
  padding:120px 26px 90px;

  background:
    radial-gradient(circle at top, #09121f, #04070c 70%);
}

.jd-hero h1{
  font-size:48px;
  margin-bottom:18px;
}

.jd-hero p{
  opacity:.75;
  margin-bottom:34px;
}

.jd-cta{
  padding:14px 28px;
  border-radius:999px;

  border:1px solid var(--accent);
  text-decoration:none;
  color:#fff;

  transition:.3s;
}

.jd-cta:hover{
  box-shadow:0 0 30px rgba(120,255,255,.3);
}


/* PACKAGES */

.jd-packages{
  padding:90px 26px;
  text-align:center;
}

.jd-packages h2{
  margin-bottom:50px;
  font-size:36px;
}

.packages-grid{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:28px;
}

.package{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:22px;

  padding:30px 24px 34px;

  transition:.35s var(--ease);
}

.package h3{
  font-size:22px;
}

.price{
  font-size:26px;
  margin:12px 0 18px;
  opacity:.9;
}

.package ul{
  list-style:none;
  padding:0;
  margin:0 0 26px;
}

.package li{
  margin:8px 0;
  opacity:.75;
}

.package a{
  text-decoration:none;
  color:#fff;

  padding:10px 18px;
  border-radius:999px;

  border:1px solid var(--border);
  transition:.25s;
}


/* Highlight */

.highlight{
  transform: scale(1.05);
  border-color: var(--gold);

  box-shadow:
    0 30px 70px rgba(0,0,0,.7),
    0 0 40px rgba(255,200,120,.25);
}

.highlight .tag{
  background:var(--gold);
  color:#000;

  padding:6px 12px;
  border-radius:999px;

  font-size:11px;
  display:inline-block;
  margin-bottom:10px;
}


/* Hover */

.package:hover{
  transform: translateY(-10px);
  border-color: var(--accent);
}


/* CUSTOM */

.jd-custom{
  padding:90px 26px;
  text-align:center;
}

.custom-box{
  max-width:700px;
  margin:40px auto 0;

  background:var(--glass);
  border:1px solid var(--border);
  border-radius:26px;

  padding:46px 40px;
}

.custom-box a{
  display:inline-block;
  margin-top:20px;

  padding:12px 24px;
  border-radius:999px;

  border:1px solid var(--accent);
  color:#fff;
  text-decoration:none;
}


/* TRUST */

.jd-trust{
  padding:90px 26px;
  text-align:center;
}

.trust-grid{
  max-width:900px;
  margin:40px auto 0;

  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:20px;
}

.trust-grid div{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:18px;

  padding:18px;
  opacity:.85;
}


/* FOOTER */

.jd-footer{
  padding:100px 26px;
  text-align:center;

  background: radial-gradient(circle at bottom, #09121f, #04070c);
}

.jd-footer a{
  display:inline-block;
  margin-top:22px;

  padding:14px 30px;
  border-radius:999px;

  border:1px solid var(--accent);
  color:#fff;
  text-decoration:none;
}


/* RESPONSIVE */

@media(max-width:1100px){
  .packages-grid{ grid-template-columns: repeat(2,1fr); }
}

@media(max-width:600px){
  .packages-grid{ grid-template-columns:1fr; }

  .jd-hero h1{ font-size:36px; }
}

/* Fix Trust Section on Mobile */

@media(max-width:600px){

  .trust-grid{
    grid-template-columns:1fr; /* One per row */
    max-width:100%;
  }

  .trust-grid div{
    width:100%;
    margin:0 auto;
  }

}

@media(max-width:600px){

  body{
    overflow-x:hidden;
  }

}

/* USP Highlight Section */

.usp-highlight{
  width:100%;
  padding:90px 20px 70px;

  display:flex;
  justify-content:center;

  background:
    radial-gradient(
      circle at center,
      rgba(120,255,255,.12),
      transparent 100%
    );
}

/* Box */

.usp-box{
  max-width:900px;
  width:100%;

  padding:44px 38px;

  text-align:center;

  background:rgba(8,12,18,.82);
  backdrop-filter:blur(14px);

  border:1px solid rgba(120,255,255,.35);

  border-radius:28px;

  position:relative;

  /* Shape-based glow */
  box-shadow:
    0 0 35px rgba(120,255,255,.18),
    inset 0 0 25px rgba(120,255,255,.06);

  transition:.45s var(--ease);
}

.usp-box:hover{
  transform:translateY(-6px);

  box-shadow:
    0 0 60px rgba(120,255,255,.45),
    inset 0 0 35px rgba(120,255,255,.12);
}


/* Tag */

.usp-tag{
  display:inline-block;

  margin-bottom:16px;

  padding:7px 18px;

  font-size:11px;
  letter-spacing:.25em;

  text-transform:uppercase;

  color:#7fffff;

  border:1px solid rgba(120,255,255,.5);

  border-radius:999px;

  background:rgba(120,255,255,.1);
}


/* Title */

.usp-box h2{
  font-size:34px;
  font-weight:600;
  line-height:1.35;

  margin-bottom:18px;

  color:#fff;
}


/* Description */

.usp-box p{
  font-size:16px;
  line-height:1.7;

  margin-bottom:26px;

  color:rgba(255,255,255,.78);
}


/* CTA Button */

.usp-btn{
  display:inline-block;

  padding:13px 28px;

  border-radius:999px;

  border:1px solid var(--accent);

  color:#fff;
  text-decoration:none;

  transition:.3s;
}

.usp-btn:hover{
  box-shadow:0 0 28px rgba(120,255,255,.45);
  transform:translateY(-2px);
}


/* Mobile */

@media(max-width:768px){

  .usp-box{
    padding:30px 22px;
  }

  .usp-box h2{
    font-size:26px;
  }

  .usp-box p{
    font-size:14px;
  }

}

/* ============================= */
/* HEADER ACTION BUTTONS */
/* ============================= */

.jd-actions{
  display:flex;
  gap:14px;
  align-items:center;
}

.jd-btn{
  padding:9px 18px;
  border-radius:999px;

  border:1px solid rgba(120,255,255,.45);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);

  color:#fff;
  text-decoration:none;
  font-size:13px;

  transition:.3s ease;
}

.jd-btn:hover{
  box-shadow:0 0 22px rgba(120,255,255,.35);
  transform:translateY(-2px);
}

@media (max-width:768px){

  .jd-actions{
    flex-direction:row;
    gap:8px;
  }

  .jd-btn{
    min-width: auto;
    font-size:11px;
    padding:7px 8px;
  }
}