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

/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --dark-blue: #1B2E4B;
  --accent-blue: #2B4C7E;
  --light-blue: #EEF2F8;
  --orange: #E87322;
  --orange-dark: #C85E0A;
  --orange-light: #FFF3EA;
  --white: #ffffff;
  --off-white: #F8F9FB;
  --light-gray: #F0F2F5;
  --medium-gray: #E2E5EA;
  --text-dark: #1A2232;
  --text-medium: #4A5568;
  --text-light: #718096;
  --border: #D0D5DE;
  --shadow: 0 2px 12px rgba(27,46,75,0.08);
  --shadow-md: 0 4px 24px rgba(27,46,75,0.12);
  --shadow-lg: 0 8px 40px rgba(27,46,75,0.16);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.25s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.0625rem; }

p { margin-bottom: 1rem; color: var(--text-medium); line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.bg-off-white { background: var(--off-white); }
.bg-dark-blue { background: var(--dark-blue); }
.bg-light { background: var(--light-gray); }
.text-center { text-align: center; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--medium-gray);
  height: var(--header-height);
  display: flex; align-items: center;
  box-shadow: 0 1px 8px rgba(27,46,75,0.06);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-mark {
  width: 36px; height: 36px; background: var(--dark-blue);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}

.logo-mark span { color: var(--orange); font-weight: 800; font-size: 18px; letter-spacing: -1px; }

.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 20px; font-weight: 800; color: var(--dark-blue); letter-spacing: -0.5px; line-height: 1; }
.logo-tagline { font-size: 10px; color: var(--text-light); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500; line-height: 1; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-link {
  font-size: 13.5px; font-weight: 500; color: var(--text-medium);
  padding: 8px 13px; border-radius: 6px;
  transition: var(--transition); white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: var(--dark-blue); background: var(--light-gray); }

.nav-dropdown { position: relative; }

.nav-dropdown > .nav-link {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
}

.nav-dropdown > .nav-link::after { content: '▾'; font-size: 9px; transition: var(--transition); }
.nav-dropdown:hover > .nav-link::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg); padding: 8px; min-width: 230px;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition); z-index: 100;
}

.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; font-size: 13px; font-weight: 500;
  color: var(--text-medium); border-radius: 6px; transition: var(--transition);
}

.dropdown-link:hover { background: var(--light-gray); color: var(--dark-blue); }

.dropdown-link .dd-icon {
  width: 28px; height: 28px; background: var(--light-gray);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 13px; flex-shrink: 0;
}

.header-cta { display: flex; align-items: center; gap: 12px; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 6px; font-size: 14px;
  font-weight: 600; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none; line-height: 1;
}

.btn-primary { background: var(--dark-blue); color: var(--white); }
.btn-primary:hover { background: var(--accent-blue); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(27,46,75,0.25); }

.btn-secondary { background: transparent; color: var(--dark-blue); border: 1.5px solid var(--dark-blue); }
.btn-secondary:hover { background: var(--dark-blue); color: var(--white); }

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,115,34,0.3); }

.btn-outline-orange { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }

.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 8px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-white { background: var(--white); color: var(--dark-blue); }
.btn-white:hover { background: var(--off-white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: var(--transition); border-radius: 2px; }

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--off-white); padding: 96px 0 80px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.hero-category {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}

.hero-category::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); }

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent-blue); }

.hero-desc { font-size: 17px; color: var(--text-medium); margin-bottom: 36px; line-height: 1.7; max-width: 480px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; height: 400px; object-fit: cover; }

.hero-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }

.hero-stat-card {
  background: var(--white); border: 1px solid var(--medium-gray);
  border-radius: var(--radius); padding: 16px;
}

.stat-number { font-size: 24px; font-weight: 800; color: var(--dark-blue); letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.stat-number span { color: var(--orange); }
.stat-label { font-size: 12px; color: var(--text-light); font-weight: 500; }

/* ===========================
   PAGE HERO
   =========================== */
.page-hero {
  background: var(--dark-blue); padding: 72px 0 64px;
  position: relative; overflow: hidden;
}

.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; }

.page-category-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
  padding: 5px 14px; border-radius: 20px; font-size: 12px;
  font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}

.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); }

