
:root{
  --bg:#0b1220;
  --text:rgba(255,255,255,0.92);
  --muted:rgba(255,255,255,0.68);
  --line:rgba(255,255,255,0.12);
  --panel:rgba(255,255,255,0.05);
  --accent:#6ee7ff;
  --accent2:#a7f3d0;
  --shadow:0 18px 60px rgba(0,0,0,0.45);
  --radius:16px;
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(110,231,255,0.18), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(167,243,208,0.12), transparent 55%),
    radial-gradient(1100px 700px at 50% 100%, rgba(99,102,241,0.10), transparent 60%),
    var(--bg);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;display:block}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 14px;
  border-radius:10px; z-index:9999;
}
.skip-link:focus{left:12px}

.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter:blur(10px);
  background:rgba(11,18,32,0.72);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:inline-flex; align-items:center; gap:10px; font-weight:800; letter-spacing:0.2px}
.brand-name{font-size:16px}
.brand-mark{border-radius:10px; box-shadow:var(--shadow)}

.nav{position:relative}
.nav-menu{
  display:flex; align-items:center; gap:18px;
  list-style:none; margin:0; padding:0;
}
.nav-menu a{
  padding:10px 10px; border-radius:10px;
  color:var(--muted); font-weight:700; font-size:14px;
}
.nav-menu a:hover{background:rgba(255,255,255,0.06); color:var(--text); text-decoration:none}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.nav-toggle-lines{display:inline-block; width:18px; height:12px; position:relative}
.nav-toggle-lines::before,.nav-toggle-lines::after{
  content:""; position:absolute; left:0; right:0; height:2px;
  background:rgba(255,255,255,0.85); border-radius:2px;
}
.nav-toggle-lines::before{top:1px}
.nav-toggle-lines::after{bottom:1px}
.sr-only{position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px, 1px, 1px, 1px); white-space:nowrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background:linear-gradient(135deg, rgba(110,231,255,0.22), rgba(167,243,208,0.16));
  color:var(--text); font-weight:800;
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
}
.btn:hover{text-decoration:none; border-color:rgba(255,255,255,0.22); transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}
.btn-small{padding:10px 12px; border-radius:12px; font-size:14px}
.btn-ghost{background:rgba(255,255,255,0.05); box-shadow:none}
.btn-ghost:hover{background:rgba(255,255,255,0.08)}

.hero{padding:56px 0 26px 0}
.hero-inner{display:grid; grid-template-columns:1.35fr 0.85fr; gap:22px; align-items:start}
.pill{
  display:inline-flex; padding:8px 12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
  border-radius:999px; color:var(--muted);
  font-weight:700; font-size:13px; margin:0 0 14px 0;
}
h1{font-size:clamp(28px, 3.2vw, 44px); line-height:1.12; margin:0 0 12px 0; letter-spacing:-0.6px}
.lead{font-size:16px; color:var(--muted); margin:0 0 18px 0; max-width:60ch}
.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}
.hero-points{list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:10px 12px}
.hero-points li{
  padding:10px 12px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
  color:var(--muted); font-size:14px;
}
.hero-points strong{color:var(--text)}

.card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
  padding:18px;
}
.hero-card .card{position:sticky; top:86px}
.divider{height:1px; background:var(--line); margin:14px 0}
.ticks{padding-left:18px; margin:10px 0 0 0; color:var(--muted)}
.ticks li{margin:6px 0}

.trust-row{display:grid; grid-template-columns:repeat(4, 1fr); gap:12px; margin-top:20px}
.trust-item{
  padding:14px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
}
.trust-number{display:block; font-weight:900; font-size:18px}
.trust-label{color:var(--muted); font-size:13px}

.section{padding:56px 0}
.section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:18px; margin-bottom:16px;
}
.section-head h2{margin:0; font-size:26px; letter-spacing:-0.4px}
.muted{color:var(--muted)}
.small{font-size:13px}

.grid{display:grid; gap:14px}
.cards{grid-template-columns:repeat(3, 1fr)}
.two{grid-template-columns:repeat(2, 1fr)}

