
:root{
  --bg:#ffffff;
  --text:#0b0d12;
  --muted:#5a6374;
  --border:#e7e7ea;
  --panel:#f6f6f8;
  --shadow:0 14px 34px rgba(10,13,18,.10);
  --shadow2:0 10px 22px rgba(10,13,18,.10);
  --radius:18px;
  --radius2:26px;

  --red:#e60000;      /* Vodafone-inspired red tone */
  --red2:#ff2a2a;
  --ink:#111213;
  --ink2:#1a1b1f;
  --max:1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.muted{color:var(--muted)}
.small{font-size:12px}
hr.sep{border:none;border-top:1px solid var(--border);margin:18px 0}

.topbar{
  background:#0b0c0f;
  color:#fff;
  font-size:12px;
}
.topbar .wrap{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:8px 0;
}
.topbar .left{display:flex; gap:14px; align-items:center}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px; border-radius:999px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  font-weight:700;
}

header{
  position:sticky; top:0; z-index:60;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:950;
}
.logo{
  width:40px; height:40px; border-radius:999px;
  background:
    radial-gradient(circle at 35% 35%, #fff, rgba(255,255,255,.35)),
    linear-gradient(145deg, var(--red), #b80000);
  position:relative;
  box-shadow: 0 18px 30px rgba(230,0,0,.18);
}
.logo:after{
  content:""; position:absolute; inset:10px;
  border-radius:999px; background:#fff;
}
.brand .sub{font-size:12px; color:var(--muted); font-weight:800; margin-top:2px}

.navlinks{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.navlinks > .item{
  position:relative;
}
.navlinks a, .navlinks button{
  font:inherit;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:10px 12px;
  border-radius:999px;
  font-weight:850;
}
.navlinks a:hover, .navlinks button:hover{background:var(--panel)}
.navlinks .active{color:var(--red)}

.actions{
  display:flex; align-items:center; gap:10px;
}
.iconbtn{
  width:42px; height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 18px rgba(10,13,18,.06);
}
.iconbtn:hover{transform:translateY(-1px)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .15s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow: var(--shadow2)}
.btn:active{transform:translateY(0px); box-shadow:none}
.btn.primary{background:var(--red); color:#fff}
.btn.ghost{background:#fff; border-color:var(--border)}
.btn.dark{background:#0b0c0f; color:#fff}

.mobile-toggle{display:none}
@media (max-width: 980px){
  .navlinks{display:none}
  .mobile-toggle{display:inline-flex}
}

.megamenu{
  position:absolute;
  left:0;
  top:calc(100% + 10px);
  width:min(980px, 92vw);
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow: var(--shadow);
  padding:18px;
  display:none;
}
.item:hover .megamenu, .item:focus-within .megamenu{display:block}
.megagrid{
  display:grid; gap:16px;
  grid-template-columns: 1fr 1fr 1fr 280px;
}
@media (max-width: 980px){
  .megamenu{display:none !important}
}
.mega h4{margin:0 0 8px; font-size:13px; letter-spacing:.2px}
.mega a{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 10px;
  border-radius:14px;
  color:var(--muted);
  font-weight:750;
}
.mega a:hover{background:var(--panel); color:var(--text)}
.mega .list{display:flex; flex-direction:column; gap:2px}
.mega .promo{
  border-radius:22px;
  border:1px solid rgba(230,0,0,.22);
  background:
    radial-gradient(600px 240px at 30% 25%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(145deg, #ff2a2a, #b80000);
  color:#fff;
  padding:16px;
  display:flex; flex-direction:column; gap:10px;
  min-height: 220px;
}
.promo .tag{
  display:inline-flex; width:max-content;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  font-weight:900;
  font-size:12px;
}
.promo .title{font-weight:950; font-size:18px; line-height:1.2}
.promo .cta{margin-top:auto; display:inline-flex; align-items:center; gap:10px; font-weight:900}

.drawer{
  display:none;
  position:fixed; inset:0; background: rgba(0,0,0,.35);
  z-index:90;
}
.drawer.open{display:block}
.drawer .panel{
  position:absolute; right:0; top:0; height:100%;
  width:min(420px, 92vw);
  background:#fff;
  border-left:1px solid var(--border);
  box-shadow: var(--shadow);
  padding:14px;
}
.drawer .row{display:flex; align-items:center; justify-content:space-between; gap:10px}
.drawer a{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 12px;
  border-radius:16px;
  font-weight:900;
}
.drawer a:hover{background:var(--panel)}
.drawer .sec{margin-top:10px; padding-top:10px; border-top:1px solid var(--border)}

.hero{
  padding:22px 0 8px;
}
.heroGrid{
  display:grid; gap:18px;
  grid-template-columns: 1.15fr .85fr;
  align-items:stretch;
}
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
}
.heroCard{
  border-radius:34px;
  border:1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #fafafb);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.heroMedia{
  background:
    radial-gradient(900px 320px at 25% 0%, rgba(230,0,0,.18), transparent 55%),
    radial-gradient(600px 260px at 75% 0%, rgba(230,0,0,.10), transparent 55%),
    linear-gradient(145deg, #ff2a2a, #b80000);
  padding:22px;
  color:#fff;
}
.heroMedia h1{margin:0; font-size:42px; letter-spacing:-.8px; line-height:1.03}
.heroMedia p{margin:10px 0 0; opacity:.92; line-height:1.6}
@media (max-width: 640px){.heroMedia h1{font-size:34px}}
.heroMedia .badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  font-weight:900;
  font-size:12px;
}
.heroMedia .cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.heroMedia .cta .btn{box-shadow:none}
.heroMedia .cta .btn.ghost{background:rgba(255,255,255,.14); border-color: rgba(255,255,255,.24); color:#fff}

.checker{
  padding:18px;
}
.checker h3{margin:0; font-size:16px}
.tabs{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.tab{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}
.tab.active{border-color: rgba(230,0,0,.35); background: rgba(230,0,0,.06); color: var(--red)}
.formRow{display:flex; gap:10px; margin-top:12px}
.formRow input{
  flex:1;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  font-weight:800;
  outline:none;
}
.formRow input:focus{border-color: rgba(230,0,0,.45); box-shadow: 0 0 0 4px rgba(230,0,0,.12)}
@media (max-width: 640px){ .formRow{flex-direction:column} }

.section{padding:26px 0}
.section h2{margin:0 0 10px; font-size:26px; letter-spacing:-.3px}
.sub{margin:0 0 16px; color:var(--muted); line-height:1.6}

.quickicons{
  display:flex; justify-content:center; gap:22px; flex-wrap:wrap;
  margin: 8px 0 0;
}
.qi{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  text-align:center; font-weight:900;
}
.qi .dot{
  width:54px; height:54px; border-radius:999px;
  background: var(--red);
  display:grid; place-items:center;
  box-shadow: 0 16px 30px rgba(230,0,0,.18);
}
.qi span{font-size:13px}

.grid{display:grid; gap:16px}
.grid.c2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid.c3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.c4{grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width:980px){
  .grid.c4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid.c3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .grid.c2,.grid.c3,.grid.c4{grid-template-columns:1fr}
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow: var(--shadow2);
}
.card.pad{padding:18px}

.offer{
  overflow:hidden;
}
.offer .img{
  height:190px;
  background:
    radial-gradient(620px 220px at 30% 20%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(145deg, #ff2a2a, #b80000);
}
.offer .body{padding:14px 16px}
.offer .save{
  display:inline-flex;
  padding:8px 10px; border-radius:999px;
  background: rgba(230,0,0,.10);
  color: var(--red);
  font-weight:950;
  font-size:12px;
}
.offer h3{margin:10px 0 0; font-size:16px; letter-spacing:-.2px}
.offer p{margin:8px 0 0; color:var(--muted); line-height:1.55; font-size:13px}
.offer .link{margin-top:12px; display:inline-flex; gap:8px; align-items:center; color:var(--red); font-weight:950}

.redband{
  background: linear-gradient(145deg, #ff2a2a, #b80000);
  color:#fff;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.redband .wrap{padding:26px 0}
.redband h2{color:#fff}
.redband .sub{color:rgba(255,255,255,.85)}
.redband .rbgrid{display:grid; gap:16px; grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width:980px){ .redband .rbgrid{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media (max-width:640px){ .redband .rbgrid{grid-template-columns:1fr} }
.rb{
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  border-radius:22px;
  padding:16px;
}
.rb .t{font-weight:950}
.rb p{margin:8px 0 0; line-height:1.6; opacity:.92; font-size:13px}
.rb .btn{margin-top:12px; width:max-content; background:rgba(0,0,0,.22); border-color:rgba(255,255,255,.22); color:#fff}

.listcard a{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 14px;
  border-radius:16px;
  font-weight:900;
  color:var(--text);
}
.listcard a:hover{background:var(--panel)}
.arrow{color:var(--red); font-weight:950}

.plan{
  padding:18px;
}
.plan .head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.plan h3{margin:0; font-size:16px}
.price{font-weight:980; font-size:28px; letter-spacing:-.6px}
.price small{font-size:12px; color:var(--muted); font-weight:900}
.plan ul{margin:12px 0 0; padding:0 0 0 16px; color:var(--muted); line-height:1.55}
.plan .actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

.notice{
  font-size:12px; color:var(--muted); line-height:1.6;
  border:1px dashed rgba(90,99,116,.35);
  padding:12px;
  border-radius:16px;
  background: rgba(246,246,248,.75);
}

.footer{
  background:#0b0c0f;
  color:#fff;
  margin-top:24px;
}
.footer .wrap{padding:26px 0}
.footergrid{
  display:grid; gap:18px;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
@media (max-width:980px){ .footergrid{grid-template-columns:1fr 1fr} }
@media (max-width:640px){ .footergrid{grid-template-columns:1fr} }
.footer h4{margin:0 0 10px; font-size:13px; letter-spacing:.2px}
.footer a{display:block; padding:7px 0; color:rgba(255,255,255,.78); font-weight:750}
.footer a:hover{color:#fff}
.footer .legal{padding-top:14px; margin-top:16px; border-top:1px solid rgba(255,255,255,.16); color:rgba(255,255,255,.72); font-size:12px; line-height:1.6}
