/* Sample Colors only for Refernce */

Sample Primary {
background-color: #314ed5;
}

Sample Secondary {
background-color: #fdb71d;
}


:root {
  --primary: #314ed5;
  --secondary: #fdb71d;
}


/* Default header (primary color) */
.header {
  background: var(--primary);
  padding: 20px 0;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: #333;
}

.container {
  width: 960px;
  max-width: 95%;
  margin: 0 auto;
}

/* HEADER */

.header {
  background: var(--header-color, var(--primary));
  padding: 20px 0;
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.school-logo { height: 85px; }
.disa-logo { height: 40px; }

/* NAV */

.nav {
  background: var(--secondary);
}

.nav-inner {
  display: flex;
  gap: 25px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 6px;
  border-radius: 4px;
  transition: .2s;
}

.nav a:hover,
.nav a:focus {
  background: white;
  color: var(--secondary);
  outline: 2px solid white;
}

/* HERO */

.hero {
  background: url("images/slide.jpg") center center no-repeat;
  background-size: cover;
  height: 450px;
}

/* TOP SECTION */

.top-content {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.intro { flex: 2; }

.cta-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* BUTTONS */

/* BUTTONS */

.btn {
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 2px solid;
  transition: all .2s ease;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
}
/* PRIMARY (Create Account) */

.btn.primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn.primary:hover,
.btn.primary:focus {
  background: var(--primary);
  color: white;
}

/* SECONDARY (Existing Users) */

.btn.secondary {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--secondary);
  color: white;
}

/* small subtext */

.btn span {
  font-weight: 400;
  font-size: 14px;
  display: block;
  margin-top: 4px;
}


/* BANNER */

.steps-banner-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.steps-svg { width: 602px; max-width: 100%; }
.complio-svg { width: 300px; max-width: 100%; }

/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: .2s;
}

.step:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.step h2 {
  font-size: 16px;
  min-height: 48px;
}

.step img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin: 14px 0;
  display: block;
}


.step-num {
  position: absolute;
  top: -18px;
  left: -18px;
  background: var(--secondary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  font-size: 22px;
  font-weight: 700;
}

/* FOOTER */

.footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
  position: relative;
  font-size: 14px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--secondary);
}


/* RESPONSIVE */

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {

  .steps { grid-template-columns: 1fr; }

  .hero { height: 250px; }

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

  .cta-buttons { width: 100%; }
}

/* =========================
   MOBILE HAMBURGER MENU
========================= */

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE STYLES */
@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    background: var(--secondary);
    margin-top: 10px;
    padding: 10px 0;
  }

  .nav-inner a {
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,.2);
  }

  .nav-inner.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 22px 0;
  }
}

/* =========================
   REASSURANCE SECTION
========================= */

.reassurance {
  margin: 50px 0 30px;
}

.reassurance-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.reassurance-item {
  padding: 28px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  transition: all .2s ease;
}

.reassurance-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

.reassurance-icon {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.reassurance-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

/* Mobile */

@media (max-width: 768px) {
  .reassurance-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
   SPECIAL ANNOUNCEMENT
========================= */

.announcement {
  margin: 50px 0 30px;
}

.announcement-card {
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(to bottom, #f8f9fa, #f2f3f5);
  border: 1px solid #e5e7eb;
}

.announcement-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

.announcement-card p {
  margin: 0;
  line-height: 1.6;
  color: #444;
}

/* Toggle visibility */
.is-hidden {
  display: none;
}

/* =========================
   PROGRESS TRACKER
========================= */

.progress-box {
  background: #f8f9fa;
}

.progress-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.progress-list li {
  margin-bottom: 14px;
}

.progress-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.progress-list input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  cursor: pointer;
}

