/* GLOBAL */

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:#f7f9fc;
  color:#333;
}



/* NAVIGATION */

.topnav{
  position:sticky;
  top:0;
  z-index:1000;

  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 40px;
  background:white;
  border-bottom:1px solid #e6e6e6;
}

/* LOGO / BRAND */

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

.logo-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-icon img{
  width:40px;
  height:40px;
  display:block;
}

.logo-text{
  font-size:18px;
  font-weight:600;
  letter-spacing:0.3px;
  color:#333;
}


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

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

nav a:hover{
  color:#4a7cff;
}


.menu-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}



/* HERO */

/* HERO */

.hero{
  text-align:center;
  padding:90px 20px 70px;

  background: linear-gradient(
    180deg,
    #f7f9fc 0%,
    #eef3ff 100%
  );
}

.hero h1{
  font-size:42px;
  margin-bottom:16px;
  font-weight:700;
}

.hero p{
  font-size:18px;
  color:#666;
  max-width:620px;
  margin:0 auto;
}


.hero-button{
  display:inline-block;
  margin-top:25px;
  padding:12px 26px;
  background:#4a7cff;
  color:white;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
}

.hero-button:hover{
  background:#3d68d6;
}



/* CARDS */

.cards{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:30px;
  padding:40px;
}

.card{
  text-decoration:none;
  background:white;
  padding:40px 30px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  text-align:center;
  transition:transform .2s, box-shadow .2s;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.card-icon{
  font-size:40px;
  margin-bottom:14px;
}

.card-icon svg{
  width:42px;
  height:42px;
  stroke:#4a7cff;
}

.card h2{
  margin:10px 0;
}

.card p{
  color:#666;
  font-size:14px;
}



/* FOOTER */

footer{
  text-align:center;
  padding:40px;
  color:#777;
}



/* MOBILE */

@media (max-width:768px){

  nav{
    display:none;
    position:absolute;
    top:70px;
    right:20px;
    background:white;
    flex-direction:column;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
  }

  nav.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

}


.content{
max-width:800px;
margin:40px auto;
padding:0 20px;
line-height:1.6;
color:#444;
}


.support-card{
  max-width:260px;
  margin:auto;
}


.card h2{
  margin:10px 0;
  /* color:#4a7cff; */
  color:#6a5acd;
}




i{
  color:#4a7cff;
  /* color:#6a5acd; */
}





