
/* Shapes N Colors — Modern UI */
:root{
  --snc-bg: #ffffff;
  --snc-accent: #2b7fff;
  --snc-accent-2: #7c3aed;
  --snc-text: #0f172a;
  --snc-muted: #475569;
  --snc-card: #f8fafc;
  --snc-pill: #eef2ff;
  --snc-radius: 18px;
  --snc-shadow: 0 10px 25px rgba(2, 6, 23, 0.08);
}

.snc-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

/* Hero */
.snc-hero{
  position: relative;
  border-radius: var(--snc-radius);
  padding: 56px 28px;
  overflow: hidden;
  display: grid;
  gap: 14px;
  background: linear-gradient(135deg, var(--snc-pill), #e0f2fe);
  box-shadow: var(--snc-shadow);
}
.snc-hero.has-bg{
  background-size: cover;
  background-position: center;
}
.snc-hero .snc-heading{
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  color: var(--snc-text);
  font-weight: 800;
}
.snc-hero .snc-sub{
  color: var(--snc-muted);
  font-size: clamp(16px, 2.2vw, 20px);
}
.snc-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--snc-accent), var(--snc-accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--snc-shadow);
  transition: transform .08s ease, box-shadow .2s ease;
}
.snc-cta:hover{ transform: translateY(-1px); box-shadow: 0 16px 30px rgba(2,6,23,0.12); }
.snc-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.snc-badge{
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--snc-muted);
}

/* Features grid */
.snc-features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.snc-card{
  background: var(--snc-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--snc-radius);
  padding: 18px;
  box-shadow: var(--snc-shadow);
  min-height: 88px;
  display:flex;
  align-items:center;
  font-weight: 600;
  color: var(--snc-text);
}

/* Testimonials */
.snc-testimonials{
  position: relative;
  border-radius: var(--snc-radius);
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--snc-shadow);
  overflow: hidden;
}
.snc-testimonial{ display:none; }
.snc-testimonial.active{ display:block; }
.snc-quote{ font-size: 18px; color: var(--snc-text); margin-bottom: 8px; }
.snc-author{ color: var(--snc-muted); font-size: 14px; }
.snc-dots{ display:flex; gap:8px; margin-top:12px; }
.snc-dot{ width:10px; height:10px; border-radius:50%; background:#cbd5e1; cursor:pointer; }
.snc-dot.active{ background: var(--snc-accent); }

/* Sticky contact bar */
.snc-contactbar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 10px;
  box-shadow: var(--snc-shadow);
  z-index: 9999;
}
.snc-contactbar a{
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; font-weight:700;
  padding: 10px 12px; border-radius: 999px;
  border: 1px solid #e2e8f0;
  color: var(--snc-text);
  background: #fff;
}
.snc-contactbar a:hover{ background: var(--snc-card); }
@media(min-width: 900px){
  .snc-contactbar{ left: 50%; right: auto; transform: translateX(-50%); width: 680px; }
}
/* Optional helper to add bottom space so bar doesn't cover content */
.snc-page-padding-bottom{ padding-bottom: 90px; }

/* Utility */
.sr-only{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }
