
:root{
  --bg:#0a0a0a;
  --card:#151515;
  --soft:#1d1d1d;
  --text:#ffffff;
  --muted:#cccccc;
  --accent:#ffffff;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui;
  background:linear-gradient(180deg,#0a0a0a,#050505);
  color:var(--text);
}

.wrap{max-width:1100px;margin:auto;padding:0 20px}

.site-header{
  background:#000;
  position:sticky;
  top:0;
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
}

.logo{
  height:88px;
}

.hero{
  text-align:center;
  padding:90px 0;
}

.hero h1{
  font-size:44px;
  margin-bottom:10px;
}

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:700px;
  margin:0 auto 25px;
}

.btn{
  padding:14px 22px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
}

.btn-primary{
  background:var(--accent);
  color:#000;
}

.btn-outline{
  border:1px solid #fff;
  color:#fff;
}

.btn-lg{font-size:18px}

.section{
  padding:70px 0;
  text-align:center;
}

.section.soft{
  background:var(--soft);
}

.grid{
  display:grid;
  gap:18px;
}

.services{
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}

.card{
  background:var(--card);
  padding:22px;
  border-radius:18px;
  font-size:18px;
}

.trust{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

.trust-card{
  background:#101010;
  padding:24px;
  border-radius:18px;
}

.footer{
  background:#000;
  padding:40px 0;
  text-align:center;
}

.footer-logo{
  height:64px;
  margin-bottom:10px;
}

.fab{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#fff;
  color:#000;
  font-weight:900;
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

@media(max-width:600px){
  .logo{height:72px}
  .hero h1{font-size:34px}
}


/* Support Chat Widget */
.chat-widget{
  position: fixed;
  right: 20px;
  bottom: 105px; /* sits above the Call FAB */
  z-index: 40;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.chat-bubble{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
}
.chat-bubble.hidden{display:none;}

.chat-panel{
  position: fixed;
  right: 20px;
  bottom: 105px;
  width: 320px;
  max-width: calc(100vw - 40px);
  border-radius: 18px;
  background: rgba(10,10,10,.96);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 60px rgba(0,0,0,.65);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.chat-panel.open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.chat-title{font-weight: 900;}
.chat-close{
  border:none;
  background: transparent;
  color:#fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chat-body{padding: 14px;}
.chat-msg{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}
.chat-actions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.chat-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 900;
  background: #fff;
  color:#000;
}
.chat-btn.ghost{
  background: rgba(255,255,255,.10);
  color:#fff;
  border: 1px solid rgba(255,255,255,.18);
}
.chat-small{
  color: rgba(255,255,255,.70);
  font-size: 12.5px;
  margin-top: 8px;
}

/* On larger screens, keep both Call + Chat visible */
@media (min-width: 901px){
  .chat-widget{bottom: 20px;}
  .chat-panel{bottom: 20px;}
}

/* Pricing */
.pricing{
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}
.price-card{
  background:#111;
  border-radius:18px;
  padding:26px;
  text-align:center;
}
.price-card h3{margin-bottom:8px}
.price{
  font-size:38px;
  font-weight:900;
  margin:10px 0;
}
.price-card.highlight{
  background:#fff;
  color:#000;
}
