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

:root {
  --navy: #1a2744;
  --navy-mid: #243358;
  --navy-light: #2c3e6b;
  --green: #4a8c6f;
  --green-light: #5ba082;
  --green-pale: rgba(74,140,111,0.1);
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-300: #c8cdd8;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.22s ease;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
h2 { font-size: clamp(1.45rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

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

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

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-mid);
  padding: 7px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.68);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.68); }
.top-bar a:hover { color: #fff; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; fill: white; }
.logo-text { font-size: 1.45rem; font-weight: 700; color: white; letter-spacing: -0.02em; }
.logo-text span { color: var(--green); }

.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  color: rgba(255,255,255,0.82);
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  display: block;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  border: 1px solid var(--gray-200);
  padding: 8px;
  list-style: none;
}
.nav-menu > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 8px 14px;
  color: var(--gray-700);
  font-size: 0.875rem;
  border-radius: 6px;
}
.nav-dropdown a:hover { background: var(--gray-50); color: var(--navy); }
.nav-cta {
  background: var(--green) !important;
  color: white !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--green-light) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; transition: all 0.3s; border-radius: 2px;
}
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav-list a {
  display: block;
  color: rgba(255,255,255,0.82);
  padding: 10px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-list a:hover { color: white; background: rgba(255,255,255,0.05); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e335a 55%, var(--navy-light) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: white; }
.hero-content h1 { color: white; margin-bottom: 1.25rem; font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
.hero-content p { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
.hero-stat { background: rgba(255,255,255,0.06); padding: 18px; text-align: center; }
.hero-stat-number { font-size: 1.9rem; font-weight: 700; color: var(--green); display: block; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  border: none; text-decoration: none; font-family: inherit;
}
.btn-primary  { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-light); color: white; transform: translateY(-1px); }
.btn-navy    { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-light); color: white; transform: translateY(-1px); }
.btn-green   { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-light); color: white; transform: translateY(-1px); }
.btn-outline  { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.38); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: white; }
.btn-sm { padding: 8px 18px; font-size: 0.84rem; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); }
.section-dark h2,.section-dark h3,.section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.72); }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  color: var(--green); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
}
.section-divider { width: 46px; height: 3px; background: var(--green); margin-top: 14px; }
.section-divider.center { margin: 14px auto 0; }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.stat-item { text-align: center; padding: 20px; }
.stat-number { font-size: 2.2rem; font-weight: 700; color: var(--green); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.68); }

/* ── CARDS ── */
.card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  overflow: hidden; transition: all 0.3s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-label { font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: var(--green); margin-bottom: 8px; }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; line-height: 1.4; }
.card-text { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 14px; }
.card-footer { padding: 14px 24px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }

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

/* ── META / TAGS ── */
.meta { display: flex; gap: 14px; align-items: center; font-size: 0.78rem; color: var(--gray-500); margin-bottom: 10px; flex-wrap: wrap; }
.tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; background: var(--gray-100); color: var(--gray-700); }
.tag-green { background: var(--green-pale); color: var(--green); }
.tag-navy { background: rgba(26,39,68,0.08); color: var(--navy); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 580px; margin-bottom: 0; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--gray-200); margin-bottom: 40px; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--gray-500); }
.breadcrumb-inner a { color: var(--gray-500); }
.breadcrumb-inner a:hover { color: var(--navy); }
.breadcrumb-inner .sep { color: var(--gray-300); }
.breadcrumb-inner .current { color: var(--navy); font-weight: 500; }

/* ── SIDEBAR ── */
.content-sidebar { display: grid; grid-template-columns: 1fr 310px; gap: 48px; align-items: start; }
.sidebar-widget { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px; }
.sidebar-widget h4 { margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-100); font-size: 0.95rem; }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 15px;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-size: 0.93rem; font-family: inherit; color: var(--gray-700);
  background: white; transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,140,111,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(74,140,111,0.1); border: 1px solid var(--green);
  border-radius: var(--radius); padding: 22px;
  text-align: center; color: var(--green);
}
.form-success.show { display: block; }
.form-success h4 { color: var(--green); margin-bottom: 6px; }
.form-success p { margin: 0; font-size: 0.9rem; }

