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

/* =========================================
   QUORUM — TEMEL STİL DOSYASI
   Analitik Medya Paneli | Türkiye
   ========================================= */

:root {
  --white:         #ffffff;
  --off-white:     #f7f9fc;
  --light-gray:    #e8edf3;
  --mid-gray:      #b0bac8;
  --text-muted:    #6b7a8d;
  --text-body:     #3c4555;
  --text-dark:     #1e2533;
  --navy-deep:     #0d2340;
  --navy:          #1a3a5c;
  --navy-mid:      #2c5f8a;
  --blue-accent:   #3b7ab8;
  --blue-light:    #5a9fd4;
  --blue-pale:     #ddeef9;
  --border:        #d1dce8;
  --shadow-sm:     0 1px 4px rgba(13,35,64,.06);
  --shadow-md:     0 4px 16px rgba(13,35,64,.10);
  --shadow-lg:     0 12px 40px rgba(13,35,64,.14);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     14px;
  --transition:    .25s ease;
  --max-width:     1200px;
  --font-sans:     'Inter', sans-serif;
  --font-serif:    'Merriweather', serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ======== TYPOGRAPHY ======== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1.2rem; color: var(--text-body); }

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

.section-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-accent);
  display: block;
  margin-bottom: .6rem;
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--blue-accent);
  border-color: transparent;
  padding-left: .4rem;
}
.btn-ghost:hover {
  color: var(--navy);
  background: var(--blue-pale);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--navy-deep);
  transform: translateY(-1px);
}
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }

/* ======== HEADER / NAV ======== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  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: .7rem;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { fill: var(--white); width: 20px; height: 20px; }
.logo-text { font-size: 1.35rem; font-weight: 800; color: var(--navy-deep); letter-spacing: -.02em; }
.logo-sub  { font-size: .65rem; color: var(--text-muted); display: block; font-weight: 400; letter-spacing: .04em; margin-top: -2px; }

.nav-main {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-main > li { position: relative; }
.nav-main > li > a {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .85rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-main > li > a:hover,
.nav-main > li > a.active {
  background: var(--blue-pale);
  color: var(--navy);
}
.nav-main .chevron {
  width: 14px; height: 14px;
  transition: transform var(--transition);
  opacity: .6;
}
.nav-main > li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}
.nav-main > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: .6rem 1.1rem;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition);
}
.dropdown a:hover {
  background: var(--blue-pale);
  color: var(--navy);
  padding-left: 1.4rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
}

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

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,35,64,.92) 0%, rgba(26,58,92,.75) 60%, rgba(44,95,138,.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-kicker {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-light);
  display: block;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}
.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  line-height: 1.8;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat small {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 400;
  display: block;
  margin-top: .3rem;
}

/* ======== SECTION UTILITIES ======== */
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy-deep); }

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: .8rem; }
.section-header p { color: var(--text-muted); max-width: 580px; }
.section-header.center p { margin: 0 auto; }

.divider {
  width: 48px; height: 3px;
  background: var(--blue-accent);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.divider.center { margin: 0 auto 1.2rem; }

/* ======== GRID LAYOUTS ======== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }

/* ======== CARDS ======== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-accent);
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: .6rem;
  display: block;
}
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--text-dark); }
.card-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.card-meta { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; padding-top: .8rem; border-top: 1px solid var(--light-gray); }
.card-meta span { font-size: .78rem; color: var(--text-muted); }

/* Analiz kartı */
.analysis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}
.analysis-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.analysis-card .ac-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.analysis-card .ac-icon svg { width: 22px; height: 22px; stroke: var(--blue-accent); fill: none; stroke-width: 2; }
.analysis-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.analysis-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* Stat card */
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.stat-card .stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: .4rem;
}
.stat-card .stat-label { font-size: .85rem; color: var(--text-muted); font-weight: 500; }

