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

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2332;
  --blue: #2d6a9f;
  --blue-light: #e8f0f8;
  --green: #3a8a6e;
  --green-light: #e6f4ef;
  --white: #ffffff;
  --bg: #f7f8fa;
  --bg2: #eef0f4;
  --text: #2c3e50;
  --text-mid: #4a5568;
  --text-light: #6b7a8d;
  --border: #dde3ec;
  --border-light: #eef0f4;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(26,35,50,0.07);
  --shadow-lg: 0 6px 28px rgba(26,35,50,0.12);
  --font-body: 'Inter', sans-serif;
  --font-head: 'Merriweather', serif;
  --max-w: 1220px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-xs { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.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-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.35; }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 700; }
p { color: var(--text-mid); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; line-height: 1.75; color: var(--text-mid); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8rem; }
.text-mid { color: var(--text-mid); }
.text-light { color: var(--text-light); }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* === HEADER === */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { width: 22px; height: 22px; fill: var(--white); }
.logo-text { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
.logo-text span { color: var(--blue); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: block; padding: 8px 14px; font-size: 0.9rem; font-weight: 500; color: var(--text); border-radius: 4px; transition: background .15s, color .15s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { background: var(--blue-light); color: var(--blue); }
.has-dropdown { cursor: pointer; }
.has-dropdown > .nav-link::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-left: 6px; vertical-align: middle; transition: transform .2s; }
.has-dropdown.open > .nav-link::after { transform: rotate(180deg); }
.dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 240px; padding: 6px 0; z-index: 200; }
.has-dropdown.open .dropdown, .has-dropdown:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 18px; font-size: 0.875rem; color: var(--text); transition: background .15s, color .15s; }
.dropdown a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown .dropdown-divider { height: 1px; background: var(--border-light); margin: 4px 0; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .25s; }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 12px 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 11px 24px; font-size: 0.925rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border-light); }
.mobile-nav a:hover { color: var(--blue); background: var(--blue-light); }
.mobile-nav .mobile-cat { padding: 8px 24px 4px; font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 24px; font-size: 0.9rem; font-weight: 600; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent; transition: all .2s; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }
.btn-ghost { background: var(--bg); color: var(--text); border-color: var(--bg); }
.btn-ghost:hover { background: var(--bg2); color: var(--navy); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #2e7059; border-color: #2e7059; color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.825rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* === TAGS & LABELS === */
.tag { display: inline-block; padding: 3px 10px; background: var(--blue-light); color: var(--blue); font-size: 0.75rem; font-weight: 600; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; }
.tag:hover { background: var(--blue); color: var(--white); }
.tag-green { background: var(--green-light); color: var(--green); }
.tag-green:hover { background: var(--green); color: var(--white); }
.tag-navy { background: rgba(26,35,50,0.08); color: var(--navy); }

/* === BREADCRUMBS === */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-light); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--border); font-size: 0.9rem; }

/* === HERO === */
.hero { position: relative; overflow: hidden; }
.hero-main { background: linear-gradient(135deg, #1a2332 0%, #243248 50%, #1e2d42 100%); color: var(--white); padding: 96px 0 80px; }
.hero-main .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-main h1 { color: var(--white); margin-bottom: 20px; }
.hero-main .lead { color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.hero-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img { border-radius: 10px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-img img { width: 100%; height: 360px; object-fit: cover; }
.hero-inner-page { background: var(--bg); padding: 52px 0 44px; border-bottom: 1px solid var(--border); }
.hero-inner-page h1 { margin-bottom: 14px; }
.hero-inner-page .lead { max-width: 680px; }

/* === CARDS === */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .15s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 22px 24px; }
.card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.card-date { font-size: 0.8rem; color: var(--text-light); }
.card-title { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); line-height: 1.45; }
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--blue); }
.card-excerpt { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.6; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-top: 1px solid var(--border-light); }
.read-more { font-size: 0.85rem; font-weight: 600; color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--navy); }
.read-more svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Featured article card */
.card-featured { display: grid; grid-template-columns: 360px 1fr; }
.card-featured .card-img { aspect-ratio: unset; min-height: 280px; }
.card-featured .card-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.card-featured .card-title { font-family: var(--font-head); font-size: 1.35rem; }
.card-featured .card-excerpt { font-size: 0.95rem; }

/* Horizontal card */
.card-h { display: grid; grid-template-columns: 140px 1fr; }
.card-h .card-img { aspect-ratio: unset; height: 100%; min-height: 110px; }
.card-h .card-body { padding: 16px 20px; }
.card-h .card-title { font-size: 0.95rem; margin-bottom: 6px; }
.card-h .card-excerpt { font-size: 0.825rem; }

