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

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

:root {
  --orange:       #F97316;
  --orange-dark:  #EA6A0A;
  --orange-light: #FEF0E6;
  --dark:         #111827;
  --dark-2:       #1F2937;
  --gray-700:     #374151;
  --gray-500:     #6B7280;
  --gray-300:     #D1D5DB;
  --gray-100:     #F3F4F6;
  --white:        #FFFFFF;
  --bg:           #FAFAFA;
  --border:       #E5E7EB;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --font-body:    'Inter', sans-serif;
  --font-head:    'Playfair Display', serif;
  --transition:   0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }
p { color: var(--gray-700); font-size: 1rem; line-height: 1.75; }

.text-orange { color: var(--orange); }
.text-muted  { color: var(--gray-500); font-size: .9rem; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .75rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  font-size: .95rem; font-weight: 600; border-radius: var(--radius-sm);
  transition: all var(--transition); cursor: pointer; text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 2px 8px rgba(249,115,22,.35);
}
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,.45); }
.btn-outline {
  background: transparent; color: var(--orange); border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-ghost {
  background: var(--gray-100); color: var(--dark);
}
.btn-ghost:hover { background: var(--border); color: var(--dark); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky; top: 0; z-index: 999; background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 68px; max-width: 1200px; margin: 0 auto; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 22px; height: 22px; fill: var(--white); }
.logo-text { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.logo-text span { color: var(--orange); }

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: .9rem;
  font-weight: 500; color: var(--gray-700); border-radius: var(--radius-sm);
  transition: all var(--transition); text-decoration: none;
}
.nav-link:hover, .nav-link.active { background: var(--orange-light); color: var(--orange); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 11px 18px;
  font-size: .88rem; color: var(--gray-700); font-weight: 500; text-decoration: none;
  transition: all var(--transition); border-radius: 0;
}
.nav-dropdown a:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.nav-dropdown a:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.nav-dropdown a:hover { background: var(--orange-light); color: var(--orange); }
.nav-dropdown a .dd-icon { font-size: 1rem; width: 20px; text-align: center; }

.nav-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); overflow-y: auto; z-index: 998; padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block; padding: 13px 0; font-size: 1rem; font-weight: 500;
  color: var(--gray-700); border-bottom: 1px solid var(--border); text-decoration: none;
}
.mobile-nav-link:hover { color: var(--orange); }
.mobile-nav-group { margin: 12px 0; }
.mobile-nav-group-title { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); padding: 12px 0 4px; }
.mobile-nav-sub-link { display: block; padding: 10px 12px; font-size: .9rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); text-decoration: none; }
.mobile-nav-sub-link:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, #1F2937 60%, #18253a 100%);
  min-height: 600px; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .18; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,24,39,.92) 0%, rgba(17,24,39,.55) 60%, rgba(17,24,39,.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 80px 0; }
.hero-eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--orange); }
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stat-row { display: flex; gap: 32px; margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat-item { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-val { font-size: 1.6rem; font-weight: 700; color: var(--white); font-family: var(--font-head); }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 500; letter-spacing: .05em; }

/* ===== CARDS ===== */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gray-300); }
.card-img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 20px; }
.card-tag { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; display: block; }
.card h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.35; }
.card p { font-size: .9rem; line-height: 1.7; color: var(--gray-500); }
.card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.card-date { font-size: .8rem; color: var(--gray-500); }
.card-link { font-size: .88rem; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 4px; }
.card-link:hover { color: var(--orange-dark); gap: 8px; }

