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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f7f9fc;
  color:#10233d;
  line-height:1.6;
}

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

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

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

.logo{
  display:flex;
  gap:14px;
  align-items:center;
}

.logo-mark{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#b68b2f,#f3d27a);
  color:#fff;
  font-weight:700;
  font-size:1.2rem;
}

.logo h2{
  font-size:1rem;
  letter-spacing:1px;
}

.logo p{
  font-size:0.8rem;
  color:#667;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  text-decoration:none;
  color:#1d3557;
  font-weight:500;
}

.hero{
  padding:90px 0;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:50px;
  align-items:center;
}

.tag,
.section-heading span,
.contact-tag{
  display:inline-block;
  background:#e9f1ff;
  color:#2456a8;
  padding:10px 16px;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:20px;
}

.hero h1{
  font-size:4rem;
  line-height:1.05;
  margin-bottom:24px;
  color:#0e1f38;
}

.hero p{
  color:#526071;
  font-size:1.08rem;
  max-width:640px;
}

.hero-buttons{
  margin-top:32px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 24px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.primary{
  background:linear-gradient(135deg,#b68b2f,#e7c56d);
  color:#fff;
}

.secondary{
  border:1px solid #d4dceb;
  color:#10233d;
  background:#fff;
}

.btn:hover{
  transform:translateY(-2px);
}

.stats{
  display:flex;
  gap:18px;
  margin-top:42px;
  flex-wrap:wrap;
}

.stat-card{
  background:#fff;
  padding:22px;
  border-radius:22px;
  min-width:170px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.stat-card h3{
  color:#b68b2f;
  margin-bottom:8px;
}

.hero-card{
  display:flex;
  justify-content:center;
}

.glass-card{
  width:100%;
  background:linear-gradient(180deg,#ffffff,#eef3fb);
  padding:32px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.8);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.mini-top{
  display:flex;
  gap:8px;
  margin-bottom:26px;
}

.mini-top span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#d7deea;
}

.glass-card h3{
  font-size:1.6rem;
  margin-bottom:14px;
}

.glass-card p{
  color:#5a6878;
}

.growth-box{
  margin-top:36px;
  background:#fff;
  border-radius:24px;
  padding:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.growth-circle{
  width:64px;
  height:64px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#b68b2f,#efd184);
  color:#fff;
  font-size:1.8rem;
}

.section{
  padding:90px 0;
}

.section-heading{
  margin-bottom:50px;
}

.section-heading h2{
  font-size:2.4rem;
  max-width:700px;
}

.center{
  text-align:center;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.about-card,
.point,
.service-card,
.report-card,
.why-card,
.testimonial-card{
  background:#fff;
  padding:30px;
  border-radius:24px;
  box-shadow:0 12px 40px rgba(0,0,0,0.05);
}

.about-card p + p{
  margin-top:18px;
}

.about-points{
  display:grid;
  gap:24px;
}

.service-grid,
.report-grid,
.why-grid,
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.services{
  background:#f0f5fc;
}

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

.why-card{
  text-align:center;
  font-weight:600;
}

.reports{
  background:#f8fbff;
}

.report-card{
  text-align:center;
  font-weight:600;
}

.contact-section{
  padding:90px 0;
}

.contact-box{
  background:linear-gradient(135deg,#0f2038,#1c3761);
  color:#fff;
  border-radius:34px;
  padding:50px;
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:flex-start;
}

.contact-box h2{
  font-size:2.2rem;
  margin:20px 0;
}

.contact-box p{
  color:#d6e0ef;
}

.contact-details p{
  margin-bottom:12px;
}

.footer{
  padding:30px 0;
  background:#fff;
  border-top:1px solid rgba(0,0,0,0.06);
}

.footer-content{
  display:flex;
  justify-content:space-between;
  gap:30px;
}

.footer-note{
  max-width:600px;
  color:#5c6878;
  font-size:0.92rem;
}

@media(max-width:980px){

  .hero-grid,
  .about-grid,
  .contact-box,
  .service-grid,
  .report-grid,
  .why-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:3rem;
  }

  nav{
    display:none;
  }

  .footer-content{
    flex-direction:column;
  }
}

@media(max-width:640px){

  .hero{
    padding:70px 0;
  }

  .hero h1{
    font-size:2.4rem;
  }

  .section-heading h2{
    font-size:1.9rem;
  }

  .contact-box{
    padding:32px;
  }

  .stats{
    flex-direction:column;
  }
}
