:root {
  --navy: #071b3d;
  --navy-2: #0d2a5c;
  --blue: #123d7a;
  --gold: #f6c343;
  --gold-2: #ffe08a;
  --white: #ffffff;
  --muted: #6d7890;
  --light: #f4f7fb;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 24px 70px rgba(7, 27, 61, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: #071b3d; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 110px 0; }
.compact { padding: 88px 0; }

.contact-form button {
    background: #f4c542;
    color: #0d1b2a;
    border: none;
    padding: 16px 34px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(244, 197, 66, 0.25);
}

.contact-form button:hover {
    background: #ffd95e;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(244, 197, 66, 0.35);
}

.contact-form button:active {
    transform: scale(0.98);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand { display: flex; gap: 14px; align-items: center; color: var(--white); }
.brand-mark {
    display: flex;
    align-items: center;
}

.logo {
    height:100px;
    width: auto;
    object-fit: contain;
}
.triangle-eye {
  position: absolute; inset: 13px;
  clip-path: polygon(50% 0, 100% 86%, 0 86%);
  background: rgba(7,27,61,0.92);
}
.triangle-eye::after {
  content: ''; position: absolute; width: 10px; height: 10px; border: 2px solid var(--gold);
  border-radius: 50%; left: 50%; top: 48%; transform: translate(-50%, -50%);
  background: var(--navy);
}
.star { position: absolute; color: var(--white); font-size: 8px; line-height: 1; }
.star-1 { right: 8px; top: 8px; }
.star-2 { right: 7px; bottom: 11px; }
.star-3 { left: 8px; bottom: 10px; }
.brand-text strong { display: block; font-size: 1.35rem; letter-spacing: 0.13em; }
.brand-text small { display: block; color: rgba(255,255,255,0.72); margin-top: -4px; }

.main-nav { display: flex; gap: 28px; align-items: center; color: rgba(255,255,255,0.86); font-size: 0.95rem; }
.main-nav a:hover { color: var(--gold); }
.nav-cta { padding: 11px 18px; border: 1px solid #071b3d; border-radius: 999px; color: #071b3d !important; }
.nav-toggle { display: none; border: 0; background: #071b3d; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 6px 0; background: var(--white); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  background:
    radial-gradient(circle at 15% 18%, rgba(246,195,67,0.18), transparent 27%),
    radial-gradient(circle at 78% 28%, rgba(44,93,170,0.32), transparent 32%),
    linear-gradient(135deg, #061632 0%, #0b2452 58%, #071b3d 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.5rem, 3.5vw, 5rem); line-height: 0.95; letter-spacing: -0.07em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -0.055em; margin-bottom: 22px; }
h3 { font-size: 1.18rem; margin-bottom: 12px; }
.hero-lead { color: rgba(255,255,255,0.78); font-size: 1.13rem; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; font-weight: 800; transition: 0.25s ease; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 14px 34px rgba(246,195,67,0.25); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-2); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.22); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-light { background: var(--white); color: var(--navy); }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row span { border: 1px solid rgba(255,255,255,0.15); padding: 8px 12px; border-radius: 999px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.hero-visual { position: relative; min-height: 560px; }
.hero-visual img, .band-image img, .map-card img {
  width: 100%; height: 100%; min-height: 420px; object-fit: cover;
  border-radius: 34px; background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-visual::before {
  content: ''; position: absolute; inset: 42px -26px -24px 46px; border: 1px solid rgba(246,195,67,0.45); border-radius: 34px; z-index: 0;
}
.hero-visual img, .visual-card { position: relative; z-index: 1; }
.visual-card {
  position: absolute; width: 230px; padding: 18px; border-radius: 22px;
  background: rgba(255,255,255,0.92); color: var(--navy); box-shadow: var(--shadow);
}
.visual-card small { display: block; color: var(--muted); margin-top: 4px; }
.top-card { top: 38px; left: -26px; }
.bottom-card { right: -18px; bottom: 48px; }
.dot { display: inline-block; width: 10px; height: 10px; background: #2fd27c; border-radius: 50%; margin-right: 8px; }

.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.split-grid.reverse { grid-template-columns: 1fr 1fr; align-items: center; }
.text-block, .section-heading p, .band-content p, .contact-info p { color: var(--muted); font-size: 1.04rem; }
.center-heading { text-align: center; max-width: 760px; margin: 0 auto 54px; }

.stats-strip { background: var(--light); padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { display: flex; gap: 16px; align-items: center; padding: 22px; background: var(--white); border-radius: 24px; box-shadow: 0 12px 34px rgba(7,27,61,0.06); }
.stat strong { color: var(--gold); font-size: 1.4rem; }
.stat span { font-weight: 700; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 32px; border: 1px solid #e8edf5; border-radius: 30px; background: var(--white); transition: 0.25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(246,195,67,0.45); }
.card-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 16px; background: var(--navy); color: var(--gold); margin-bottom: 24px; font-size: 1.35rem; }
.service-card p, .timeline-item p { color: var(--muted); margin-bottom: 0; }

.image-band { background: var(--navy); color: var(--white); padding: 90px 0; overflow: hidden; }
.image-band-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.band-content p { color: rgba(255,255,255,0.74); }
.band-image img { min-height: 380px; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: item; }
.timeline-item { position: relative; padding: 30px; border-radius: 28px; background: var(--light); min-height: 230px; }
.timeline-item span { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--gold); color: var(--navy); border-radius: 50%; font-weight: 900; margin-bottom: 28px; }

.markets { background: var(--light); }
.map-card { position: relative; min-height: 430px; }
.map-card img { border: 1px solid #dfe7f2; background: linear-gradient(135deg, #dce7f5, #ffffff); }
.route-line { position: absolute; width: 68%; height: 2px; background: var(--gold); left: 16%; top: 48%; transform: rotate(-14deg); box-shadow: 0 0 22px rgba(246,195,67,0.8); }
.route-line::before, .route-line::after { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--navy); top: 50%; transform: translateY(-50%); border: 3px solid var(--gold); }
.route-line::before { left: 0; } .route-line::after { right: 0; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { margin: 12px 0; padding-left: 32px; position: relative; font-weight: 700; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

.cta-section { background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); padding: 60px 0; }
.cta-box { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.cta-box h2 { max-width: 780px; margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.contact-list { display: grid; gap: 12px; margin-top: 30px; font-weight: 800; }
.contact-list a:hover { color: var(--blue); }
.contact-form { background: var(--light); border-radius: 34px; padding: 34px; display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #dce4ef; border-radius: 16px; padding: 14px 16px; font: inherit; outline: none; background: var(--white); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(18,61,122,0.08); }
.contact-form small { color: var(--muted); }

.site-footer { background: #051226; color: rgba(255,255,255,0.72); padding: 30px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-grid strong { color: var(--gold); margin-right: 10px; }
.footer-grid p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 82px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid #071b3d; border-radius: 24px; padding: 20px; }
  .main-nav.open { display: flex; }
  .hero-grid, .split-grid, .split-grid.reverse, .image-band-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-visual { min-height: 430px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-box, .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 78px 0; }
  .brand-text small { display: none; }
  .cards-grid, .timeline, .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual::before { display: none; }
  .visual-card { position: static; width: auto; margin-top: 14px; }
  h1 { font-size: 3rem; }
  .contact-form { padding: 24px; }
}
