@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1B3A6B;
  --primary-dark: #122850;
  --primary-light: #2a5299;
  --accent: #2D8653;
  --accent-light: #3aa066;
  --bg-light: #F4F5F7;
  --bg-white: #FFFFFF;
  --text-main: #1E2B3A;
  --text-muted: #6B7A8D;
  --text-light: #9BAABB;
  --border: #E1E5EC;
  --border-light: #EEF0F4;
  --shadow-sm: 0 1px 3px rgba(27,58,107,0.08);
  --shadow-md: 0 4px 16px rgba(27,58,107,0.10);
  --shadow-lg: 0 8px 32px rgba(27,58,107,0.13);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.25; color: var(--primary); }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); }
p { margin-bottom: 1rem; color: var(--text-main); }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT HELPERS ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.bg-white { background: var(--bg-white); }
.bg-light { background: var(--bg-light); }
.bg-primary { background: var(--primary); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 52px; }
.section-header.text-center { max-width: 640px; margin: 0 auto 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }
.section-header.text-center p { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: 28px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--bg-light); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  color: var(--text-main);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }
.header-cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.2s; }

/* ===== HERO ===== */
.hero {
  background: var(--primary);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48%;
  background: url('../images/hero-banner.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-value {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--primary);
  padding: 60px 0 52px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.04));
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.4; }

/* ===== FEATURES / ICON CARDS ===== */
.icon-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}
.icon-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(27,58,107,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.icon-box.accent { background: rgba(45,134,83,0.1); }
.icon-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.icon-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===== INFO SPLIT (image + text) ===== */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.info-split.reverse .info-split-img { order: 2; }
.info-split.reverse .info-split-text { order: 1; }
.info-split-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.info-list { margin-top: 24px; }
.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.info-list-item:last-child { border-bottom: none; }
.info-list-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.info-list-item p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }
.info-list-item strong { display: block; color: var(--text-main); font-size: 0.95rem; margin-bottom: 2px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item-val {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
}
.stat-item-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 6px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step { text-align: center; padding: 28px 20px; position: relative; }
.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 { margin-bottom: 10px; font-size: 1rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ===== BLOG CARDS ===== */
.blog-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); transition: all 0.2s ease; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.8rem; color: var(--text-muted); }
.blog-category { color: var(--accent); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a { color: var(--primary); transition: color 0.15s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; }
.read-more { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
.read-more:hover { gap: 10px; }

/* ===== ACCORDION / FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s;
  user-select: none;
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon { font-size: 1.2rem; color: var(--accent); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===== TEAM CARDS ===== */
.team-card { text-align: center; }
.team-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.team-card-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.team-card-role { font-size: 0.85rem; color: var(--accent); font-weight: 500; margin-bottom: 10px; }
.team-card-bio { font-size: 0.87rem; color: var(--text-muted); }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(27,58,107,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail-value { font-size: 0.97rem; font-weight: 500; }
.contact-form { background: var(--bg-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--text-main); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-main);
  background: var(--bg-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,58,107,0.08); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #e8f7ef;
  border: 1px solid #a8d5bc;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  color: #1a6b40;
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ===== TABLE STYLES ===== */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--primary); color: #fff; padding: 14px 18px; text-align: left; font-weight: 600; font-size: 0.85rem; }
.data-table td { padding: 13px 18px; border-bottom: 1px solid var(--border-light); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--bg-light); }
.data-table tr:hover td { background: #f0f4fb; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }

/* ===== ALERT BOXES ===== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin: 20px 0;
  font-size: 0.9rem;
}
.alert-info { background: #eff5ff; border-color: var(--primary); color: #1a3460; }
.alert-success { background: #edf7f1; border-color: var(--accent); color: #1a5432; }
.alert-warning { background: #fff9eb; border-color: #e9a800; color: #7a5200; }

/* ===== QUOTE / HIGHLIGHT ===== */
.pullquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  background: rgba(45,134,83,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
}

/* ===== TAG / BADGE ===== */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(27,58,107,0.08);
  color: var(--primary);
}
.tag-green { background: rgba(45,134,83,0.1); color: var(--accent); }

/* ===== CHART PLACEHOLDER ===== */
.chart-block {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}
.chart-block h4 { margin-bottom: 24px; }
.bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 180px; }
.bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar-fill {
  width: 100%;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  min-height: 12px;
  transition: height 0.6s ease;
}
.bar-fill.accent { background: var(--accent); }
.bar-label { font-size: 0.75rem; color: var(--text-muted); }
.bar-value { font-size: 0.78rem; font-weight: 600; color: var(--primary); }

/* ===== SIDEBAR ===== */
.content-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.sidebar-widget {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}
.sidebar-widget h4 { margin-bottom: 16px; font-size: 0.95rem; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-links a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.sidebar-links a:hover, .sidebar-links a.active { background: var(--bg-light); color: var(--primary); font-weight: 500; }
.sidebar-links a::before { content: '›'; color: var(--accent); font-size: 1rem; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--primary);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-strip-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0F2245;
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.15); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.footer-contact-mini { font-size: 0.85rem; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a { color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-contact-mini a:hover { color: #fff; }
.footer-col h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== ARTICLE / CONTENT ===== */
.article-content { font-size: 0.97rem; line-height: 1.8; }
.article-content h2 { margin: 36px 0 14px; font-size: 1.6rem; }
.article-content h3 { margin: 28px 0 12px; font-size: 1.2rem; }
.article-content p { margin-bottom: 1.1rem; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 1.1rem; }
.article-content li { margin-bottom: 8px; color: var(--text-muted); }
.article-content strong { color: var(--text-main); }

/* ===== POLICY PAGES ===== */
.policy-content { background: var(--bg-white); border-radius: var(--radius-lg); padding: 52px; border: 1px solid var(--border-light); }
.policy-content h2 { font-size: 1.45rem; margin: 40px 0 14px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.policy-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.policy-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--text-main); }
.policy-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.policy-content ul { padding-left: 20px; margin-bottom: 1rem; }
.policy-content li { color: var(--text-muted); margin-bottom: 6px; font-size: 0.92rem; }
.policy-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }

/* ===== SITEMAP ===== */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-section h4 { font-size: 0.95rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.sitemap-section ul { display: flex; flex-direction: column; gap: 8px; }
.sitemap-section li a { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; transition: color 0.15s; }
.sitemap-section li a:hover { color: var(--primary); }
.sitemap-section li a::before { content: '→'; color: var(--accent); font-size: 0.8rem; }

/* ===== RESOURCES ===== */
.resource-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.2s;
}
.resource-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.resource-icon {
  width: 48px; height: 48px;
  background: rgba(27,58,107,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.resource-meta { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 990;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 1100;
  padding: 24px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-main); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a { padding: 13px 16px; font-size: 1rem; border-radius: var(--radius-md); color: var(--text-main); font-weight: 500; border-bottom: 1px solid var(--border-light); }
.mobile-nav-links a:hover { background: var(--bg-light); color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .info-split { grid-template-columns: 1fr; gap: 32px; }
  .info-split.reverse .info-split-img { order: 0; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
  .policy-content { padding: 28px 20px; }
  .contact-form { padding: 28px 20px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
}

/* auto-aliases R13 */
:root {
  --green: #22c55e;
  --navy: #1e3a5f;
  --text-body: #334155;
  --text-dark: #0f172a;
}
