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

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

:root {
  --white: #FFFFFF;
  --graphite-dark: #111827;
  --graphite: #374151;
  --graphite-mid: #4B5563;
  --graphite-light: #6B7280;
  --light-gray: #F9FAFB;
  --light-gray-2: #F3F4F6;
  --border: #E5E7EB;
  --border-light: #F0F0F0;
  --accent: #0D9488;
  --accent-hover: #0F766E;
  --accent-light: #CCFBF1;
  --accent-orange: #F97316;
  --accent-orange-hover: #EA6C0A;
  --accent-orange-light: #FFF7ED;
  --text-dark: #111827;
  --text-medium: #374151;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.07);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --transition: all .22s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-medium);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; color: var(--graphite-dark); line-height: 1.3; }

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

/* ─── TOP BAR ─── */
.topbar {
  background: var(--graphite-dark);
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #1F2937;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--white); }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ─── HEADER ─── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--graphite-dark);
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-toggle svg { transition: var(--transition); }
.dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 200;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-medium);
}
.dropdown-menu a:hover { background: var(--light-gray); color: var(--accent); }

.header-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--accent-hover) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--graphite-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 300;
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-close { cursor: pointer; font-size: 28px; color: var(--graphite-dark); background: none; border: none; line-height: 1; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-medium);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:hover { color: var(--accent); background: var(--accent-light); }
.mobile-nav-section { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; padding: 16px 16px 4px; }

/* ─── HERO ─── */
.hero {
  padding: 80px 0 72px;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--graphite-dark);
  margin-bottom: 20px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--graphite-mid);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,148,136,.25); }
