/* ===========================================
   Human Solid Plasma — Stil Dosyası
   Tasarım: gazigen.com referans, HSP markası
   Renk: Bordo / Wine (logo'dan)
   =========================================== */

:root {
  --burgundy-900: #0d1f3a;
  --burgundy-800: #0e2540;
  --burgundy-700: #1e3a5f;
  --burgundy-600: #25466f;
  --burgundy-500: #2d527e;
  --burgundy-overlay: rgba(13, 31, 58, 0.82);
  --ink: #0a1929;
  --paper: #ffffff;
  --paper-2: #f3f7fb;
  --paper-3: #e5ecf5;
  --mute: #6a7a8d;
  --mute-2: #b3c0cf;
  --line: #dde6ef;
  --gold: #c9a86a;
  --rose: #c5d8ec;
  --danger: #c0392b;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===========================================
   HEADER
   =========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: transparent;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.menu-trigger {
  width: 84px;
  height: 84px;
  background: var(--paper);
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
  border: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.menu-trigger:hover { background: var(--paper-2); }
.menu-trigger .grid-icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  width: 22px;
  height: 22px;
}
.menu-trigger .grid-icon span {
  background: var(--burgundy-700);
  border-radius: 1px;
  display: block;
}

.brand-area {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  flex: 1;
  justify-content: center;
  margin-left: -84px;
  pointer-events: none;
}
.brand-area .brand {
  pointer-events: auto;
  display: flex;
  align-items: center;
  height: 48px;
}
.brand-area .brand img {
  height: 36px;
  width: auto;
}
.inner .brand-area .brand img.logo-dark { display: block; }
.inner .brand-area .brand img.logo-light { display: none; }
.hero-page .brand-area .brand img.logo-dark { display: none; }
.hero-page .brand-area .brand img.logo-light { display: block; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 38px;
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.18em;
}
.inner .lang-switch { color: var(--burgundy-700); }
.lang-switch a {
  opacity: 0.6;
  transition: opacity 0.2s;
}
.lang-switch a.is-active,
.lang-switch a:hover { opacity: 1; }
.lang-switch .divider { opacity: 0.4; }

/* ===========================================
   OVERLAY MENU
   =========================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--burgundy-900);
  background: linear-gradient(135deg, #081428 0%, #0e2540 50%, #1e3a5f 100%);
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.menu-overlay.is-open { transform: translateY(0); }

.menu-overlay-head {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-shrink: 0;
}
.menu-close {
  width: 84px;
  height: 84px;
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--burgundy-700);
  position: relative;
  border: none;
}
.menu-close::before,
.menu-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--burgundy-700);
}
.menu-close::before { transform: rotate(45deg); }
.menu-close::after { transform: rotate(-45deg); }

.menu-home {
  padding: 24px 38px;
  display: flex;
  align-items: center;
  color: var(--paper);
}
.menu-home svg { width: 26px; height: 26px; opacity: 0.85; transition: opacity 0.2s; }
.menu-home:hover svg { opacity: 1; }

.menu-overlay-body {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  min-height: 0;
}

.menu-col {
  padding: 80px 48px 80px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.menu-overlay.is-open .menu-col {
  opacity: 1; transform: translateY(0);
}
.menu-overlay.is-open .menu-col:nth-child(1) { transition-delay: 0.15s; }
.menu-overlay.is-open .menu-col:nth-child(2) { transition-delay: 0.25s; }
.menu-overlay.is-open .menu-col:nth-child(3) { transition-delay: 0.35s; }
.menu-overlay.is-open .menu-col:nth-child(4) { transition-delay: 0.45s; }
.menu-col:last-child { border-right: none; }

.menu-num {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: block;
}
.menu-title {
  color: var(--paper);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 22px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  position: relative;
  background: none;
  text-align: left;
  padding: 0;
  border: none;
}
.menu-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.menu-col:hover .menu-title::after,
.menu-col.is-active .menu-title::after { width: 100%; }

.menu-sublist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-sublist a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  line-height: 1.5;
}
.menu-sublist a:hover {
  color: var(--rose);
  padding-left: 6px;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: var(--burgundy-900);
  overflow: hidden;
  color: var(--paper);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13,31,58,0.92) 0%, rgba(20,43,72,0.78) 55%, rgba(30,58,95,0.62) 100%),
              url('../images/hero.svg') center/cover no-repeat;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  max-width: 1480px;
  margin: 0 auto;
}
.hero .eyebrow-hero {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--rose);
  opacity: 0.9;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 24px;
  max-width: 1100px;
}
.hero h1 .accent {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}
.hero .lede {
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 400;
  max-width: 720px;
  opacity: 0.88;
  line-height: 1.6;
}
.hero-tag {
  position: absolute;
  bottom: 110px;
  left: 8vw;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(197,216,236,0.25);
}
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.scroll-down:hover { opacity: 1; }
.scroll-down .arrow {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: bounce 2.4s infinite;
}
.scroll-down .arrow::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-right: 1.5px solid var(--paper);
  border-bottom: 1.5px solid var(--paper);
  transform: rotate(45deg) translate(-1px,-1px);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===========================================
   SECTIONS
   =========================================== */
section { padding: 110px 8vw; max-width: 1480px; margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy-700);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--burgundy-900);
  margin-bottom: 22px;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--burgundy-700);
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy-700);
  padding: 12px 0;
  border-bottom: 1.5px solid var(--burgundy-700);
  transition: gap 0.25s ease;
}
.btn-text:hover { gap: 16px; }
.btn-text svg { width: 16px; height: 12px; }

