/* =============================================================
   Paladin — Financial Audio Analytics
   Main Stylesheet
   ============================================================= */

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

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0d2340;
  --navy-mid:    #1a3a5c;
  --blue-accent: #1d6fa4;
  --green:       #2a8c6e;
  --green-light: #3dab87;
  --warm-gray:   #5a5f6b;
  --gray-soft:   #8b909a;
  --border:      #dde2ea;
  --bg-white:    #ffffff;
  --bg-beige:    #f7f5f0;
  --bg-light:    #f0f4f8;
  --text-dark:   #1c2333;
  --text-body:   #3d4250;
  --font-sans:   'Inter', sans-serif;
  --font-serif:  'Merriweather', serif;
  --radius:      8px;
  --shadow:      0 2px 16px rgba(13,35,64,.09);
  --shadow-lg:   0 6px 32px rgba(13,35,64,.14);
  --transition:  .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
}

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

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
h1 { font-size: clamp(2rem,4vw,3rem); }
h2 { font-size: clamp(1.5rem,3vw,2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-body); }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-beige); }
.section--dark { background: var(--navy); }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-blue { color: var(--blue-accent); }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: .5rem; }
.section-sub   { color: var(--warm-gray); font-size: 1.05rem; max-width: 620px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue-accent);
  color: #fff;
  border-color: var(--blue-accent);
}
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-green:hover { background: var(--green-light); border-color: var(--green-light); color: #fff; }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(13,35,64,.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: 1.3rem;
  color: var(--navy); text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon span { color: var(--green-light); font-weight: 800; font-size: 1.1rem; }
.logo em { color: var(--blue-accent); font-style: normal; }

.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
  color: var(--text-body);
  font-size: .93rem;
  font-weight: 500;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--green);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem 0;
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem 1.25rem;
  color: var(--text-body);
  font-size: .9rem;
  border-bottom: none;
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--navy); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

