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

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

:root {
  --color-white:      #FFFFFF;
  --color-bg:         #F4F6F9;
  --color-bg-alt:     #EDF0F5;
  --color-navy:       #0D2B5E;
  --color-navy-light: #1A3D7C;
  --color-navy-mid:   #22508C;
  --color-green:      #2C7A4B;
  --color-green-light:#38996080;
  --color-silver:     #8E9BAF;
  --color-silver-light:#C8D0DC;
  --color-text:       #1A2340;
  --color-text-muted: #4A566E;
  --color-border:     #D8DDE8;
  --color-accent:     #1E5FA8;
  --shadow-xs:        0 1px 3px rgba(13,43,94,.08);
  --shadow-sm:        0 2px 8px rgba(13,43,94,.10);
  --shadow-md:        0 4px 20px rgba(13,43,94,.12);
  --shadow-lg:        0 8px 40px rgba(13,43,94,.14);
  --radius-sm:        4px;
  --radius-md:        8px;
  --radius-lg:        14px;
  --font-sans:        'Inter', sans-serif;
  --font-serif:       'Source Serif 4', serif;
  --transition:       0.22s ease;
}

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

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-navy); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ==============================
   LAYOUT
============================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

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

.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.section--white { background: var(--color-white); }
.section--navy { background: var(--color-navy); color: var(--color-white); }
.section--alt { background: var(--color-bg-alt); }

/* ==============================
   TYPOGRAPHY
============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--color-text-muted); }
p:last-child { margin-bottom: 0; }

.text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white p { color: var(--color-white); }
.text-white p { color: rgba(255,255,255,.78); }

.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 14px; }
.section-desc { max-width: 600px; margin-bottom: 40px; }

/* ==============================
   HEADER / NAVIGATION
============================== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--color-navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 22px; height: 22px; }

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.03em;
}

.logo-text span { color: var(--color-green); }

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: var(--color-accent); background: var(--color-bg); }

.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  z-index: 100;
}

.nav-item:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 0.855rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown a:hover { background: var(--color-bg); color: var(--color-accent); }

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-navy);
}

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn-primary:hover {
  background: var(--color-navy-light);
  border-color: var(--color-navy-light);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-green {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}
.btn-green:hover {
  background: #235f3a;
  border-color: #235f3a;
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-sm { padding: 7px 16px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ==============================
   HERO SECTION
============================== */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.18;
}

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

.hero-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.hero-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 20px;
}

.hero-stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-image-block {
  position: relative;
}

.hero-image-block img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ==============================
   CARDS
============================== */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-silver-light);
}

.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  background: rgba(44,122,75,.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.card-title a { color: inherit; }
.card-title a:hover { color: var(--color-accent); }

.card-text { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 16px; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--color-silver);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.card-meta svg { width: 13px; height: 13px; }

/* Article card horizontal */
.card-h {
  display: flex;
  align-items: stretch;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card-h:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-h .card-img { flex: 0 0 220px; aspect-ratio: auto; }
.card-h .card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-h .card-body { flex: 1; padding: 24px; }

/* Feature card */
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(13,43,94,.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-navy);
}

.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 10px; }

/* Stat card */
.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: 0.85rem; color: var(--color-text-muted); }

/* ==============================
   TICKER / MARQUEE
============================== */
.ticker-bar {
  background: var(--color-navy);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

.ticker-item .name { color: rgba(255,255,255,.55); }
.ticker-item .value { color: var(--color-white); font-weight: 700; }
.ticker-item .up { color: #4ade80; }
.ticker-item .down { color: #f87171; }

/* ==============================
   BREADCRUMBS
============================== */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-silver);
}

.breadcrumbs li:last-child { color: var(--color-text); }
.breadcrumbs a { color: var(--color-silver); }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs li::after { content: '/'; }
.breadcrumbs li:last-child::after { content: ''; }

/* ==============================
   SIDEBAR
============================== */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.sidebar-widget-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-navy);
}

.recent-post {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.recent-post-text { flex: 1; }
.recent-post-title { font-size: 0.84rem; font-weight: 600; color: var(--color-navy); line-height: 1.35; margin-bottom: 4px; }
.recent-post-title a { color: inherit; }
.recent-post-title a:hover { color: var(--color-accent); }
.recent-post-date { font-size: 0.74rem; color: var(--color-silver); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.tag:hover { background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy); }

/* ==============================
   ARTICLE CONTENT
============================== */
.article-header { margin-bottom: 36px; }
.article-header h1 { margin-bottom: 16px; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--color-silver);
  margin-bottom: 24px;
}

.article-meta svg { width: 14px; height: 14px; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.author-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.article-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
  object-fit: cover;
}

.article-content h2 { font-size: 1.5rem; margin: 36px 0 16px; color: var(--color-navy); }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--color-navy); }
.article-content p { font-size: 1rem; line-height: 1.75; color: var(--color-text-muted); margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 8px; color: var(--color-text-muted); font-size: 1rem; line-height: 1.7; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }

