:root{
  --bg:#0b1220;
  --card:#0f1a33;
  --text:#eaf0ff;
  --muted:#b7c4e6;
  --accent:#4da3ff;
  --accent2:#5eead4;
  --white:#ffffff;
  --shadow: 0 12px 30px rgba(0,0,0,.25);
  --radius: 16px;
  --max: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0b1220;
  background:#f6f8ff;
  line-height:1.55;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Buttons */
.btn{
  display:inline-block;
  background:linear-gradient(135deg,var(--accent),#2f7dff);
  color:var(--white);
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 10px 18px rgba(77,163,255,.25);
}
.btn.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:none;
}

/* Topbar / Navigation */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(11,18,32,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  color:var(--text);
  gap:14px;
}
.brand{
  display:flex; flex-direction:column; gap:2px;
  text-decoration:none;
  min-width: 220px;
}
.brand strong{font-size:16px; letter-spacing:.2px}
.brand span{font-size:12px; color:var(--muted)}
.menu{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.menu a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  opacity:.92;
}
.menu a:hover{opacity:1; text-decoration:underline}

/* Hero */
.hero{
  position:relative;
  color:var(--text);
  background: #0b1220;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.65) 45%, rgba(11,18,32,.25) 100%),
    url("/assets/img/hero.jpg") right 20% top 20%/cover no-repeat;
}
.hero .inner{
  position:relative;
  padding:64px 0 44px;
}
.hero h1{margin:0 0 10px; font-size:34px; line-height:1.15}
.hero p{margin:0 0 18px; color:var(--muted); max-width:58ch}
.hero .cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.badge{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
}
.badge a{color:inherit; text-decoration:none}
.badge a:hover{text-decoration:underline}

/* Sections */
.section{padding:44px 0}
.section h2{margin:0 0 10px; font-size:26px}
.section p.lead{margin:0 0 18px; color:#2b3550; max-width:72ch}

/* Grid / Cards */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column: span 4;
  background:#fff;
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  border:1px solid rgba(11,18,32,.06);
}
.card img{width:100%; height:190px; object-fit:cover; display:block}
.card .pad{padding:14px}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0 0 10px; color:#2b3550}
.card a{font-weight:800; color:#1b5cff; text-decoration:none}
.card a:hover{text-decoration:underline}

/* Two-column content */
.two{
  display:grid;
  gap:16px;
  grid-template-columns: 1.8fr .5fr;
  align-items:start;
}
.two--quote{
  grid-template-columns: 0.8fr 1.2fr;
}
.two--quote img{
  width:100%;
  max-width: 550px;
  height:auto;
  display:block;
  margin-left:auto;
}

/* Panels / Lists / Small text */
.panel{
  background:#fff;
  border-radius:var(--radius);
  border:1px solid rgba(11,18,32,.06);
  box-shadow: var(--shadow);
  padding:18px;
}
.list{margin:10px 0 0; padding-left:18px}
.small{font-size:13px; color:#2b3550}

/* Footer */
.footer{
  background:#0b1220;
  color:var(--text);
  padding:26px 0;
  margin-top:30px;
}
.footer a{color:var(--text)}
.footer p{margin:6px 0; color:var(--muted)}
.footer .cols{
  display:grid;
  gap:14px;
  grid-template-columns: 1.2fr .8fr;
}
.footer-grid{
  display:grid;
  gap:14px;
  grid-template-columns: 1.2fr .8fr;
}

/* Callbar (mobile) */
.callbar{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:60;
  display:none;
}
.callbar a{
  display:flex; justify-content:center; align-items:center;
  gap:10px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#fff;
  text-decoration:none;
  padding:14px 16px;
  border-radius:14px;
  font-weight:900;
  box-shadow: 0 14px 30px rgba(22,163,74,.25);
}

/* Price bubble */
.price-callout{
  margin:14px 0 16px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(59,130,246,.12);
  border:1px solid rgba(59,130,246,.25);
}
.price-callout__title{
  margin:0 0 6px;
  font-size:18px;
}
.price-callout__text{
  margin:0;
  color:var(--muted);
}

/* Responsive */
@media (max-width: 920px){
  .card{grid-column: span 6}
  .two{grid-template-columns:1fr}

  /* Make nav wrap nicely on tablets */
  .nav{flex-wrap:wrap}
  .brand{min-width:unset}
  .menu{width:100%; justify-content:flex-start}
}

@media (max-width: 560px){
  .hero h1{font-size:28px}
  .card{grid-column: span 12}

  /* Mobile-friendly menu: keep visible, wrap into multiple lines */
  .nav{
    flex-wrap:wrap;
    gap:10px;
  }
  .brand{width:100%}
  .menu{
    display:flex;
    width:100%;
    flex-wrap:wrap;
    gap:10px;
    justify-content:flex-start;
  }
  .menu a{
    font-size:13px;
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
  }

  /* Better hero crop on mobile */
  .hero::before{
    background:
      linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.70) 60%, rgba(11,18,32,.35) 100%),
      url("/assets/img/hero.jpg") center/cover no-repeat;
  }

  /* Footer to single column */
  .footer .cols,
  .footer-grid{
    grid-template-columns: 1fr;
  }

  /* Keep callbar on mobile */
  .callbar{display:block}
}