/* About section */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: #4a3a42;
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.75;
}
.about-image {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--burgundy-800);
  overflow: hidden;
}
.about-image img,
.about-image svg {
  width: 100%; height: 100%; object-fit: cover;
}
.about-image::after {
  content: '';
  position: absolute;
  left: -20px; bottom: -20px;
  width: 120px; height: 120px;
  background: var(--rose);
  z-index: -1;
}

/* Stats / Process steps */
.process {
  background: var(--burgundy-900);
  background: linear-gradient(135deg, #081428 0%, #0e2540 100%);
  color: var(--paper);
  padding-left: 0; padding-right: 0;
  max-width: none;
}
.process-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 8vw;
}
.process .eyebrow {
  color: var(--rose);
}
.process .section-title { color: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.process-step {
  padding: 44px 30px 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.process-step:nth-child(3n) { border-right: none; }
.process-step .step-num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--rose);
  display: block;
  margin-bottom: 16px;
  font-feature-settings: "tnum";
}
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Services / Products */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -22px rgba(30,58,95,0.25);
  border-color: var(--burgundy-700);
}
.service-card .sc-banner {
  height: 8px;
  background: linear-gradient(90deg, var(--burgundy-700), var(--burgundy-500), var(--rose));
}
.service-card .sc-body {
  padding: 38px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card .sc-icon {
  width: 56px; height: 56px;
  background: var(--paper-3);
  color: var(--burgundy-700);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.service-card .sc-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}
.service-card .sc-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .sc-link::after {
  content: '→';
  transition: transform 0.2s;
}
.service-card:hover .sc-link::after { transform: translateX(4px); }

/* Founder block */
.founder-block {
  background: var(--paper-2);
  padding: 110px 0;
  max-width: none;
}
.founder-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 8vw;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
}
.founder-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--burgundy-800);
  overflow: hidden;
  max-width: 420px;
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.founder-photo::after {
  content: '';
  position: absolute;
  right: -22px; bottom: -22px;
  width: 130px; height: 130px;
  background: var(--burgundy-700);
  z-index: -1;
}
.founder-info .role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy-700);
  margin-bottom: 14px;
}
.founder-info .name {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--burgundy-900);
  margin-bottom: 22px;
}
.founder-info p {
  color: #4a3a42;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Blog / News */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(30,58,95,0.25);
}
.blog-card .bc-image {
  aspect-ratio: 16/10;
  background: var(--burgundy-800);
  position: relative;
  overflow: hidden;
}
.blog-card .bc-image img,
.blog-card .bc-image svg {
  width: 100%; height: 100%; object-fit: cover;
}
.blog-card .bc-image .bc-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--burgundy-700);
  color: var(--paper);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-card .bc-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card .bc-date {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--burgundy-900);
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card .bc-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-card .bc-link::after {
  content: '→';
  transition: transform 0.2s;
}
.blog-card:hover .bc-link::after { transform: translateX(4px); }

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 8vw 32px;
}
.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.footer-brand .brand img {
  height: 38px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 26px;
}
.footer-certs {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  width: fit-content;
}
.footer-certs img {
  height: 36px;
  width: auto;
  opacity: 0.95;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--rose); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer-bottom {
  max-width: 1480px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .links a { margin-left: 22px; }
.footer-bottom .links a:hover { color: var(--rose); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: rgba(255,255,255,0.7);
}
.social-links a:hover {
  background: var(--burgundy-700);
  border-color: var(--burgundy-700);
  color: var(--paper);
}
.social-links svg { width: 16px; height: 16px; }

/* ===========================================
   INNER PAGES
   =========================================== */
.inner-spacer { height: 84px; background: var(--paper); }

.page-banner {
  position: relative;
  height: 380px;
  background: linear-gradient(110deg, rgba(13,31,58,0.88) 0%, rgba(20,43,72,0.72) 100%),
              url('../images/banner.svg') center/cover no-repeat;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  margin-top: -84px;
  padding-top: 84px;
}
.page-banner h1 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}
.breadcrumb {
  max-width: 1480px;
  width: 100%;
  margin: 18px auto 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { margin: 0 12px; opacity: 0.5; }

.page-content {
  padding: 90px 8vw;
  max-width: 1480px;
  margin: 0 auto;
}

.prose {
  max-width: 880px;
}
.prose p {
  font-size: 16px;
  line-height: 1.85;
  color: #3a2530;
  margin-bottom: 22px;
}
.prose p strong { color: var(--burgundy-900); font-weight: 700; }
.prose h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin: 50px 0 18px;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin: 32px 0 12px;
}
.prose ul {
  margin: 14px 0 22px 0;
  padding-left: 0;
  list-style: none;
}
.prose ul li {
  color: #3a2530;
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 15.5px;
  padding-left: 26px;
  position: relative;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 2px;
  background: var(--burgundy-700);
}
.prose blockquote {
  border-left: 3px solid var(--burgundy-700);
  padding: 8px 24px;
  margin: 28px 0;
  color: var(--burgundy-900);
  font-style: italic;
  font-size: 17px;
  background: var(--paper-3);
}