.bullets{margin:10px 0 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

.steps{
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns:repeat(4, 1fr); gap:12px;
}
.step{
  padding:16px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
}
.step h3{margin:0 0 8px 0; font-size:16px}
.step p{margin:0; color:var(--muted); font-size:14px}
.steps-wide{grid-template-columns:repeat(4, 1fr)}

.note{
  margin-top:16px; border-radius:14px;
  border:1px solid rgba(110,231,255,0.22);
  background:rgba(110,231,255,0.08);
  padding:14px;
}

.page-hero{padding:44px 0 10px 0}
.page-hero h1{margin:0 0 6px 0; font-size:clamp(26px, 3vw, 40px)}

.text-link{display:inline-flex; margin-top:6px; font-weight:800; color:rgba(110,231,255,0.95)}
.text-link:hover{text-decoration:none; filter:brightness(1.05)}

.pricing{grid-template-columns:repeat(3, 1fr)}
.price-card .price{font-size:34px; font-weight:900; margin:8px 0}
.price-card .price span{font-size:14px; font-weight:800; color:var(--muted)}
.price-card.featured{
  border-color:rgba(110,231,255,0.25);
  background:rgba(110,231,255,0.06);
}
.badge{
  display:inline-flex; align-self:flex-start;
  padding:6px 10px; border-radius:999px;
  background:rgba(110,231,255,0.18);
  border:1px solid rgba(110,231,255,0.25);
  color:rgba(255,255,255,0.9);
  font-weight:900; font-size:12px; margin-bottom:10px;
}

.cta-banner{
  margin-top:18px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:16px; border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.04);
}
.cta-banner h3{margin:0 0 6px 0}
.cta-banner p{margin:0}

.contact-grid{grid-template-columns:1.15fr 0.85fr}
.contact-form label{display:grid; gap:6px; margin-bottom:12px; font-weight:700; font-size:14px; color:rgba(255,255,255,0.85)}
input, textarea{
  width:100%;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,0.18);
  color:var(--text);
  padding:12px;
  font:inherit;
}
textarea{resize:vertical}
input:focus, textarea:focus{
  outline:none;
  border-color:rgba(110,231,255,0.35);
  box-shadow:0 0 0 4px rgba(110,231,255,0.12);
}
.form-row{display:flex; align-items:center; gap:12px; flex-wrap:wrap}
.contact-list{list-style:none; padding:0; margin:0; display:grid; gap:10px; color:var(--muted)}
.contact-list strong{color:var(--text)}

.site-footer{padding:26px 0 18px 0}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  border-top:1px solid var(--line); padding-top:18px;
}
.footer-left{display:flex; gap:10px; align-items:center}
.footer-brand{margin:0; font-weight:900}
.footer-right{display:flex; gap:14px; flex-wrap:wrap}
.footer-right a{color:var(--muted); font-weight:800; font-size:14px}
.footer-right a:hover{color:var(--text); text-decoration:none}
.footer-bottom{margin-top:10px}

@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr}
  .hero-card .card{position:static}
  .trust-row{grid-template-columns:repeat(2, 1fr)}
  .cards{grid-template-columns:repeat(2, 1fr)}
  .steps{grid-template-columns:repeat(2, 1fr)}
  .steps-wide{grid-template-columns:repeat(2, 1fr)}
  .pricing{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 620px){
  .container{width:min(var(--max), calc(100% - 28px))}
  .cards{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .nav-toggle{display:inline-flex}
  .nav-menu{
    display:none;
    position:absolute; right:0; top:54px; width:240px;
    flex-direction:column; align-items:stretch;
    padding:10px; border-radius:14px;
    border:1px solid var(--line);
    background:rgba(11,18,32,0.95);
    box-shadow:var(--shadow);
  }
  .nav-menu.open{display:flex}
  .nav-menu a{padding:12px}
  .hero-points{grid-template-columns:1fr}
  .cta-banner{flex-direction:column; align-items:stretch}
}


/* Service icon grid */
.service-grid{ display:grid; gap:14px; grid-template-columns:repeat(4, 1fr); }
.service-tile{
  display:flex; flex-direction:column; gap:10px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
}
.service-tile img{ width:64px; height:64px; }
.service-tile h3{ margin:0; font-size:16px; }
.service-tile p{ margin:0; color: var(--muted); font-size:14px; }

.hero-visual{
  margin-top:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
  overflow:hidden;
}
.hero-visual img{ width:100%; height:auto; display:block; }

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




/* Header logo sizing (actual element is .brand-mark) */
.brand-mark{
  width:46px !important;
  height:46px !important;
  border-radius:12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
}
.brand-name{
  font-size: 18px;
  letter-spacing: -0.2px;
}

/* Reduce hero illustration dominance */
.hero-visual{
  max-width: 720px;
}
.hero-visual img{
  max-height: 260px;
  object-fit: cover;
}
@media (min-width: 980px){
  .hero-visual{ display:none; }
  .hero{ padding-bottom: 26px; }
}


.footer-social a{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.footer-social a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(110,231,255,0.28);
}
.footer-social img{width:20px;height:20px;}
.footer-social a span{
  margin-left:10px;
  font-weight:700;
  font-size:14px;
  opacity:0.9;
}


/* Contact socials (icon + label) */
.socials-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:10px;
}
.socials-list a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  text-decoration:none;
}
.socials-list a:hover{
  background: rgba(255,255,255,0.07);
  border-color: rgba(110,231,255,0.28);
}
.socials-list img{width:18px;height:18px;opacity:0.92;}
.socials-list span{font-weight:800; font-size:14px; opacity:0.92;}