/* === SECTION HEADER === */
.section-header { margin-bottom: 44px; }
.section-header-flex { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 16px; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 10px; }
.section-label-green { color: var(--green); }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; }
.divider { height: 3px; width: 48px; background: var(--blue); border-radius: 2px; margin-top: 14px; }
.divider-green { background: var(--green); }

/* === STAT BLOCKS === */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-item { background: var(--white); padding: 32px 24px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }

/* === ARTICLE CONTENT === */
.article-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.article-content { min-width: 0; }
.article-header { margin-bottom: 36px; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.article-author { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; }
.article-author-img { width: 32px; height: 32px; border-radius: 50%; background: var(--bg2); object-fit: cover; }
.article-lead-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; }
.article-lead-img img { width: 100%; height: 420px; object-fit: cover; }
.article-body h2 { margin-top: 36px; margin-bottom: 16px; font-size: 1.55rem; }
.article-body h3 { margin-top: 28px; margin-bottom: 12px; }
.article-body p { margin-bottom: 20px; line-height: 1.8; }
.article-body ul, .article-body ol { margin-bottom: 20px; padding-left: 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; color: var(--text-mid); line-height: 1.7; }
.article-body blockquote { border-left: 4px solid var(--blue); margin: 32px 0; padding: 20px 28px; background: var(--blue-light); border-radius: 0 var(--radius) var(--radius) 0; }
.article-body blockquote p { font-style: italic; font-size: 1.05rem; color: var(--navy); margin: 0; font-family: var(--font-head); }
.article-body .callout { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin: 28px 0; }
.article-body .callout h4 { margin-bottom: 8px; color: var(--navy); font-family: var(--font-body); }
.article-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.share-bar { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 16px 0; border-top: 1px solid var(--border-light); }
.share-bar span { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: opacity .2s; }
.share-btn:hover { opacity: 0.85; }
.share-tw { background: #1DA1F2; color: white; }
.share-ln { background: #0A66C2; color: white; }
.share-fb { background: #1877F2; color: white; }

/* Sidebar */
.sidebar { min-width: 0; }
.sidebar-widget { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 28px; }
.sidebar-widget-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); font-family: var(--font-body); }
.sidebar-widget ul li { border-bottom: 1px solid var(--border-light); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { display: block; padding: 10px 0; font-size: 0.875rem; color: var(--text); line-height: 1.5; }
.sidebar-widget ul li a:hover { color: var(--blue); }
.sidebar-newsletter { background: var(--navy); border-color: var(--navy); }
.sidebar-newsletter .sidebar-widget-title { color: var(--white); border-color: rgba(255,255,255,0.15); }
.sidebar-newsletter p { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); border-radius: 4px; color: var(--white); font-size: 0.875rem; width: 100%; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--blue); }

/* === TOPIC PAGE === */
.topic-intro { background: var(--bg); padding: 60px 0; border-bottom: 1px solid var(--border); }
.topic-intro-inner { display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: center; }
.topic-stats { display: flex; gap: 32px; margin-top: 28px; }
.topic-stat { }
.topic-stat .num { font-size: 1.6rem; font-weight: 700; font-family: var(--font-head); color: var(--navy); }
.topic-stat .lbl { font-size: 0.8rem; color: var(--text-light); }
.topic-img { border-radius: 8px; overflow: hidden; }
.topic-img img { width: 100%; height: 300px; object-fit: cover; }

/* === INFO BOXES === */
.infobox { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 28px 0; }
.infobox-header { background: var(--navy); color: var(--white); padding: 14px 20px; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.infobox-body { padding: 20px; }
.infobox-body p { margin-bottom: 0; font-size: 0.9rem; }

/* === DATA TABLE === */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 28px 0; }
.data-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.85rem; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); color: var(--text-mid); }
.data-table tr:hover td { background: var(--bg); }
.data-table tr:last-child td { border-bottom: none; }

/* === PROCESS STEPS === */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border-light); }
.step:last-child { border-bottom: none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.step-body h4 { margin-bottom: 8px; font-family: var(--font-body); }
.step-body p { font-size: 0.9rem; margin: 0; }

/* === QUOTE BLOCK === */
.pull-quote { border-left: 5px solid var(--green); padding: 24px 32px; background: var(--green-light); margin: 36px 0; border-radius: 0 var(--radius) var(--radius) 0; }
.pull-quote blockquote { font-family: var(--font-head); font-size: 1.2rem; font-style: italic; color: var(--navy); line-height: 1.6; margin-bottom: 14px; }
.pull-quote cite { font-size: 0.875rem; color: var(--text-light); font-style: normal; font-weight: 600; }

/* === AUTHOR BOX === */
.author-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-top: 40px; display: flex; gap: 20px; align-items: flex-start; }
.author-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--bg2); flex-shrink: 0; }
.author-info h4 { margin-bottom: 6px; font-family: var(--font-body); font-size: 1rem; }
.author-info p { font-size: 0.875rem; margin: 0; }