/* Stat card */
.stat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 28px; position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--orange); }
.stat-card-val { font-size: 2rem; font-weight: 700; font-family: var(--font-head); color: var(--dark); }
.stat-card-lbl { font-size: .82rem; color: var(--gray-500); margin-top: 4px; font-weight: 500; }
.stat-card-change { font-size: .82rem; font-weight: 600; margin-top: 8px; }
.stat-card-change.up   { color: #10B981; }
.stat-card-change.down { color: #EF4444; }

/* Feature card */
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px;
  transition: all var(--transition); text-decoration: none; display: block;
}
.feature-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 52px; height: 52px; background: var(--orange-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.feature-card p  { font-size: .88rem; color: var(--gray-500); line-height: 1.65; }

/* Topic card (compact) */
.topic-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); text-decoration: none;
  transition: all var(--transition);
}
.topic-card:hover { border-color: var(--orange); background: var(--orange-light); }
.topic-icon { width: 44px; height: 44px; min-width: 44px; background: var(--orange-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.topic-card h4 { color: var(--dark); margin-bottom: 4px; font-size: .95rem; }
.topic-card p  { font-size: .82rem; color: var(--gray-500); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.02rem; color: var(--gray-500); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray-500); }
.breadcrumb-list a { color: var(--gray-500); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-list .sep { color: var(--gray-300); }
.breadcrumb-list .current { color: var(--dark); font-weight: 500; }

/* ===== ARTICLE / CONTENT ===== */
.article-header { padding: 60px 0 40px; }
.article-header .meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.article-header .category { background: var(--orange-light); color: var(--orange); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.article-header .date  { font-size: .82rem; color: var(--gray-500); }
.article-header .read  { font-size: .82rem; color: var(--gray-500); }

.article-body { max-width: 780px; }
.article-body h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--dark); }
.article-body h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--dark); }
.article-body p  { margin-bottom: 20px; line-height: 1.85; color: var(--gray-700); }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; }
.article-body li { margin-bottom: 10px; color: var(--gray-700); line-height: 1.75; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body blockquote {
  border-left: 4px solid var(--orange); padding: 16px 24px; margin: 28px 0;
  background: var(--orange-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p { color: var(--dark); font-style: italic; margin: 0; }
.article-body .tip-box {
  background: var(--gray-100); border-radius: var(--radius-md); padding: 20px 24px; margin: 28px 0;
  border: 1px solid var(--border);
}
.article-body .tip-box strong { color: var(--dark); display: block; margin-bottom: 8px; }
.article-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-md); margin: 28px 0; }

/* ===== DATA TABLE ===== */
.data-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead tr { background: var(--dark-2); }
.data-table th { padding: 14px 18px; text-align: left; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .06em; text-transform: uppercase; }
.data-table td { padding: 13px 18px; font-size: .9rem; color: var(--gray-700); border-top: 1px solid var(--border); }
.data-table tr:hover td { background: var(--gray-100); }
.data-table .pos { color: #10B981; font-weight: 600; }
.data-table .neg { color: #EF4444; font-weight: 600; }

/* ===== CHART AREA ===== */
.chart-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px;
}
.chart-box-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.chart-box-title { font-size: 1rem; font-weight: 600; color: var(--dark); }
.chart-period-tabs { display: flex; gap: 4px; }
.chart-period-tab {
  padding: 5px 12px; font-size: .78rem; font-weight: 500; color: var(--gray-500);
  background: transparent; border: 1px solid var(--border); border-radius: 20px; cursor: pointer;
  transition: all var(--transition);
}
.chart-period-tab.active, .chart-period-tab:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.chart-canvas-wrap { position: relative; width: 100%; height: 280px; }

/* ===== INFO BOX ===== */
.info-box { background: var(--orange-light); border-left: 4px solid var(--orange); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 20px 24px; margin: 24px 0; }
.info-box strong { color: var(--dark); display: block; margin-bottom: 6px; font-size: .95rem; }
.info-box p { color: var(--gray-700); font-size: .9rem; margin: 0; }

.warning-box { background: #FEF3C7; border-left: 4px solid #F59E0B; border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 20px 24px; margin: 24px 0; }
.warning-box strong { color: #92400E; display: block; margin-bottom: 6px; }
.warning-box p { color: #78350F; font-size: .9rem; margin: 0; }

/* ===== TABS ===== */
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 32px; gap: 0; overflow-x: auto; }
.tab-btn {
  padding: 12px 24px; font-size: .9rem; font-weight: 500; color: var(--gray-500);
  background: transparent; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px; cursor: pointer; white-space: nowrap; transition: all var(--transition);
}
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-btn:hover { color: var(--orange); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== ACCORDION ===== */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; }
.accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-size: .95rem; font-weight: 600;
  color: var(--dark); background: var(--white); transition: background var(--transition);
}
.accordion-head:hover { background: var(--gray-100); }
.accordion-head .acc-icon { width: 20px; height: 20px; min-width: 20px; color: var(--gray-500); transition: transform var(--transition); }
.accordion-item.open .accordion-head .acc-icon { transform: rotate(180deg); color: var(--orange); }
.accordion-body { display: none; padding: 0 22px 20px; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { font-size: .9rem; color: var(--gray-700); line-height: 1.75; }

/* ===== NEWSLETTER / CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, #111827 0%, #1a2742 100%);
  border-radius: var(--radius-lg); padding: 56px 64px; position: relative; overflow: hidden;
}
.cta-strip::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: var(--orange); opacity: .07; border-radius: 50%; }
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p  { color: rgba(255,255,255,.65); margin-bottom: 32px; font-size: 1.02rem; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-input {
  flex: 1; padding: 13px 18px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color: var(--white); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem;
  outline: none; transition: border var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus { border-color: var(--orange); }

/* ===== CONTACT FORM ===== */
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--dark); background: var(--bg);
  outline: none; transition: border var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--orange); background: var(--white); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
  display: none; background: #ECFDF5; border: 1px solid #6EE7B7; border-radius: var(--radius-md);
  padding: 20px 24px; margin-top: 20px; text-align: center;
}
.form-success.show { display: block; }
.form-success h4 { color: #065F46; margin-bottom: 4px; }
.form-success p  { color: #047857; font-size: .9rem; margin: 0; }

/* ===== SIDEBAR ===== */
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--orange-light); }
.widget-list li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: flex-start; gap: 10px; }
.widget-list li:last-child { border-bottom: none; padding-bottom: 0; }
.widget-list a { font-size: .88rem; color: var(--gray-700); text-decoration: none; line-height: 1.5; }
.widget-list a:hover { color: var(--orange); }
.widget-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.widget-tag { display: inline-block; padding: 5px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: .78rem; color: var(--gray-700); text-decoration: none; transition: all var(--transition); }
.widget-tag:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ===== TEAM CARD ===== */
.team-card { text-align: center; }
.team-img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 16px; }
.team-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; font-family: var(--font-body); }
.team-role { font-size: .85rem; color: var(--orange); font-weight: 500; margin-bottom: 10px; }
.team-bio  { font-size: .85rem; color: var(--gray-500); line-height: 1.65; }