/* Footer layout */
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding-top:24px;
  padding-bottom:18px;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo{
  width:36px;
  height:36px;
  border-radius:12px;
}
.footer-center{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:4px;
}
.footer-privacy{
  font-weight:700;
  text-decoration:none;
  opacity:0.92;
}
.footer-privacy:hover{
  opacity:1;
}
.footer-right{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:flex-end;
  margin-top:6px;
}

/* Footer socials (icon buttons) */
.footer-social{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  margin:0;
}
.footer-social a{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.footer-social a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(110,231,255,0.28);
}
.footer-social img{width:18px;height:18px;display:block;opacity:0.92;}

@media (max-width: 900px){
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-right{
    justify-content:flex-start;
    margin-top:0;
  }
  .footer-center{
    margin-top:0;
  }
}


/* HEADER BANNER VARIANT START */
/* Contained (rounded) header banner - menu in red-box, no underline */
.site-header{
  position: relative;
  background: none;
  padding-top: 14px;
  border-bottom: none !important; /* remove horizontal rule under banner */
}

.site-header::before{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  top: 10px;
  width: min(1200px, calc(100% - 28px));
  height: 220px;
  background: url("assets/header-banner.jpg") center / cover no-repeat;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  z-index: 0;
}
.site-header::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  top: 10px;
  width: min(1200px, calc(100% - 28px));
  height: 220px;
  border-radius: 22px;
  background: linear-gradient(180deg,
    rgba(6,10,18,0.05),
    rgba(6,10,18,0.16)
  );
  pointer-events:none;
  z-index: 1;
}
.site-header .header-inner{
  position: relative;
  min-height: 220px;
  padding-top: 18px;
  padding-bottom: 18px;
  z-index: 2;
}

/* Desktop: hide brand + force nav-menu into banner red-box zone */
@media (min-width: 980px){
  .site-header .brand-mark,
  .site-header .brand-name{ display:none !important; }
  .site-header .brand{ width:1px; height:1px; overflow:hidden; }

  /* IMPORTANT: force absolute positioning with higher specificity */
  .site-header nav.nav{ position: static !important; }
  .site-header nav.nav #nav-menu.nav-menu{
    position:absolute !important;
    left: 68% !important;          /* move right, away from banner text */
    transform: translateX(-50%) !important;
    bottom: 10px !important;       /* inside red box */
    top: auto !important;
    right: auto !important;

    display:flex !important;
    align-items:center;
    justify-content:center;
    gap: 14px;

    padding: 10px 14px;
    max-width: calc(100% - 80px);

    background: rgba(6,10,18,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    backdrop-filter: blur(10px);
  }

  /* Prevent wrapping (Managed IT) */
  .site-header nav.nav #nav-menu.nav-menu,
  .site-header nav.nav #nav-menu.nav-menu *{
    white-space: nowrap !important;
  }

  .site-header nav.nav #nav-menu.nav-menu a{
    font-size: 14px;
    color: rgba(255,255,255,0.94);
  }
  .site-header nav.nav #nav-menu.nav-menu a:hover{
    color: rgba(255,255,255,1);
  }

  /* CTA button */
  .site-header nav.nav #nav-menu.nav-menu a.btn{
    padding: 10px 14px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
  }
}

/* Mid widths: keep normal header (so burger/menu still works) */
@media (min-width: 621px) and (max-width: 979px){
  .site-header{ border-bottom:none !important; }
}

/* Mobile */
@media (max-width: 620px){
  .site-header::before, .site-header::after{ height: 150px; }
  .site-header .header-inner{ min-height: 150px; align-items:center; }
}
/* HEADER BANNER VARIANT END */


/* Stronger hover for banner menu */
@media (min-width: 980px){
  .site-header nav.nav #nav-menu.nav-menu a{
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
    border-radius: 12px;
    padding: 8px 10px;
  }
  .site-header nav.nav #nav-menu.nav-menu a:hover{
    background: rgba(110,231,255,0.18);
    color: rgba(255,255,255,1);
  }
  .site-header nav.nav #nav-menu.nav-menu a.btn:hover{
    background: rgba(110,231,255,0.22);
    border-color: rgba(110,231,255,0.40);
  }
}