/* ======== FEATURE / SPLIT SECTIONS ======== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.split-body { display: flex; flex-direction: column; gap: 1.2rem; }
.split-body h2 { margin-bottom: .4rem; }
.feature-list { display: flex; flex-direction: column; gap: .8rem; margin: 1rem 0; }
.feature-item { display: flex; gap: .8rem; align-items: flex-start; }
.feature-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--blue-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-icon svg { width: 11px; height: 11px; stroke: var(--white); fill: none; stroke-width: 2.5; }
.feature-item p { margin: 0; font-size: .9rem; }

/* ======== TOPIC GRID ======== */
.topic-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
}
.topic-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.topic-card:hover img { transform: scale(1.05); }
.topic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,35,64,.88) 0%, rgba(13,35,64,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.topic-overlay h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .3rem; }
.topic-overlay span { color: rgba(255,255,255,.7); font-size: .78rem; }

/* ======== QUOTE / HIGHLIGHT BOX ======== */
.highlight-box {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}
.highlight-box p { margin: 0; color: var(--navy); font-size: .95rem; }

blockquote.quote {
  position: relative;
  padding: 2rem 2rem 2rem 3.5rem;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,.9);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.75;
  font-style: italic;
}
blockquote.quote::before {
  content: '\201C';
  position: absolute;
  left: 1.2rem; top: .8rem;
  font-size: 4rem;
  color: var(--blue-accent);
  line-height: 1;
  font-family: Georgia, serif;
}
blockquote.quote cite { display: block; margin-top: .8rem; font-size: .82rem; color: rgba(255,255,255,.55); font-style: normal; font-family: var(--font-sans); }

/* ======== TAGS ======== */
.tag {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--blue-pale);
  color: var(--navy-mid);
}
.tag-dark { background: var(--navy); color: var(--white); }
.tag-light { background: var(--light-gray); color: var(--text-muted); }
.tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .8rem; }

/* ======== TABLE ======== */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: .8rem 1rem;
  text-align: left;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.data-table td {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }

/* ======== ACCORDION ======== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .6rem;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--off-white); }
.accordion-trigger .acc-icon { font-size: 1.2rem; color: var(--blue-accent); transition: transform var(--transition); }
.accordion-trigger.active .acc-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 1.4rem 1.2rem; font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.accordion-body.open { display: block; }

/* ======== BREADCRUMB ======== */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--blue-accent); }
.breadcrumb-inner .sep { color: var(--mid-gray); }
.breadcrumb-inner span { color: var(--text-dark); font-weight: 500; }

/* ======== PAGE HEADER ======== */
.page-header {
  background: var(--navy-deep);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  pointer-events: none;
}
.page-header .kicker { color: var(--blue-light); margin-bottom: .6rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; display: block; }
.page-header h1 { color: var(--white); margin-bottom: .8rem; }
.page-header p { color: rgba(255,255,255,.7); max-width: 540px; margin: 0; }

/* ======== CONTACT FORM ======== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .84rem; font-weight: 600; color: var(--text-dark); }
input, textarea, select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(59,122,184,.12);
}
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .78rem; color: var(--text-muted); }

.success-msg {
  display: none;
  background: #edfaf3;
  border: 1px solid #52c78c;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  color: #1a6640;
  font-weight: 500;
  font-size: .9rem;
  align-items: center;
  gap: .8rem;
  margin-top: 1rem;
}
.success-msg.visible { display: flex; }
.success-msg svg { width: 22px; height: 22px; stroke: #52c78c; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ======== SEARCH BAR ======== */
.search-bar {
  display: flex;
  gap: .6rem;
  max-width: 540px;
}
.search-bar input { flex: 1; }
.search-bar button { flex-shrink: 0; }

/* ======== SIDEBAR ======== */
.sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--blue-accent); }
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 0;
  font-size: .88rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--light-gray);
  text-decoration: none;
  transition: color var(--transition);
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--blue-accent); }
.sidebar-link .count { font-size: .78rem; color: var(--mid-gray); font-weight: 600; }