/* ===== TESTIMONIAL ===== */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px;
}
.testimonial-stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: .95rem; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--gray-100); }
.testimonial-name { font-size: .9rem; font-weight: 600; color: var(--dark); }
.testimonial-title { font-size: .78rem; color: var(--gray-500); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; right: 0; bottom: -40px; width: 400px; height: 400px; background: var(--orange); opacity: .05; border-radius: 50%; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p   { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 580px; margin: 0; }
.page-header-eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }

/* ===== PROGRESS BAR ===== */
.progress-list { display: flex; flex-direction: column; gap: 16px; }
.progress-item {}
.progress-label { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.progress-bar-bg { height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--orange); border-radius: 4px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -24px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--orange); }
.timeline-date { font-size: .78rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.timeline-item h4 { font-size: .95rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; font-family: var(--font-body); }
.timeline-item p  { font-size: .85rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.75; margin: 16px 0 24px; color: rgba(255,255,255,.55); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-contact-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-heading { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .87rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar { background: var(--gray-100); border-top: 1px solid var(--border); padding: 14px 0; }
.disclaimer-bar p { font-size: .78rem; color: var(--gray-500); text-align: center; line-height: 1.6; }

/* ===== FLOATING BACK TO TOP ===== */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%; background: var(--orange);
  color: var(--white); display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(249,115,22,.4); cursor: pointer; font-size: 1.2rem;
  border: none; transition: all var(--transition);
}
#back-to-top:hover { background: var(--orange-dark); transform: translateY(-2px); }
#back-to-top.visible { display: flex; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--dark-2); border-top: 3px solid var(--orange);
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transform: translateY(100%); transition: transform .4s ease; flex-wrap: wrap;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: .85rem; color: rgba(255,255,255,.8); max-width: 700px; margin: 0; }
#cookie-banner p a { color: var(--orange); }
.cookie-btns { display: flex; gap: 10px; }

/* ===== SEARCH ===== */
.search-bar { position: relative; }
.search-input {
  width: 100%; padding: 14px 50px 14px 20px; border: 2px solid var(--border); border-radius: 30px;
  font-family: var(--font-body); font-size: .95rem; color: var(--dark); background: var(--white);
  outline: none; transition: border var(--transition);
}
.search-input:focus { border-color: var(--orange); }
.search-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: var(--orange); border: none; border-radius: 22px; padding: 8px 18px; color: var(--white); font-size: .9rem; cursor: pointer; }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; padding: 40px 0 0; }
.page-num {
  width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 500; color: var(--gray-700); border: 1px solid var(--border);
  background: var(--white); text-decoration: none; transition: all var(--transition);
}
.page-num:hover, .page-num.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ===== MISC ===== */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.tag { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 600; background: var(--orange-light); color: var(--orange); }
.tag-dark { background: var(--gray-100); color: var(--gray-700); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.two-col-wide { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.two-col-main { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.policy-content h1 { font-size: 2rem; margin-bottom: 8px; }
.policy-content .policy-date { font-size: .85rem; color: var(--gray-500); margin-bottom: 36px; display: block; }
.policy-content h2 { font-size: 1.3rem; color: var(--dark); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--orange-light); }
.policy-content h3 { font-size: 1.05rem; color: var(--dark); margin: 24px 0 8px; }
.policy-content p  { font-size: .95rem; line-height: 1.85; color: var(--gray-700); margin-bottom: 16px; }
.policy-content ul, .policy-content ol { margin: 12px 0 20px 24px; }
.policy-content li { font-size: .95rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 8px; }
.policy-content ul li { list-style: disc; }
.policy-content ol li { list-style: decimal; }
.policy-content a { color: var(--orange); }
.policy-toc { background: var(--gray-100); border-radius: var(--radius-md); padding: 24px 28px; margin-bottom: 40px; }
.policy-toc h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.policy-toc ol { margin-left: 20px; }
.policy-toc li { font-size: .88rem; color: var(--gray-700); margin-bottom: 6px; }
.policy-toc a { color: var(--orange); font-weight: 500; text-decoration: none; }
