:root{
  --pf-primary: #0ea5e9; /* sky */
  --pf-dark: #0b1220;
  --pf-dark-2: #111a2f;
  --pf-text: #0f172a;
}

*{ box-sizing: border-box; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--pf-text);
}

.topbar{
  background: linear-gradient(90deg, #0b1220, #0f2446);
  color: #fff;
}
.topbar .dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pf-primary);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(14,165,233,.15);
}
.topbar-link{
  color: rgba(255,255,255,.9);
  text-decoration: none;
}
.topbar-link:hover{ color: #fff; text-decoration: underline; }

.navbar.nav-blur{
  background: rgba(11,18,32,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar .brand-mark{
  color: var(--pf-primary);
}

.hero{
  min-height: calc(100vh - 96px);
  position: relative;
  background:
    url("../img/water_cooler.png") center/cover no-repeat;
}
.hero-overlay{
  position: absolute; inset: 0;
  background: radial-gradient(1200px 600px at 20% 30%, rgba(14,165,233,.35), rgba(11,18,32,.85)),
              linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,.85));
}
.kicker{
  color: rgba(255,255,255,.85);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .85rem;
}
.text-white-75{ color: rgba(255,255,255,.75)!important; }

.glass{
  background: rgba(255,255,255,.92);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.check{
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  position: relative;
}
.check::after{
  content: "";
  position: absolute;
  left: 5px; top: 3px;
  width: 6px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.check.blue{
  background: rgba(14,165,233,.15);
  border-color: rgba(14,165,233,.35);
}
.check.blue::after{
  border-right-color: var(--pf-primary);
  border-bottom-color: var(--pf-primary);
}

.trust-metric .trust-number{
  font-weight: 800;
  font-size: 1.1rem;
}
.trust-metric .trust-label{
  color: #6b7280;
  font-size: .9rem;
}

.icon-badge{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.22);
  font-size: 1.3rem;
}

.card-hover{
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-hover:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15,23,42,.12)!important;
}

.feature-panel{
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 320px;
}
@media (max-width: 991.98px){
  .feature-panel{ grid-template-columns: 1fr; }
}
.feature-panel-inner{
  padding: 1.5rem;
}
.feature-panel-image{
  background:
    url("../img/water_cooler.png") center/cover no-repeat;
  min-height: 240px;
}
.feature-panel-image.image-2{
  background:
    url("../img/water-cooler_2.jpg") center/cover no-repeat;
}

.step .step-number{
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.22);
  font-weight: 800;
  margin-bottom: .75rem;
}

.cta-band{
  background: linear-gradient(90deg, rgba(14,165,233,.95), rgba(2,132,199,.95));
  color: #fff;
}

.price{ display:flex; align-items:baseline; gap:.25rem; }
.price-amount{ font-size: 2rem; font-weight: 800; }
.plan-featured{
  border: 1px solid rgba(14,165,233,.35)!important;
  box-shadow: 0 22px 55px rgba(2,132,199,.20)!important;
  transform: translateY(-4px);
}
@media (max-width: 991.98px){
  .plan-featured{ transform:none; }
}

.pill{
  display:inline-flex;
  padding:.4rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(15,23,42,.03);
  font-size: .85rem;
}
.pill-dark{
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}

.mini-box{
  border-radius: 1rem;
  padding: .9rem;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
}

.stars{
  letter-spacing: .08em;
  color: #f59e0b;
  font-weight: 800;
}

.bg-dark{ background-color: var(--pf-dark)!important; }
.bg-dark-2{ background-color: var(--pf-dark-2)!important; }
.divider{ height: 1px; background: rgba(255,255,255,.12); }

.btn-primary{
  --bs-btn-bg: var(--pf-primary);
  --bs-btn-border-color: var(--pf-primary);
  --bs-btn-hover-bg: #0284c7;
  --bs-btn-hover-border-color: #0284c7;
  --bs-btn-active-bg: #0369a1;
  --bs-btn-active-border-color: #0369a1;
}
.btn-outline-primary{
  --bs-btn-color: #0284c7;
  --bs-btn-border-color: rgba(2,132,199,.45);
  --bs-btn-hover-bg: #0284c7;
  --bs-btn-hover-border-color: #0284c7;
}