/* === CATEGORY TILES === */
.cat-tile { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: all .2s; display: block; text-decoration: none; }
.cat-tile:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-tile-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cat-tile-icon svg { width: 22px; height: 22px; stroke: var(--blue); }
.cat-tile h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.cat-tile p { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.55; }
.cat-tile-green .cat-tile-icon { background: var(--green-light); }
.cat-tile-green .cat-tile-icon svg { stroke: var(--green); }
.cat-tile-green:hover { border-color: var(--green); }

/* === ABOUT SECTION === */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img-wrap { border-radius: 10px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.value-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { width: 36px; height: 36px; border-radius: 6px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 18px; height: 18px; stroke: var(--blue); }
.value-icon-green { background: var(--green-light); }
.value-icon-green svg { stroke: var(--green); }
.value-text h5 { margin-bottom: 4px; font-family: var(--font-body); font-size: 0.95rem; color: var(--navy); }
.value-text p { font-size: 0.875rem; margin: 0; }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.team-img { height: 240px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-img img { transform: scale(1.03); }
.team-info { padding: 20px 22px; }
.team-name { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: var(--font-body); }
.team-role { font-size: 0.85rem; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

/* === CONTACT FORM === */
.contact-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 56px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.9rem; color: var(--text); background: var(--white); transition: border-color .2s, box-shadow .2s; }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,106,159,0.1); }
.form-control.error { border-color: #e53e3e; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { margin-top: 2px; width: 16px; height: 16px; cursor: pointer; accent-color: var(--blue); flex-shrink: 0; }
.form-check label { font-size: 0.875rem; color: var(--text-mid); cursor: pointer; }
.success-msg { background: #f0faf5; border: 1px solid #a0e0c0; border-radius: var(--radius); padding: 20px 24px; color: #1e6b4a; font-weight: 600; display: none; align-items: center; gap: 12px; }
.success-msg.show { display: flex; }
.success-msg svg { width: 24px; height: 24px; stroke: #1e6b4a; flex-shrink: 0; }
.error-msg { background: #fff5f5; border: 1px solid #fed7d7; border-radius: var(--radius); padding: 12px 16px; color: #c53030; font-size: 0.875rem; display: none; }
.error-msg.show { display: block; }

/* Contact info */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon { width: 42px; height: 42px; border-radius: 8px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-info-text strong { display: block; font-size: 0.875rem; color: var(--navy); margin-bottom: 2px; }
.contact-info-text span { font-size: 0.875rem; color: var(--text-mid); }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 24px; height: 200px; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; color: var(--text-light); border: 1px solid var(--border); }

/* === PAGINATION === */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 52px; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: 4px; font-size: 0.9rem; color: var(--text); text-decoration: none; transition: all .15s; font-weight: 500; }
.page-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.page-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.page-btn.prev, .page-btn.next { width: auto; padding: 0 16px; gap: 4px; }

/* === FILTER BAR === */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; padding: 16px 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); }
.filter-label { font-size: 0.82rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; margin-right: 4px; }
.filter-btn { padding: 6px 16px; font-size: 0.85rem; font-weight: 500; border: 1.5px solid var(--border); border-radius: 4px; background: var(--white); color: var(--text); cursor: pointer; transition: all .15s; }
.filter-btn:hover, .filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.filter-search { margin-left: auto; }
.filter-search input { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 4px; font-size: 0.875rem; color: var(--text); background: var(--white); width: 220px; }
.filter-search input:focus { outline: none; border-color: var(--blue); }

/* === NEWSLETTER SECTION === */
.nl-section { background: var(--navy); padding: 64px 0; }
.nl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.nl-content h2 { color: var(--white); margin-bottom: 12px; }
.nl-content p { color: rgba(255,255,255,0.75); margin: 0; }
.nl-form { display: flex; gap: 12px; }
.nl-form input { flex: 1; padding: 12px 16px; border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); border-radius: var(--radius); color: var(--white); font-size: 0.9rem; }
.nl-form input::placeholder { color: rgba(255,255,255,0.45); }
.nl-form input:focus { outline: none; border-color: rgba(255,255,255,0.5); }

