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

/* =============================================
   DOVELI – Kişisel Finansal Yönetim Analiz Sitesi
   Ana Stil Dosyası
   ============================================= */

:root {
  --navy:        #1e3a6e;
  --blue:        #2563eb;
  --blue-light:  #3b82f6;
  --blue-pale:   #dbeafe;
  --bg:          #f4f7fc;
  --surface:     #ffffff;
  --beige:       #f5f0e8;
  --border:      #d9e3f0;
  --text-dark:   #1a202c;
  --text-mid:    #374151;
  --text-soft:   #6b7280;
  --text-xsoft:  #9ca3af;
  --success:     #059669;
  --warning:     #d97706;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 3px rgba(30,58,110,.07);
  --shadow-md:   0 4px 16px rgba(30,58,110,.10);
  --shadow-lg:   0 8px 32px rgba(30,58,110,.13);
  --transition:  0.25s ease;
  --max-width:   1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul, ol { padding-left: 1.5rem; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* === UTILITY === */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

.lead { font-size: 1.125rem; color: var(--text-soft); line-height: 1.75; }

.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.section-title { margin-bottom: 12px; }
.section-intro { font-size: 1.0625rem; color: var(--text-soft); max-width: 600px; margin-bottom: 48px; }
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

.divider {
  width: 48px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider.center { margin-left: auto; margin-right: auto; }

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 20px;
  padding: 3px 12px;
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* === GRID === */
.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; }
.grid-asymmetric { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--blue-pale);
  color: var(--blue);
  border-color: var(--blue-pale);
}
.btn-sm { padding: 7px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 34px; font-size: 1rem; }
.btn-icon { padding: 10px 14px; }

/* === HEADER & NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.logo-tagline { font-size: 0.65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }

.main-nav { 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: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-pale); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--blue-pale); color: var(--blue); }
.dropdown a svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }

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

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--surface);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:hover { color: var(--blue); }
.mobile-nav-section {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-xsoft);
  margin: 20px 0 8px;
}

/* === HERO === */
.hero {
  background: var(--surface);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(30,58,110,.03) 0%, rgba(37,99,235,.05) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.hero-title { margin-bottom: 20px; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.hero-desc { font-size: 1.05rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 440px; object-fit: cover; }
.hero-img-caption {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--text-mid);
  border-left: 3px solid var(--blue);
}

/* === STAT STRIP === */
.stat-strip {
  background: var(--navy);
  padding: 32px 0;
}
.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
}

/* === CARDS === */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; color: var(--blue); }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: 0.9rem; color: var(--text-soft); }

.card-bordered-left {
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* === TOPIC CARDS === */
.topic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.topic-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.topic-card-img { height: 200px; overflow: hidden; }
.topic-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.topic-card:hover .topic-card-img img { transform: scale(1.04); }
.topic-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.topic-card-tag { margin-bottom: 10px; }
.topic-card-title { font-size: 1.05rem; margin-bottom: 10px; }
.topic-card-desc { font-size: 0.875rem; color: var(--text-soft); flex: 1; margin-bottom: 18px; }
.topic-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}
.topic-card-link:hover { gap: 10px; }

/* === ARTICLE CARDS === */
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card-img { height: 220px; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 24px; flex: 1; }
.article-meta { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: var(--text-xsoft); margin-bottom: 12px; }
.article-meta svg { width: 14px; height: 14px; }
.article-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.article-card p { font-size: 0.875rem; color: var(--text-soft); margin-bottom: 18px; }
.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

/* === FEATURE LIST === */
.feature-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-mid);
}
.feature-list li::before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  background: var(--blue-pale);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-6' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* === INFO BOX === */
.info-box {
  background: var(--blue-pale);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
}
.info-box-icon { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.info-box-icon svg { width: 22px; height: 22px; }
.info-box-text p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0; }
.info-box-text strong { color: var(--navy); }

.warn-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
}
.warn-box svg { width: 22px; height: 22px; color: var(--warning); flex-shrink: 0; margin-top: 2px; }
.warn-box p { font-size: 0.875rem; color: #78350f; margin: 0; }

/* === DATA TABLE === */
.data-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead tr { background: var(--navy); }
.data-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.data-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--blue-pale); }
.data-table tbody td {
  padding: 13px 18px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.data-table td strong { color: var(--text-dark); }

/* === TABS === */
.tabs { margin-bottom: 32px; }
.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tab-btn {
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn.active, .tab-btn:hover { background: var(--surface); color: var(--blue); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInUp .25s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === ACCORDION === */
.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
  gap: 16px;
}
.accordion-trigger:hover { color: var(--blue); }
.accordion-trigger svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); color: var(--blue-light); }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px;
}
.accordion-item.open .accordion-body {
  max-height: 1000px;
  padding: 0 22px 20px;
}
.accordion-body p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* === STEP PROCESS === */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: calc(100% - 40px);
  background: var(--border);
}
.step:last-child::before { display: none; }
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
}
.step-content { padding-top: 8px; }
.step-content h4 { margin-bottom: 6px; color: var(--navy); }
.step-content p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* === CALLOUT SECTION === */
.callout-section {
  background: var(--navy);
  padding: 64px 0;
}
.callout-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.callout-section h2 { color: #fff; margin-bottom: 12px; }
.callout-section p { color: rgba(255,255,255,.72); margin: 0; max-width: 540px; }
.callout-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-white:hover { background: var(--beige); border-color: var(--beige); color: var(--navy); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* === SIDEBAR === */
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.sidebar-link-list { list-style: none; padding: 0; }
.sidebar-link-list li { border-bottom: 1px solid var(--border); }
.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
}
.sidebar-link-list a:hover { color: var(--blue); }
.sidebar-link-list a svg { width: 14px; height: 14px; color: var(--blue-light); }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-xsoft);
  padding: 14px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-soft); font-weight: 500; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { width: 12px; height: 12px; }