.section-title { font-size: clamp(1.625rem, 3vw, 2.25rem); color: var(--text-dark); margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--text-medium); line-height: 1.7; }

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--white); border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-image { overflow: hidden; }
.card-image img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-image img { transform: scale(1.04); }

.card-body { padding: 24px; }

.card-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange-dark);
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
}

.card-tag-blue { background: var(--light-blue); color: var(--accent-blue); }

.card-title { font-size: 17px; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 10px; transition: var(--transition); }
.card:hover .card-title { color: var(--dark-blue); }

.card-excerpt { font-size: 14px; color: var(--text-medium); line-height: 1.65; margin-bottom: 16px; }

.card-meta {
  display: flex; align-items: center; gap: 12px; font-size: 12px;
  color: var(--text-light); padding-top: 16px; border-top: 1px solid var(--medium-gray);
}

/* ===========================
   ARTICLE CARD
   =========================== */
.article-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--medium-gray); transition: var(--transition);
}

.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card-image { overflow: hidden; }
.article-card-image img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .article-card-image img { transform: scale(1.04); }
.article-card-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }

/* ===========================
   STAT BLOCKS
   =========================== */
.stat-block {
  background: var(--white); border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: var(--transition);
}

.stat-block:hover { box-shadow: var(--shadow); }

.stat-block-icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--light-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}

.stat-block-number { font-size: 2.5rem; font-weight: 800; color: var(--dark-blue); letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.stat-block-number span { color: var(--orange); }
.stat-block-label { font-size: 14px; color: var(--text-medium); font-weight: 500; }

/* ===========================
   FEATURE ITEM
   =========================== */
.feature-item {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--medium-gray);
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
  width: 48px; height: 48px; background: var(--light-blue);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}

.feature-content h4 { margin-bottom: 6px; font-size: 16px; }
.feature-content p { font-size: 14px; margin-bottom: 0; }

/* ===========================
   QUOTE BLOCK
   =========================== */
.quote-block {
  background: var(--dark-blue); border-radius: var(--radius-lg);
  padding: 48px 56px; position: relative; overflow: hidden;
}

.quote-block::before {
  content: '\201C'; position: absolute; top: -20px; left: 40px;
  font-size: 200px; font-family: Georgia, serif; color: rgba(255,255,255,0.06);
  line-height: 1; pointer-events: none;
}

.quote-text { font-size: 20px; font-weight: 500; color: var(--white); line-height: 1.6; margin-bottom: 20px; position: relative; }
.quote-author { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }
.quote-author strong { color: var(--orange); font-weight: 600; }

/* ===========================
   TAGS
   =========================== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-flex; align-items: center; padding: 6px 14px;
  border-radius: 20px; font-size: 13px; font-weight: 500;
  background: var(--light-gray); color: var(--text-medium);
  border: 1px solid var(--medium-gray); transition: var(--transition);
  cursor: pointer; text-decoration: none;
}

.tag:hover, .tag.active { background: var(--dark-blue); color: var(--white); border-color: var(--dark-blue); }

/* ===========================
   TABLE
   =========================== */
.table-wrap { border: 1px solid var(--medium-gray); border-radius: var(--radius-lg); overflow: hidden; overflow-x: auto; }

.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: var(--dark-blue); color: var(--white); padding: 14px 20px; text-align: left; font-weight: 600; font-size: 13px; }
.data-table td { padding: 14px 20px; border-bottom: 1px solid var(--medium-gray); color: var(--text-medium); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table tr:hover td { background: var(--light-gray); }

/* ===========================
   FORMS
   =========================== */
.form-group { margin-bottom: 20px; }

.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }

.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 14px; color: var(--text-dark);
  background: var(--white); transition: var(--transition);
  font-family: inherit; line-height: 1.5;
}

.form-control:focus { outline: none; border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(43,76,126,0.12); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 140px; resize: vertical; }

select.form-control {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.success-message {
  display: none; background: #F0FFF4; border: 1px solid #68D391;
  border-radius: var(--radius); padding: 16px 20px; margin-top: 16px;
  color: #276749; font-size: 14px; font-weight: 500;
  align-items: center; gap: 10px;
}

.success-message.show { display: flex; }
.success-icon { font-size: 18px; flex-shrink: 0; }

/* ===========================
   ARTICLE CONTENT
   =========================== */
.article-content { font-size: 16px; line-height: 1.8; color: var(--text-medium); }
.article-content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--text-dark); }
.article-content h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--text-dark); }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { margin-bottom: 1.25rem; padding-left: 24px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; color: var(--text-medium); }
.article-content strong { color: var(--text-dark); font-weight: 600; }

