*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Segoe UI',Arial,sans-serif;
  background:#eef2ff;
  color:#1e293b;
  overflow-x:hidden;
  line-height:1.6;
}

/* ================= HERO ================= */

.hero{
  width:100%;
  padding:20px 14px 30px;
  text-align:center;
  background:linear-gradient(135deg,#1e40af,#4c1d95);
  color:#fff;
}

.hero-images{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.hero-images img{
  width:clamp(75px,18vw,140px);
  height:clamp(75px,18vw,140px);
  object-fit:cover;
  border-radius:18px;
  border:3px solid rgba(255,255,255,.25);
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.logo{
  width:clamp(85px,20vw,120px)!important;
  height:clamp(85px,20vw,120px)!important;
  border-radius:50%;
}

.hero h1{
  font-size:clamp(2rem,8vw,4rem);
  font-weight:800;
  margin:10px 0;
}

.hero h2{
  font-size:clamp(.95rem,3vw,1.5rem);
  line-height:1.45;
  max-width:1000px;
  margin:auto;
}

.hero p{
  margin:18px auto;
  max-width:900px;
  font-size:clamp(.82rem,2.5vw,1rem);
  line-height:1.55;
  opacity:.96;
}

.hero h3{
  font-size:clamp(1rem,3vw,1.4rem);
  color:#fde68a;
  margin-top:10px;
}

/* ================= NAV BUTTON ================= */

.nav-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

.nav-buttons button{
  min-width:240px;
  max-width:340px;
  width:100%;
  padding:15px;
  border:none;
  border-radius:18px;
  background:#facc15;
  color:#1e3a8a;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  transition:.3s;
}

.nav-buttons button:hover{
  transform:translateY(-2px);
}

/* ================= DASHBOARD ================= */

.dashboard{
  width:min(95%,1300px);
  margin:24px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:16px;
}

.card{
  background:#fff;
  padding:22px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.card h3{
  font-size:.95rem;
  margin-bottom:10px;
}

.card span{
  font-size:clamp(1.5rem,5vw,2.2rem);
  font-weight:800;
  color:#4338ca;
}

/* ================= FORM ================= */

.form-section{
  width:min(95%,950px);
  margin:28px auto;
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.form-section h2{
  text-align:center;
  margin-bottom:22px;
  color:#312e81;
  font-size:clamp(1.25rem,4vw,2rem);
}

label{
  display:block;
  margin:14px 0 8px;
  font-weight:700;
}

input,
select,
textarea{
  width:100%;
  padding:15px;
  border:1px solid #cbd5e1;
  border-radius:14px;
  margin-bottom:14px;
  font-size:16px;
  background:#f8fafc;
}

textarea{
  min-height:120px;
  resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:#4338ca;
  box-shadow:0 0 0 3px rgba(67,56,202,.12);
}

form button{
  width:100%;
  padding:16px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,#4338ca,#7c3aed);
  color:#fff;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

  .hero{
    padding:16px 10px 24px;
  }

  .hero-images{
    gap:8px;
  }

  .dashboard{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .card{
    padding:16px;
  }

  .form-section{
    padding:18px;
  }

  .nav-buttons{
    flex-direction:column;
    align-items:center;
  }

  .nav-buttons button{
    width:92%;
    min-width:auto;
  }
}

@media (max-width:480px){

  .dashboard{
    grid-template-columns:1fr 1fr;
  }

  .hero-images img{
    width:78px;
    height:78px;
  }

  .logo{
    width:90px!important;
    height:90px!important;
  }

  .hero p{
    font-size:.8rem;
  }

  .form-section{
    width:97%;
    padding:16px;
  }
}

/* ================= DESKTOP LARGE ================= */

@media (min-width:1200px){

  .hero{
    padding:40px 20px;
  }

  .dashboard{
    grid-template-columns:repeat(4,1fr);
  }
}