body{
  font-family:'Inter',sans-serif;
  margin:0;
  background:#f6f7fb;
  color:#111;
  line-height:1.6;
}

h1,h2,h3{
  margin-top:0;
}

/* SECTIONS */
.section{
  padding:50px 20px;
  max-width:1100px;
  margin:40px auto;
  background:#f1f3f9;
  border-radius:14px;
  border:1px solid #e5e7eb;
}

.alt{
  background:#ffffff;
}

/* HERO */
.hero{
  padding:70px 20px;
  text-align:center;
  background:linear-gradient(120deg,#1e293b,#0f172a);
  color:white;
}

.hero h1{
  font-size: clamp(26px, 2.5vw, 36px);
  margin:auto;
  max-width:900px;
  line-height:1.2;
}

.hero h2{
  margin-top:10px;
  font-weight:400;
}

.hero-sub{
  max-width: 520px;
  margin: 30px auto;
  line-height: 1.6;
  text-align: left;
}

.hero-sub p{
  margin:10px 0;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:20px;
}

/* BUTTONS */
.btn-primary{
  background:#6366f1;
  color:white;
  padding:12px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}

.btn-secondary{
  border:2px solid white;
  color:white;
  padding:10px 20px;
  border-radius:6px;
  text-decoration:none;
}

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 24px;
  background:white;
  position:sticky;
  top:0;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  z-index:100;
}

.logo{
  font-weight:700;
  font-size:20px;
}

#nav-menu{
  display:flex;
  align-items:center;
}

#nav-menu a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
}

.nav-cta{
  color:#6366f1;
  font-weight:600;
}

#nav-menu a.active{
  color:#111;
  text-decoration:underline;
  pointer-events:none;
  cursor:default;
}

.nav-cta.active{
  color:#6366f1;
  text-decoration:underline;
}

/* GRIDS */
.three-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:30px;
}

.two-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:30px;
}

/* CARDS */
.card{
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  border:1px solid #e5e7eb;
}

.panel{
  background:#eef2ff;
  padding:20px;
  border-radius:8px;
}

/* TEXT */
.mission{
  max-width:700px;
  margin:auto;
  font-size:17px;
  text-align:left;
  line-height:1.6;
}

/* CTA */
.cta{
  text-align:center;
  background:#0f172a;
  color:white;
}

.cta-buttons{
  margin-top:20px;
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

/* FOOTER */
footer{
  background:#111827;
  color:white;
  padding:40px 20px;
  text-align:center;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:800px){

  .two-grid{
    grid-template-columns:1fr;
  }

  .hamburger{
    display:block;
  }

  #nav-menu{
    flex-direction:column;
    position:absolute;
    top:70px;
    right:20px;
    background:white;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    min-width:200px;

    max-height:0;
    overflow:hidden;
    opacity:0;
    padding:0 20px;
    transform:translateY(-10px);

    transition:
      max-height 0.35s ease,
      opacity 0.4s ease 0.1s,
      transform 0.3s ease,
      padding 0.25s ease;
  }

  #nav-menu.show{
    max-height:500px;
    opacity:1;
    padding:20px;
    transform:translateY(0);
  }

  #nav-menu a{
    margin:10px 0;
  }

  .hero{
    padding:60px 20px;
  }
}

/* =========================
   FORM CARD
========================= */
.form-card {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   FORM GROUP
========================= */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #374151;
}

/* =========================
   INPUTS
========================= */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99,102,241,0.15);
}

/* FILE INPUT */
.form-group input[type="file"] {
  display: block;
  border: none;
  padding: 6px 0;
  width: 100%;
}

.form-group small {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 12px;
}

/* FORM BUTTON (scoped, won’t break site) */
.form-card .btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
}

/* SUCCESS */
.form-success {
  text-align:center;
  max-width:600px;
  margin:auto;
}

.form-success p {
  color:green;
  font-weight:600;
}