:root{
  --primary: #8b5cf6;
  --secondary: #ec4899;
  --accent: #6366f1;
  --dark: #0f1020;
  --light: #f8f7ff;
  --text: #1f2333;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e9e5ff;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #fcfbff 0%, #f3efff 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{
  flex: 1;
}

nav{
  padding: 22px 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-wrap ul{
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-wrap a{
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-wrap a:hover{
  color: var(--primary);
}

.hero{
  padding: 110px 0 80px;
}

.hero-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text{
  flex: 1;
}

.hero h2{
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero p{
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-image{
  flex: 1;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  min-height: 340px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
  padding: 30px;
}

.hero-image-box h3{
  font-size: 2rem;
  margin-bottom: 12px;
}

.hero-image-box p{
  color: #dbeafe;
  margin: 0;
  text-align: center;
}

.btn{
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.25);
}

.btn:hover{
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 18px 30px rgba(236, 72, 153, 0.22);
}

.cards-section{
  padding: 20px 0 80px;
}

.card-box{
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  height: 100%;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.08);
  transition: 0.3s ease;
}

.card-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(139, 92, 246, 0.14);
}

.card-box h3{
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--dark);
}

.card-box p{
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.more-btn{
  text-align: center;
  margin-top: 35px;
}

.site-footer{
  padding: 30px 0;
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255,255,255,0.6);
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}

.logo img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo span{
  letter-spacing: 0.4px;
}

.logo span b{
  color: var(--dark);
}

.logo span em{
  color: var(--primary);
  font-style: normal;
}

@media (max-width: 992px){
  .hero-content{
    flex-direction: column;
    text-align: center;
  }

  .hero p{
    margin-left: auto;
    margin-right: auto;
  }

  .hero h2{
    font-size: 2.6rem;
  }

  .nav-wrap{
    flex-direction: column;
    gap: 18px;
  }

  .nav-wrap ul{
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px){
  .hero{
    padding: 80px 0 60px;
  }

  .hero h2{
    font-size: 2rem;
  }

  .hero-image{
    min-height: 240px;
  }

  .logo{
    font-size: 1.3rem;
  }

  .logo img{
    width: 36px;
    height: 36px;
  }
}

.page-hero{
  padding: 90px 0 40px;
}

.page-hero h1{
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.page-hero p{
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

main{
  min-height: calc(100vh - 140px);
}

.page-hero{
  padding: 110px 0 60px;
}

.page-hero p{
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.team-section{
  padding: 20px 0 100px;
}