:root{
  --shj-radius: 18px;
  --shj-shadow: 0 18px 40px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body{
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(13,110,253,.18), transparent 55%),
    radial-gradient(1200px 600px at 90% 0%, rgba(111,66,193,.14), transparent 55%),
    #fff;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:1rem;
  top:1rem;
  width:auto;
  height:auto;
  padding:.5rem .75rem;
  background:#0d6efd;
  color:#fff;
  border-radius:.5rem;
  z-index:9999;
}

.hero-section{
  padding-top: .25rem;
}
.py-lg-6{
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.eyebrow{
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
}

.pill{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: .35rem .7rem;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
}

.hero-card{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--shj-radius);
  box-shadow: var(--shj-shadow);
}

.preview-window{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  overflow: hidden;
  background: #fff;
}
.preview-topbar{
  display:flex;
  gap:.45rem;
  padding:.75rem .85rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  display:inline-block;
  opacity:.9;
}
.preview-body{
  padding: 1rem;
}
.preview-line{
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13,110,253,.15), rgba(111,66,193,.10));
  margin-top: .6rem;
}
.preview-actions .btn{
  pointer-events:none;
}

.feature-card,
.stats-card,
.cta-card,
.about-card,
.contact-card,
.price-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--shj-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.icon-badge{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.18);
  font-size: 18px;
}

.checklist li{
  padding-left: 1.65rem;
  position: relative;
}
.checklist li::before{
  content: "✓";
  position:absolute;
  left:0;
  top:0;
  color:#0d6efd;
  font-weight:700;
}

.stat{
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
}
.stat-number{
  font-size: 1.6rem;
  font-weight: 700;
}
.stat-label{
  color: rgba(33,37,41,.7);
  font-size: .95rem;
}

.cta-section{
  padding-bottom: 1rem;
}
.cta-card{
  border-radius: calc(var(--shj-radius) + 6px);
  background: linear-gradient(135deg, rgba(13,110,253,.12), rgba(111,66,193,.10));
}

.price{
  display:flex;
  align-items: baseline;
  gap: .35rem;
}
.price-amount{
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price-card.featured{
  border-color: rgba(13,110,253,.22);
  box-shadow: 0 18px 45px rgba(13,110,253,.10);
  transform: translateY(-4px);
}

.site-footer a.link-secondary{
  text-decoration: none;
}
.site-footer a.link-secondary:hover{
  text-decoration: underline;
}

@media (max-width: 991.98px){
  .price-card.featured{ transform: none; }
}

