/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #F9FAFB;
  color: #0F172A;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a,
.dropdown-toggle {
  text-decoration: none;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}

/* ===== DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  min-width: 220px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #0F172A;
}

/* ================= HERO ================= */
.hero {
  height: 70vh;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= INTRO ================= */
.intro {
  text-align: center;
  padding: 120px 20px 80px;
}

.intro h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.intro p {
  max-width: 900px;
  margin: auto;
  color: #475569;
  font-size: 17px;
}

/* ================= SOLUTIONS CARD ================= */
.solutions-section {
  background: #fff;
  padding: 100px 20px;
}

.solutions-card {
  max-width: 1100px;
  margin: auto;
  background: #F9FAFB;
  padding: 60px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.solutions-text h2 {
  margin-bottom: 14px;
}

.solutions-text p {
  color: #475569;
  margin-bottom: 20px;
}

.solutions-text ul {
  list-style: disc;
  padding-left: 20px;
}

.solutions-text li {
  margin-bottom: 8px;
}

.solutions-image img {
  width: 100%;
  max-width: 360px;
}

/* ================= BETTER CARD ================= */
.better-section {
  padding: 100px 20px;
}

.better-card {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.better-image img {
  width: 100%;
  border-radius: 14px;
}

.better-text p {
  margin: 18px 0;
  color: #475569;
}

.better-text ul {
  list-style: none;
}

.better-text li {
  margin-bottom: 10px;
}

/* ================= HOW WE HELP (DARK) ================= */
.how-we-help.dark {
  background: linear-gradient(135deg, #0F2A44, #061A33);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.how-we-help.dark h2 {
  font-size: 36px;
}

.how-sub {
  margin-top: 10px;
  color: #CBD5E1;
}

.help-grid {
  margin-top: 60px;
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.help-card {
  background: rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 16px;
  text-align: left;
}

.help-card h3 {
  margin-bottom: 14px;
}

.help-card ul {
  padding-left: 18px;
}

.help-card li {
  margin-bottom: 8px;
}

/* ================= CTA ================= */
.final-cta {
  max-width: 1100px;
  margin: 100px auto;
  padding: 80px 40px;
  background: linear-gradient(135deg,#0F2A44,#061A33);
  color: #fff;
  text-align: center;
  border-radius: 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 24px;
  background: #38BDF8;
  color: #000;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= FOOTER ================= */
.footer {
  background: #020617;
  color: #CBD5E1;
  padding: 80px 20px 30px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer h4 {
  margin-bottom: 12px;
}

.footer a {
  color: #CBD5E1;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}