.article-content blockquote {
  border-left: 4px solid var(--orange); padding: 16px 24px;
  background: var(--orange-light); border-radius: 0 8px 8px 0; margin: 24px 0;
}

.article-content blockquote p { font-style: italic; margin: 0; color: var(--text-dark); }

/* ===========================
   SIDEBAR
   =========================== */
.sidebar-card {
  background: var(--white); border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}

.sidebar-card-title {
  font-size: 14px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--medium-gray);
  text-transform: uppercase; letter-spacing: 0.5px;
}

.sidebar-nav-list li { margin-bottom: 4px; }

.sidebar-nav-list a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 6px;
  font-size: 14px; color: var(--text-medium); transition: var(--transition);
}

.sidebar-nav-list a:hover { background: var(--light-gray); color: var(--dark-blue); }
.sidebar-nav-list a.active { background: var(--light-blue); color: var(--dark-blue); font-weight: 600; }

/* ===========================
   HIGHLIGHT BOX
   =========================== */
.highlight-box {
  background: var(--light-blue); border-left: 4px solid var(--accent-blue);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0;
}

.highlight-box-orange { background: var(--orange-light); border-left-color: var(--orange); }
.highlight-box h4 { font-size: 15px; color: var(--dark-blue); margin-bottom: 8px; }
.highlight-box p { font-size: 14px; margin: 0; }

/* ===========================
   TIMELINE
   =========================== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--medium-gray); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute; left: -26px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--dark-blue); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--dark-blue);
}

.timeline-dot.orange { background: var(--orange); box-shadow: 0 0 0 2px var(--orange); }

.timeline-date { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.timeline-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.timeline-desc { font-size: 14px; color: var(--text-medium); margin: 0; }

/* ===========================
   TEAM CARD
   =========================== */
.team-card {
  background: var(--white); border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-card-image { height: 220px; overflow: hidden; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
.team-card-bio { font-size: 13px; color: var(--text-medium); margin-bottom: 12px; }

/* ===========================
   ACCORDION
   =========================== */
.accordion-item { border: 1px solid var(--medium-gray); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }

.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--white); border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  text-align: left; transition: var(--transition); font-family: inherit;
}

.accordion-trigger:hover { background: var(--off-white); }
.accordion-trigger.open { background: var(--dark-blue); color: var(--white); }

.accordion-icon {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  flex-shrink: 0; transition: transform 0.3s ease; line-height: 1;
}

.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body.open { max-height: 600px; }
.accordion-content { padding: 20px 22px; font-size: 14px; color: var(--text-medium); line-height: 1.7; border-top: 1px solid var(--medium-gray); }

/* ===========================
   NUMBERS ROW
   =========================== */
.numbers-row {
  background: var(--dark-blue); border-radius: var(--radius-lg); padding: 48px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center;
}

.numbers-row-value { font-size: 2.75rem; font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.numbers-row-value span { color: var(--orange); }
.numbers-row-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ===========================
   REPORT CARD
   =========================== */
.report-card {
  background: var(--white); border: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; align-items: flex-start; gap: 20px; transition: var(--transition);
}

.report-card:hover { box-shadow: var(--shadow-md); }

.report-icon {
  width: 56px; height: 64px; background: var(--light-blue);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 28px; flex-shrink: 0;
}

.report-body h4 { font-size: 16px; margin-bottom: 6px; }
.report-body p { font-size: 13px; margin-bottom: 12px; }
.report-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-light); flex-wrap: wrap; }
.report-meta span { display: flex; align-items: center; gap: 4px; }

/* ===========================
   PROGRESS
   =========================== */
.progress-item { margin-bottom: 16px; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; }
.progress-label { font-weight: 600; color: var(--text-dark); }
.progress-value { font-weight: 700; color: var(--dark-blue); }
.progress-bar { height: 6px; background: var(--medium-gray); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 3px; background: var(--dark-blue); }
.progress-fill.orange { background: var(--orange); }
.progress-fill.blue { background: var(--accent-blue); }