/* ── ACCORDION ── */
.accordion-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 22px; cursor: pointer;
  background: white; font-weight: 600; font-size: 0.93rem;
  color: var(--navy); transition: background var(--transition); user-select: none;
}
.accordion-header:hover { background: var(--gray-50); }
.accordion-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all 0.3s;
  font-size: 16px; color: var(--navy); line-height: 1;
}
.accordion-item.active .accordion-icon { background: var(--green); color: white; transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-item.active .accordion-body { max-height: 2000px; }
.accordion-content { padding: 0 22px 20px; color: var(--gray-500); line-height: 1.8; font-size: 0.92rem; }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th { background: var(--navy); color: white; padding: 13px 15px; text-align: left; font-weight: 600; }
.data-table td { padding: 11px 15px; border-bottom: 1px solid var(--gray-100); }
.data-table tr:hover td { background: var(--gray-50); }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--green); padding: 18px 22px;
  background: var(--gray-50); margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p { font-size: 1.05rem; font-style: italic; color: var(--navy); margin: 0; line-height: 1.7; }

/* ── ICON BOX ── */
.icon-box {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border-radius: var(--radius-lg);
  background: white; border: 1px solid var(--gray-200); transition: all 0.3s;
}
.icon-box:hover { box-shadow: var(--shadow-md); border-color: rgba(74,140,111,0.35); }
.icon-box-icon {
  width: 52px; height: 52px; background: var(--green-pale);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.icon-box-icon svg { width: 26px; height: 26px; fill: var(--green); }
.icon-box-content h4 { margin-bottom: 7px; }
.icon-box-content p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 46px; }
.timeline::before {
  content: ''; position: absolute; left: 15px;
  top: 8px; bottom: 8px; width: 2px; background: var(--gray-200);
}
.timeline-item { position: relative; margin-bottom: 38px; }
.timeline-dot {
  position: absolute; left: -39px; top: 5px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--green); border: 3px solid white;
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 5px; }
.timeline-item h4 { margin-bottom: 7px; }
.timeline-item p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(74,140,111,0.07) 0%, rgba(26,39,68,0.04) 100%);
  border: 1px solid rgba(74,140,111,0.18); border-radius: var(--radius-lg); padding: 26px; margin: 26px 0;
}

/* ── ALERT ── */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 0.88rem; line-height: 1.6; }
.alert-info { background: rgba(74,140,111,0.1); border-left: 4px solid var(--green); color: var(--navy); }
.alert-warning { background: rgba(234,179,8,0.1); border-left: 4px solid #f59e0b; color: #78350f; }

/* ── STEPS ── */
.steps-numbered { counter-reset: step; list-style: none; }
.steps-numbered li { counter-increment: step; padding-left: 52px; position: relative; margin-bottom: 24px; }
.steps-numbered li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; background: var(--navy); color: white;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.84rem;
}
.steps-numbered li h4 { margin-bottom: 5px; }
.steps-numbered li p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

/* ── PROGRESS BAR ── */
.progress-bar { background: var(--gray-100); border-radius: 100px; height: 7px; overflow: hidden; margin-top: 6px; }
.progress-fill { height: 100%; background: var(--green); border-radius: 100px; }

/* ── EXPERT CARD ── */
.expert-card {
  text-align: center; padding: 30px 22px;
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); transition: all 0.3s;
}
.expert-card:hover { box-shadow: var(--shadow-md); border-color: rgba(74,140,111,0.4); transform: translateY(-3px); }
.expert-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px; object-fit: cover; border: 3px solid var(--gray-100); }
.expert-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.expert-title { font-size: 0.82rem; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.expert-bio { font-size: 0.84rem; color: var(--gray-500); line-height: 1.7; }

/* ── TOOL CARD ── */
.tool-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 11px; transition: all 0.3s;
}
.tool-card:hover { box-shadow: var(--shadow-md); border-color: rgba(74,140,111,0.35); }
.tool-icon { width: 50px; height: 50px; background: var(--green-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.tool-icon svg { width: 25px; height: 25px; fill: var(--green); }
.tool-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.tool-desc { font-size: 0.86rem; color: var(--gray-500); line-height: 1.7; flex: 1; }

/* ── SEMINAR CARD ── */
.seminar-card {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 22px; align-items: center;
  padding: 22px; background: white;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  margin-bottom: 14px; transition: all 0.3s;
}
.seminar-card:hover { box-shadow: var(--shadow-md); border-color: rgba(74,140,111,0.3); }
.seminar-date { text-align: center; background: var(--navy); color: white; padding: 11px 16px; border-radius: var(--radius); min-width: 66px; }
.seminar-date-day { font-size: 1.7rem; font-weight: 700; line-height: 1; display: block; }
.seminar-date-month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.65); }
.seminar-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.seminar-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--gray-500); flex-wrap: wrap; }

/* ── CASE STUDY ── */
.case-metric { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 14px; text-align: center; }
.case-metric-value { font-size: 1.65rem; font-weight: 700; color: var(--green); display: block; line-height: 1.2; }
.case-metric-label { font-size: 0.78rem; color: var(--gray-500); }