.article-content blockquote {
  border-left: 4px solid var(--color-navy);
  background: var(--color-bg);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-content blockquote p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-navy);
  font-style: italic;
  margin: 0;
}

.article-content .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.data-table tr:nth-child(even) td { background: var(--color-bg); }
.data-table tr:hover td { background: rgba(13,43,94,.03); }

.callout-box {
  background: rgba(13,43,94,.05);
  border: 1px solid rgba(13,43,94,.12);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
}
.callout-box h4 { color: var(--color-navy); margin-bottom: 10px; }

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  font-size: 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(13,43,94,.08);
}

textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-notice {
  font-size: 0.78rem;
  color: var(--color-silver);
  margin-top: 10px;
}

/* Newsletter box */
.newsletter-box {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.newsletter-box h2, .newsletter-box p { color: var(--color-white); }
.newsletter-box p { color: rgba(255,255,255,.7); }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 28px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* ==============================
   PAGINATION
============================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

/* ==============================
   TEAM CARDS
============================== */
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-card-img { aspect-ratio: 1/1; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card-name { font-size: 1.05rem; font-weight: 700; color: var(--color-navy); margin-bottom: 4px; }
.team-card-role { font-size: 0.82rem; color: var(--color-green); font-weight: 600; margin-bottom: 12px; }
.team-card-bio { font-size: 0.87rem; color: var(--color-text-muted); line-height: 1.6; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--color-bg); display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); transition: all var(--transition); }
.team-social a:hover { background: var(--color-navy); color: var(--color-white); }
.team-social svg { width: 14px; height: 14px; }

/* ==============================
   DATA HIGHLIGHT BARS
============================== */
.data-bar-item { margin-bottom: 18px; }
.data-bar-label { display: flex; justify-content: space-between; font-size: 0.84rem; color: var(--color-text-muted); margin-bottom: 7px; }
.data-bar-label strong { color: var(--color-navy); }
.data-bar-track { height: 8px; background: var(--color-bg-alt); border-radius: 4px; overflow: hidden; }
.data-bar-fill { height: 100%; border-radius: 4px; background: var(--color-navy); transition: width 1s ease; }
.data-bar-fill.green { background: var(--color-green); }

/* ==============================
   TABS
============================== */
.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 32px;
  gap: 0;
  overflow-x: auto;
}

.tab-btn {
  padding: 12px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover { color: var(--color-navy); border-bottom-color: var(--color-navy); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ==============================
   ACCORDION
============================== */
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--color-white);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  user-select: none;
  gap: 16px;
}

.accordion-icon { flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body-inner {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==============================
   FOOTER
============================== */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--color-white); }
.footer-about { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,.6); }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.865rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.865rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--color-silver-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.45); margin: 0; }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ==============================
   INNER PAGE HERO
============================== */
.page-hero {
  background: var(--color-navy);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}

.page-hero h1 { color: var(--color-white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 560px; }

/* ==============================
   TABLE OF CONTENTS
============================== */
.toc {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 32px;
}
.toc-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-navy); margin-bottom: 14px; }
.toc ol { margin-left: 18px; }
.toc li { list-style: decimal; margin-bottom: 7px; }
.toc a { font-size: 0.875rem; color: var(--color-accent); }
.toc a:hover { text-decoration: underline; }

/* ==============================
   SHARE / TOOLS
============================== */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.share-label { font-size: 0.84rem; font-weight: 600; color: var(--color-text); }
.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-white);
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.share-btn:hover { border-color: var(--color-navy); color: var(--color-navy); }
.share-btn svg { width: 14px; height: 14px; }

/* ==============================
   NOTICE / ALERT
============================== */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0;
}
.notice svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.notice-info { background: rgba(30,95,168,.08); border: 1px solid rgba(30,95,168,.2); color: #1a5fa8; }
.notice-warn { background: rgba(202,138,4,.08); border: 1px solid rgba(202,138,4,.2); color: #a16207; }

/* ==============================
   UTILITY
============================== */
.divider { height: 1px; background: var(--color-border); margin: 32px 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.hidden { display: none; }

/* ==============================
   THANK YOU PAGE
============================== */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(44,122,75,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-icon svg { width: 40px; height: 40px; color: var(--color-green); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-block { display: none; }
  .card-h { flex-direction: column; }
  .card-h .card-img { flex: none; aspect-ratio: 16/9; }
}

@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav, .header-cta .btn-secondary { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: block !important; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero { padding: 56px 0; }
  .section { padding: 48px 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
}

.mobile-nav a:hover { background: var(--color-bg); }
.mobile-nav .sub { padding-left: 28px; font-size: 0.85rem; color: var(--color-text-muted); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 18px 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,.18);
}
.cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,.8); margin: 0; }
.cookie-banner a { color: rgba(255,255,255,.9); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