.disclaimer {
  margin-top: 40px;
  padding: 18px 22px;
  background: var(--paper-3);
  border-left: 3px solid var(--burgundy-700);
  font-size: 13px;
  color: var(--burgundy-800);
  line-height: 1.65;
  max-width: 880px;
}
.disclaimer strong { font-weight: 700; }

/* Values grid (numbered like the PDF) */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.value-item {
  padding: 36px 38px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  gap: 26px;
  align-items: flex-start;
  transition: background 0.3s ease;
  position: relative;
}
.value-item:nth-child(2n) { border-right: none; }
.value-item:hover { background: var(--paper-2); }
.value-item .vn {
  font-size: 12px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--burgundy-700);
  flex-shrink: 0;
  padding-top: 4px;
}
.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.value-item p {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.65;
}

/* Vision/mission split */
.vm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper-2);
  border: 1px solid var(--line);
  margin-top: 30px;
}
.vm-block {
  padding: 56px 48px;
}
.vm-block:first-child { border-right: 1px solid var(--line); }
.vm-block .num {
  font-size: 13px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--burgundy-700);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.vm-block h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.vm-block p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #3a2530;
}

/* Process steps page (full) */
.full-process {
  counter-reset: step;
}
.full-process .step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 36px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.full-process .step:last-child { border-bottom: none; }
.full-process .step-num {
  font-size: 64px;
  font-weight: 700;
  color: var(--burgundy-700);
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.full-process .step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.full-process .step p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--mute);
  max-width: 720px;
}

/* Areas (HSP application areas badges) */
.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.area-badges .badge {
  padding: 10px 18px;
  background: var(--paper-3);
  color: var(--burgundy-800);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--rose);
}

/* Feature list with check */
.check-list {
  list-style: none !important;
  margin: 22px 0 !important;
}
.check-list li {
  padding-left: 32px !important;
  position: relative;
  margin-bottom: 14px !important;
}
.check-list li::before {
  content: '✓' !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px !important;
  height: 22px !important;
  background: var(--burgundy-700);
  color: var(--paper);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 12px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--burgundy-700);
  text-transform: uppercase;
  margin: 30px 0 10px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p,
