:root{
  --blue:#00B5E2;
  --teal:#00B3A4;
  --green:#00C853;
  --yellow:#FFD54A;
  --red:#FF4D5A;
  --ink:#0b1b2b;
  --muted:#5a6a7a;
  --card:#ffffff;
  --bg:#f6f8fb;
  --radius:18px;
  --shadow: 0 12px 30px rgba(11,27,43,.10);
  --shadow2: 0 10px 24px rgba(11,27,43,.08);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--ink);
  background: radial-gradient(1200px 600px at 15% -10%, rgba(0,181,226,.20), transparent 60%),
              radial-gradient(900px 500px at 85% 0%, rgba(255,77,90,.18), transparent 55%),
              var(--bg);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }
.small{ font-size:.95rem; color:var(--muted); line-height:1.5; }

.topbar{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background: rgba(246,248,251,.75);
  border-bottom:1px solid rgba(11,27,43,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:10px; align-items:center;
  font-weight:900; letter-spacing:.5px;
}
.badge{
  width:14px; height:14px; border-radius:5px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 8px 18px rgba(0,181,226,.25);
}
.navlinks{
  display:flex; gap:14px; align-items:center;
  flex-wrap:wrap;
}
.navlinks a{
  padding:8px 10px;
  border-radius:12px;
  font-weight:700;
  color: rgba(11,27,43,.85);
}
.navlinks a:hover{ background: rgba(0,181,226,.10); }

.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(11,27,43,.10);
  box-shadow: var(--shadow2);
  background: var(--card);
}
.btn.primary{
  border:0;
  background: linear-gradient(135deg, var(--red), var(--yellow));
}

.hero{
  padding:44px 0 26px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:18px;
  align-items:stretch;
}
.heroCard{
  background:var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:26px;
  border:1px solid rgba(11,27,43,.08);
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-40px -80px auto auto;
  width:220px; height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(0,200,83,.35), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(0,181,226,.35), transparent 55%);
  transform: rotate(12deg);
}
h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height:1.05;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: rgba(0,181,226,.10);
  border:1px solid rgba(0,181,226,.18);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  margin-bottom:14px;
}
.kicker .dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--blue);
}
.sub{
  font-size:1.05rem;
  color: rgba(11,27,43,.75);
  line-height:1.6;
  margin:0 0 18px;
}
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.stat{
  border-radius:16px;
  padding:12px 14px;
  border:1px solid rgba(11,27,43,.08);
  background: rgba(246,248,251,.8);
}
.stat strong{ display:block; font-size:1.05rem; }
.stat span{ font-size:.9rem; color: var(--muted); }

.sideCard{
  background: linear-gradient(135deg, rgba(255,77,90,.92), rgba(255,213,74,.88));
  color:#0b1b2b;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  border:1px solid rgba(11,27,43,.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.sideCard h2{ margin:0 0 8px; font-size:22px; }
.sideCard p{ margin:0; line-height:1.55; font-weight:650; }

.grid{
  padding:18px 0 52px;
}
.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column: span 6;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border:1px solid rgba(11,27,43,.08);
  padding:18px;
  position:relative;
  overflow:hidden;
  min-height: 190px;
}
.card h3{
  margin:0 0 10px;
  font-size:20px;
  letter-spacing:.2px;
}
.card p{ margin:0; color: rgba(11,27,43,.72); line-height:1.6; }

.theme-yellow{ background: linear-gradient(0deg, rgba(255,213,74,.55), rgba(255,213,74,.55)); }
.theme-red{ background: linear-gradient(0deg, rgba(255,77,90,.55), rgba(255,77,90,.55)); }
.theme-teal{ background: linear-gradient(0deg, rgba(0,179,164,.50), rgba(0,179,164,.50)); }
.theme-blue{ background: linear-gradient(0deg, rgba(0,181,226,.45), rgba(0,181,226,.45)); }

.card .chip{
  display:inline-flex; align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(11,27,43,.10);
  font-weight:900;
  font-size:.9rem;
  margin-bottom:10px;
}

.list{
  margin:10px 0 0;
  padding-left:18px;
  line-height:1.8;
  color: rgba(11,27,43,.78);
  font-weight:650;
}

.footer{
  background: #06212a;
  color: rgba(255,255,255,.90);
  padding:28px 0;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.footer a{ color:#fff; text-decoration:underline; }
.footer h4{ margin:0 0 10px; }
.footer p{ margin:0; line-height:1.7; color: rgba(255,255,255,.80); }
.footer .mini{
  margin-top:10px;
  font-size:.95rem;
  color: rgba(255,255,255,.78);
}

.reveal{ opacity:0; transform: translateY(14px); transition: .6s ease; }
.reveal.show{ opacity:1; transform: translateY(0); }

@media (max-width: 920px){
  .heroGrid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .card{ grid-column: span 12; }
  .footerGrid{ grid-template-columns:2fr; }
}

/* Active nav link */
.navlinks a.active{
  background: rgba(0,181,226,.14);
  border: 1px solid rgba(0,181,226,.22);
}

/* Simple form styles (contact page) */
.form{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.input, .textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(11,27,43,.12);
  background: rgba(255,255,255,.85);
  font: inherit;
  outline:none;
}
.textarea{ min-height:120px; resize:vertical; }
.input:focus, .textarea:focus{
  border-color: rgba(0,181,226,.45);
  box-shadow: 0 0 0 4px rgba(0,181,226,.12);
}

/* Small helper row */
.row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Compact footer (no boxes) */
.footer-compact{ padding:20px 0; }

.footerRow{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  align-items:flex-start;
}

.footerLeft, .footerRight{
  max-width:520px;
}

.footerLinks{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.footerLinks a{
  font-weight:800;
  color:#fff;
  opacity:.85;
  text-decoration:none;
}

.footerLinks a:hover{
  opacity:1;
  text-decoration:underline;
}

/* KILL any accidental white box inside footer */
.footer .heroCard,
.footer .card,
.footer .tableWrap,
.footer .mini,
.footer .input,
.footer .textarea{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Compact footer layout */
.footer-compact{ padding:20px 0; }

.footerRow{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  align-items:flex-start;
}

.footerLeft, .footerRight{ max-width:520px; }

.footerLinks{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.footerLinks a{
  font-weight:800;
  color:#fff;
  opacity:.85;
  text-decoration:none;
}

.footerLinks a:hover{
  opacity:1;
  text-decoration:underline;
}

/* Normalize Results testimonials */
.results-page .card{
  min-height: 160px; /* instead of 190px */
}

.results-page .quote{
  font-weight:700;
  line-height:1.55;
}

.results-page .heroCard{
  margin-bottom: 12px;
}

