:root{
  --bg:#f6f8fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  /* Brand palette (telecom-inspired, NOT Vodafone) */
  --brand:#e60000;   /* red */
  --brand2:#111111;  /* near-black */
  --border:#e5e7eb;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --radius:14px;
  --max:1180px;
}

/* Reset */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(var(--max), 92%); margin:0 auto}

/* Animations */
@keyframes floaty {
  0%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
  100%{transform:translateY(0)}
}
@keyframes fadeUp {
  from{opacity:0; transform:translateY(16px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes shimmer {
  0%{background-position:0% 50%}
  100%{background-position:100% 50%}
}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:12px; font-weight:900;
  border:1px solid transparent; transition:.25s ease;
  gap:10px;
  cursor:pointer;
  user-select:none;
}
.btn.brand{
  background:linear-gradient(120deg, var(--brand), var(--brand2));
  background-size:200% 200%;
  color:#fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, .25);
}
.btn.brand:hover{
  transform:translateY(-2px);
  animation: shimmer 1.2s linear infinite;
  filter:brightness(.98);
}
.btn.primary{
  background:#fff;
  color:var(--brand);
  border-color:#fff;
}
.btn.primary:hover{
  transform:translateY(-2px);
  filter:brightness(.98);
}
.btn.ghost{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.35);
  color:#fff;
  backdrop-filter: blur(6px);
}
.btn.ghost:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.10);
}

/* Utility Top Bar */
.utility{
  background:#0b1220;
  color:#e2e8f0;
  font-size:13px;
}
.utility .bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; gap:12px; flex-wrap:wrap;
}
.utility .left, .utility .right{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.utility a{opacity:.92}
.utility a:hover{opacity:1}
.utility .dot{width:4px;height:4px;border-radius:50%;background:#64748b}

.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  font-weight:900;
  letter-spacing:.2px;
}

/* Header */
.header{
  position:sticky; top:0; z-index:999;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brandmark{
  display:flex; align-items:center; gap:12px;
  font-weight:950;
}
.brandmark img{
  height:60px;
  width:auto;
}
.brandmark .name{font-size:18px; letter-spacing:.2px}

/* Nav */
.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  font-weight:950; font-size:14px; color:#0f172a;
  opacity:.85; position:relative;
  transition:opacity .2s ease;
}
.nav a:hover{opacity:1}
.nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:-8px;
  width:0%;
  height:2px;
  background:linear-gradient(120deg, var(--brand), var(--brand2));
  transition:width .25s ease;
}
.nav a:hover::after{width:100%}

/* Header CTA */
.header .cta{display:flex; align-items:center; gap:10px}

/* Hamburger */
.hamburger{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:950;
}
.mobilepanel{
  display:none;
  padding:10px 0 16px;
  border-top:1px solid var(--border);
}
.mobilepanel a{
  display:block; padding:12px 0;
  font-weight:950; color:#0f172a;
  border-bottom:1px dashed #eef2f7;
}

/* HERO (clean landing) */
.hero{
  position:relative;
  padding:44px 0 26px;
  background:
    radial-gradient(1200px 500px at 10% 0%, rgba(29,78,216,.18), transparent 55%),
    radial-gradient(900px 420px at 90% 20%, rgba(15,118,110,.18), transparent 55%),
    linear-gradient(180deg, #ffffff, #f6f8fb);
  border-bottom:1px solid var(--border);
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap:22px;
  align-items:stretch;
}
.heroCopy{
  padding:10px 0;
}
.heroKicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(15,118,110,.08);
  border:1px solid rgba(15,118,110,.18);
  color:#064e3b;
  font-weight:950;
  font-size:13px;
}
.heroTitle{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.8px;
  font-weight:950;
}
.heroText{
  margin:0 0 16px;
  color:var(--muted);
  font-size:16px;
}
.heroBadges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 18px;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow: 0 8px 22px rgba(2, 6, 23, .06);
  font-weight:900;
  color:#0f172a;
  font-size:13px;
}
.micro{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}

