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

:root {
  --white: #FFFFFF;
  --deep-blue: #1A3A6B;
  --medium-blue: #2C5F9E;
  --light-blue: #E8F0FD;
  --sky-blue: #4A90D9;
  --gray-900: #1F2937;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --bg-warm: #F9F6F1;
  --beige: #F5F0E8;
  --success: #059669;
  --font: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(26,58,107,0.12);
  --shadow-lg: 0 8px 40px rgba(26,58,107,0.18);
  --max-w: 1200px;
  --px: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--medium-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--deep-blue); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--deep-blue); }
h1 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { color: var(--gray-700); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--r-md);
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .22s; border: 2px solid transparent;
  text-decoration: none; line-height: 1.4;
}
.btn-primary { background: var(--deep-blue); color: #fff; border-color: var(--deep-blue); }
.btn-primary:hover { background: var(--medium-blue); border-color: var(--medium-blue); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--deep-blue); border-color: var(--deep-blue); }
.btn-outline:hover { background: var(--deep-blue); color: #fff; }
.btn-white { background: #fff; color: var(--deep-blue); border-color: #fff; }
.btn-white:hover { background: var(--light-blue); color: var(--deep-blue); border-color: var(--light-blue); }
.btn-secondary { background: var(--light-blue); color: var(--deep-blue); border-color: var(--light-blue); }
.btn-secondary:hover { background: var(--medium-blue); color: #fff; border-color: var(--medium-blue); }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem var(--px);
  max-width: var(--max-w); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--deep-blue); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-name { font-size: 1.45rem; font-weight: 800; color: var(--deep-blue); letter-spacing: -.5px; line-height: 1; display: block; }
.logo-sub { font-size: .65rem; color: var(--gray-500); font-weight: 400; text-transform: uppercase; letter-spacing: .8px; display: block; margin-top: 2px; }

.main-nav ul { display: flex; align-items: center; gap: .125rem; }
.main-nav a {
  display: block; padding: .5rem .875rem;
  color: var(--gray-700); font-size: .875rem; font-weight: 500;
  border-radius: var(--r-sm); transition: all .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--deep-blue); background: var(--light-blue); }

.nav-has-drop { position: relative; }
.nav-has-drop > a::after { content: '▾'; font-size: .65rem; margin-left: .2rem; opacity: .6; }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 230px; background: var(--white);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-300);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s; z-index: 200;
}
.nav-has-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a {
  display: block; padding: .625rem 1rem;
  font-size: .85rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100); border-radius: 0;
}
.drop-menu a:last-child { border-bottom: none; }
.drop-menu a:hover { background: var(--light-blue); color: var(--deep-blue); }

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--deep-blue); transition: all .3s; border-radius: 2px; }
.header-actions { display: flex; align-items: center; gap: .875rem; }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(140deg, #132D5A 0%, #1A3A6B 45%, #1E4D8C 100%);
}
.hero-bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 5rem 0; }
.hero-layout {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center;
}
.hero-text h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-text p { color: rgba(255,255,255,.8); font-size: 1.075rem; line-height: 1.75; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-dashboard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.dash-title { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .8px; }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; }
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-bottom: 1.25rem; }
.dash-metric {
  background: rgba(255,255,255,.08); border-radius: var(--r-md);
  padding: 1rem; border: 1px solid rgba(255,255,255,.1);
}
.dash-val { font-size: 1.85rem; font-weight: 800; color: #fff; line-height: 1; }
.dash-lbl { font-size: .7rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; margin-top: .25rem; }
.dash-bar-area { background: rgba(255,255,255,.05); border-radius: var(--r-md); padding: 1rem; }
.dash-bar-row { margin-bottom: .875rem; }
.dash-bar-row:last-child { margin-bottom: 0; }
.dash-bar-info { display: flex; justify-content: space-between; margin-bottom: .3rem; }
.dash-bar-name { font-size: .75rem; color: rgba(255,255,255,.75); }
.dash-bar-pct { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.9); }
.dash-track { height: 6px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; }
.dash-fill { height: 100%; background: linear-gradient(90deg, #4A90D9, #6BB5FF); border-radius: 3px; transition: width 1.2s ease; }

/* ---- SECTION ---- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-warm); }
.section-blue { background: var(--light-blue); }
.section-dark { background: var(--gray-900); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--medium-blue);
  margin-bottom: .75rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; }

/* ---- CARDS ---- */
.card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-300); padding: 2rem;
  transition: all .3s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #BFCFE8; }

.card-icon {
  width: 54px; height: 54px; background: var(--light-blue);
  border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--deep-blue); fill: none; stroke-width: 1.5; }
