/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f5f6f8;
  color: #111;
}

/* ============ LAYOUT ============ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ NAVBAR ============ */
.logo {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-text {
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.nav {
  background: linear-gradient(to right, #0d1b2a, #1b263b);
  padding: 18px 0;
}

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

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}
.brand span { color: #f4b400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; font-weight: 600; }

.nav-btn {
  background: #f4b400;
  color: #111 !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  opacity: 1 !important;
}

/* ============ HERO ============ */
.hero {
  padding: 92px 0 70px;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text { max-width: 620px; }

.tag {
  display: inline-block;
  background: #fff4d6;
  color: #f4b400;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.highlight { color: #f4b400; }

.hero p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-video video {
  width: 100%;
  border-radius: 16px;
  margin-top: 20px;
}

.hero-buttons { display: flex; gap: 14px; }

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 26px;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #f4b400;
  color: #fff;
}

.btn-secondary {
  background: #e9ecef;
  color: #333;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.btn-light:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero-image img {
  width: 420px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: block;
}

/* ============ GROWTH ============ */
.growth {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.growth h2 {
  font-size: 32px;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.section-desc {
  color: #777;
  margin: 0 auto 56px;
  max-width: 760px;
  line-height: 1.7;
  font-size: 14px;
}

.growth-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.card {
  background: #f8f9fa;
  padding: 38px 28px;
  border-radius: 16px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

.card .icon { font-size: 32px; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; font-size: 16px; }
.card p { color: #666; font-size: 14px; line-height: 1.6; }

/* ============ CTA ============ */
.cta {
  margin: 80px 0;
}

.cta-wrapper {
  background: #f4b400;
  padding: 70px 56px;
  border-radius: 20px;
}

.cta-text h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.cta-text p {
  color: #333;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 26px;
  font-size: 14px;
}

.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #111;
}

/* ============ FOOTER ============ */
.footer {
  background: #0d1b2a;
  padding: 54px 0;
  color: #fff;
  text-align: center;
}

.footer p { font-size: 14px; opacity: 0.85; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-wrapper { flex-direction: column; text-align: center; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .cta-wrapper { padding: 56px 22px; text-align: center; }
  .cta-text p { margin-left: auto; margin-right: auto; }
  .cta-buttons { justify-content: center; }
}
