:root{
  --bg-dark: #0b1020;
  --primary: #3c78ff;
  --primary-soft: rgba(60,120,255,.15);
  --text-muted: #6b7280;
}

*{ font-family: "Inter", sans-serif; }

body{
  padding-top: 70px;
  background: #fff;
}

/* HERO */
.hero-section{
  min-height: 90vh;
  background: radial-gradient(1000px circle at 10% 10%, #1b3a8a 0%, transparent 50%),
              radial-gradient(900px circle at 90% 20%, #5422a3 0%, transparent 50%),
              linear-gradient(180deg, #070b16 0%, #0b132b 100%);
  position: relative;
  padding: 80px 0;
}

.hero-card{
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}

.mini-stat{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
  text-align:center;
}
.mini-stat-title{ font-size: .8rem; opacity:.7; }
.mini-stat-value{ font-size: 1.3rem; font-weight: 700; }
.mini-stat-sub{ font-size: .8rem; opacity:.6; }

/* SECTIONS */
.section{
  scroll-margin-top: 80px;
}

.list-check{
  padding-left: 0;
  list-style: none;
}
.list-check li{
  margin-bottom: 8px;
  padding-left: 26px;
  position: relative;
}
.list-check li::before{
  content: "✔";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.glass-box{
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
}

/* SERVICES */
.service-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  transition: .2s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.service-icon{
  font-size: 2rem;
  width: 54px;
  height: 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 12px;
}

/* PROJECTS */
.project-card{
  background:#fff;
  border:1px dashed #d1d5db;
  border-radius: 18px;
  padding: 22px;
  transition: .2s ease;
}
.project-card:hover{
  border-color: var(--primary);
  transform: translateY(-3px);
}
.project-tag{
  display:inline-block;
  font-size:.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight:600;
}

/* CTA */
.cta-section{
  background: linear-gradient(90deg, #0b1020 0%, #0e1a3a 50%, #132050 100%);
}

/* CONTACT */
.form-card{
  background:#fff;
  border-radius: 18px;
  border:1px solid #e5e7eb;
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.contact-box{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.contact-icon{
  width: 44px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #eef2ff;
  border-radius: 10px;
}

/* FOOTER */
.footer{
  border-top: 1px solid rgba(255,255,255,.06);
}