.card h3 { margin-bottom: .75rem; font-size: 1.1rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ---- ARTICLE CARD ---- */
.art-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-300); transition: all .3s; }
.art-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.art-card-img { height: 205px; overflow: hidden; }
.art-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.art-card:hover .art-card-img img { transform: scale(1.06); }
.art-card-body { padding: 1.5rem; }
.art-meta { display: flex; gap: .875rem; margin-bottom: .625rem; }
.art-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--medium-blue); }
.art-date { font-size: .72rem; color: var(--gray-500); }
.art-card h3 { font-size: 1.05rem; line-height: 1.4; margin-bottom: .625rem; }
.art-card p { font-size: .875rem; color: var(--gray-500); margin-bottom: 1.1rem; }
.art-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .875rem; font-weight: 600; color: var(--deep-blue); transition: gap .2s; }
.art-link:hover { gap: .6rem; color: var(--medium-blue); }

/* ---- STATS ---- */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat-box { text-align: center; padding: 2rem 1.5rem; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--gray-300); }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--deep-blue); line-height: 1; margin-bottom: .5rem; }
.stat-desc { font-size: .85rem; color: var(--gray-500); }

/* ---- DATA BARS ---- */
.data-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.data-visual img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 340px; }
.bar-widget { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; border: 1px solid var(--gray-300); }
.bar-widget-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-100); }
.bar-widget-title { font-size: .9rem; font-weight: 700; color: var(--deep-blue); }
.bar-widget-sub { font-size: .75rem; color: var(--gray-500); }
.bar-row { margin-bottom: 1.1rem; }
.bar-row:last-child { margin-bottom: 0; }
.bar-info { display: flex; justify-content: space-between; margin-bottom: .35rem; }
.bar-label { font-size: .875rem; font-weight: 500; color: var(--gray-700); }
.bar-val { font-size: .875rem; font-weight: 700; color: var(--deep-blue); }
.bar-track { height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--deep-blue), var(--medium-blue)); border-radius: 4px; transition: width 1.1s ease; }

/* ---- PAGE HEADER ---- */
.page-hdr {
  background: linear-gradient(140deg, #132D5A 0%, #1A3A6B 55%, #1E4D8C 100%);
  padding: 3.5rem 0;
}
.page-hdr h1 { color: #fff; margin-bottom: .75rem; }
.page-hdr p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 580px; margin-bottom: 0; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); font-size: .82rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.3); font-size: .82rem; }
.breadcrumb .curr { color: rgba(255,255,255,.9); font-size: .82rem; }

/* ---- SIDEBAR LAYOUT ---- */
.with-sidebar { display: grid; grid-template-columns: 1fr 310px; gap: 3rem; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sb-card { background: var(--white); border-radius: var(--r-lg); padding: 1.5rem; border: 1px solid var(--gray-300); margin-bottom: 1.5rem; }
.sb-card h3 { font-size: .95rem; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--light-blue); }
.sb-list li { border-bottom: 1px solid var(--gray-100); }
.sb-list li:last-child { border-bottom: none; }
.sb-list a { display: block; padding: .575rem 0; font-size: .875rem; color: var(--gray-700); transition: all .2s; }
.sb-list a:hover { color: var(--deep-blue); padding-left: .5rem; }

