:root{
  --red:#c90009;
  --red-dark:#850006;
  --black:#111;
  --muted:#666;
  --line:#ececec;
  --soft:#f7f7f8;
  --green:#18b447;
  --gold:#d9a73a;
  --shadow:0 18px 45px rgba(0,0,0,.09);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Cairo",Arial,sans-serif;
  background:#fff;
  color:var(--black);
  line-height:1.8;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1120px,calc(100% - 32px));margin-inline:auto}

.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}
.nav{height:78px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.brand{display:flex;align-items:center;gap:10px;font-weight:900;font-size:24px}
.brand img{width:52px;height:52px;object-fit:contain;border:2px solid var(--red);border-radius:14px;background:#fff}
.nav-links{display:flex;gap:30px;font-weight:800}
.nav-links a{color:#202020}
.nav-links a:hover{color:var(--red)}
.menu-toggle{display:none;border:0;background:#fff;font-size:28px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 22px;
  border-radius:8px;
  font-weight:900;
  transition:.2s;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:linear-gradient(180deg,#df000b,#990007);color:#fff;box-shadow:0 14px 30px rgba(201,0,9,.22)}
.btn-whatsapp{background:linear-gradient(180deg,#22c451,#0d8d30);color:#fff;box-shadow:0 12px 26px rgba(13,141,48,.18)}
.full{width:100%}

.hero{padding:68px 0 34px;background:#fff}
.hero-grid{display:grid;grid-template-columns:1fr 360px;align-items:center;gap:46px}
.tag,.section-title span,.cta-box span{color:var(--red);font-weight:900}
.hero h1{font-size:clamp(38px,6vw,76px);line-height:1.15;margin:10px 0 14px;font-weight:900}
.hero p{max-width:680px;color:var(--muted);font-size:20px;margin-bottom:26px}
.hero-art{
  min-height:360px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:linear-gradient(180deg,#fff,#fafafa);
}
.hero-art img{max-height:390px;filter:drop-shadow(0 24px 36px rgba(0,0,0,.18))}

.plans-section,.content-section,.devices,.features,.cta{padding:56px 0}
.section-title{text-align:center;margin-bottom:28px}
.section-title h2{font-size:clamp(28px,4vw,44px);line-height:1.3;font-weight:900}

.plans-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.plan{
  position:relative;
  min-height:420px;
  padding:24px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:var(--shadow);
}
.plan:hover{border-color:rgba(201,0,9,.35);transform:translateY(-4px);transition:.2s}
.plan.featured{border:2px solid var(--gold);box-shadow:0 18px 45px rgba(201,0,9,.13)}
.badge{
  position:absolute;
  top:12px;
  right:12px;
  padding:5px 12px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(180deg,#d9000b,#8b0006);
  font-weight:900;
  font-size:13px;
}
.plan-logo{width:116px;height:116px;object-fit:contain;margin-bottom:8px;border-radius:8px;background:#fff}
.plan h3{font-size:23px;color:var(--red);font-weight:900}
.plan p{min-height:48px;color:#444;font-weight:700}
.duration{margin:12px 0 10px;padding:6px 18px;border:1px solid var(--line);border-radius:999px;color:var(--red-dark);font-weight:900}
.price{display:flex;align-items:end;gap:7px;margin-bottom:18px}
.price strong{font-size:54px;line-height:1;font-weight:900}
.price span{color:var(--red);font-weight:900;font-size:18px;margin-bottom:7px}
.plan .btn{margin-top:auto}

.payment-banner{
  margin-top:22px;
  padding:22px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  border:1px solid rgba(201,0,9,.18);
  border-radius:8px;
  background:linear-gradient(90deg,#fff,#fff7f7);
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}
.payment-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#fff;
  font-size:30px;
  background:linear-gradient(180deg,#df000b,#850006);
  box-shadow:0 14px 28px rgba(201,0,9,.18);
}
.payment-banner span{
  color:var(--red);
  font-weight:900;
}
.payment-banner h3{
  font-size:24px;
  line-height:1.35;
  font-weight:900;
}
.payment-banner p{
  color:var(--muted);
  font-weight:700;
}

.content-section{
  background:#fff;
  border-top:1px solid var(--line);
}
.simple-content-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.simple-content-card{
  min-height:220px;
  padding:26px 18px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
  transition:.2s;
}
.simple-content-card:hover{
  transform:translateY(-4px);
  border-color:rgba(201,0,9,.32);
  box-shadow:var(--shadow);
}
.content-art{
  width:72px;
  height:72px;
  margin:0 auto 16px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#fff;
  font-size:34px;
  font-weight:900;
  background:linear-gradient(180deg,#df000b,#8b0006);
  box-shadow:0 14px 28px rgba(201,0,9,.16);
}
.movies-art{font-size:32px}
.series-art{font-size:38px}
.kids-art{font-size:36px}
.simple-content-card h3{
  color:var(--red);
  font-size:22px;
  margin-bottom:6px;
  font-weight:900;
}
.simple-content-card p{
  color:var(--muted);
  font-size:15px;
  font-weight:700;
}

.device-grid,.features-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.device,.features-grid article{
  padding:24px 16px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
}
.device h3{font-size:17px}
.device-icon{width:72px;height:58px;margin:0 auto 14px;position:relative;display:block}
.device-icon::before,.device-icon::after{content:"";position:absolute;display:block}
.phone::before{width:31px;height:52px;right:20px;top:0;border:4px solid #111;border-radius:9px}
.phone::after{width:5px;height:5px;right:33px;bottom:7px;border-radius:50%;background:#111}
.laptop::before{width:58px;height:35px;right:7px;top:5px;border:4px solid #111;border-radius:5px}
.laptop::after{width:70px;height:7px;right:1px;bottom:8px;border-radius:0 0 10px 10px;background:#111}
.tv::before{content:"SMART TV";width:64px;height:39px;right:4px;top:3px;display:grid;place-items:center;color:var(--red);font-size:10px;font-weight:900;border:4px solid #111;border-radius:5px}
.tv::after{width:34px;height:7px;right:19px;bottom:7px;border-top:5px solid #111;border-inline:8px solid transparent}
.tablet::before{width:45px;height:55px;right:13px;top:0;border:4px solid #111;border-radius:8px}
.tablet::after{width:5px;height:5px;right:33px;bottom:7px;border-radius:50%;background:#111}
.car::before{width:56px;height:25px;right:8px;bottom:9px;background:#111;border-radius:18px 18px 7px 7px}
.car::after{width:42px;height:24px;right:15px;top:8px;border:5px solid #111;border-bottom:0;border-radius:30px 30px 0 0}

.features{background:var(--soft)}
.features-grid{grid-template-columns:repeat(4,1fr)}
.features-grid strong{width:52px;height:52px;margin:0 auto 12px;display:grid;place-items:center;border-radius:8px;background:var(--red);color:#fff;font-size:22px}
.features-grid h3{font-size:19px;margin-bottom:5px}
.features-grid p{color:var(--muted);font-size:14px}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:28px;
  border-radius:8px;
  color:#fff;
  background:linear-gradient(90deg,#d1000b,#5c0005);
}
.cta-box h2{font-size:32px;line-height:1.3}
.cta-box p{color:#ffe7e9}
.cta-box span{color:#fff}

@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;text-align:center}
  .hero p{margin-inline:auto}
  .hero-art{min-height:300px}
  .plans-grid{grid-template-columns:repeat(2,1fr)}
  .simple-content-grid{grid-template-columns:repeat(2,1fr)}
  .device-grid{grid-template-columns:repeat(3,1fr)}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .payment-banner{grid-template-columns:1fr;text-align:center;justify-items:center}
}
@media (max-width:680px){
  .nav-cta{display:none}
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    top:78px;
    right:16px;
    left:16px;
    display:none;
    flex-direction:column;
    gap:0;
    padding:10px;
    border:1px solid var(--line);
    border-radius:8px;
    background:#fff;
    box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:12px 14px}
  .hero{padding-top:42px}
  .hero-art img{max-height:310px}
  .plans-grid,.simple-content-grid,.device-grid,.features-grid{grid-template-columns:1fr}
  .cta-box{flex-direction:column;text-align:center}
}
