/* ── Reset & base ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #1a2740;
}

a { text-decoration: none; color: inherit; }

/* ── Navbar ───────────────────────────────────────────────────── */
.navbar {
  background: linear-gradient(135deg, #0b1d3d 0%, #1a4f8c 100%);
  border-bottom: 1px solid rgba(77,184,255,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon { flex-shrink: 0; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #6b9ec5;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.nav-active { color: #fff; }

.nav-dropdown-btn {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color .2s;
}
.nav-dropdown-btn:hover { color: #fff !important; }

.caret { font-size: 0.75rem; vertical-align: middle; }

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.icon-btn {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 6px;
  transition: color .2s;
}
.icon-btn:hover { color: #fff; }

.flag-btn {
  font-size: 1.1rem;
  padding: 4px 6px;
}

/* Contact button on dark (nav) background */
.btn-contact {
  background: #fff;
  color: #0b1d3d;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.btn-contact:hover { background: #e2edf7; }

/* Contact button on light background (e.g. CTA sections) */
.btn-contact-dark {
  background: #1a4f8c;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background .2s;
}
.btn-contact-dark:hover { background: #0b3a6e; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(11,29,61,0.92) 0%, rgba(26,79,140,0.88) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80')
      center/cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 32px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.8); }

/* ── Hero text ────────────────────────────────────────────────── */
.hero-text { flex: 1; min-width: 0; }

.hero-text h1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #0b1d3d;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background .2s;
  margin-bottom: 36px;
}
.btn-primary:hover { background: #dbe8f5; }

/* Star list */
.star-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.star-list li {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.star {
  color: #6b9ec5;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Hero image ───────────────────────────────────────────────── */
.hero-image {
  flex-shrink: 0;
  width: 420px;
  max-width: 100%;
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ── How it works ─────────────────────────────────────────────── */
.how-it-works {
  background: #fff;
  padding: 64px 32px 24px;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-inner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a2740;
  display: flex;
  align-items: center;
  gap: 16px;
}

.underline-bar {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #6b9ec5;
  border-radius: 2px;
  vertical-align: middle;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 800px) {
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-image { width: 100%; }
  .nav-links { display: none; }
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon { flex-shrink: 0; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #6b9ec5;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.caret { font-size: 0.75rem; vertical-align: middle; }

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.icon-btn {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 6px;
  transition: color .2s;
}
.icon-btn:hover { color: #fff; }

.flag-btn {
  font-size: 1.1rem;
  padding: 4px 6px;
}

.btn-contact {
  background: #fff;
  color: #0b1d3d;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.btn-contact:hover { background: #e2edf7; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(11,29,61,0.92) 0%, rgba(26,79,140,0.88) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80')
      center/cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 32px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.8); }

/* ── Hero text ────────────────────────────────────────────────── */
.hero-text { flex: 1; min-width: 0; }

.hero-text h1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-text p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #0b1d3d;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background .2s;
  margin-bottom: 36px;
}
.btn-primary:hover { background: #dbe8f5; }

/* Star list */
.star-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.star-list li {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.star {
  color: #6b9ec5;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Hero image ───────────────────────────────────────────────── */
.hero-image {
  flex-shrink: 0;
  width: 420px;
  max-width: 100%;
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ── How it works ─────────────────────────────────────────────── */
.how-it-works {
  background: #fff;
  padding: 64px 32px 24px;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-inner h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a2740;
  display: flex;
  align-items: center;
  gap: 16px;
}

.underline-bar {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #6b9ec5;
  border-radius: 2px;
  vertical-align: middle;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 800px) {
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-image { width: 100%; }
  .nav-links { display: none; }
}
