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

:root {
  --bg-primary: #0d0f18;
  --bg-secondary: #131624;
  --bg-card: #1a1d2e;
  --bg-card-hover: #1f2338;
  --accent-green: #10b981;
  --accent-green-light: #34d399;
  --accent-green-dark: #059669;
  --accent-yellow: #f0c040;
  --accent-yellow-light: #fcd34d;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e2540;
  --border-light: #2d3748;
  --gradient-green: linear-gradient(135deg, #10b981, #059669);
  --gradient-dark: linear-gradient(135deg, #131624, #0d0f18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(16,185,129,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

a { color: var(--accent-green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-green-light); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,15,24,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

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

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

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gradient-green);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

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

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

.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

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

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

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.dropdown-menu a:hover {
  background: rgba(16,185,129,0.1);
  color: var(--accent-green);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gradient-green);
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.88;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16,185,129,0.35);
}

.btn-outline {
  border: 1.5px solid var(--border-light);
  color: var(--text-secondary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(16,185,129,0.07);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,192,64,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.hero-title .highlight {
  color: var(--accent-green);
}

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

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

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border: 1px solid var(--border);
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-stat-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
}

.stat-chip {
  background: rgba(13,15,24,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  flex: 1;
  text-align: center;
}

.stat-chip .val {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-green);
  font-family: 'Space Grotesk', sans-serif;
  display: block;
}

.stat-chip .lbl {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-lg {
  padding: 110px 0;
}

.section-border-top {
  border-top: 1px solid var(--border);
}

.section-dark {
  background: var(--bg-secondary);
}

.section-header {
  margin-bottom: 52px;
}

.section-header.centered {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
}

.section-header.centered .section-desc {
  margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.card:hover {
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 20px rgba(16,185,129,0.08);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(16,185,129,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.card-icon.yellow {
  background: rgba(240,192,64,0.12);
}

.card-icon.blue {
  background: rgba(59,130,246,0.12);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

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

/* ===== DATA VISUALIZATION BLOCKS ===== */
.data-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.data-block-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.data-block-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.data-block-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.data-block-value .unit {
  font-size: 20px;
  color: var(--text-secondary);
}

.data-block-delta {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.delta-up {
  background: rgba(16,185,129,0.15);
  color: var(--accent-green);
}

.delta-down {
  background: rgba(239,68,68,0.15);
  color: #f87171;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 13px;
  color: var(--text-secondary);
  width: 80px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gradient-green);
  transition: width 1s ease;
}

.bar-fill.yellow { background: linear-gradient(90deg, #f0c040, #fcd34d); }
.bar-fill.red { background: linear-gradient(90deg, #ef4444, #f87171); }

.bar-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* ===== INFO TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.info-table td {
  font-size: 14.5px;
  color: var(--text-secondary);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.info-table tr:last-child td { border-bottom: none; }

.info-table tr:hover td {
  background: rgba(255,255,255,0.02);
  color: var(--text-primary);
}

.info-table .highlight-cell {
  color: var(--accent-green);
  font-weight: 600;
}

/* ===== ARTICLE / BLOG ===== */
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}

.article-card:hover {
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-3px);
}

.article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card-body {
  padding: 22px;
}

.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 10px;
}

.article-tag.yellow { color: var(--accent-yellow); }

.article-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.article-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ===== TEAM ===== */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: border-color .25s, transform .25s;
}

.team-card:hover {
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-3px);
}

.team-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.team-card-body {
  padding: 20px;
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.timeline-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-green);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background .2s;
}

.accordion-btn:hover {
  background: rgba(255,255,255,0.03);
}

.accordion-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--accent-green);
  transition: transform .3s;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.accordion-item.open .accordion-answer { display: block; }

/* ===== CONTACT FORM ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(16,185,129,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-success {
  display: none;
  background: rgba(16,185,129,0.12);
  border: 1.5px solid rgba(16,185,129,0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--accent-green);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

.form-success.show { display: block; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover { color: var(--accent-green); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--text-secondary); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding-top: 130px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 14px;
}

.page-hero-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 18px;
  max-width: 700px;
}

.page-hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

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

.content-body h2 {
  font-size: 24px;
  color: var(--text-primary);
  margin: 36px 0 14px;
}

.content-body h3 {
  font-size: 19px;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

.content-body p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.content-body ul, .content-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.content-body li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}

.content-body blockquote {
  border-left: 3px solid var(--accent-green);
  padding: 16px 20px;
  background: rgba(16,185,129,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}

.content-body .callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 24px 0;
}

.content-body .callout-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.content-body img {
  border-radius: var(--radius-md);
  margin: 24px 0;
  border: 1px solid var(--border);
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-link-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.sidebar-link-list a:hover { color: var(--accent-green); }
.sidebar-link-list a:last-child { border-bottom: none; }
.sidebar-link-list a::before {
  content: '→';
  color: var(--accent-green);
  font-size: 13px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
}

.cta-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cta-desc {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-contact-item span:first-child {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color .2s;
}

.footer-links a:hover { color: var(--accent-green); }

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

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-policy-links {
  display: flex;
  gap: 20px;
}

.footer-policy-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-policy-links a:hover { color: var(--accent-green); }

/* ===== POLICY PAGES ===== */
.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 96px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.policy-nav-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.policy-nav a {
  display: block;
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  margin-bottom: 2px;
}

.policy-nav a:hover,
.policy-nav a.active {
  color: var(--accent-green);
  background: rgba(16,185,129,0.08);
}

.policy-content h1 {
  font-size: 36px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.policy-content .updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.policy-content h2 {
  font-size: 20px;
  color: var(--text-primary);
  margin: 40px 0 14px;
  padding-top: 8px;
}

.policy-content h3 {
  font-size: 16.5px;
  color: var(--text-primary);
  margin: 26px 0 10px;
}

.policy-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-content ul, .policy-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.policy-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.policy-highlight {
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
}

.policy-highlight p {
  margin-bottom: 0;
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover { color: var(--accent-green); }

/* ===== TAGS / BADGES ===== */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(16,185,129,0.12);
  color: var(--accent-green);
}

.tag.yellow {
  background: rgba(240,192,64,0.12);
  color: var(--accent-yellow);
}

.tag.blue {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
}

/* ===== PROGRESS BARS ===== */
.progress-list { display: flex; flex-direction: column; gap: 16px; }

.progress-item {}
.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.progress-name { font-size: 14px; color: var(--text-secondary); }
.progress-val { font-size: 14px; font-weight: 700; color: var(--accent-green); }
.progress-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-green);
}

/* ===== IMAGE WITH CAPTION ===== */
.img-caption {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.img-caption img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.img-caption figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

/* ===== HIGHLIGHT NUMBERS ===== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.highlight-cell {
  background: var(--bg-card);
  padding: 28px;
  text-align: center;
}

.highlight-cell:nth-child(even) {
  background: var(--bg-secondary);
}

.highlight-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-green);
  display: block;
  margin-bottom: 6px;
}

.highlight-lbl {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== ALERT / NOTICE ===== */
.alert {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.alert-info {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
}

.alert-warning {
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.25);
}

.alert-icon { font-size: 18px; flex-shrink: 0; }
.alert-text { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-wrap { grid-template-columns: 1fr 280px; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-height: 300px; }
  .hero-image-wrap img { height: 300px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-section { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; padding: 40px 32px; }
  .cta-actions { width: 100%; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-grid .stat-item:nth-child(2) { border-right: none; }
  .content-wrap { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stat-overlay { flex-direction: column; gap: 8px; }
  .hero-actions { flex-direction: column; }
  .section { padding: 56px 0; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-grid { grid-template-columns: 1fr; }
}
