:root{
  --ink:#0b0f14;
  --paper:#ffffff;
  --muted:#5b6675;
  --card:#0f172a;
  --line: rgba(15, 23, 42, .10);

  /* Brand accents inspired by your logo */
  --blue:#00A3D9;
  --cyan:#2ED3FF;
  --green:#84D652;
  --yellow:#FFD23C;
  --orange:#FF8A00;

  --radius:18px;
  --shadow: 0 18px 40px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.10);

  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background: radial-gradient(1200px 500px at 15% -10%, rgba(46,211,255,.25), transparent 60%),
              radial-gradient(900px 400px at 95% 0%, rgba(255,138,0,.22), transparent 55%),
              radial-gradient(900px 500px at 60% 105%, rgba(132,214,82,.18), transparent 60%),
              var(--paper);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

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

.topbar{
  background: linear-gradient(90deg, rgba(0,163,217,.12), rgba(255,138,0,.12));
  border-bottom: 1px solid var(--line);
}

.nav{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand img{
  width:54px;
  height:54px;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.15));
}
.brand .name{
  font-weight:900;
  letter-spacing:.2px;
  line-height:1.1;
}
.brand .tag{
  font-size:12px;
  color: var(--muted);
  margin-top:2px;
}

.navlinks{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}
.navlinks a{
  padding:10px 12px;
  border-radius:999px;
  font-weight:700;
  color: rgba(11,15,20,.82);
  border: 1px solid transparent;
}
.navlinks a:hover{
  border-color: rgba(0,163,217,.30);
  background: rgba(255,255,255,.65);
}
.navlinks a.active{
  background: rgba(0,163,217,.14);
  border-color: rgba(0,163,217,.35);
}

.cta{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  min-width: 260px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.7);
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{
  color:#0b0f14;
  border: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--green), var(--yellow), var(--orange));
  box-shadow: var(--shadow-soft);
}
.btn.primary span{
  background: rgba(255,255,255,.9);
  padding:8px 12px;
  border-radius:999px;
}

.hero{
  padding:56px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  background: rgba(255,255,255,.7);
  border:1px solid rgba(15,23,42,.10);
}
.kicker .dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}
h1{
  margin:14px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.subhead{
  font-size:18px;
  color: rgba(11,15,20,.76);
  margin:0 0 18px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.hero-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(15,23,42,.86));
  color:white;
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-80px -80px auto auto;
  width:220px;height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(46,211,255,.55), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(255,138,0,.45), transparent 60%);
  transform: rotate(18deg);
  opacity:.95;
}
.hero-card .inner{ position:relative; }
.hero-card h3{
  margin:0 0 6px;
  font-size:18px;
  letter-spacing:.2px;
}
.hero-card p{
  margin:0;
  color: rgba(255,255,255,.82);
  font-size:14px;
}
.hero-card ul{
  margin:12px 0 0;
  padding-left:18px;
  color: rgba(255,255,255,.82);
  font-size:14px;
}

.section{
  padding:34px 0;
}
.section h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.2px;
}
.section p.lead{
  margin:0 0 18px;
  color: rgba(11,15,20,.72);
  max-width: 70ch;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}
.card h3{ margin:0 0 6px; font-size:18px; }
.card p{ margin:0; color: rgba(11,15,20,.72); }

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.pill{
  font-weight:800;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
}
.pill b{ color: var(--blue); }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.85);
}
.media .cap{
  padding:12px 14px;
  border-top:1px solid rgba(15,23,42,.10);
  color: rgba(11,15,20,.72);
  font-size:13px;
}

.price-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.price{
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.12);
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  position:relative;
}
.price.popular{
  transform: translateY(-4px);
  border: 2px solid rgba(0,163,217,.38);
  box-shadow: var(--shadow);
}
.badge{
  position:absolute;
  top:12px; right:12px;
  background: rgba(0,163,217,.14);
  border: 1px solid rgba(0,163,217,.35);
  color: rgba(0,163,217,1);
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.price h3{ margin:0 0 2px; }
.price .tagline{ margin:0 0 12px; color: rgba(11,15,20,.70); }
.price .money{
  font-size:34px;
  font-weight:1000;
  letter-spacing:-.5px;
  margin:8px 0 10px;
}
.price ul{ margin:0; padding-left:18px; color: rgba(11,15,20,.76); }
.price li{ margin:8px 0; }
.small{ font-size:13px; color: rgba(11,15,20,.65); margin-top:10px; }

.form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:6px;
}
label{ font-weight:800; }
input, select, textarea{
  padding:12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.85);
  font: inherit;
}
textarea{ min-height: 130px; resize: vertical; }

.footer{
  margin-top: 38px;
  padding:22px 0;
  border-top:1px solid var(--line);
  color: rgba(11,15,20,.70);
  font-size:13px;
}
.footer .row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer a{ color: rgba(11,15,20,.85); font-weight:800; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cta{ min-width:auto; }
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .brand{ min-width:auto; }
}


/* MOBILE_NAV_START */
/* Mobile nav */
.nav-toggle{ display:none; }
@media (max-width: 980px){
  .nav{ gap:12px; }
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px; height:46px;
    border-radius:14px;
    border:1px solid rgba(15,23,42,.12);
    background: rgba(255,255,255,.75);
    box-shadow: 0 10px 20px rgba(0,0,0,.06);
    cursor:pointer;
  }
  .nav-toggle:active{ transform: translateY(1px); }
  .navlinks{
    position:absolute;
    left:0; right:0;
    top:64px;
    background: rgba(255,255,255,.92);
    border:1px solid rgba(15,23,42,.12);
    border-radius: 18px;
    padding:10px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    z-index:20;
  }
  .navlinks a{
    width:100%;
    justify-content:flex-start;
    display:flex;
    padding:12px 14px;
    border-radius:14px;
  }
  .navlinks.open{ display:flex; }
  .cta{ display:none; }
  .brand img{ width:48px; height:48px; }
  .brand .name{ font-size:15px; }
  .brand .tag{ display:none; }
  .topbar{ position:sticky; top:0; z-index:25; backdrop-filter: blur(8px); }
  .hero{ padding:38px 0 24px; }
  .subhead{ font-size:16px; }
  .container{ width:min(var(--max), calc(100% - 28px)); }
}
/* MOBILE_NAV_END */



/* MOBILE_FAB_HERO_START */
/* Mobile-only click-to-call button + mobile-first hero CTA */
.call-fab{ display:none; }
@media (max-width: 980px){
  .hero-grid{ text-align:center; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ width:100%; }
  .hero-actions .btn.primary span{ width:100%; text-align:center; }
  .pills{ justify-content:center; }
  .hero-card{ margin-top:14px; text-align:left; }
  .call-fab{
    display:inline-flex;
    position:fixed;
    right:16px;
    bottom:16px;
    z-index:50;
    padding:14px 16px;
    border-radius:999px;
    font-weight:1000;
    border:0;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--green), var(--yellow), var(--orange));
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
    color:#0b0f14;
  }
  .call-fab:hover{ transform: translateY(-1px); }
}
/* MOBILE_FAB_HERO_END */