.breadcrumb-current { color: var(--text-mid); font-weight: 500; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--surface);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-hero-eyebrow { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 680px; }

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, #2563eb 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
}
.highlight-box h3 { color: #fff; margin-bottom: 10px; }
.highlight-box p { color: rgba(255,255,255,.78); font-size: 0.9rem; margin-bottom: 0; }

/* === PROGRESS BARS === */
.progress-item { margin-bottom: 18px; }
.progress-header { display: flex; justify-content: space-between; font-size: 0.875rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.progress-bar { height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--blue); border-radius: 4px; transition: width 1.2s ease; }

/* === TESTIMONIALS === */
.quote-card {
  background: var(--beige);
  border: 1px solid #e8e0d0;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 22px;
  font-size: 4rem;
  line-height: 1;
  color: var(--blue-light);
  opacity: .3;
  font-family: Georgia, serif;
}
.quote-text { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; padding-top: 20px; }
.quote-author { display: flex; align-items: center; gap: 10px; }
.quote-avatar { width: 38px; height: 38px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: #fff; }
.quote-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.quote-role { font-size: 0.75rem; color: var(--text-soft); }

/* === GLOSSARY === */
.glossary-term {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.glossary-term:last-child { border-bottom: none; }
.glossary-term dt { font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 0.9375rem; }
.glossary-term dd { font-size: 0.875rem; color: var(--text-soft); padding: 0; }

/* === CONTACT FORM === */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.form-label span { color: #ef4444; }
.form-control {
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-control::placeholder { color: var(--text-xsoft); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-note { font-size: 0.8rem; color: var(--text-xsoft); }

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1.5px solid #6ee7b7;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
}
.form-success.show { display: block; animation: fadeInUp .3s ease; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 10px; }
.form-success h4 { color: var(--success); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.form-success p { font-size: 0.9rem; color: #065f46; margin: 0; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: #fff;
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.show { display: flex; }
.cookie-text { font-size: 0.875rem; color: rgba(255,255,255,.82); flex: 1; min-width: 200px; }
.cookie-text a { color: #93c5fd; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* === FOOTER === */
.site-footer {
  background: #0f2447;
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 18px; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; display: block; margin-bottom: 4px; }
.footer-tagline { font-size: 0.7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; display: block; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--blue); color: #fff; }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,.65); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* === BEIGE SECTION === */
.beige-section { background: var(--beige); }
.light-section { background: var(--surface); }

/* === READING PROGRESS === */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--blue);
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }

/* === ARTICLE CONTENT === */
.article-content h2 { margin: 36px 0 14px; }
.article-content h3 { margin: 28px 0 10px; }
.article-content p { margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin-bottom: 1.1rem; }
.article-content li { margin-bottom: 6px; font-size: 1rem; color: var(--text-mid); }
.article-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 14px 22px;
  background: var(--blue-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-mid);
}
.article-content img {
  border-radius: var(--radius-lg);
  margin: 28px 0;
  box-shadow: var(--shadow-md);
}

/* === NUMBER CARDS === */
.number-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.number-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.number-card-label { font-size: 0.8125rem; color: var(--text-soft); }

/* === ANCHOR MENU === */
.anchor-menu {
  position: sticky;
  top: 88px;
}
.anchor-menu ul { list-style: none; padding: 0; }
.anchor-menu ul li { border-left: 2px solid var(--border); margin-bottom: 0; }
.anchor-menu ul li.active-anchor { border-left-color: var(--blue); }
.anchor-menu ul a {
  display: block;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
  transition: color var(--transition);
}
.anchor-menu ul li.active-anchor a { color: var(--blue); font-weight: 600; }
.anchor-menu ul a:hover { color: var(--blue); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-asymmetric { grid-template-columns: 1fr; }
  .grid-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section-lg { padding: 68px 0; }
  .hero { padding: 52px 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-img-wrap img { height: 300px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .callout-inner { grid-template-columns: 1fr; text-align: center; }
  .callout-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .header-actions .btn { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