/* ======== PROGRESS / METER ======== */
.meter-row { margin-bottom: 1rem; }
.meter-label { display: flex; justify-content: space-between; font-size: .82rem; font-weight: 600; color: var(--text-dark); margin-bottom: .4rem; }
.meter-bar { height: 8px; background: var(--light-gray); border-radius: 4px; overflow: hidden; }
.meter-fill { height: 100%; background: var(--blue-accent); border-radius: 4px; transition: width 1.2s ease; }

/* ======== TIMELINE ======== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: .9rem; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 2.2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.62rem; top: .3rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue-accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-accent);
}
.timeline-date { font-size: .75rem; font-weight: 600; color: var(--blue-accent); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .3rem; display: block; }
.timeline-item h4 { margin-bottom: .4rem; font-size: 1rem; }
.timeline-item p { font-size: .87rem; color: var(--text-muted); margin: 0; }

/* ======== NEWSLETTER ======== */
.newsletter-band {
  background: var(--navy);
  padding: 64px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.newsletter-copy h2 { color: var(--white); margin-bottom: .5rem; }
.newsletter-copy p { color: rgba(255,255,255,.7); margin: 0; font-size: .95rem; }
.newsletter-form { display: flex; gap: .7rem; flex-wrap: wrap; }
.newsletter-form input {
  width: 280px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { border-color: var(--blue-light); background: rgba(255,255,255,.15); }

/* ======== FOOTER ======== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.55); margin-top: 1rem; line-height: 1.7; }
.footer-contact { margin-top: 1.2rem; }
.footer-contact li { font-size: .82rem; color: rgba(255,255,255,.55); padding: .25rem 0; display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact li svg { width: 14px; height: 14px; stroke: var(--blue-accent); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-col h5 { color: var(--white); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col a { display: block; font-size: .84rem; color: rgba(255,255,255,.55); padding: .28rem 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-bottom span { font-size: .79rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a { font-size: .79rem; color: rgba(255,255,255,.45); }
.footer-bottom-links a:hover { color: var(--blue-light); }

/* ======== POLICY PAGES ======== */
.policy-content h2 { font-size: 1.5rem; margin-top: 2.8rem; margin-bottom: .8rem; padding-bottom: .6rem; border-bottom: 2px solid var(--light-gray); }
.policy-content h3 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: .6rem; color: var(--navy); }
.policy-content p, .policy-content li { font-size: .94rem; color: var(--text-body); line-height: 1.8; }
.policy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content ul li { margin-bottom: .4rem; }
.policy-content .policy-info {
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  font-size: .88rem;
  color: var(--navy);
}
.policy-content .policy-info strong { font-weight: 700; }

/* ======== MOBILE NAV ======== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  overflow-y: auto;
  padding: 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav-close { background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--text-dark); }
.mobile-nav a {
  display: block;
  padding: .8rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
}
.mobile-nav a:hover { color: var(--blue-accent); }

/* ======== COOKIE NOTICE ======== */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-deep);
  border-top: 2px solid var(--blue-accent);
  padding: 1rem 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-notice.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { color: rgba(255,255,255,.8); font-size: .84rem; margin: 0; }
.cookie-inner a { color: var(--blue-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; }

/* ======== BACK TO TOP ======== */
#backToTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 800;
  box-shadow: var(--shadow-md);
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { background: var(--navy-mid); transform: translateY(-2px); }
#backToTop svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2.5; }

/* ======== PAGINATION ======== */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; }
.page-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .86rem; font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: all var(--transition);
}
.page-link:hover, .page-link.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar-layout .sidebar { order: -1; }
}
@media (max-width: 768px) {
  .nav-main, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .split-section.reverse { direction: ltr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .page-header { padding: 44px 0 36px; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* SVG Icon Sizing */
.footer-social a svg,
.footer-links a svg,
.social-links a svg,
nav svg,
footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}
