
:root{
  --brand:#5cc62b;
  --brand2:#3a9d23;
  --bg:#0b1220;
  --card:#0f1a30;
  --muted:#9fb0d0;
  --text:#e9f0ff;
  --line:rgba(255,255,255,.08);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
  --navbg: rgba(7,11,20,.65);
  --chipbg: rgba(255,255,255,.06);
  --chipbd: rgba(255,255,255,.12);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 10% 0%, rgba(92,198,43,.22), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(58,157,35,.18), transparent 55%),
    linear-gradient(180deg, #070b14, var(--bg));
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background:var(--navbg);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; font-weight:800;
}
.logo{
  width:120px; height:40px;
  display:flex; align-items:center; justify-content:center;
}
.logo img{max-width:120px; max-height:40px; width:auto; height:auto; display:block}
.menu{display:flex; align-items:center; gap:10px}
.menu > a, .menu > button{
  color:rgba(233,240,255,.9); font-weight:800; font-size:14px; opacity:.95;
  background:transparent; border:none; padding:10px 10px; border-radius:12px; cursor:pointer;
}
.menu > a:hover, .menu > button:hover{background:rgba(255,255,255,.06)}
.cta{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900; font-size:14px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.09)}
.btn.primary{
  background:linear-gradient(135deg, var(--brand), rgba(92,198,43,.55));
  border-color: rgba(92,198,43,.45);
  box-shadow: 0 16px 36px rgba(92,198,43,.16);
}
.btn.primary:hover{background:linear-gradient(135deg, rgba(92,198,43,.95), rgba(92,198,43,.45))}

/* Dropdown */
.dropdown{position:relative}
.dropdown-panel{
  position:absolute; top:46px; left:0;
  width: 300px;
  background:rgba(15,26,48,.94);
  border:1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding:10px;
  display:none;
}
.dropdown-panel a{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 10px; border-radius:12px;
}
.dropdown-panel a:hover{background:rgba(255,255,255,.06)}
.dropdown-panel small{display:block; color:var(--muted); font-weight:800; margin-top:2px}
.dropdown[aria-expanded="true"] .dropdown-panel{display:block}

/* Hamburger + Mobile Drawer */
.hamburger{
  display:none;
  width:44px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.hamburger .bars{width:18px; height:12px; margin:auto; position:relative}
.hamburger .bars::before,
.hamburger .bars::after,
.hamburger .bars span{
  content:""; position:absolute; left:0; right:0;
  height:2px; border-radius:2px; background:rgba(233,240,255,.92);
}
.hamburger .bars::before{top:0}
.hamburger .bars span{top:5px}
.hamburger .bars::after{bottom:0}

.mobile-drawer{
  display:none;
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  z-index:80;
}
.mobile-drawer .panel{
  position:absolute; top:0; right:0;
  width:min(92vw, 360px);
  height:100%;
  background:rgba(10,16,30,.98);
  border-left:1px solid var(--line);
  padding:16px;
  box-shadow: var(--shadow);
}
.mobile-drawer a, .mobile-drawer button{
  display:flex; width:100%;
  justify-content:space-between; align-items:center;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(233,240,255,.92);
  font-weight:900;
  cursor:pointer;
  margin-top:10px;
}
.mobile-drawer a:hover, .mobile-drawer button:hover{background:rgba(255,255,255,.07)}
.mobile-sub{display:none; margin-top:8px; padding-left:8px}
.mobile-sub a{margin-top:8px}
.mobile-drawer .top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.close-btn{width:44px}

/* Layout */
.hero{padding:54px 0 18px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:7px 10px; border-radius:999px;
  background:var(--chipbg); border:1px solid var(--chipbd);
  color:rgba(233,240,255,.92);
  font-weight:900; font-size:13px;
  width:max-content;
}
h1{margin:14px 0 10px; font-size: clamp(28px, 3.6vw, 44px); line-height:1.12; letter-spacing:-.6px}
h2{margin:0 0 10px; font-size:22px; letter-spacing:-.2px}
.sub{color:var(--muted); font-size:16px; margin:0 0 18px; max-width:65ch}

.section{padding:24px 0}
.card{
  background:rgba(15,26,48,.65);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.tile{padding:16px}
.tile b{display:block; margin:10px 0 4px; font-size:16px}
.tile p{margin:0; color:var(--muted); font-size:14px}
.icon{
  width:42px; height:42px; border-radius:16px;
  display:grid; place-items:center;
  background: rgba(92,198,43,.14);
  border:1px solid rgba(92,198,43,.25);
}

table{width:100%; border-collapse:collapse}
th, td{padding:12px; border-bottom:1px solid rgba(255,255,255,.08); text-align:left}
th{color:rgba(233,240,255,.92); font-weight:900}
td{color:var(--muted); font-weight:800}
.price{color:rgba(233,240,255,.95)}

input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
}
label span{color:var(--muted); font-weight:800}
.small{font-size:13px; color:var(--muted)}
.footer{
  padding:24px 0;
  border-top:1px solid var(--line);
  margin-top:20px;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:14px;
}
.links a{display:block; padding:6px 0; color:var(--muted); font-weight:800}
.links a:hover{color:var(--text)}

@media (max-width: 920px){
  .menu{display:none}
  .hamburger{display:inline-grid; place-items:center}
  .grid-3{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
/* ===== Amber-style package cards ===== */
.pkg-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.pkg-card{
  padding:16px;
  position:relative;
  overflow:hidden;
}
.pkg-card::before{
  content:"";
  position:absolute;
  inset:-70px -110px auto auto;
  width:240px; height:240px;
  background: radial-gradient(circle at 30% 30%, rgba(92,198,43,.22), transparent 60%);
  pointer-events:none;
}
.pkg-title{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.pkg-badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(233,240,255,.95);
}
.pkg-speed{
  font-size:28px;
  font-weight:1000;
  letter-spacing:-.4px;
  margin:10px 0 6px;
}
.pkg-speed small{font-size:13px; color:var(--muted); font-weight:900}
.pkg-feat{
  margin:0;
  padding:0;
  list-style:none;
}
.pkg-feat li{
  margin:8px 0;
  color:var(--muted);
  font-weight:800;
  display:flex; gap:8px; align-items:flex-start;
}
.pkg-price{
  margin-top:12px;
  display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
}
.pkg-price .money{
  font-size:20px;
  font-weight:1000;
}
.pkg-price .money small{
  font-size:12px;
  color:var(--muted);
  font-weight:900;
}
.pkg-actions{margin-top:12px}
.pkg-actions .btn{width:100%}

@media (max-width: 1200px){
  .pkg-grid{grid-template-columns: repeat(3, 1fr)}
}
@media (max-width: 920px){
  .pkg-grid{grid-template-columns: 1fr}
}
