/* style.css */
:root{
  --bg:#0b1220;
  --card:#0f1a33;
  --soft:#121f3e;
  --text:#e8eefc;
  --muted:#b9c6ea;
  --accent:#4aa3ff;
  --accent2:#7c4dff;
  --border:rgba(255,255,255,0.08);
}

*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(124,77,255,0.25), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(74,163,255,0.25), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:var(--accent);text-decoration:none;}
a:hover{opacity:0.9;}

.container{
  width: min(1150px, 92%);
  margin: auto;
}

.topbar{
  background: rgba(255,255,255,0.04);
  border-bottom:1px solid var(--border);
  padding:10px 0;
  font-size:14px;
}

.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.topbar-left{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
}
.dot{opacity:0.6;}
.topbar-link{
  color:var(--text);
  background:rgba(74,163,255,0.16);
  border:1px solid rgba(74,163,255,0.35);
  padding:8px 12px;
  border-radius:10px;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(11,18,32,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  gap:16px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-mark{
  width:44px;
  height:44px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(74,163,255,0.25), rgba(124,77,255,0.25));
  border: 1px solid var(--border);
}
.logo-text h1{
  font-size:18px;
  line-height:1.2;
}
.logo-text p{
  font-size:12px;
  color:var(--muted);
}

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}
.nav a{
  color:var(--muted);
  font-size:14px;
}
.nav a:hover{color:var(--text);}

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(74,163,255,0.95), rgba(124,77,255,0.9));
  color:white;
  font-weight:700;
  border:none;
  cursor:pointer;
  text-align:center;
}
.btn:hover{transform: translateY(-1px);}
.btn:active{transform: translateY(0px);}

.btn-outline{
  background: transparent;
  border:1px solid rgba(255,255,255,0.18);
  color:var(--text);
}
.btn-small{
  padding:10px 14px;
  border-radius:10px;
}

.hero{
  padding:70px 0 40px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:22px;
  align-items:stretch;
}
.badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size:13px;
  margin-bottom:14px;
}

.hero-content h2{
  font-size:42px;
  line-height:1.1;
  margin-bottom:12px;
}
.highlight{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-content p{
  color:var(--muted);
  font-size:16px;
  margin-bottom:18px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:22px;
}
.stat{
  background: rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
}
.stat h3{font-size:18px;}
.stat p{font-size:13px;color:var(--muted);}

.hero-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.hero-card h3{
  margin-bottom:10px;
  font-size:18px;
}
.checklist{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin: 10px 0 14px;
}
.checklist li{
  padding-left:22px;
  position:relative;
  color: var(--muted);
  font-size:14px;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--accent);
  font-weight:800;
}
.link{
  display:inline-block;
  margin-top:8px;
  font-weight:700;
}

.section{
  padding:60px 0;
}
.section-alt{
  background: rgba(255,255,255,0.02);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section-head{
  margin-bottom:22px;
}
.section-head h2{
  font-size:28px;
  margin-bottom:8px;
}
.section-head p{
  color:var(--muted);
  max-width:820px;
}

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}

.card{
  background: rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.card h3, .card h2{margin-bottom:8px;}
.card p{color:var(--muted);}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.service-card{
  background: rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.service-card h3{
  margin-bottom:10px;
  font-size:18px;
}
.service-card ul{
  padding-left:18px;
  color:var(--muted);
}
.service-card li{margin:6px 0;}
.tiny{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
  opacity:0.9;
}

.steps{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.step{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background: rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}
.step-no{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:900;
  background: rgba(74,163,255,0.18);
  border:1px solid rgba(74,163,255,0.35);
}

.contact-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:16px;
}
.contact-card, .contact-form-card{
  background: rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.contact-actions{
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}

.form{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.form-row label{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-bottom:6px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.18);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(74,163,255,0.55);
}

.note{margin-top:8px;}

.footer{
  padding:22px 0;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,0.18);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}

/* WhatsApp Floating Button */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(74,163,255,0.95);
  color: white;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 999;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr;}
  .cards{grid-template-columns: repeat(2, 1fr);}
  .contact-grid{grid-template-columns: 1fr;}
  .hero-content h2{font-size:34px;}
  .hero-stats{grid-template-columns: 1fr;}
}

@media (max-width: 560px){
  .cards{grid-template-columns: 1fr;}
  .grid-2{grid-template-columns: 1fr;}
  .nav{gap:10px;}
}