/* ---- ARTICLE DETAIL ---- */
.prose h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: .875rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.75rem; margin-bottom: .75rem; }
.prose p { margin-bottom: 1.1rem; line-height: 1.8; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ul li { list-style: disc; margin-bottom: .5rem; color: var(--gray-700); line-height: 1.7; }
.prose ol li { list-style: decimal; margin-bottom: .5rem; color: var(--gray-700); line-height: 1.7; }
.prose img { border-radius: var(--r-lg); margin-bottom: 2rem; width: 100%; max-height: 460px; object-fit: cover; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.prose table th { background: var(--deep-blue); color: #fff; padding: .75rem 1rem; font-size: .85rem; text-align: left; }
.prose table td { padding: .75rem 1rem; border-bottom: 1px solid var(--gray-100); font-size: .9rem; color: var(--gray-700); }
.prose table tr:nth-child(even) td { background: var(--bg-warm); }

.callout { background: var(--light-blue); border-left: 4px solid var(--deep-blue); padding: 1.1rem 1.4rem; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 1.5rem 0; }
.callout p { margin: 0; font-weight: 500; color: var(--deep-blue); font-size: .95rem; }
.callout-warn { background: #FFFBEB; border-left-color: #F59E0B; }
.callout-warn p { color: #92400E; }

/* ---- TEAM ---- */
.team-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-300); text-align: center; transition: all .3s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-photo { height: 230px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-body { padding: 1.5rem; }
.team-body h3 { margin-bottom: .2rem; font-size: 1.05rem; }
.team-role { font-size: .8rem; font-weight: 700; color: var(--medium-blue); margin-bottom: .75rem; display: block; }
.team-bio { font-size: .875rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 0; }

/* ---- ACCORDION ---- */
.accordion { margin-bottom: .625rem; border: 1px solid var(--gray-300); border-radius: var(--r-md); overflow: hidden; }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; background: var(--white);
  border: none; cursor: pointer; font-family: var(--font);
  font-size: .975rem; font-weight: 600; color: var(--deep-blue);
  text-align: left; transition: background .2s;
}
.acc-trigger:hover { background: var(--light-blue); }
.acc-trigger.open { background: var(--deep-blue); color: #fff; }
.acc-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s; stroke: currentColor; fill: none; stroke-width: 2; }
.acc-trigger.open .acc-icon { transform: rotate(180deg); }
.acc-body { display: none; padding: 1.1rem 1.4rem; background: var(--bg-warm); border-top: 1px solid var(--gray-100); }
.acc-body.open { display: block; }
.acc-body p { margin: 0; font-size: .95rem; line-height: 1.75; }

/* ---- FORM ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-700); margin-bottom: .45rem; }
.form-req { color: #DC2626; margin-left: 2px; }
.form-ctrl {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300); border-radius: var(--r-md);
  font-family: var(--font); font-size: .95rem; color: var(--gray-900);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-ctrl:focus { border-color: var(--medium-blue); box-shadow: 0 0 0 3px rgba(44,95,158,.13); }
textarea.form-ctrl { resize: vertical; min-height: 140px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center; background-size: 16px; padding-right: 2.5rem;
}
.form-check { display: flex; align-items: flex-start; gap: .6rem; }
.form-check input[type=checkbox] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--deep-blue); cursor: pointer; }
.form-check label { font-size: .875rem; color: var(--gray-500); cursor: pointer; line-height: 1.5; }
.form-check a { color: var(--medium-blue); text-decoration: underline; }

.success-box { display: none; background: #D1FAE5; border: 1px solid #6EE7B7; border-radius: var(--r-md); padding: 1.5rem; text-align: center; }
.success-box.show { display: block; }
.success-box h4 { color: #065F46; margin-bottom: .5rem; font-size: 1.1rem; }
.success-box p { color: #047857; margin: 0; font-size: .95rem; }

/* ---- TABLE ---- */
.tbl { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-300); }
.tbl th { background: var(--deep-blue); color: #fff; padding: .9rem 1.1rem; text-align: left; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.tbl td { padding: .825rem 1.1rem; border-bottom: 1px solid var(--gray-100); font-size: .9rem; color: var(--gray-700); }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:nth-child(even) td { background: var(--bg-warm); }
.tbl tr:hover td { background: var(--light-blue); }
.tbl-wrap { overflow-x: auto; }

/* ---- POLICY ---- */
.policy { max-width: 820px; margin: 0 auto; }
.policy h2 { font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: .875rem; color: var(--deep-blue); border-bottom: 2px solid var(--light-blue); padding-bottom: .5rem; }
.policy h3 { font-size: 1.05rem; margin-top: 1.75rem; margin-bottom: .625rem; }
.policy p { line-height: 1.8; margin-bottom: 1rem; }
.policy ul, .policy ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.policy li { margin-bottom: .45rem; color: var(--gray-700); line-height: 1.7; }
.policy ul li { list-style: disc; }
.policy ol li { list-style: decimal; }
.policy-meta { background: var(--light-blue); border-radius: var(--r-md); padding: .875rem 1.25rem; margin-bottom: 2rem; font-size: .875rem; color: var(--gray-700); display: flex; gap: 1.5rem; flex-wrap: wrap; }
.policy-meta strong { color: var(--deep-blue); }

/* ---- GLOSSARY ---- */
.gloss-alpha { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 2rem; }
.gloss-alpha a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--white); border: 1.5px solid var(--gray-300); border-radius: var(--r-sm); font-size: .85rem; font-weight: 600; color: var(--gray-700); transition: all .2s; }
.gloss-alpha a:hover, .gloss-alpha a.on { background: var(--deep-blue); border-color: var(--deep-blue); color: #fff; }
.gloss-section { margin-top: 2.5rem; }
.gloss-letter { font-size: 1.85rem; font-weight: 800; color: var(--deep-blue); border-bottom: 3px solid var(--light-blue); padding-bottom: .5rem; margin-bottom: 1.25rem; }
.gloss-term { padding: 1.1rem 0; border-bottom: 1px solid var(--gray-100); }
.gloss-term:last-child { border-bottom: none; }
.gloss-term h4 { color: var(--deep-blue); margin-bottom: .35rem; font-size: .975rem; }
.gloss-term p { font-size: .875rem; margin: 0; }

/* ---- SITEMAP ---- */
.sitemap-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.sm-col h3 { font-size: .95rem; color: var(--deep-blue); border-bottom: 2px solid var(--light-blue); padding-bottom: .5rem; margin-bottom: 1rem; }
.sm-col li { border-bottom: 1px solid var(--gray-100); }
.sm-col a { display: block; padding: .5rem 0; font-size: .875rem; color: var(--gray-700); transition: all .2s; }
.sm-col a:hover { color: var(--deep-blue); padding-left: .4rem; }

/* ---- REPORT CARD ---- */
.rep-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; border: 1px solid var(--gray-300); display: flex; gap: 1.5rem; transition: all .3s; margin-bottom: 1rem; }
.rep-card:hover { box-shadow: var(--shadow-md); border-color: #BFCFE8; }
.rep-ico { width: 54px; height: 54px; background: var(--light-blue); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rep-ico svg { width: 26px; height: 26px; stroke: var(--deep-blue); fill: none; stroke-width: 1.5; }
.rep-meta { display: flex; gap: 1rem; margin-bottom: .4rem; }
.rep-type { font-size: .72rem; font-weight: 700; text-transform: uppercase; color: var(--medium-blue); }
.rep-date { font-size: .72rem; color: var(--gray-500); }
.rep-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.rep-card p { font-size: .875rem; color: var(--gray-500); margin-bottom: .75rem; }

/* ---- RESOURCE ---- */
.res-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; border: 1px solid var(--gray-300); transition: all .3s; }
.res-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.res-card h3 { font-size: 1.05rem; margin-bottom: .625rem; }
.res-card p { font-size: .875rem; color: var(--gray-500); margin-bottom: 1rem; }
.tag { display: inline-flex; align-items: center; padding: .25rem .75rem; background: var(--light-blue); color: var(--deep-blue); border-radius: 20px; font-size: .75rem; font-weight: 600; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .875rem 0; }

/* ---- STEPS ---- */
.steps { }
.step { display: flex; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--gray-300); }
.step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; background: var(--deep-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.step-body h4 { margin-bottom: .5rem; font-size: 1rem; }

/* ---- NEWSLETTER ---- */
.nl-section { background: var(--deep-blue); padding: 4rem 0; }
.nl-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.nl-text h2 { color: #fff; margin-bottom: .5rem; }
.nl-text p { color: rgba(255,255,255,.75); margin: 0; }
.nl-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.nl-input { padding: .75rem 1.25rem; border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); border-radius: var(--r-md); color: #fff; font-family: var(--font); font-size: .95rem; min-width: 280px; outline: none; transition: border-color .2s; }
.nl-input::placeholder { color: rgba(255,255,255,.5); }
.nl-input:focus { border-color: rgba(255,255,255,.45); }

/* ---- CONTACT ---- */
.contact-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.cnt-detail { display: flex; gap: .875rem; margin-bottom: 1.5rem; }
.cnt-ico { width: 44px; height: 44px; background: var(--light-blue); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cnt-ico svg { width: 20px; height: 20px; stroke: var(--deep-blue); fill: none; stroke-width: 1.5; }
.cnt-txt h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-500); margin-bottom: .25rem; }
.cnt-txt p, .cnt-txt a { font-size: .95rem; color: var(--gray-700); margin: 0; }

/* ---- METRICS WIDGET ---- */
.metrics-box { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--gray-300); padding: 2rem; }
.metrics-box-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-100); }
.metrics-box-title { font-size: .95rem; font-weight: 700; color: var(--deep-blue); }
.metrics-box-period { font-size: .75rem; color: var(--gray-500); background: var(--gray-100); padding: .2rem .625rem; border-radius: 20px; }
.m-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.m-cell { background: var(--bg-warm); border-radius: var(--r-md); padding: 1.1rem; }
.m-lbl { font-size: .75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .3rem; }
.m-val { font-size: 1.7rem; font-weight: 800; color: var(--deep-blue); line-height: 1; }
.m-chg { font-size: .72rem; font-weight: 700; margin-top: .25rem; }
.m-up { color: #059669; } .m-dn { color: #DC2626; }

/* ---- COOKIE BANNER ---- */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--gray-900); color: rgba(255,255,255,.85); padding: 1.25rem 1.5rem; z-index: 9999; display: none; box-shadow: 0 -4px 20px rgba(0,0,0,.3); }
.cookie-bar.on { display: block; }
.cookie-in { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between; }
.cookie-msg { flex: 1; font-size: .875rem; min-width: 260px; line-height: 1.6; }
.cookie-msg a { color: #93C5FD; text-decoration: underline; }
.cookie-btns { display: flex; gap: .625rem; flex-shrink: 0; }
.ck-ok { padding: .575rem 1.1rem; background: var(--medium-blue); color: #fff; border: none; border-radius: var(--r-sm); font-family: var(--font); font-size: .85rem; font-weight: 600; cursor: pointer; transition: background .2s; }
.ck-ok:hover { background: var(--deep-blue); }
.ck-no { padding: .575rem 1.1rem; background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); border-radius: var(--r-sm); font-family: var(--font); font-size: .85rem; cursor: pointer; transition: all .2s; }
.ck-no:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ---- FOOTER ---- */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.ft-brand .logo-name { color: #fff; }
.ft-brand .logo-sub { color: rgba(255,255,255,.45); }
.ft-desc { font-size: .875rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,.55); }
.ft-col h4 { color: #fff; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 1.1rem; }
.ft-links li { margin-bottom: .55rem; }
.ft-links a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color .2s; }
.ft-links a:hover { color: #fff; }
.ft-cnt { display: flex; gap: .75rem; margin-bottom: .75rem; align-items: flex-start; }
.ft-cnt-ic { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 1px; flex-shrink: 0; }
.ft-cnt-txt { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-bot { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bot p { color: rgba(255,255,255,.38); font-size: .78rem; margin: 0; }
.footer-bot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bot-links a { color: rgba(255,255,255,.38); font-size: .78rem; transition: color .2s; }
.footer-bot-links a:hover { color: #fff; }

/* ---- PAGINATION ---- */
.pager { display: flex; justify-content: center; align-items: center; gap: .375rem; margin-top: 3rem; }
.pager a, .pager span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--r-sm); font-size: .875rem; font-weight: 500; border: 1.5px solid var(--gray-300); transition: all .2s; color: var(--gray-700); }
.pager a:hover, .pager .cur { background: var(--deep-blue); border-color: var(--deep-blue); color: #fff; }

/* ---- TABS ---- */
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--gray-300); margin-bottom: 2rem; overflow-x: auto; }
.tab-btn { padding: .75rem 1.25rem; background: none; border: none; font-family: var(--font); font-size: .9rem; font-weight: 600; color: var(--gray-500); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all .2s; }
.tab-btn:hover { color: var(--deep-blue); }
.tab-btn.on { color: var(--deep-blue); border-bottom-color: var(--deep-blue); }
.tab-panel { display: none; }
.tab-panel.on { display: block; }

/* ---- CONCEPT GRID ---- */
.concept-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; border: 1px solid var(--gray-300); transition: all .3s; text-decoration: none; display: block; }
.concept-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #BFCFE8; }
.concept-ico { width: 48px; height: 48px; background: var(--light-blue); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.concept-ico svg { width: 24px; height: 24px; stroke: var(--deep-blue); fill: none; stroke-width: 1.5; }
.concept-card h3 { font-size: 1rem; margin-bottom: .45rem; color: var(--deep-blue); }
.concept-card p { font-size: .85rem; color: var(--gray-500); margin: 0; line-height: 1.6; }

/* ---- UTILITIES ---- */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-5{margin-top:3rem}
.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.text-center{text-align:center}.text-muted{color:var(--gray-500)}.text-blue{color:var(--deep-blue)}.fw-600{font-weight:600}.fw-700{font-weight:700}
.fs-sm{font-size:.875rem}.fs-xs{font-size:.78rem}
.d-flex{display:flex}.ai-center{align-items:center}.jc-between{justify-content:space-between}.gap-1{gap:.5rem}.gap-2{gap:1rem}.gap-3{gap:1.5rem}
.divider{border:none;border-top:1px solid var(--gray-300);margin:2rem 0}
.rounded{border-radius:var(--r-lg)}
.bg-white{background:var(--white)}.bg-warm{background:var(--bg-warm)}.bg-blue-lt{background:var(--light-blue)}
.border-t{border-top:1px solid var(--gray-300);padding-top:2rem;margin-top:2rem}

/* ---- RESPONSIVE ---- */
@media(max-width:1024px){
  .hero-layout{grid-template-columns:1fr}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .with-sidebar{grid-template-columns:1fr}
  .sidebar{position:static}
  .data-duo{grid-template-columns:1fr}
}
@media(max-width:768px){
  .main-nav{display:none;position:fixed;top:68px;left:0;right:0;background:var(--white);padding:1rem;box-shadow:var(--shadow-lg);border-top:1px solid var(--gray-300);z-index:999;max-height:80vh;overflow-y:auto}
  .main-nav.on{display:block}
  .main-nav ul{flex-direction:column;gap:0}
  .main-nav a{padding:.75rem 1rem;font-size:.975rem;border-radius:0;border-bottom:1px solid var(--gray-100)}
  .drop-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;background:var(--bg-warm);border-radius:0;padding-left:1rem}
  .menu-btn{display:flex}
  .header-actions .btn{display:none}
  .grid-3,.grid-2,.grid-4{grid-template-columns:1fr}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .contact-duo{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .footer-bot{flex-direction:column;text-align:center}
  .nl-inner{flex-direction:column}
  .nl-input{min-width:0;width:100%}
  .nl-form{flex-direction:column;width:100%}
  .sitemap-wrap{grid-template-columns:1fr}
  .hero-content{padding:3rem 0}
}
@media(max-width:480px){
  .stats-row{grid-template-columns:1fr}
  .section{padding:3rem 0}
  .hero{min-height:auto}
  .pager a,.pager span{width:32px;height:32px;font-size:.8rem}
}
