/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #222; }
a { text-decoration: none; color: inherit; }

/* ── TOP UTILITY BAR ── */
.top-bar { background: #fff; border-bottom: 1px solid #e5e5e5; padding: 8px 0; }
.top-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { display: flex; align-items: center; gap: 0; }
.top-bar-logo img { height: 100px; }
.top-bar-links { display: flex; align-items: center; gap: 20px; margin-left: 24px; }
.top-bar-links a { font-size: 14px; color: #444; transition: color .2s; }
.top-bar-links a:hover { color: #c8921a; }
.top-bar-search { display: flex; align-items: center; border: 1px solid #ccc; border-radius: 4px; overflow: hidden; }
.top-bar-search input { border: none; outline: none; padding: 6px 12px; font-size: 14px; width: 170px; color: #555; }
.top-bar-search button { border: none; background: #f5f5f5; padding: 6px 10px; cursor: pointer; color: #666; font-size: 16px; line-height: 1; }
.top-bar-search button:hover { background: #e8e8e8; }

/* ── MAIN NAV ── */
.main-nav { background: #fff; border-bottom: 3px solid #c8921a; }
.main-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links li a { display: block; padding: 16px 12px; font-size: 15px; font-weight: 500; color: #333; transition: color .2s, background .2s; }
.nav-links li a:hover, .nav-links li a.active { color: #c8921a; background: #faf6ee; }
.nav-contact { font-size: 15px; font-weight: 700; color: #1b3a5e; }
.nav-contact a { color: #1b3a5e; }
.nav-contact a:hover { color: #c8921a; }

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, #0f1c2e 0%, #1b3a5e 60%, #2a5298 100%);
  padding: 52px 24px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: rgba(200,146,26,0.07);
  border-radius: 50%;
}
.page-banner-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-banner h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.page-banner p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 620px; line-height: 1.6; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.breadcrumb a { color: #c8921a; }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE CONTENT ── */
.page-content { max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.page-content h2 { font-size: 24px; font-weight: 800; color: #1b3a5e; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 3px solid #c8921a; display: inline-block; }
.page-content h3 { font-size: 18px; font-weight: 700; color: #1b3a5e; margin: 28px 0 10px; }
.page-content p { font-size: 17px; line-height: 1.8; color: #222; margin-bottom: 14px; }
.page-content ul { margin: 10px 0 18px 0; padding-left: 20px; }
.page-content ul li { font-size: 15px; line-height: 1.75; color: #444; margin-bottom: 6px; }
.page-content .section-block { margin-bottom: 48px; }

/* ── SHARED BUTTONS ── */
.btn-primary { display: inline-block; background: #c8921a; color: #fff; font-size: 14px; font-weight: 800; padding: 13px 32px; border-radius: 5px; letter-spacing: 1px; text-transform: uppercase; transition: background .2s; }
.btn-primary:hover { background: #a87510; }
.btn-outline { display: inline-block; border: 2px solid #1b3a5e; color: #1b3a5e; font-size: 14px; font-weight: 700; padding: 11px 28px; border-radius: 5px; transition: all .2s; }
.btn-outline:hover { background: #1b3a5e; color: #fff; }

/* ── CARD GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.info-card { background: #f7f9fc; border: 1px solid #e3e8ef; border-radius: 10px; padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.info-card:hover { box-shadow: 0 6px 24px rgba(27,58,94,0.10); transform: translateY(-3px); }
.info-card .icon { font-size: 28px; margin-bottom: 14px; }
.info-card h3 { font-size: 16px; font-weight: 700; color: #1b3a5e; margin-bottom: 10px; }
.info-card p { font-size: 14px; line-height: 1.7; color: #555; }

/* ── HIGHLIGHT BOX ── */
.highlight-box { background: linear-gradient(135deg, #0f1c2e, #1b3a5e); border-radius: 10px; padding: 36px 40px; color: #fff; margin: 40px 0; }
.highlight-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.highlight-box p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.85); }

/* ── APPLICATION GRID ── */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.app-card { display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #0f1c2e, #1b3a5e); border: 2px solid rgba(200,146,26,0.4); border-radius: 12px; padding: 32px 20px; text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.app-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,58,94,0.25); border-color: #c8921a; }
.app-card .app-icon { font-size: 36px; margin-bottom: 12px; color: #c8921a; }
.app-card .app-name { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }

/* ── TWO COLUMN LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 32px; }
.two-col img { width: 100%; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.step { background: #1b3a5e; color: #fff; border-radius: 6px; padding: 10px 18px; font-size: 13px; font-weight: 600; position: relative; }
.step::after { content: '→'; margin-left: 10px; color: #c8921a; }
.step:last-child::after { content: ''; }

/* ── STAT STRIP ── */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: #1b3a5e; border-radius: 10px; overflow: hidden; margin: 40px 0; }
.stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-size: 32px; font-weight: 900; color: #c8921a; }
.stat-item .label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── FOOTER ── */
.site-footer { background: #0f1c2e; color: #ccc; padding: 56px 24px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; }
.footer-brand img { height: 52px; margin-bottom: 18px; filter: brightness(1.1); }
.footer-brand p { font-size: 13.5px; line-height: 1.75; color: #aaa; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #c8921a; display: inline-block; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13.5px; color: #aaa; transition: color .2s; }
.footer-col ul li a:hover { color: #c8921a; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; color: #aaa; line-height: 1.5; }
.footer-contact-list li .icon { color: #c8921a; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-list a { color: #aaa; transition: color .2s; }
.footer-contact-list a:hover { color: #c8921a; }
.footer-bottom { border-top: 1px solid #1e3050; padding: 18px 0; max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12.5px; color: #666; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: #666; transition: color .2s; }
.footer-bottom-links a:hover { color: #c8921a; }

/* ── HAMBURGER MENU ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Top bar */
  .top-bar-logo img { height: 60px; }
  .top-bar-search input { width: 120px; }

  /* Hamburger nav */
  .menu-toggle { display: block; order: 2; margin-left: auto; }
  .main-nav-inner { flex-wrap: wrap; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
  }
  .nav-contact { display: none; }

  /* Page banner */
  .page-banner { padding: 32px 16px; }
  .page-banner h1 { font-size: 24px; }
  .page-banner p { font-size: 14px; }

  /* Page content */
  .page-content { padding: 32px 16px; }
  .page-content h2 { font-size: 20px; }

  /* Two column */
  .two-col { grid-template-columns: 1fr; gap: 24px; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr 1fr; }

  /* Highlight box */
  .highlight-box { padding: 24px 20px; }

  /* Stat strip */
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 16px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .top-bar-logo img { height: 46px; }
  .top-bar-search { display: none; }
  .app-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .page-banner h1 { font-size: 20px; }
}