.contact-info a {
  font-size: 15.5px;
  line-height: 1.7;
  color: #3a2530;
}
.contact-info a:hover { color: var(--burgundy-700); }
.contact-form {
  background: var(--paper-2);
  padding: 44px 38px;
  border: 1px solid var(--line);
}
.contact-form h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin-bottom: 28px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burgundy-900);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--burgundy-700);
}
.field textarea { resize: vertical; min-height: 130px; }
.btn-primary {
  background: var(--burgundy-700);
  color: var(--paper);
  padding: 16px 38px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--burgundy-800); }
.map-embed {
  margin-top: 40px;
  aspect-ratio: 16/9;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* HSP areas grid (multidisciplinary) */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.area-card {
  background: var(--paper);
  padding: 36px 32px;
  text-align: left;
  transition: background 0.3s;
}
.area-card:hover { background: var(--paper-2); }
.area-card .area-icon {
  width: 48px; height: 48px;
  background: var(--paper-3);
  color: var(--burgundy-700);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.area-card .area-icon svg { width: 24px; height: 24px; }
.area-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.area-card p {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.6;
}

/* Catalog download */
.catalog-box {
  background: var(--burgundy-900);
  background: linear-gradient(135deg, #081428 0%, #0e2540 100%);
  color: var(--paper);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}
.catalog-box .eyebrow { color: var(--rose); }
.catalog-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.catalog-box p {
  font-size: 15px;
  opacity: 0.8;
  max-width: 540px;
}
.btn-light {
  background: var(--paper);
  color: var(--burgundy-700);
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
}
.btn-light:hover { background: var(--rose); }
.btn-light svg { width: 18px; height: 18px; }

/* Highlight strip */
.cta-strip {
  background: var(--burgundy-700);
  color: var(--paper);
  padding: 70px 8vw;
  max-width: none;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-strip p {
  font-size: 15.5px;
  opacity: 0.86;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .about, .contact-grid, .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .blog-grid, .values-list { grid-template-columns: 1fr; }
  .value-item:nth-child(n) { border-right: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step:nth-child(n) { border-right: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .menu-overlay-body { grid-template-columns: repeat(2, 1fr); }
  .menu-col { padding: 50px 36px; }
  .vm-split { grid-template-columns: 1fr; }
  .vm-block:first-child { border-right: none; border-bottom: 1px solid var(--line); }
  .catalog-box { grid-template-columns: 1fr; }
  .full-process .step { grid-template-columns: 70px 1fr; gap: 20px; }
  .full-process .step-num { font-size: 48px; }
}

@media (max-width: 640px) {
  section { padding: 70px 6vw; }
  .page-content { padding: 60px 6vw; }
  .page-banner { height: 280px; padding: 84px 6vw 0; }
  .menu-trigger, .menu-close { width: 64px; height: 64px; }
  .brand-area { padding: 14px 18px; margin-left: -64px; }
  .brand-area .brand img { height: 28px; }
  .lang-switch { padding: 0 18px; font-size: 12px; }
  .hero-content { padding: 0 6vw; }
  .hero-tag { left: 6vw; bottom: 80px; padding: 10px 14px; font-size: 11px; }
  .menu-overlay-body { grid-template-columns: 1fr; }
  .menu-col { padding: 26px 28px; min-height: auto; justify-content: flex-start; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .footer-bottom .links a { margin-left: 0; margin-right: 18px; }
  .vm-block { padding: 36px 28px; }
  .contact-form { padding: 30px 22px; }
  .catalog-box { padding: 40px 28px; }
  .founder-block { padding: 70px 0; }
  .founder-photo::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================
   HERO SLIDER (override eski .hero)
   =========================================== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: var(--burgundy-900);
  overflow: hidden;
  color: var(--paper);
  padding: 0;
  max-width: none;
  margin: 0;
  width: 100%;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-slide.is-active .hero-slide-bg {
  transform: scale(1.0);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13,31,58,0.78) 0%, rgba(20,43,72,0.55) 50%, rgba(30,58,95,0.35) 100%);
  z-index: 2;
}

.hero-slide-content {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 8vw;
  box-sizing: border-box;
}
.hero-slide-content-inner {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}
.hero-slide-content .eyebrow-hero {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--rose);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.hero-slide-content h1 {
  font-size: clamp(34px, 5.4vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 24px;
  width: 100%;
  max-width: 1100px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.hero-slide-content h1 .accent {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}
.hero-slide-content .lede {
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 400;
  width: 100%;
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
  line-height: 1.65;
}
.hero-slide-content .slide-actions {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}
.hero-slide.is-active .eyebrow-hero,
.hero-slide.is-active h1,
.hero-slide.is-active .lede,
.hero-slide.is-active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.is-active .lede { opacity: 0.92; }

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1.5px solid var(--paper);
  color: var(--paper);
  background: transparent;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}
.slide-btn:hover {
  background: var(--paper);
  color: var(--burgundy-700);
}
.slide-btn.is-filled {
  background: var(--burgundy-700);
  border-color: var(--burgundy-700);
}
.slide-btn.is-filled:hover {
  background: var(--burgundy-800);
  border-color: var(--burgundy-800);
  color: var(--paper);
}

/* Navigation */
.hero-nav {
  position: absolute;
  bottom: 70px;
  left: 8vw;
  right: 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  max-width: 1480px;
  margin: 0 auto;
}
.hero-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-arrow {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  border-radius: 50%;
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--paper);
}
.hero-arrow svg { width: 16px; height: 16px; }
.hero-counter {
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.24em;
  font-weight: 600;
  font-feature-settings: "tnum";
  opacity: 0.85;
  margin-left: 8px;
}

.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.25s, height 0.25s;
  border: none;
  padding: 0;
}
.hero-dot.is-active {
  background: var(--paper);
}
.hero-dot:hover { background: rgba(255,255,255,0.6); }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-hint::before {
  content: '';
  width: 1px; height: 28px;
  background: var(--paper);
  display: block;
  opacity: 0.5;
}

/* Header scroll state (anasayfa) */
.hero-page .site-header.is-scrolled {
  background: var(--paper);
  box-shadow: 0 4px 20px -10px rgba(0,0,0,0.12);
}
.hero-page .site-header.is-scrolled .brand-area .brand img.logo-light { display: none; }
.hero-page .site-header.is-scrolled .brand-area .brand img.logo-dark { display: block; }
.hero-page .site-header.is-scrolled .lang-switch { color: var(--burgundy-700); }
.site-header { transition: background 0.3s ease, box-shadow 0.3s ease; }

/* Mobile slider */
@media (max-width: 640px) {
  .hero-nav { bottom: 40px; left: 6vw; right: 6vw; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-dot { width: 28px; }
  .scroll-hint { display: none; }
  .hero-slide-content .slide-actions { gap: 12px; }
  .slide-btn { padding: 12px 22px; font-size: 11px; letter-spacing: 0.18em; }
}

/* ===========================================
   EK BÖLÜMLER — anasayfa içerik genişlemesi
   =========================================== */

/* Highlights / Why HSP */
.highlights {
  background: var(--paper-2);
  padding: 100px 0;
  max-width: none;
}
.highlights-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 8vw;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.highlight {
  background: var(--paper);
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.highlight:hover {
  transform: translateY(-4px);
  border-color: var(--burgundy-700);
  box-shadow: 0 18px 36px -22px rgba(30,58,95,0.25);
}
.highlight .icon {
  width: 52px;
  height: 52px;
  background: var(--paper-3);
  color: var(--burgundy-700);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.highlight .icon svg { width: 26px; height: 26px; }
.highlight h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.highlight p {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 700;
  color: var(--burgundy-900);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--burgundy-700); }
.faq-q .plus {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  display: block;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--burgundy-700);
  top: 50%; left: 0;
  width: 100%;
  height: 2px;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.faq-q .plus::after {
  transform: rotate(90deg);
}
.faq-item.is-open .faq-q .plus::after {
  transform: rotate(0);
}
.faq-a {
  display: none;
  padding: 0 0 26px;
  color: #3a2530;
  font-size: 15px;
  line-height: 1.75;
  max-width: 880px;
}
.faq-a p {
  margin-bottom: 14px;
}
.faq-item.is-open .faq-a {
  display: block;
}

/* Testimonial / Note from founder */
.note-block {
  background: var(--burgundy-900);
  background: linear-gradient(135deg, #081428 0%, #0e2540 70%, #1e3a5f 100%);
  color: var(--paper);
  padding: 110px 8vw;
  max-width: none;
  text-align: center;
}
.note-block-inner {
  max-width: 880px;
  margin: 0 auto;
}
.note-block .quote-mark {
  font-size: 80px;
  line-height: 0.5;
  color: var(--rose);
  margin-bottom: 30px;
  font-family: Georgia, serif;
  font-style: italic;
}
.note-block blockquote {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 36px;
  font-style: italic;
  color: var(--paper);
}
.note-attribution {
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}
.note-attribution strong { display: block; color: var(--paper); margin-top: 6px; font-size: 14px; letter-spacing: 0.12em; }

/* Numbers / Statistics */
.stats-strip {
  padding: 80px 8vw;
  max-width: none;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.stat .big {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--burgundy-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .lbl {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}

/* Timeline (kurucumuz için) */
.timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 30px;
  max-width: 880px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.tl-item {
  position: relative;
  padding-bottom: 36px;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--burgundy-700);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--burgundy-700);
}
.tl-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--burgundy-700);
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}
.tl-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--burgundy-900);
  margin-bottom: 6px;
}
.tl-text {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.65;
}

/* Tek bilgi blokları, sayfa içi öne çıkanlar */
.info-block {
  background: var(--paper-3);
  padding: 36px 38px;
  border-left: 3px solid var(--burgundy-700);
  margin: 32px 0;
  max-width: 880px;
}
.info-block h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--burgundy-700);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.info-block p {
  font-size: 14.5px;
  color: #3a2530;
  line-height: 1.7;
  margin-bottom: 12px;
}
.info-block p:last-child { margin-bottom: 0; }

/* Two-col layout for content pages */
.split-content {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: start;
}
.split-content .aside-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 28px;
  position: sticky;
  top: 110px;
}
.split-content .aside-card h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--burgundy-700);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.split-content .aside-card ul { list-style: none; padding: 0; }
.split-content .aside-card li {
  font-size: 13.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.split-content .aside-card li:last-child { border-bottom: none; }
.split-content .aside-card li a {
  color: var(--burgundy-800);
  transition: color 0.2s;
  display: block;
}
.split-content .aside-card li a:hover { color: var(--burgundy-700); }
@media (max-width: 960px) {
  .split-content { grid-template-columns: 1fr; }
  .split-content .aside-card { position: static; }
}

/* Responsive ek */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .note-block { padding: 70px 6vw; }
}

/* ===========================================
   HEADER BRAND TAGLINE — Slogan görünürlüğü
   =========================================== */
.brand-tagline-strip {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--burgundy-700) 25%, var(--burgundy-700) 75%, transparent 100%);
  text-align: center;
  padding: 8px 20px;
  z-index: 99;
  pointer-events: none;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.brand-tagline-strip.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.brand-tagline-strip span {
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

/* Hero — slogan vurgusu üzerinde */
.hero-slide-content .eyebrow-hero {
  font-size: 13px !important;
  letter-spacing: 0.45em !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border: 1.5px solid var(--rose);
  display: inline-block;
  margin-bottom: 30px;
  background: rgba(197, 216, 236, 0.08);
  backdrop-filter: blur(4px);
}
.hero-slide-content .lede {
  margin-top: 10px;
}

/* İlk slayt için ekstra büyük slogan tasarımı */
.hero-slide[data-slide="0"] .hero-slide-content .eyebrow-hero {
  font-size: 15px !important;
  letter-spacing: 0.5em !important;
  padding: 10px 22px;
  border-width: 2px;
}

/* Header altında küçük slogan stripi (sayfanın geri kalanında) */
.inner .site-header::after,
.hero-page .site-header.is-scrolled::after {
  content: 'OTOLOG ESTETİĞİN YENİ ÇAĞI';
  position: absolute;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--burgundy-700);
  color: var(--paper);
  text-align: center;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
/* EN sayfalar için */
html[lang="en"] .inner .site-header::after,
html[lang="en"] .hero-page .site-header.is-scrolled::after {
  content: 'A NEW ERA OF AUTOLOGOUS AESTHETICS';
}

/* Inner sayfalarda content header'a karşı offset */
.inner main, .inner .page-banner:first-of-type {
  padding-top: 30px;
}

@media (max-width: 768px) {
  .inner .site-header::after,
  .hero-page .site-header.is-scrolled::after {
    font-size: 8px;
    letter-spacing: 0.3em;
    padding: 4px 8px;
  }
}
