/* Minimal helper for the intentionally-clean middle section and the
   mobile navigation menu. Header/footer styling comes from the official
   main.css; this file only adds the JS-rendered mobile nav + clean middle. */

.main-content {
  min-height: 60vh;
  background: #ffffff;
}

/* ============================================================
   Central landing section (the only area between header & footer).
   Clean, flat, modern premium look — white background, solid
   button, no gradients / no yellow / no serif.
   ============================================================ */
.lf-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82vh;
  padding: 92px 24px 108px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
}

.lf-hero-inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* 1. Main heading — one line, dark, bold */
.lf-hero-title {
  margin: 0 0 28px;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .3px;
  color: #1c2b30;
  white-space: nowrap;
}

/* 2. Subtitle — smaller, light gray, 3-4 lines */
.lf-hero-subtitle {
  margin: 0 0 22px;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  color: #7a8783;
}

/* 3. Explanatory paragraph — smaller still, medium gray, 3 lines */
.lf-hero-body {
  margin: 0 auto 42px;
  max-width: 620px;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 400;
  line-height: 1.85;
  color: #5d6a66;
}

/* 4. Deadline block — soft neutral callout (no yellow) */
.lf-hero-deadline {
  display: inline-block;
  margin-bottom: 48px;
  padding: 15px 34px;
  border-radius: 10px;
  background: #eef3f2;
  border: 1px solid #e0e8e6;
}
.lf-hero-deadline-label {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: .3px;
  color: #33413e;
  white-space: nowrap;
}

/* 5. Primary button — solid, flat, no shimmer */
.lf-hero-btn {
  display: inline-block;
  padding: 18px 52px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: .4px;
  color: #ffffff;
  text-decoration: none;
  background: #006d31;
  border: 1px solid #006d31;
  box-shadow: 0 12px 28px -12px rgba(0, 109, 49, .5);
  transition: background-color .2s ease, transform .2s ease;
}
.lf-hero-btn:hover {
  background: #005a27;
  transform: translateY(-1px);
}
.lf-hero-btn:focus-visible {
  outline: 3px solid #005a27;
  outline-offset: 3px;
}
.lf-hero-btn:active {
  transform: translateY(0);
}

@media (max-width: 560px) {
  .lf-hero-title,
  .lf-hero-deadline-label { white-space: normal; }
  .lf-hero { padding: 72px 20px 88px; }
  .lf-hero-btn {
    width: auto;
    max-width: 100%;
    padding: 16px 38px;
    font-size: 16px;
  }
}

/* Mobile navigation (below 1201px the hamburger is shown) */
.lf-mobile-menu {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 40;
  background: #173f3f;
  color: #fff;
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .1);
  padding: 4px 0 20px;
}
.lf-mobile-menu.open { display: block; }

.lf-mobile-toggle,
.lf-mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: none;
  cursor: pointer;
}
.lf-mobile-sub { display: none; padding: 0 20px 8px; }
.lf-mobile-sub.open { display: block; }
.lf-mobile-heading {
  display: block;
  color: #d3ae48;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 0 4px;
}
.lf-mobile-sub a {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

@media (min-width: 1201px) {
  .lf-mobile-menu { display: none !important; }
}