.btn-secondary {
  background: var(--white);
  color: var(--graphite-dark);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-orange {
  background: var(--accent-orange);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-orange:hover { background: var(--accent-orange-hover); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--accent);
  cursor: pointer;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 420px; object-fit: cover; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--graphite-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-value span { color: var(--accent); }
.hero-stat-label { font-size: 13px; color: var(--text-light); }

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--graphite-dark); }
.section-accent { background: var(--accent); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-title { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--graphite-dark); margin-bottom: 16px; }
.section-desc { font-size: 17px; color: var(--graphite-light); max-width: 620px; margin: 0 auto; line-height: 1.7; }
.section-header.left .section-desc { margin: 0; }
.section-divider { width: 48px; height: 3px; background: var(--accent); border-radius: 3px; margin: 16px auto 0; }
.section-header.left .section-divider { margin-left: 0; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-2px); }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.card-icon.orange { background: var(--accent-orange-light); color: var(--accent-orange); }
.card-title { font-size: 17px; font-weight: 600; color: var(--graphite-dark); margin-bottom: 10px; }
.card-text { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.card-link { font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 16px; display: inline-flex; align-items: center; gap: 4px; }
.card-link:hover { color: var(--accent-hover); gap: 8px; }

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

/* ─── METRIC CARDS ─── */
.metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.metric-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.metric-card.dark { background: var(--graphite-dark); border-color: #374151; }
.metric-value {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-card.dark .metric-value { color: var(--accent); }
.metric-label { font-size: 13px; color: var(--text-light); font-weight: 500; }
.metric-card.dark .metric-label { color: var(--text-muted); }
.metric-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.metric-change.up { color: #059669; }
.metric-change.down { color: #DC2626; }

/* ─── FEATURE SPLIT ─── */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-split.reverse { }
.feature-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-image img { width: 100%; height: 380px; object-fit: cover; }
.feature-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.feature-title { font-size: 30px; font-weight: 700; color: var(--graphite-dark); margin-bottom: 16px; line-height: 1.25; }
.feature-desc { color: var(--graphite-mid); line-height: 1.7; margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-medium); }
.feature-item-check { width: 20px; height: 20px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--accent); }

/* ─── BLOG CARDS ─── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-2px); }
.blog-card-image { overflow: hidden; }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.blog-card-title { font-size: 17px; font-weight: 600; color: var(--graphite-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 12px; }

/* ─── TAGS ─── */
.tag {
  display: inline-block;
  background: var(--light-gray-2);
  color: var(--graphite-mid);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.tag.accent { background: var(--accent-light); color: var(--accent); border-color: transparent; }
.tag.orange { background: var(--accent-orange-light); color: var(--accent-orange); border-color: transparent; }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.page-header-inner { max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--accent-hover); }
.breadcrumb sep { color: var(--border); }
.page-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--graphite-dark); margin-bottom: 14px; }
.page-desc { font-size: 17px; color: var(--graphite-mid); line-height: 1.7; }

/* ─── SIDEBAR ─── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-title { font-size: 14px; font-weight: 700; color: var(--graphite-dark); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-list a { font-size: 14px; color: var(--text-medium); display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-list a:last-child { border-bottom: none; }
.sidebar-list a:hover { color: var(--accent); }
.sidebar-list a::before { content: '→'; color: var(--accent); font-size: 12px; flex-shrink: 0; }

/* ─── DATA TABLE ─── */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: var(--light-gray); color: var(--graphite-mid); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; padding: 12px 16px; border-bottom: 2px solid var(--border); text-align: left; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-light); color: var(--text-medium); vertical-align: middle; }
.data-table tr:hover td { background: var(--light-gray); }
.data-table .num { font-weight: 600; color: var(--graphite-dark); }
.data-table .up { color: #059669; font-weight: 600; }
.data-table .down { color: #DC2626; font-weight: 600; }

/* ─── ACCORDION / FAQ ─── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--graphite-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.accordion-trigger:hover { background: var(--light-gray); color: var(--accent); }
.accordion-trigger.active { color: var(--accent); }
.accordion-icon { flex-shrink: 0; transition: transform .22s ease; }
.accordion-trigger.active .accordion-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-body-inner { padding: 0 24px 20px; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ─── FORM ─── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--graphite-dark); margin-bottom: 7px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--graphite-dark);
  background: var(--white);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Success message */
.success-message {
  display: none;
  background: #ECFDF5;
  border: 1.5px solid #6EE7B7;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  color: #065F46;
  font-weight: 500;
  align-items: center;
  gap: 12px;
}
.success-message.show { display: flex; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--graphite-dark);
  padding: 40px 0;
}
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-bar-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid #374151;
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-value { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stats-bar-label { font-size: 13px; color: #9CA3AF; }

/* ─── CTA SECTION ─── */
.cta-section { background: var(--accent); padding: 72px 0; text-align: center; }
.cta-section h2 { color: var(--white); font-size: 34px; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white { background: var(--white); color: var(--accent); padding: 13px 32px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-white:hover { background: #F0FFFE; color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-white-outline { background: transparent; color: var(--white); padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; border: 2px solid rgba(255,255,255,.5); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }

/* ─── FOOTER ─── */
.site-footer { background: var(--graphite-dark); color: #9CA3AF; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid #374151; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-mark { width: 36px; height: 36px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 16px; font-family: 'Poppins', sans-serif; }
.footer-logo-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); }
.footer-tagline { font-size: 14px; line-height: 1.65; color: #9CA3AF; margin-bottom: 24px; max-width: 280px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #9CA3AF; margin-bottom: 12px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-item a { color: #9CA3AF; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-col-title { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: #9CA3AF; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 13px; color: #6B7280; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: #6B7280; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ─── ARTICLE / PROSE ─── */
.prose { max-width: 760px; }
.prose h2 { font-size: 26px; font-weight: 700; color: var(--graphite-dark); margin: 40px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 600; color: var(--graphite-dark); margin: 32px 0 12px; }
.prose p { font-size: 16px; color: var(--text-medium); line-height: 1.75; margin-bottom: 20px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 16px; color: var(--text-medium); line-height: 1.7; margin-bottom: 8px; }
.prose strong { color: var(--graphite-dark); font-weight: 600; }
.prose blockquote { border-left: 3px solid var(--accent); padding: 16px 24px; background: var(--accent-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.prose blockquote p { color: var(--accent-hover); font-style: italic; margin: 0; }
.prose .highlight-box { background: var(--light-gray); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.prose th { background: var(--light-gray); padding: 12px 16px; border: 1px solid var(--border); font-weight: 600; text-align: left; color: var(--graphite-dark); }
.prose td { padding: 12px 16px; border: 1px solid var(--border); color: var(--text-medium); }
.prose tr:nth-child(even) td { background: var(--light-gray); }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 5px; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--accent); }
.timeline-year { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.timeline-title { font-size: 16px; font-weight: 600; color: var(--graphite-dark); margin-bottom: 6px; }
.timeline-text { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-split { gap: 48px; }
}
@media (max-width: 768px) {
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .section { padding: 56px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .grid-1-2 { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 32px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item { border-right: none; border-bottom: 1px solid #374151; }
  .stats-bar-item:nth-child(even) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .topbar-left { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .page-header { padding: 40px 0 32px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── NAV TOGGLE (blog.php header variant) ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--graphite-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent-hover) !important; color: var(--white) !important; }

/* has-dropdown nav pattern */
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
  white-space: nowrap;
}
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--accent); background: var(--accent-light); }
.has-dropdown { position: relative; }
.has-dropdown > ul.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.has-dropdown:hover > ul.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown > ul.dropdown li a {
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-medium);
  background: none;
  border-radius: var(--radius-sm);
}
.has-dropdown > ul.dropdown li a:hover { background: var(--light-gray); color: var(--accent); }

/* ─── PAGE HERO (blog.php variant) ─── */
.page-hero {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--graphite-dark);
  margin-bottom: 14px;
}
.page-hero-lead {
  font-size: 17px;
  color: var(--graphite-mid);
  line-height: 1.7;
  max-width: 680px;
}

/* ─── BLOG FILTER BAR ─── */
.blog-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.blog-filter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.filter-tab:hover { border-color: var(--accent); color: var(--accent); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: var(--white); }
.blog-search { display: flex; gap: 8px; }
.blog-search input {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--graphite-dark);
  outline: none;
  width: 220px;
  transition: var(--transition);
}
.blog-search input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.blog-search button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.blog-search button:hover { background: var(--accent-hover); }

/* ─── BLOG MAIN LAYOUT ─── */
.blog-main { padding: 60px 0; }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* ─── BLOG POSTS ─── */
.blog-posts { display: flex; flex-direction: column; gap: 40px; }

/* Featured post */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.featured-post .blog-card-image { height: 100%; }
.featured-post .blog-card-image img { height: 100%; min-height: 300px; object-fit: cover; }
.featured-post .blog-card-body { padding: 36px; display: flex; flex-direction: column; justify-content: space-between; }
.featured-post .blog-card-body h2 { font-size: 22px; font-weight: 700; color: var(--graphite-dark); margin-bottom: 12px; line-height: 1.3; }
.featured-post .blog-card-body h2 a { color: inherit; }
.featured-post .blog-card-body h2 a:hover { color: var(--accent); }
.featured-post .blog-card-body p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }

/* Blog cat tag badge on images */
.blog-card-image { position: relative; }
.blog-cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* Post meta */
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.post-date { font-size: 12px; color: var(--text-muted); }
.post-read-time {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 100px;
}

/* Post footer (author + CTA) */
.post-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.post-author { display: flex; align-items: center; gap: 10px; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-size: 13px; font-weight: 600; color: var(--graphite-dark); }
.author-title { font-size: 12px; color: var(--text-muted); }

/* Read more buttons */
.btn-read-more {
  background: var(--accent);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-read-more:hover { background: var(--accent-hover); color: var(--white); }
.btn-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-link:hover { color: var(--accent-hover); gap: 8px; }

/* Blog secondary grid (2 col) */
.blog-grid-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-grid-secondary .blog-card-body h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--graphite-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.blog-grid-secondary .blog-card-body h2 a { color: inherit; }
.blog-grid-secondary .blog-card-body h2 a:hover { color: var(--accent); }
.blog-grid-secondary .blog-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }

/* Blog 3-col grid */
.blog-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-grid-three .blog-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--graphite-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.blog-grid-three .blog-card-body h3 a { color: inherit; }
.blog-grid-three .blog-card-body h3 a:hover { color: var(--accent); }
.blog-grid-three .blog-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.small-img img { height: 150px !important; }

/* ─── BLOG PAGINATION ─── */
.blog-pagination { display: flex; align-items: center; gap: 6px; justify-content: center; padding-top: 16px; }
.pag-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.pag-btn:hover { border-color: var(--accent); color: var(--accent); }
.pag-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }
.pag-dots { font-size: 14px; color: var(--text-muted); padding: 0 4px; }

/* ─── BLOG SIDEBAR ─── */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.blog-sidebar .sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.blog-sidebar .sidebar-widget h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--graphite-dark);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* Topic list */
.topic-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.topic-list li a {
  font-size: 14px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.topic-list li:last-child a { border-bottom: none; }
.topic-list li a::before { content: '→'; color: var(--accent); font-size: 12px; flex-shrink: 0; }
.topic-list li a:hover { color: var(--accent); padding-left: 4px; }

/* Stat list sidebar */
.stat-list { display: flex; flex-direction: column; gap: 16px; }
.stat-item-small {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.stat-item-small:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num-sm {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label-sm { font-size: 12px; color: var(--text-muted); }

/* Category list */
.cat-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.cat-list li a {
  font-size: 14px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.cat-list li:last-child a { border-bottom: none; }
.cat-list li a:hover { color: var(--accent); }
.cat-list li a span {
  background: var(--light-gray-2);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}

/* Sidebar newsletter */
.sidebar-newsletter p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.newsletter-form-sidebar { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form-sidebar input {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--graphite-dark);
  outline: none;
  transition: var(--transition);
}
.newsletter-form-sidebar input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.newsletter-form-sidebar .btn-primary { width: 100%; justify-content: center; font-size: 13px; padding: 10px; }
.newsletter-success { background: #ECFDF5; border: 1.5px solid #6EE7B7; border-radius: var(--radius-sm); padding: 12px; color: #065F46; font-size: 13px; text-align: center; }

/* ─── COOKIE BAR ─── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1F2937;
  color: #D1D5DB;
  padding: 16px 24px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 2px solid var(--accent);
}
.cookie-bar p { font-size: 14px; margin: 0; max-width: 680px; }
.cookie-bar a { color: var(--accent); }
.cookie-bar a:hover { color: var(--white); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-outline-sm {
  background: transparent;
  border: 1px solid #6B7280;
  color: #9CA3AF;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-outline-sm:hover { border-color: var(--white); color: var(--white); }

/* ─── FOOTER COL (blog.php footer variant) ─── */
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: #9CA3AF; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.site-footer address { font-style: normal; font-size: 13px; color: #9CA3AF; line-height: 1.8; margin-top: 16px; }
.site-footer address a { color: #9CA3AF; }
.site-footer address a:hover { color: var(--accent); }

/* ─── RESPONSIVE — blog-specific ─── */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .blog-card-image img { min-height: 260px; height: 260px; }
}
@media (max-width: 768px) {
  .blog-filter-bar { position: static; }
  .blog-filter-bar .container { flex-direction: column; align-items: flex-start; }
  .blog-search { width: 100%; }
  .blog-search input { flex: 1; width: auto; }
  .blog-grid-secondary { grid-template-columns: 1fr; }
  .blog-grid-three { grid-template-columns: 1fr 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .main-nav { display: none; }
  .main-nav.open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 300; overflow-y: auto; padding: 24px; }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open ul li a { padding: 12px 16px; border-bottom: 1px solid var(--border-light); font-size: 16px; border-radius: 0; }
}
@media (max-width: 480px) {
  .blog-grid-three { grid-template-columns: 1fr; }
  .featured-post .blog-card-body { padding: 20px; }
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-orange { color: var(--accent-orange); }
.text-muted { color: var(--text-muted); }
.text-dark { color: var(--graphite-dark); }
.font-bold { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.sticky-sidebar { position: sticky; top: 90px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.badge { display: inline-flex; align-items: center; gap: 4px; background: var(--accent-light); color: var(--accent); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.badge.orange { background: var(--accent-orange-light); color: var(--accent-orange); }
.rounded-img { border-radius: var(--radius-lg); }
.shadow-img { box-shadow: var(--shadow-md); }
.content-gap { display: flex; flex-direction: column; gap: 24px; }
