html,
body {
  height: auto !important;
  overflow: auto !important;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Background */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  filter: blur(10px) brightness(0.25);
  transform: scale(1.05);
}

.bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.92));
}

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 60px;
  text-align: center;
}

.hero-inner {
  max-width: 820px;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.05rem;
  opacity: 0.78;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 760px;
}

/* Sections */
.section {
  padding: 60px 24px;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section h2 {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  margin-bottom: 18px;
}

.section ul {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  padding-left: 18px;
}

.section-link {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

/* Footer */
.scroll-footer {
  padding: 30px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.footer-links {
  margin: 10px 0;
}

/* Mobile */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 3rem;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
}
/* ====== Footer override (normal flow, not floating) ====== */

.footer {
  position: relative !important;
  bottom: auto !important;
  width: 100% !important;
  background: transparent !important;
  border-top: 1px solid rgba(255,255,255,0.12) !important;
  padding: 40px 24px !important;
  text-align: center !important;
  color: rgba(255,255,255,0.75) !important;
  box-shadow: none !important;
}

.footer-links {
  margin: 10px 0 !important;
}
