/* ── MSME Prime — Shared Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1e3a5f;
  --navy-dark:  #122540;
  --navy-light: #2a4f82;
  --sky:        #0ea5e9;
  --sky-dark:   #0284c7;
  --gold:       #f59e0b;
  --green:      #10b981;
  --red:        #ef4444;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --bg:         #ffffff;
  --bg-subtle:  #f8fafc;
  --bg-dark:    #0f1e35;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; }

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  text-align: center;
  padding: 8px 24px;
  letter-spacing: 0.01em;
}
.announce-bar strong { color: var(--gold); }
.announce-bar a { color: var(--sky); font-weight: 600; }
.announce-bar a:hover { text-decoration: underline; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 9px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'><defs><linearGradient id='g' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%231e3a5f'/><stop offset='1' stop-color='%23122540'/></linearGradient></defs><rect width='44' height='44' rx='9' fill='url(%23g)'/><circle cx='15' cy='11' r='1.4' fill='%23f59e0b'/><circle cx='22' cy='8.5' r='1.7' fill='%23f59e0b'/><circle cx='29' cy='11' r='1.4' fill='%23f59e0b'/><path d='M10.5 33 L10.5 17.5 L15 17.5 L22 26.5 L29 17.5 L33.5 17.5 L33.5 33' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Hide any fallback text inside the div */
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(30,58,95,0.18);
}
.logo-text {
  font-size: 1.15rem; font-weight: 800;
  color: var(--navy); line-height: 1.1;
}
.logo-text .accent {
  color: var(--gold);
}
.logo-text span {
  display: block; font-size: 0.6rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 2px;
}
.header-nav {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.header-nav a {
  padding: 7px 13px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--muted); border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active { color: var(--navy); background: var(--bg-subtle); }
.header-nav a.active { font-weight: 700; }
.header-actions {
  display: flex; align-items: center; gap: 10px;
}
.btn-ghost {
  padding: 8px 18px; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); border: 1.5px solid var(--border);
  border-radius: 8px; background: transparent; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--bg-subtle); }
.btn-primary {
  padding: 8px 20px; font-size: 0.85rem; font-weight: 700;
  color: #fff; background: var(--navy); border: none;
  border-radius: 8px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--bg-subtle); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
}
.section-tag {
  display: inline-block;
  background: rgba(14,165,233,0.1); color: var(--sky-dark);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 12px; border-radius: 100px;
  margin-bottom: 10px;
}
.section-tag.gold {
  background: rgba(245,158,11,0.12); color: #b45309;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 12px;
}
.section-sub {
  font-size: 0.975rem; color: var(--muted);
  max-width: 580px; line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--navy-dark);
  padding: 13px 28px; border-radius: 8px;
  font-weight: 800; font-size: 0.9rem;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.btn-navy {
  background: var(--navy); color: #fff;
  padding: 13px 28px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-sky {
  background: var(--sky); color: #fff;
  padding: 13px 28px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  border: none; cursor: pointer;
  transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-sky:hover { background: var(--sky-dark); }
.btn-outline {
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  border: 2px solid var(--navy); cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 13px 24px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── CHECK LIST ── */
.check-list {
  display: flex; flex-direction: column; gap: 10px;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text); line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 60px 24px 28px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-name {
  font-size: 1.1rem; font-weight: 800; color: #fff;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.75; margin-bottom: 16px; }
.footer-col h4 {
  color: #fff; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: #94a3b8; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: #94a3b8; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--muted);
}
.breadcrumb-inner a { color: var(--sky-dark); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 56px 16px; }
}