.heroCard{
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.heroCardTop h3{margin:0; font-weight:950}
.heroCardTop p{margin:6px 0 14px; color:var(--muted)}
.heroCard ul{margin:0; padding-left:18px; color:#0f172a}
.heroCard li{margin:8px 0}
.heroCardCta{margin-top:14px; display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.heroCardCta .small{color:var(--muted)}

/* Old hero slider styles kept for compatibility (not used on landing now) */
.heroSlider{
  position:relative;
  overflow:hidden;
  background:#111;
  min-height:520px;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .9s ease;
  background-size:cover;
  background-position:center;
  will-change:opacity;
}

/* keep current visible */
.slide.active{
  opacity:2;
}

/* PRELOAD visibility: keep previous visible during fade */
.slide.prev{
  opacity:1;
}
.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.12);   /* light overlay */
}
/* Hero content */
.heroInner{
  position:relative;
  padding:74px 0 62px;
  color:#fff;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:center;
}
.heroKicker{
  display:inline-flex;
  align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight:950;
  font-size:13px;
  animation: fadeUp .8s ease both;
}
.heroTitle{
  font-size:44px;
  line-height:1.1;
  margin:12px 0 14px;
  font-weight:950;
  animation: fadeUp .9s ease .05s both;
}
.heroText{
  margin:0 0 18px; max-width:66ch; opacity:.95;
  animation: fadeUp .9s ease .12s both;
}
.heroActions{
  display:flex; gap:12px; flex-wrap:wrap; margin-top:16px;
  animation: fadeUp .9s ease .18s both;
}
.heroCard{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:none;
  animation: fadeUp .9s ease .14s both;
}
.heroCard h3{margin:0 0 6px; font-size:16px; font-weight:950}
.heroCard ul{margin:0; padding-left:18px; opacity:.95}
.heroCard li{margin:6px 0}

/* Slider Controls */
.sliderControls{
  position:absolute;
  inset:auto 0 18px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  z-index:5;
}
.dotBtn{
  width:10px;height:10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.65);
  background:rgba(255,255,255,.25);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.dotBtn:hover{transform:scale(1.15)}
.dotBtn.active{
  background:#fff;
  border-color:#fff;
}
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:6;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(2,6,23,.35);
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  font-weight:950;
  cursor:pointer;
  transition: background .2s ease, transform .2s ease;
}
.arrow:hover{background:rgba(2,6,23,.55); transform:translateY(-50%) scale(1.03)}
.arrow.left{left:14px}
.arrow.right{right:14px}

/* Sections */
.section{padding:64px 0}
.section.white{background:#fff}
.title{font-size:30px; font-weight:950; margin:0 0 12px}
.lead{color:var(--muted); margin:0 0 26px; max-width:90ch}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card.pad{padding:26px}
.card:hover{transform:translateY(-2px)}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:950; color:var(--brand);
  background:rgba(15,118,110,.08); border:1px solid rgba(15,118,110,.18);
  padding:6px 10px; border-radius:999px; font-size:12px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:center;
}
.splitImg{
  overflow:hidden;
}
.splitImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition: transform .6s ease;
}
.splitImg:hover img{transform:scale(1.06)}

/* Testimonials */
.quotegrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.quote{padding:22px}
.quote p{margin:0 0 14px; font-weight:900}
.quote .who{color:var(--muted); font-size:13px; font-weight:950}

/* Quick tips */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.tip{padding:22px}
.tip h3{margin:0 0 8px; font-weight:950}
.tip p{margin:0; color:var(--muted)}

/* Services */
.grid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}
.service{padding:22px; display:flex; flex-direction:column; gap:10px}
.icon{
  width:44px;height:44px;border-radius:14px;
  background:rgba(29,78,216,.08); border:1px solid rgba(29,78,216,.18);
  display:grid; place-items:center;
  transition: transform .25s ease;
}
.icon svg{width:22px;height:22px; fill:var(--brand)}
.service:hover .icon{transform:translateY(-2px) scale(1.03)}
.service h3{margin:0; font-size:16px; font-weight:950}
.service p{margin:0; color:var(--muted); font-size:14px}

/* Form */
.form{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
form{display:grid; gap:12px}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  outline:none;
  font-weight:800;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.input:focus{
  border-color:#93c5fd;
  box-shadow:0 0 0 4px rgba(59,130,246,.12);
}
.small{font-size:12px; color:var(--muted)}

.ctaBlock{
  text-align:center;
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(29,78,216,.14), transparent 60%),
    radial-gradient(700px 260px at 80% 0%, rgba(15,118,110,.14), transparent 60%),
    #ffffff;
}
.ctaBlock .btn{margin-top:8px}

/* Footer Disclaimer (dark like screenshot) */
.footer-disclaimer{
  background:#111827;
  color:#ffffff;
  padding:50px 0;
  text-align:center;
}
.footer-disclaimer p{
  max-width:980px;
  margin:auto;
  font-size:14px;
  line-height:1.7;
  opacity:.95;
}
.footer-disclaimer a{
  color:#60a5fa;
  font-weight:900;
}
.footer-disclaimer a:hover{opacity:.9}

