@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
  --primary: #0D2461;
  --primary-light: #1a3a7c;
  --accent: #3D6BE4;
  --accent-light: #5b87f5;
  --dark-bar: #0D1F4E;
  --light-bg: #F5F7FA;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --gold: #C9A84C;
  --shadow-sm: 0 1px 3px rgba(13,36,97,0.08);
  --shadow-md: 0 4px 20px rgba(13,36,97,0.12);
  --shadow-lg: 0 10px 40px rgba(13,36,97,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--primary); }
.nav-logo-text span { font-size: 10px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
  background: rgba(61,107,228,0.06);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

/* ─── Language Dropdown ─────────────────────────────────── */
.lang-dropdown { position: relative; }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 150px;
  z-index: 9999;
  overflow: hidden;
}
.lang-dropdown.open .lang-dropdown-menu { display: block; }
.lang-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  transition: background 0.15s;
}
.lang-dropdown-menu a:hover { background: var(--light-bg); }
.lang-dropdown-menu a.lang-active { font-weight: 700; color: var(--accent); }

/* Mobile trigger: hidden on desktop, shown on mobile */
.lang-mobile-trigger { display: none; }
@media (max-width: 768px) {
  .lang-mobile-trigger { display: flex; align-items: center; }
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.btn-outline:hover { background: var(--primary); color: white; }

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.btn-outline-white:hover { background: white; color: var(--primary); }

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

/* ─── HEADINGS ─── */
h1, h2, h3 { font-family: 'Manrope', sans-serif; font-weight: 800; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(32px, 4vw, 52px); }
h2 { font-size: clamp(26px, 3vw, 40px); }
h3 { font-size: 20px; }

.italic-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark-bar);
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.stat-item { text-align: center; color: white; }
.stat-item .stat-number { font-size: 28px; font-weight: 800; display: block; color: white; }
.stat-item .stat-label { font-size: 12px; opacity: 0.7; }

/* ─── CARDS ─── */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ─── FEATURE LIST ─── */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text);
}

.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark-bar);
  color: white;
  padding: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-about p { font-size: 13px; opacity: 0.7; margin-top: 14px; line-height: 1.8; }

.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.5; margin-bottom: 16px; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13.5px; transition: var(--transition); }
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  opacity: 0.5;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--dark-bar);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-banner h3 { color: white; font-size: 22px; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 4px; }

/* ─── ICON CIRCLE ─── */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(61,107,228,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
}

/* ─── MINI FEATURES BAR ─── */
.mini-features-bar {
  background: var(--dark-bar);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.mini-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.mini-feature-text strong { display: block; font-size: 14px; font-weight: 600; }
.mini-feature-text span { font-size: 11.5px; opacity: 0.6; }

.mini-feature-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ─── SECTION PADDING ─── */
.section { padding: 80px 60px; }
.section-sm { padding: 50px 60px; }
.section-center { text-align: center; }

/* ─── GRID HELPERS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── TAG ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(61,107,228,0.1);
  color: var(--accent);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── STEP ─── */
.step-number {
  font-size: 52px;
  font-weight: 800;
  color: rgba(13,36,97,0.08);
  line-height: 1;
  display: block;
}

/* ─── CHECKLIST ─── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text);
}
.checklist li .check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  color: white; font-size: 11px;
}

/* ─── MOBILE HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── MOBILE NAV DRAWER ─── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-lg);
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  display: block;
  padding: 13px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}

.nav-drawer a:hover { background: var(--light-bg); color: var(--accent); }
.nav-drawer a.active { color: var(--accent); font-weight: 700; }

.nav-drawer .drawer-cta {
  margin-top: 16px;
  background: var(--primary);
  color: white;
  text-align: center;
  border-bottom: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 700;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 12.5px; padding: 6px 8px; }
  .section { padding: 60px 40px; }
  .section-sm { padding: 40px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
  .stats-bar { padding: 20px 30px; }
  .mini-features-bar { padding: 18px 30px; }
  .cta-banner { padding: 32px 40px; }
}

@media (max-width: 768px) {
  /* NAV */
  nav { height: 60px; padding: 0 18px; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-logo-text strong { font-size: 13px; }

  /* TYPOGRAPHY */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }

  /* SECTION */
  .section { padding: 48px 18px; }
  .section-sm { padding: 32px 18px; }

  /* GRIDS */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  /* STATS BAR */
  .stats-bar {
    padding: 20px 18px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .stat-item .stat-number { font-size: 22px; }

  /* MINI FEATURES */
  .mini-features-bar {
    padding: 16px 18px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .mini-feature-divider { display: none; }

  /* CTA BANNER */
  .cta-banner {
    padding: 28px 18px;
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .cta-banner h3 { font-size: 18px; }

  /* FOOTER */
  footer { padding: 40px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid .footer-about { grid-column: span 2; }
  .footer-grid .footer-col:last-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* BUTTONS */
  .btn-primary, .btn-outline { padding: 11px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 21px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-about { grid-column: span 1; }
  .footer-grid .footer-col:last-child { grid-column: span 1; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }
