@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root{
  --bg-primary:#050816;
  --bg-secondary:#0B1120;
  --card-bg:#111827;
  --accent:#2563EB;
  --accent-light:#3B82F6;
  --text-primary:#F9FAFB;
  --text-secondary:#94A3B8;
  --border:rgba(255,255,255,0.08);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg-primary);
  color:var(--text-primary);
  font-family:'Inter',sans-serif;
  line-height:1.7;
}

img{
  width:100%;
  display:block;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

section{
  padding:100px 0;
}

/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 0;
}

.logo{
  font-size:1.5rem;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-box{
  width:14px;
  height:14px;
  background:var(--accent);
}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  color:white;
  text-decoration:none;
  transition:.3s;
}

.nav-links a:hover{
  color:var(--accent-light);
}

/* HERO */

.hero{
  min-height:100vh;
  background:
  linear-gradient(to right,
  rgba(5,8,22,.95),
  rgba(5,8,22,.85)),
  url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1400&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

.hero-content{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
  padding-top:80px;
}

.hero-tag{
  color:var(--accent-light);
  margin-bottom:20px;
  font-weight:600;
}

.hero h1{
  font-size:72px;
  line-height:1.05;
  letter-spacing:-2px;
  margin-bottom:30px;
  font-family:'Space Grotesk',sans-serif;
}

.hero-description{
  font-size:1.2rem;
  color:var(--text-secondary);
  margin-bottom:20px;
}

.hero-platforms{
  color:#CBD5E1;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:16px;
}

.hero-right img{
  border-radius:20px;
}

/* BUTTONS */

.btn-primary{
  background:var(--accent);
  border:none;
  color:white;
  padding:14px 28px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  transition:.3s;
}

.btn-primary:hover{
  background:var(--accent-light);
}

.btn-secondary,
.btn-outline{
  background:transparent;
  border:1px solid var(--border);
  color:white;
  padding:14px 28px;
  border-radius:8px;
  cursor:pointer;
}

/* TRUST */

.trust-bar{
  background:var(--bg-secondary);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:35px 0;
}

.trust-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.trust-tags{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.trust-tags span{
  background:var(--card-bg);
  padding:10px 16px;
  border-radius:30px;
  font-size:.9rem;
}

/* TITLES */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:2.8rem;
}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.service-card{
  background:var(--card-bg);
  padding:35px;
  border-radius:20px;
  border:1px solid var(--border);
}

.service-card i{
  font-size:2rem;
  color:var(--accent-light);
  margin-bottom:25px;
}

.service-card h3{
  margin-bottom:16px;
}

/* WHY */

.why-section{
  background:var(--bg-secondary);
}

.why-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.why-left h2{
  font-size:3rem;
  margin-bottom:25px;
}

.why-left p{
  color:var(--text-secondary);
  margin-bottom:20px;
}

.why-left ul{
  padding-left:20px;
  margin-top:25px;
}

.why-left li{
  margin-bottom:12px;
}

.why-highlight{
  margin-top:30px;
  background:rgba(37,99,235,.1);
  border-left:4px solid var(--accent);
  padding:20px;
  border-radius:10px;
}

.why-right img{
  border-radius:20px;
}

/* IMPACT */

.impact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.impact-card{
  background:var(--card-bg);
  padding:50px 30px;
  border-radius:20px;
  text-align:center;
}

.impact-card h3{
  font-size:2.5rem;
  margin-bottom:20px;
  color:var(--accent-light);
}

/* ENGAGEMENT */

.engagement-section{
  background:var(--bg-secondary);
}

.engagement-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.engagement-card{
  background:var(--card-bg);
  padding:35px;
  border-radius:20px;
}

/* ABOUT */

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  border-radius:20px;
}

.about-content h2{
  font-size:3rem;
  margin-bottom:25px;
}

.about-content p{
  margin-bottom:20px;
  color:var(--text-secondary);
}

/* CONTACT */

.contact-section{
  background:var(--bg-secondary);
  text-align:center;
}

.contact-wrapper h2{
  font-size:3rem;
  margin-bottom:20px;
}

.contact-wrapper p{
  color:var(--text-secondary);
  margin-bottom:15px;
}

.contact-email{
  color:var(--accent-light);
  text-decoration:none;
  font-size:1.2rem;
}

.contact-buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
}

/* FOOTER */

.footer{
  border-top:1px solid var(--border);
  padding:50px 0;
}

.footer-wrapper{
  text-align:center;
}

.footer-wrapper h3{
  margin-bottom:10px;
}

.footer-wrapper p{
  margin-bottom:10px;
  color:var(--text-secondary);
}

/* RESPONSIVE */

@media(max-width:992px){

  .hero-content,
  .why-wrapper,
  .about-wrapper,
  .services-grid,
  .impact-grid,
  .engagement-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:54px;
  }

}

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .trust-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .hero-buttons,
  .contact-buttons{
    flex-direction:column;
  }

  .hero h1{
    font-size:42px;
  }

  .section-title h2,
  .why-left h2,
  .about-content h2,
  .contact-wrapper h2{
    font-size:2.2rem;
  }

}