/* ── Mobile Nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: .5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-body);
  font-size: .95rem;
  font-weight: 500;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(29,111,164,.15) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.2rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--green-light); font-style: normal; }
.hero-desc { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative; z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; height: 420px; object-fit: cover; }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
}
.hero-stat-item { }
.hero-stat-num { font-size: 1.8rem; font-weight: 700; color: #fff; }
.hero-stat-num span { color: var(--green-light); }
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .1rem; }

/* ── Cards ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.cards-grid--2 { grid-template-columns: repeat(auto-fill, minmax(440px, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.4rem; }
.card-meta {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .75rem;
}
.card-tag {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--bg-light);
  color: var(--blue-accent);
  padding: .2rem .6rem;
  border-radius: 4px;
}
.card-tag--green { background: rgba(42,140,110,.1); color: var(--green); }
.card-date { font-size: .8rem; color: var(--gray-soft); }
.card-title { font-size: 1.05rem; margin-bottom: .5rem; color: var(--navy); line-height: 1.4; }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--blue-accent); }
.card-excerpt { font-size: .88rem; color: var(--warm-gray); line-height: 1.6; margin-bottom: 1rem; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-beige);
}
.card-author { font-size: .8rem; color: var(--warm-gray); }
.card-author strong { color: var(--navy); }

/* ── Podcast Review Card ──────────────────────────────────── */
.podcast-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.podcast-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.podcast-card-header { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.podcast-cover {
  width: 80px; height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.podcast-info { flex: 1; }
.podcast-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.podcast-host { font-size: .85rem; color: var(--warm-gray); }
.podcast-topics { display: flex; flex-wrap: wrap; gap: .4rem; margin: .75rem 0; }
.topic-chip {
  font-size: .73rem; font-weight: 500;
  background: var(--bg-light);
  color: var(--navy-mid);
  padding: .2rem .65rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.podcast-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: var(--gray-soft);
  border-top: 1px solid var(--border);
  padding-top: .75rem;
  margin-top: .75rem;
}
.rating-stars { color: #e4a225; letter-spacing: 1px; }

/* ── Feature list ─────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.feature-text h4 { margin-bottom: .2rem; }
.feature-text p  { font-size: .9rem; margin: 0; }

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat-cell {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-cell .num { font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-cell .num em { color: var(--green); font-style: normal; }
.stat-cell .lbl { font-size: .82rem; color: var(--warm-gray); margin-top: .25rem; }

/* ── Table ────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  padding: .85rem 1.1rem;
  text-align: left;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.data-table td { padding: .85rem 1.1rem; border-bottom: 1px solid var(--border); }
.data-table tbody tr:hover { background: var(--bg-beige); }
.data-table .tag-cell { display: flex; gap: .4rem; flex-wrap: wrap; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .83rem; color: var(--warm-gray);
  padding: 1rem 0;
}
.breadcrumb a { color: var(--warm-gray); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { color: var(--border); }

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 56px 0 48px;
}
.page-header .breadcrumb a, .page-header .breadcrumb { color: rgba(255,255,255,.55); }
.page-header .breadcrumb .sep { color: rgba(255,255,255,.3); }
.page-header h1 { color: #fff; margin-bottom: .6rem; }
.page-header p { color: rgba(255,255,255,.72); max-width: 640px; font-size: 1.05rem; margin: 0; }

/* ── Article layout ───────────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.article-body { font-family: var(--font-sans); }
.article-body h2 { margin: 2rem 0 1rem; }
.article-body h3 { margin: 1.5rem 0 .75rem; }
.article-body p  { line-height: 1.8; margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { margin-bottom: .4rem; }
.article-body blockquote {
  border-left: 4px solid var(--green);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--bg-beige);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--warm-gray);
}
.article-img { width: 100%; border-radius: 10px; margin: 1.5rem 0; }

.sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--bg-beige);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { margin-bottom: 1rem; font-size: 1rem; }
.sidebar-links a {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-body);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--blue-accent); }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-accent); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .78rem; color: var(--gray-soft); margin-top: .5rem; }

/* ── Quote block ──────────────────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--blue-accent);
  padding: 1.25rem 1.75rem;
  background: var(--bg-light);
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--navy);
}

/* ── Tag cloud ────────────────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  font-size: .78rem; font-weight: 500;
  padding: .3rem .85rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--navy-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Chart placeholder ────────────────────────────────────── */
.chart-placeholder {
  background: var(--bg-beige);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 260px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  color: var(--gray-soft);
  font-size: .9rem;
}
.chart-placeholder .chart-icon { font-size: 2.5rem; opacity: .4; }

/* ── Inline bar chart ─────────────────────────────────────── */
.bar-chart { display: flex; flex-direction: column; gap: .75rem; }
.bar-row { display: flex; align-items: center; gap: 1rem; font-size: .85rem; }
.bar-label { width: 160px; flex-shrink: 0; color: var(--text-body); text-align: right; }
.bar-track { flex: 1; background: var(--bg-light); border-radius: 4px; height: 22px; overflow: hidden; position: relative; }
.bar-fill {
  height: 100%; border-radius: 4px;
  background: var(--blue-accent);
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px;
  font-size: .76rem; font-weight: 600; color: #fff;
}
.bar-fill--green { background: var(--green); }
.bar-fill--navy  { background: var(--navy); }

/* ── Tabs ─────────────────────────────────────────────────── */
.tabs-nav {
  display: flex; gap: .25rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
  overflow-x: auto;
}
.tab-btn {
  padding: .65rem 1.4rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: var(--warm-gray);
  white-space: nowrap;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--navy); border-bottom-color: var(--blue-accent); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h5 {
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  padding: .25rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green-light); }
.footer-address { font-size: .85rem; font-style: normal; line-height: 1.9; }
.footer-address a { color: rgba(255,255,255,.6); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
  font-size: .8rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-bottom-links a:hover { color: var(--green-light); }

/* ── Cookie banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 1.1rem 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  border-top: 3px solid var(--green);
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p { margin: 0; font-size: .88rem; flex: 1; min-width: 220px; }
.cookie-banner .btn-sm { flex-shrink: 0; }

/* ── Back to top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 80px; right: 24px; z-index: 800;
  width: 42px; height: 42px;
  background: var(--blue-accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--green); color: #fff; }

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .4rem; margin-top: 3rem;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius);
  font-size: .88rem; font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-body);
  transition: all var(--transition);
}
.pagination a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .active { background: var(--blue-accent); color: #fff; border-color: var(--blue-accent); }

/* ── Alert / notice ───────────────────────────────────────── */
.notice {
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  background: rgba(42,140,110,.07);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.notice--blue { border-left-color: var(--blue-accent); background: rgba(29,111,164,.06); }
.notice--warn { border-left-color: #e4a225; background: rgba(228,162,37,.06); }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding: 0 0 2rem 1.5rem; }
.timeline-dot {
  position: absolute; left: -2rem;
  width: 18px; height: 18px;
  background: var(--bg-white);
  border: 3px solid var(--blue-accent);
  border-radius: 50%;
  top: 3px;
}
.timeline-date { font-size: .78rem; font-weight: 600; color: var(--blue-accent); margin-bottom: .25rem; }
.timeline-title { font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.timeline-desc { font-size: .88rem; color: var(--warm-gray); }

/* ── Comparison table ─────────────────────────────────────── */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.compare-table th, .compare-table td { padding: .9rem 1.1rem; border: 1px solid var(--border); vertical-align: top; }
.compare-table th { background: var(--navy); color: #fff; font-weight: 600; }
.compare-table tr:nth-child(even) td { background: var(--bg-beige); }
.check { color: var(--green); font-size: 1.1rem; }
.cross { color: #c0392b; font-size: 1.1rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .hero { padding: 60px 0; }
  .contact-section { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cards-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-actions { flex-direction: column; }
}