/* === FOOTER === */
.site-footer { background: #111827; color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text { color: var(--white); font-size: 1.3rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-top: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 18px; font-family: var(--font-body); letter-spacing: 0.3px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* === POLICY PAGES === */
.policy-wrap { max-width: 860px; margin: 0 auto; }
.policy-header { margin-bottom: 40px; padding-bottom: 28px; border-bottom: 2px solid var(--border); }
.policy-header h1 { margin-bottom: 12px; }
.policy-meta { display: flex; gap: 24px; font-size: 0.875rem; color: var(--text-light); flex-wrap: wrap; }
.policy-meta span { display: flex; align-items: center; gap: 6px; }
.policy-toc { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 36px; }
.policy-toc h3 { font-size: 1rem; margin-bottom: 14px; font-family: var(--font-body); color: var(--navy); }
.policy-toc ol { list-style: decimal; padding-left: 20px; }
.policy-toc ol li { margin-bottom: 7px; }
.policy-toc ol li a { font-size: 0.875rem; color: var(--blue); }
.policy-section { margin-bottom: 40px; }
.policy-section h2 { font-size: 1.35rem; margin-bottom: 16px; padding-top: 12px; }
.policy-section h3 { font-size: 1.1rem; margin-bottom: 12px; margin-top: 24px; }
.policy-section p { font-size: 0.9375rem; line-height: 1.8; color: var(--text-mid); }
.policy-section ul, .policy-section ol { padding-left: 24px; margin-bottom: 20px; }
.policy-section ul { list-style: disc; }
.policy-section ol { list-style: decimal; }
.policy-section li { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.policy-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.policy-table th { background: var(--bg2); padding: 10px 14px; text-align: left; font-weight: 700; color: var(--navy); border: 1px solid var(--border); font-size: 0.85rem; }
.policy-table td { padding: 10px 14px; border: 1px solid var(--border); color: var(--text-mid); vertical-align: top; }
.policy-table tr:hover td { background: var(--bg); }

/* === SITEMAP === */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-col h3 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); font-family: var(--font-body); font-weight: 700; }
.sitemap-col ul { list-style: none; padding: 0; }
.sitemap-col ul li { padding: 7px 0; border-bottom: 1px solid var(--border-light); }
.sitemap-col ul li:last-child { border-bottom: none; }
.sitemap-col ul li a { font-size: 0.9rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.sitemap-col ul li a::before { content: '→'; color: var(--blue); font-size: 0.8rem; }
.sitemap-col ul li a:hover { color: var(--blue); }

/* === HIGHLIGHT BOX === */
.highlight-box { background: var(--blue-light); border: 1px solid rgba(45,106,159,0.2); border-radius: var(--radius); padding: 24px 28px; margin: 28px 0; }
.highlight-box h4 { color: var(--navy); margin-bottom: 10px; font-family: var(--font-body); }
.highlight-box p { margin: 0; font-size: 0.9rem; }
.highlight-box-green { background: var(--green-light); border-color: rgba(58,138,110,0.2); }
.highlight-box-navy { background: #f0f2f5; border-color: rgba(26,35,50,0.12); }

/* === COOKIE CONSENT === */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: var(--white); padding: 16px 24px; z-index: 9999; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); transform: translateY(100%); transition: transform .35s; }
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 0.875rem; color: rgba(255,255,255,0.85); margin: 0; }
.cookie-bar p a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* === MISC === */
.bg-light { background: var(--bg); }
.bg-navy { background: var(--navy); }
.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-6 { margin-bottom: 48px !important; }
.mb-8 { margin-bottom: 64px !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mt-6 { margin-top: 48px !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 990; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--navy); transform: translateY(-2px); color: var(--white); }
.back-to-top svg { width: 20px; height: 20px; stroke: currentColor; }
.badge-new { display: inline-block; padding: 2px 8px; background: var(--green); color: white; font-size: 0.7rem; font-weight: 700; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; vertical-align: middle; }

/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -25px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--blue); }
.timeline-date { font-size: 0.8rem; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.timeline-title { font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.timeline-text { font-size: 0.875rem; color: var(--text-mid); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid .footer-col:nth-child(4) { grid-column: 2 / span 2; }
  .article-wrap { grid-template-columns: 1fr 300px; }
}
@media (max-width: 900px) {
  .hero-main .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-featured { grid-template-columns: 1fr; }
  .card-featured .card-img { min-height: 220px; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .article-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .nl-inner { grid-template-columns: 1fr; }
  .topic-intro-inner { grid-template-columns: 1fr; }
  .topic-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 48px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .card-h { grid-template-columns: 110px 1fr; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .filter-search { width: 100%; }
  .filter-search input { width: 100%; }
}