/* ===========================
   CONTENT SIDEBAR
   =========================== */
.content-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

/* ===========================
   DIVIDER
   =========================== */
.divider { height: 1px; background: var(--medium-gray); margin: 32px 0; }

/* ===========================
   NUMBERED LIST
   =========================== */
.numbered-list { counter-reset: list-counter; }
.numbered-list li { counter-increment: list-counter; display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--medium-gray); align-items: flex-start; }
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before { content: counter(list-counter, decimal-leading-zero); font-size: 11px; font-weight: 800; color: var(--orange); background: var(--orange-light); width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.numbered-list-content h5 { font-size: 15px; margin-bottom: 4px; }
.numbered-list-content p { font-size: 13px; margin: 0; }

/* ===========================
   INFO GRID
   =========================== */
.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.info-box { background: var(--off-white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--medium-gray); }
.info-box-icon { font-size: 28px; margin-bottom: 12px; }
.info-box h4 { font-size: 15px; margin-bottom: 8px; }
.info-box p { font-size: 13px; margin: 0; }

/* ===========================
   POLICY PAGES
   =========================== */
.policy-content { max-width: 780px; margin: 0 auto; }
.policy-content h2 { font-size: 1.375rem; margin: 40px 0 12px; padding-top: 8px; border-top: 1px solid var(--medium-gray); }
.policy-content h2:first-child { border-top: none; margin-top: 0; }
.policy-content h3 { font-size: 1.125rem; margin: 24px 0 10px; }
.policy-content p { font-size: 15px; line-height: 1.8; }
.policy-content ul, .policy-content ol { padding-left: 24px; margin: 12px 0 20px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 15px; line-height: 1.7; color: var(--text-medium); margin-bottom: 6px; }

.policy-meta {
  background: var(--off-white); border: 1px solid var(--medium-gray);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 32px;
  font-size: 13px; color: var(--text-light); display: flex; gap: 24px; flex-wrap: wrap;
}

.policy-meta strong { color: var(--text-dark); }

/* ===========================
   PAGINATION
   =========================== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: var(--transition); border: 1.5px solid var(--medium-gray); color: var(--text-medium); text-decoration: none; }
.pagination a:hover { background: var(--dark-blue); color: var(--white); border-color: var(--dark-blue); }
.pagination .current { background: var(--dark-blue); color: var(--white); border-color: var(--dark-blue); }

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--dark-blue); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 20px; display: none; align-items: center; justify-content: center; z-index: 200; box-shadow: var(--shadow-md); transition: var(--transition); }
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--dark-blue); border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; display: none; }
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.75); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: var(--dark-blue); padding: 64px 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-mark { width: 38px; height: 38px; background: rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark span { color: var(--orange); font-weight: 800; font-size: 20px; }
.footer-logo-text { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-info p { margin-bottom: 6px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-contact-info a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.footer-contact-info a:hover { color: var(--orange); }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-nav-list a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-policy-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--transition); }
.footer-policy-links a:hover { color: rgba(255,255,255,0.8); }

/* ===========================
   MOBILE NAV
   =========================== */
.mobile-nav { display: none; position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: var(--white); z-index: 900; overflow-y: auto; padding: 20px 24px; }
.mobile-nav.open { display: block; }
.mobile-nav-list a { display: block; padding: 14px 0; font-size: 15px; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--medium-gray); transition: var(--transition); }
.mobile-nav-list a:hover { color: var(--dark-blue); padding-left: 8px; }
.mobile-nav-group-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); padding: 16px 0 4px; }
.mobile-nav-sub { padding-left: 16px; }
.mobile-nav-sub a { font-size: 14px; color: var(--text-medium); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .numbers-row { grid-template-columns: repeat(2,1fr); gap: 24px; padding: 40px; }
}

@media (max-width: 992px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .content-sidebar { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .article-card-image img { height: 220px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .page-hero { padding: 48px 0 40px; }
  .hero { padding: 56px 0 48px; }
  .hero::before { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .numbers-row { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quote-block { padding: 32px 28px; }
  .hero-stat-cards { display: none; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 12px 24px; }
  .cookie-inner { flex-direction: column; }
  .form-submit { flex-direction: column; align-items: flex-start; }
}
