/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f3f3f5;
    color: #1d1f23;
}


/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8e5cf7, #6f4df6);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.logo-text strong {
    color: #8b5cf6;
}

.nav-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(139, 92, 246, 0.35);
}


/* =========================
   HERO SECTION
========================= */
.hero {
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
}

.purple {
    color: #8b5cf6;
}

.subheadline {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    padding: 18px 40px;
    color: white;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(139, 92, 246, 0.35);
}

.small-text {
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
}


/* =========================
   TRUSTED SECTION
========================= */
.trusted {
    text-align: center;
    padding: 60px 20px;
}

.divider {
    height: 1px;
    background: #d1d5db;
    max-width: 900px;
    margin: 0 auto 25px;
}

.trusted p {
    font-size: 12px;
    letter-spacing: 2px;
    color: #6b7280;
    font-weight: 600;
}


/* =========================
   ABOUT SECTION (BODY FIXED)
========================= */
.about-section {
    padding: 120px 20px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-section h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 40px;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #8b5cf6;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

.about-section .divider {
    height: 1px;
    background: #e5e7eb;
    margin: 50px 0;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 24px;
}

.highlight {
    color: #8b5cf6;
    font-weight: 600;
}

.cta-block {
    margin-top: 30px;
}

.cta-block p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 35px;
}

.apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(139, 92, 246, 0.35);
}


/* =========================
   FOOTER
========================= */
.footer {
  background: #f5f5f7;
  padding-top: 70px;
  color: #2b2b2b;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding: 0 40px 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 360px;
}

.footer-small {
  font-size: 14px;
  color: #6a6a6a;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 15px;
}

.footer-cta p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #555;
  max-width: 280px;
}

.footer-btn {
  display: inline-block;
  background: linear-gradient(135deg, #8e5cf7, #6f4df6);
  color: white;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(111, 77, 246, 0.25);
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(111, 77, 246, 0.35);
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 25px 40px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #6f4df6;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .hero h1 {
    font-size: 40px;
  }

  .about-section h1 {
    font-size: 36px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 15px;
  }
}