﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1a4e; --navy2: #111c52; --blue: #1a3bcc;
  --gold: #e89a10; --gold-light: #f5b820;
  --white: #ffffff; --light: #f4f6ff;
  --text: #1a2040; --muted: #6b7a99; --radius: 12px;
  --shadow: 0 8px 32px rgba(13,26,78,.12);
}
body { font-family: "Inter", sans-serif; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* NAV */
nav.main-nav { position: sticky; top: 0; z-index: 9999; background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px; box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg,#f5b820,#e89a10);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: var(--navy); flex-shrink: 0; }
.logo-text strong { color: #fff; font-size: 14px; display: block; }
.logo-text span { color: #a0aec0; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a, .nav-drop > a { color: #ffffff; font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px; transition: all .2s; white-space: nowrap;
  display: flex; align-items: center; gap: 5px; }
.nav-links > a:hover, .nav-drop > a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-links > a.active { color: #fbbf24 !important; font-weight: 800; }
.nav-drop { position: relative; }
.nav-drop > a::after { content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 10px; }
.drop-menu { display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border-radius: 10px; min-width: 220px;
  box-shadow: 0 16px 48px rgba(13,26,78,.18); padding: 8px 0; z-index: 999; }
.drop-menu.wide { min-width: 480px; display: none; flex-wrap: wrap; }
.drop-menu.wide a { width: 50%; }
.drop-menu a { display: block; padding: 10px 18px; color: #111827 !important;
  font-size: 13px; font-weight: 600; transition: background .15s, color .15s; border-radius: 0; }
.drop-menu a:hover { background: var(--light) !important; color: var(--blue) !important; }
.nav-drop:hover .drop-menu { display: block; }
.nav-drop:hover .drop-menu.wide { display: flex; }
.btn-consult { background: linear-gradient(135deg,#f5b820 0%,#e89a10 50%,#d4850a 100%);
  color: var(--navy); font-weight: 800; font-size: 13px; padding: 10px 22px;
  border-radius: 7px; white-space: nowrap; box-shadow: 0 4px 16px rgba(232,154,16,.4); transition: all .2s; }
.btn-consult:hover { background: linear-gradient(135deg,#ffca30,#f5b820,#e89a10); transform: translateY(-1px); }

/* PAGE HERO */
.page-hero { background: linear-gradient(110deg,#0a1235 0%,#0d1a4e 40%,#1a2f7a 100%);
  padding: 70px 5% 60px; }
.page-hero .section-label { color: var(--gold-light); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.page-hero h1 { color: #fff; font-size: clamp(32px,4.5vw,54px); font-weight: 800;
  line-height: 1.15; margin-bottom: 16px; -webkit-font-smoothing: antialiased; }
.page-hero h1 .gold { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,.9); font-size: 16px; line-height: 1.75; max-width: 600px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; align-items: center; }

/* BUTTONS */
.btn-primary { background: linear-gradient(135deg,#f5b820 0%,#e89a10 50%,#d4850a 100%);
  color: var(--navy); font-weight: 800; font-size: 14px; padding: 13px 28px;
  border-radius: 8px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(232,154,16,.45); transition: all .2s; }
.btn-primary:hover { background: linear-gradient(135deg,#ffca30,#f5b820,#e89a10); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4);
  font-weight: 700; font-size: 14px; padding: 11px 24px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--navy); color: var(--navy); font-weight: 700; font-size: 13px;
  padding: 10px 20px; border-radius: 8px; transition: all .2s; }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* SECTIONS */
.section-pad { padding: 70px 5%; }
.section-label { color: var(--blue); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(28px,3.5vw,42px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 15px; max-width: 580px; margin: 0 auto; }
h2 { font-size: clamp(26px,3vw,38px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
p { color: var(--muted); line-height: 1.75; font-size: 15px; }
.underline-bar { width: 48px; height: 4px; background: var(--gold); border-radius: 2px; margin-top: 12px; }
.underline-bar.center { margin: 12px auto 0; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cards-grid.col4 { grid-template-columns: repeat(4,1fr); }
.cards-grid.col2 { grid-template-columns: repeat(2,1fr); }
.card { border: 1.5px solid #e8edf8; border-radius: var(--radius); padding: 28px 24px;
  background: #fff; transition: box-shadow .2s, border-color .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-3px); }
.card-icon { width: 52px; height: 52px; background: var(--light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--blue); margin-bottom: 16px; }
.card h3 { color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 13px; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ""; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(to right,var(--blue),var(--gold)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(26,59,204,.3); }
.step-num { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.step h3 { font-size: 15px; margin-bottom: 8px; }
.step p { font-size: 13px; max-width: 180px; margin: 0 auto; }

/* STATS BAR */
.stats-bar { background: linear-gradient(110deg,#0a1235 0%,#0d1a4e 50%,#1a2f7a 100%);
  display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { display: flex; align-items: center; gap: 14px; padding: 30px 28px;
  border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(26,59,204,.3);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; }
.stat-num { color: #fff; font-size: clamp(24px,3vw,36px); font-weight: 800; line-height: 1; }
.stat-label { color: #8a96bb; font-size: 13px; margin-top: 4px; }

/* TRUST BAR */
.trust-bar { background: linear-gradient(110deg,#111c52 0%,#162060 100%);
  display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.06); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.07); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(26,59,204,.25);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; flex-shrink: 0; }
.trust-text strong { color: #fff; font-size: 13px; font-weight: 700; display: block; }
.trust-text span { color: #8a96bb; font-size: 12px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1.5px solid #e8edf8; border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 18px 22px; font-weight: 700; color: var(--navy); font-size: 15px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q i { color: var(--blue); transition: transform .3s; }
.faq-a { padding: 0 22px 18px; color: var(--muted); font-size: 14px; line-height: 1.75; }

/* SPLIT LAYOUT */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.visual-box { background: linear-gradient(135deg,var(--light),#e8edf8); border-radius: 16px;
  padding: 40px; min-height: 340px; display: flex; flex-direction: column;
  justify-content: center; gap: 16px; }
.visual-box .v-card { background: #fff; border-radius: 10px; padding: 18px;
  display: flex; align-items: center; gap: 14px; box-shadow: 0 4px 16px rgba(13,26,78,.08); }
.visual-box .v-card i { font-size: 22px; color: var(--blue); }
.visual-box .v-card strong { color: var(--navy); display: block; font-size: 14px; }
.visual-box .v-card span { color: var(--muted); font-size: 12px; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px;
  color: var(--text); font-size: 14px; }
.check-list li i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(110deg,#0a1235 0%,#0d1a4e 60%,#1a2f7a 100%);
  padding: 42px 5%; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-left { display: flex; align-items: center; gap: 20px; }
.cta-icon { width: 54px; height: 54px; border-radius: 12px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; }
.cta-left h2 { color: #fff; font-size: clamp(18px,2.5vw,26px); font-weight: 800; }
.cta-left h2 .gold { color: var(--gold-light); }
.cta-mid { color: rgba(255,255,255,.7); font-size: 14px; max-width: 280px; }

/* FOOTER */
footer { background: #080f30; padding: 50px 5% 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 36px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .logo-icon { width: 40px; height: 40px; font-size: 15px; }
.footer-desc { color: #8a96bb; font-size: 13px; line-height: 1.75; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
.footer-col a { display: block; color: #8a96bb; font-size: 13px; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; color: #8a96bb;
  font-size: 13px; margin-bottom: 10px; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: #8a96bb; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: #5a6480; font-size: 12px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center; color: #8a96bb; font-size: 13px;
  transition: all .2s; }
.social-link:hover { background: var(--blue); color: #fff; }

/* ABOUT PAGE SPECIFICS */
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.value-item { display: flex; align-items: center; gap: 10px; font-size: 14px;
  color: var(--text); font-weight: 500; }
.value-item i { color: var(--blue); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.team-card { border: 1.5px solid #e8edf8; border-radius: var(--radius); padding: 30px 24px;
  text-align: center; transition: box-shadow .2s, transform .2s; }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; margin: 0 auto 16px; }
.team-card h3 { color: var(--navy); margin-bottom: 4px; font-size: 16px; }
.team-card span { color: var(--blue); font-size: 12px; font-weight: 600; display: block; margin-bottom: 10px; }
.team-card p { font-size: 13px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form { background: var(--light); border-radius: 16px; padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1.5px solid #e8edf8; border-radius: 8px;
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  color: var(--text); background: #fff; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-info-card { background: linear-gradient(135deg,#0a1235,#1a2f7a); border-radius: 16px; padding: 36px; color: #fff; }
.contact-info-card h3 { color: #fff; margin-bottom: 24px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ci-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold-light); flex-shrink: 0; }
.ci-item strong { color: #fff; display: block; font-size: 13px; margin-bottom: 3px; }
.ci-item a, .ci-item span { color: rgba(255,255,255,.8); font-size: 13px; }

/* ── HAMBURGER BUTTON ───────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  padding: 8px; z-index: 10001; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TABLET (<=1024px) ──────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid.col4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .split-layout { gap: 36px; }
}

/* ── MOBILE NAV DRAWER (<=900px) ────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .btn-consult { display: none !important; }

  .nav-links {
    position: fixed !important;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: #0d1a4e;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 16px 0 40px;
    overflow-y: auto;
    z-index: 9999;
    gap: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav-links.is-open {
    opacity: 1; visibility: visible; transform: translateY(0); display: flex !important;
  }
  .nav-links > a {
    display: block !important; width: 100%;
    padding: 15px 24px !important; font-size: 15px !important;
    border-radius: 0 !important; border-bottom: 1px solid rgba(255,255,255,.08);
    color: #fff !important; white-space: normal;
  }
  .nav-drop { width: 100%; }
  .nav-drop > a {
    display: flex !important; width: 100%;
    padding: 15px 24px !important; font-size: 15px !important;
    border-radius: 0 !important; border-bottom: 1px solid rgba(255,255,255,.08);
    justify-content: space-between; color: #fff !important;
  }
  .drop-menu, .drop-menu.wide {
    position: static !important; display: none !important;
    flex-direction: column !important; flex-wrap: nowrap !important;
    box-shadow: none !important; border-radius: 0 !important;
    min-width: 100% !important; background: rgba(255,255,255,.05) !important;
    padding: 4px 0 8px 0 !important;
  }
  .nav-drop.sub-open > .drop-menu,
  .nav-drop.sub-open > .drop-menu.wide { display: flex !important; }

  .drop-menu a {
    color: rgba(255,255,255,.78) !important; font-size: 13px !important;
    padding: 11px 36px !important; border-bottom: 1px solid rgba(255,255,255,.05) !important;
    width: 100% !important; border-radius: 0 !important;
  }
  .drop-menu a:hover { color: #fbbf24 !important; background: rgba(255,255,255,.06) !important; }
  .nav-drop > a::after { margin-left: auto; }

  .split-layout, .contact-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .split-layout.reverse { direction: ltr; }
  .stats-bar, .trust-bar { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .about-values { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-left { flex-direction: column; text-align: center; }
  .cta-mid { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section-pad { padding: 48px 5%; }
  .page-hero { padding: 50px 5% 44px; }
  .page-hero h1 { font-size: clamp(26px,6vw,40px); }
}

/* ── SMALL MOBILE (<=600px) ─────────────────────── */
@media (max-width: 600px) {
  .cards-grid, .steps-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-bar, .trust-bar { grid-template-columns: 1fr 1fr; }
  .stat-item, .trust-item { padding: 18px 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .section-pad { padding: 36px 4%; }
  .page-hero { padding: 40px 4% 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  h2 { font-size: clamp(22px,5.5vw,32px); }
  .section-head h2 { font-size: clamp(22px,5.5vw,32px); }
  form [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

