*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#0b0f19;
  color:#ffffff;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section{
  padding:120px 0;
}

.alt-bg{
  background:#0f1629;
}

h1{
  font-size:56px;
  font-weight:800;
  line-height:1.1;
}

h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:40px;
}

h3{
  font-size:20px;
  font-weight:600;
}

p{
  color:#cbd5e1;
}

h1, h2, h3 {
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -0.5px;
}

body {
  font-family: 'Inter', sans-serif;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.05;
  max-width: 900px;
}

.hero-description {
  font-size: 18px;
  max-width: 650px;
  margin: 25px 0 40px;
  color: #cbd5e1;
}

.hero-badge {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  color: #3b82f6;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-note {
  font-size: 14px;
  color: #94a3b8;
}

.testimonial-slider {
  position: relative;
  max-width: 750px;
  margin-top: 60px;
}

.testimonial {
  display: none;
  font-size: 20px;
  line-height: 1.6;
  color: #e2e8f0;
  animation: fade 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial h4 {
  margin-top: 20px;
  font-size: 14px;
  color: #94a3b8;
}

/* Case Studies */

.section-subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 60px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 24px;
  transition: 0.3s ease;
}

.case-card:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
}

.case-tag {
  font-size: 12px;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metrics {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}

.metric-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.metric-label {
  font-size: 12px;
  color: #94a3b8;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Navbar */
.navbar{
  position:fixed;
  width:100%;
  background:rgba(11,15,25,0.85);
  backdrop-filter:blur(10px);
  padding:25px 0;
  z-index:1000;
}

.nav-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav a{
  margin-left:30px;
  text-decoration:none;
  color:#cbd5e1;
  font-weight:500;
}

nav a:hover{
  color:#ffffff;
}

.logo{
  font-weight:700;
  font-size:18px;
}

/* Hero */
.hero{
  padding:200px 0 140px;
  background:radial-gradient(circle at top right,#1e3a8a,#0b0f19 60%);
  text-align:left;
}

.hero-inner{
  max-width:850px;
}

.hero p{
  margin:25px 0 40px;
  font-size:18px;
}

.btn-primary{
  background:linear-gradient(90deg,#3b82f6,#6366f1);
  padding:16px 34px;
  border-radius:50px;
  color:white;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
}

.btn-primary:hover{
  opacity:0.85;
}

.stats{
  display:flex;
  gap:60px;
  margin-top:80px;
}

.stats h3{
  color:#3b82f6;
  font-size:26px;
}

.stats span{
  font-size:14px;
  color:#94a3b8;
}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  padding:40px;
  border-radius:20px;
  transition:0.3s;
}

.service-card:hover{
  border-color:#3b82f6;
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
}

.pricing-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:50px 40px;
  border-radius:20px;
  text-align:center;
  transition:0.3s;
}

.pricing-card.featured{
  border:2px solid #3b82f6;
  transform:scale(1.05);
}

.price{
  font-size:32px;
  font-weight:700;
  color:#3b82f6;
  margin:20px 0;
}

/* Contact */
.contact-wrapper{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:60px;
}

form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

input,select,textarea{
  padding:16px;
  border-radius:12px;
  border:none;
  background:#111827;
  color:white;
}

textarea{
  height:140px;
  resize:none;
}

button{
  padding:16px;
  border-radius:12px;
  border:none;
  background:linear-gradient(90deg,#3b82f6,#6366f1);
  color:white;
  font-weight:600;
  cursor:pointer;
}

.contact-info{
  background:rgba(255,255,255,0.04);
  padding:40px;
  border-radius:20px;
}

/* Footer */
footer{
  padding:50px 0;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
  color:#6b7280;
}

/* Responsive */
@media(max-width:900px){
  h1{font-size:38px;}
  .stats{flex-direction:column;gap:30px;}
  .contact-wrapper{grid-template-columns:1fr;}
}