/* ── CTA STRIP ── */
.cta-strip { background: var(--navy); padding: 56px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-strip h3 { color: white; font-size: 1.45rem; margin-bottom: 7px; }
.cta-strip p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.92rem; }
.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }
.newsletter-form input {
  padding: 11px 18px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.09); color: white;
  font-size: 0.88rem; min-width: 260px; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--green); }

/* ── ZIGZAG ── */
.zigzag-item { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 72px; }
.zigzag-item:nth-child(even) .zigzag-img { order: -1; }
.zigzag-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }

/* ── LEGAL ── */
.legal-content { max-width: 820px; }
.legal-info-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 2rem; }
.legal-info-box h4 { margin-bottom: 10px; font-size: 0.93rem; }
.legal-info-box p, .legal-info-box address { font-size: 0.88rem; color: var(--gray-500); margin: 0; font-style: normal; line-height: 1.8; }
.legal-content h2 { font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: 0.9rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.legal-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin-top: 1.4rem; margin-bottom: 0.65rem; }
.legal-content ul, .legal-content ol { margin-left: 22px; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 5px; line-height: 1.7; }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; font-size: 0.88rem; }
.legal-content table th { background: var(--gray-50); padding: 10px 13px; border: 1px solid var(--gray-200); text-align: left; }
.legal-content table td { padding: 10px 13px; border: 1px solid var(--gray-200); }

/* ── SITEMAP ── */
.sitemap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.sitemap-section h3 { font-size: 0.97rem; margin-bottom: 14px; padding-bottom: 9px; border-bottom: 2px solid var(--green); }
.sitemap-list li { margin-bottom: 7px; }
.sitemap-list a { font-size: 0.88rem; color: var(--gray-500); display: flex; align-items: center; gap: 5px; }
.sitemap-list a::before { content: '→'; color: var(--green); font-size: 0.82rem; }
.sitemap-list a:hover { color: var(--navy); }

/* ── COOKIE ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); color: white;
  padding: 18px 0; z-index: 9999; display: none;
  box-shadow: 0 -4px 22px rgba(0,0,0,0.2);
}
.cookie-banner.show { display: block; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.cookie-text { font-size: 0.85rem; color: rgba(255,255,255,0.82); flex: 1; margin: 0; }
.cookie-text a { color: var(--green); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px; background: var(--navy);
  color: white; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: all 0.3s; z-index: 998; border: none;
  box-shadow: var(--shadow-md); font-size: 1rem;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--green); }

/* ── READING PROGRESS ── */
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--green); z-index: 9997; transition: width 0.1s; width: 0; }

/* ── FAQ TABS ── */
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.faq-tab {
  padding: 8px 18px; border-radius: 20px;
  font-size: 0.84rem; font-weight: 600;
  background: var(--gray-100); color: var(--gray-700);
  border: none; cursor: pointer; font-family: inherit;
  transition: all var(--transition);
}
.faq-tab.active, .faq-tab:hover { background: var(--navy); color: white; }
.faq-group-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 28px 0 12px; padding-left: 12px; border-left: 3px solid var(--green); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin: 14px 0 22px; color: rgba(255,255,255,0.62); }
.footer-contact-item { display: flex; gap: 9px; margin-bottom: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.68); align-items: flex-start; }
.footer-contact-item a { color: rgba(255,255,255,0.68); }
.footer-contact-item a:hover { color: white; }
.footer-col h5 { color: white; font-size: 0.86rem; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 0.86rem; }
.footer-links a:hover { color: white; }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: white; }

/* ── ARTICLE DETAIL ── */
.article-body { font-size: 1rem; line-height: 1.85; color: var(--gray-700); }
.article-body h2 { margin-top: 2.2rem; margin-bottom: 1rem; font-size: 1.5rem; }
.article-body h3 { margin-top: 1.6rem; margin-bottom: 0.8rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin-left: 24px; margin-bottom: 1.1rem; }
.article-body li { margin-bottom: 6px; }
.article-body img { border-radius: var(--radius-lg); margin: 28px 0; width: 100%; }

.article-header { margin-bottom: 32px; }
.article-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .top-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: center; }
  .cta-strip-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { min-width: unset; width: 100%; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .seminar-card { grid-template-columns: 1fr; }
  .zigzag-item { grid-template-columns: 1fr; gap: 28px; }
  .zigzag-item:nth-child(even) .zigzag-img { order: unset; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 0; }
  .hero { padding: 60px 0; }
}