/* Footer */
.footer{
  background:#0b1220;
  color:#cbd5e1;
  padding:44px 0;
}
.footer .cols{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:24px;
}
.footer h4{margin:0 0 10px; color:#fff; font-weight:950}
.footer a{opacity:.92}
.footer a:hover{opacity:1}
.footer ul{list-style:none; padding:0; margin:0; display:grid; gap:8px}
.footer .copy{
  border-top:1px solid rgba(148,163,184,.2);
  margin-top:28px;
  padding-top:16px;
  font-size:13px;
  color:#94a3b8;
}

/* Sticky call */
.stickycall{
  position:fixed; right:18px; bottom:18px;
  background:linear-gradient(120deg, var(--brand), var(--brand2));
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  font-weight:950;
  box-shadow: 0 12px 30px rgba(37, 99, 235, .35);
  z-index:9999;
  transition: transform .2s ease, filter .2s ease;
  animation: floaty 3.2s ease-in-out infinite;
}
.stickycall:hover{transform:translateY(-2px); filter:brightness(.98)}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr 1fr}
  .grid3{grid-template-columns:1fr}
  .quotegrid{grid-template-columns:1fr}
  .form{grid-template-columns:1fr}
  .heroTitle{font-size:32px}
}
@media (max-width: 820px){
  .nav{display:none}
  .hamburger{display:inline-flex}
  .mobilepanel.show{display:block}
  .footer .cols{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr}
  .arrow{display:none}
}

/* =========================
   Landing optimizations
   ========================= */
body.landing .nav,
body.landing .hamburger{
  display:none !important;
}
body.landing .header .cta .btn.brand{
  white-space:nowrap;
}

/* Landing header: keep logo + number responsive on small screens */
@media (max-width: 520px){
  body.landing .header .wrap{
    flex-wrap:wrap;
    gap:10px;
  }
  body.landing .brandmark img{ height:44px; }
  body.landing .brandmark .name{ font-size:16px; }
  body.landing .header .cta{
    width:100%;
  }
  body.landing .header .cta .btn.brand{
    width:100%;
    justify-content:center;
    padding:12px 14px;
  }
}

/* Sticky call bar */
.sticky-call{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:9999;
  background:rgba(10,20,30,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding:10px 12px;
  border-top:1px solid rgba(255,255,255,0.12);
}
.sticky-call__inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.sticky-call__text{
  color:#fff;
  font-size:14px;
  line-height:1.2;
}
.sticky-call__text strong{
  display:block;
  font-size:14px;
}
.sticky-call__text span{
  opacity:0.9;
}
.sticky-call__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  background:#ffffff;
  color:#0b1a2b;
  font-weight:800;
  text-decoration:none;
}
.sticky-call__btn:active{
  transform: translateY(1px);
}

/* Give space so content doesn't hide behind sticky bar */
body{
  padding-bottom:72px;
}
@media (min-width: 900px){
  body{
    padding-bottom:64px;
  }
  .sticky-call__text{ font-size:15px; }
}

/* Call popup modal */
.call-modal{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
}
.call-modal.is-open{
  display:block;
}
.call-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.call-modal__dialog{
  position:relative;
  width:min(520px, calc(100% - 32px));
  margin:12vh auto 0;
  background:#ffffff;
  border-radius:18px;
  border-top:4px solid #e60000;
  padding:18px 18px 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}
.call-modal__close{
  position:absolute;
  right:10px;
  top:8px;
  width:36px;
  height:36px;
  border-radius:10px;
  border:0;
  background:#fff1f1;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.call-modal h3{
  margin:4px 0 8px;
}
.call-modal p{
  margin:0 0 14px;
  color:#334a62;
}

.call-modal__disclaimer{
  margin:-6px 0 14px;
  font-size:12px;
  color:#52657a;
}
.call-modal__disclaimer a{
  color:#e60000;
  text-decoration:underline;
  font-weight:700;
}
.call-modal__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  background:#e60000;
  color:#fff;
  text-decoration:none;
  font-weight:900;
}
.call-modal__later{
  width:100%;
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid #d7e3f3;
  background:#fff;
  cursor:pointer;
  font-weight:700;
}


/* Enhanced call popup (mobile-first) */
.call-modal__logo{
  display:block;
  width:120px;
  height:auto;
  margin:6px auto 12px;
}
.call-modal__points{
  margin:0 0 14px;
  padding-left:18px;
  color:#334a62;
}
.call-modal__points li{ margin:6px 0; }

@media (max-width: 820px){
  .call-modal__dialog{
    width:calc(100% - 20px);
    margin: auto;
    position:absolute;
    left:10px;
    right:10px;
    bottom:10px;
    top:auto;
    border-radius:18px;
    padding:18px 16px 16px;
  }
  .call-modal__cta{
    padding:14px 14px;
    font-size:18px;
  }
}
