
:root {
  --c-primary: #0f2037;
  --c-primary-2: #1a3a5f;
  --c-accent: #d4a017;
  --c-bg: #ffffff;
  --c-bg-alt: #f5f7fa;
  --c-text: #1a1a1a;
  --c-text-muted: #5a6a7a;
  --c-text-light: #ffffff;
  --c-border: #e6ebf0;
  --max-w: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--c-text);
  line-height: 1.65;
  background: var(--c-bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== STICKY HEADER ===== */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  background: rgba(15, 32, 55, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}
body.page {
  background: var(--c-bg-alt);
}
/* iç sayfalarda da hero ile tutarlı koyu sticky header */
body.page header.site {
  background: rgba(15, 32, 55, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
header.site .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-text-light);
  text-decoration: none;
  white-space: nowrap;
}
body.page header.site .brand { color: var(--c-text-light); }
body.page header.site .brand img { border-color: rgba(255,255,255,0.7); }
body.page header.site nav a { color: var(--c-text-light); opacity: 0.92; }
header.site .brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.7);
  flex-shrink: 0;
}
body.page header.site .brand img { border-color: var(--c-primary); }
header.site nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
header.site nav a {
  color: var(--c-text-light);
  font-size: 0.92rem;
  /* Windows Segoe UI 500 weight sunmaz; Turkce diakritikler icin fallback font'a
     dusup glyph karisikligi yaratir (Talat Corak raporu, 11 May 2026). 600 hem
     Segoe UI'in destekledigi bir weight hem de yeterince belirgin. */
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
header.site nav a:hover { opacity: 1; text-decoration: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  background-image:
    linear-gradient(265deg, rgba(15,32,55,0.96) 0%, rgba(15,32,55,0.82) 30%, rgba(15,32,55,0.32) 65%, rgba(15,32,55,0.05) 100%),
    url('assets/img/hero-banner.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  background-color: #0f2037;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6rem 8vw 4rem;
  color: var(--c-text-light);
}
/* Tablet ve küçük desktop (721-1100px): kafa solda kalır, resim küçük, yazı sağda dar bir alanda */
@media (min-width: 721px) and (max-width: 1100px) {
  .hero {
    background-size: auto 100%;
    background-position: left center;
  }
  .hero-inner {
    max-width: 55%;
  }
}
@media (max-width: 720px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(15,32,55,0.10) 0%, rgba(15,32,55,0.40) 30%, rgba(15,32,55,0.85) 55%, rgba(15,32,55,1) 75%),
      url('assets/img/hero-banner.jpg');
    background-size: auto 55vh;
    background-position: left top;
    background-repeat: no-repeat;
    justify-content: flex-start;
    padding-top: 38vh; /* icerik fotonun alt kismina (omuz/yaka) biner; gozlere/yuze degmez */
  }
}
.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin: 0 0 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--c-text-light);
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-title .accent { color: var(--c-accent); }
.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 2rem;
  opacity: 0.96;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-name {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.7rem;
  color: var(--c-text-light);
  text-decoration: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  animation: bounce 2.4s infinite;
  z-index: 2;
}
.hero-scroll:hover { background: rgba(255,255,255,0.22); text-decoration: none; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--c-primary-2);
  color: var(--c-text-light);
}
.btn-primary:hover { background: var(--c-primary); }
.btn-primary-light {
  background: var(--c-text-light);
  color: var(--c-primary);
}
.btn-primary-light:hover { background: var(--c-bg-alt); }
.btn-outline {
  background: transparent;
  color: var(--c-text-light);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-light {
  background: transparent;
  color: var(--c-text-light);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-large { padding: 1.05rem 2.4rem; font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
  position: relative;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-light { background: var(--c-bg); color: var(--c-text); }
.section-dark  { background: var(--c-primary); color: var(--c-text-light); }
.section-dark .section-eyebrow { color: var(--c-accent); }
.section-dark a { color: var(--c-accent); }
.section-accent { background: var(--c-bg-alt); color: var(--c-text); }
.section-cta {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  color: var(--c-text-light);
  text-align: center;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-primary-2);
  margin: 0 0 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  max-width: 800px;
}
.section-dark .section-title,
.section-cta .section-title { color: var(--c-text-light); }
.section-lede {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 0 2rem;
  color: var(--c-text-muted);
}
.section-dark .section-lede { color: rgba(255,255,255,0.85); }
.section-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-actions.center { justify-content: center; }
.link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--c-primary-2);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.link-arrow::after { content: " →"; transition: margin-left 0.2s; }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover::after { margin-left: 0.2rem; }

/* ===== BIG QUOTE ===== */
.big-quote {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
  color: var(--c-primary);
  border-left: 5px solid var(--c-accent);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 0 0 2rem;
  max-width: 920px;
  position: relative;
}

/* ===== PHASE GRID ===== */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 1rem;
}
.phase-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
}
.phase-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.phase-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin: 0 0 0.5rem;
}
.phase-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--c-text-light);
}
.phase-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.phase-card ul li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.phase-card ul li:last-child { border-bottom: 0; }
.phase-card ul li strong {
  display: block;
  color: var(--c-text-light);
  font-weight: 700;
  font-size: 0.98rem;
}
.phase-card ul li .phase-sub {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  margin-top: 0.15rem;
  line-height: 1.35;
}

/* ===== YANIMDAKILER (destekci kartlari) ===== */
.yanimdaki-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 1rem;
  align-items: stretch;
}
.yanimdaki-list .yanimdaki-card {
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 1.25rem 1.25rem;
}
.yanimdaki-list .yanimdaki-foto {
  width: 92px;
  height: 92px;
}
.yanimdaki-list .yanimdaki-info {
  width: 100%;
  text-align: left;
}
.yanimdaki-list .yanimdaki-info h3 {
  text-align: center;
}
.yanimdaki-list .yanimdaki-rol,
.yanimdaki-list .yanimdaki-yer {
  text-align: center;
}
.yanimdaki-card {
  display: flex;
  gap: 1.5rem;
  background: var(--c-bg-alt);
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  border-left: 4px solid var(--c-primary-2);
  align-items: flex-start;
}
.yanimdaki-foto {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(15,32,55,0.08);
}
.yanimdaki-info { flex: 1; min-width: 0; }
.yanimdaki-info h3 {
  margin: 0 0 0.3rem !important;
  font-size: 1.2rem;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.yanimdaki-rol {
  margin: 0 0 0.2rem !important;
  font-weight: 600;
  color: var(--c-primary-2);
  font-size: 0.95rem;
}
.yanimdaki-yer {
  margin: 0 0 0.4rem !important;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.yanimdaki-egitim {
  margin: 0 0 0.75rem !important;
  font-size: 0.88rem;
  color: var(--c-text-muted);
}
.yanimdaki-aciklama {
  margin: 0 0 0.75rem !important;
  font-size: 0.95rem;
  line-height: 1.55;
}
.yanimdaki-baglanti {
  margin: 0 !important;
  font-size: 0.92rem;
}
@media (max-width: 540px) {
  .yanimdaki-card { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .yanimdaki-foto { width: 80px; height: 80px; }
}

/* ===== KURUM LOGOSU (inline) ===== */
img.kurum-logo {
  height: 32px;
  width: 32px;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  object-fit: contain;
}

/* ===== CALISMALAR LIST ===== */
.calismalar-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 1rem;
}
a.calismalar-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--c-bg-alt);
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  border-left: 4px solid var(--c-primary-2);
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
a.calismalar-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(15,32,55,0.10);
  background: #eef3f9;
  text-decoration: none !important;
}
.calismalar-card .icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calismalar-card .icon svg {
  width: 42px;
  height: 42px;
  color: var(--c-accent);
  stroke-width: 1.8;
}
.calismalar-card .info h3 {
  margin: 0 0 0.4rem !important;
  font-size: 1.2rem;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  color: var(--c-primary) !important;
}
.calismalar-card .info p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
@media (max-width: 540px) {
  a.calismalar-card { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1.25rem; }
  .calismalar-card .icon { font-size: 2.2rem; width: auto; }
}

/* ===== BAŞLIK + İKON (Program sayfası) ===== */
.basliik-icon {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.basliik-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--c-accent);
  stroke-width: 2;
}

/* ===== KPI KARTLARI (Program sayfası ölçülebilir hedefler) ===== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 2rem;
}
.kpi-card {
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-accent);
  padding: 1rem 1.1rem;
  border-radius: 0 8px 8px 0;
}
.kpi-card .kpi-num {
  display: block;
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.kpi-card .kpi-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.35;
}
.kpi-card .kpi-meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.74rem;
  color: var(--c-text-muted);
  font-style: italic;
}

/* ===== KİTAP IZGARASI (Çalışmalar — Kitaplar bölümü) ===== */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0 2rem;
}
.book {
  display: flex;
  flex-direction: column;
}
.book a img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.book a:hover img {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
body.page .book h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.4rem;
  line-height: 1.3;
  border-bottom: none;
  padding-bottom: 0;
}
.book .meta {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin: 0 0 0.55rem;
}
.book p {
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 0.55rem;
}
.book.book-no-cover {
  background: var(--c-bg-alt);
  border-left: 3px solid var(--c-primary-2);
  padding: 1.2rem 1.3rem;
  border-radius: 0 8px 8px 0;
  justify-content: center;
}
.book.book-no-cover h3 { margin-top: 0; }

/* ===== SAYFA İÇİ TOC ===== */
.page-toc {
  margin: 1.5rem 0 2rem;
  padding: 0.85rem 1.1rem;
  background: var(--c-bg-alt);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  color: var(--c-text-muted);
}
.page-toc a {
  color: var(--c-primary);
  font-weight: 500;
}

/* ===== PAGE SIGNOFF (sayfa sonu imzası) ===== */
.page-signoff {
  margin: 2.5rem 0 0;
  text-align: right;
}
.page-signoff p {
  margin: 0.35rem 0;
  color: var(--c-text-muted);
  font-style: italic;
  font-size: 1rem;
}
.page-signoff .closing {
  margin-top: 0.6rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-primary);
  font-style: normal;
  letter-spacing: -0.01em;
}
.page-signoff .author {
  margin-top: 0.4rem;
  font-style: italic;
  font-size: 1rem;
  color: var(--c-text-muted);
}

/* ===== QUOTE WITH PORTRAIT (Oğuz alıntıları) ===== */
.quote-oguz {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 1.6rem 0;
  padding: 1.1rem 1.3rem;
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-accent);
  border-radius: 8px;
}
.quote-oguz.quote-multi { align-items: flex-start; }
.quote-oguz > img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--c-accent);
}
.quote-oguz blockquote,
body.page .quote-oguz blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-style: normal;
}
.quote-oguz blockquote p,
body.page .quote-oguz blockquote p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--c-text);
  font-style: italic;
}
.quote-oguz .quote-source {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.quote-oguz > div { flex: 1; }

/* ===== VIDEO EMBED (responsive 16:9) ===== */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 1.6rem 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== SECTION SPLIT (TEXT + FIGURE) ===== */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.section-split .section-title,
.section-split .section-lede {
  max-width: none;
}
.section-split figure {
  margin: 0;
}
.section-split figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.section-split figcaption {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  text-align: center;
}
.section-dark .section-split figcaption { color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
  .section-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== STAT ROW ===== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0 1.5rem;
}
.stat-card {
  background: var(--c-bg-alt);
  border-left: 5px solid var(--c-primary-2);
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 0 12px 12px 0;
}
.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.05;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.92rem; color: var(--c-text-muted); }

/* ===== TIMELINE ROW ===== */
.timeline-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}
.timeline-item {
  background: var(--c-bg);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  border-top: 4px solid var(--c-primary-2);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.timeline-item.done { border-top-color: #c83737; }
.timeline-item.pending { border-top-color: #d4a017; }
.timeline-date {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.timeline-event {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 0.25rem;
}
.timeline-status { font-size: 0.88rem; color: var(--c-text-muted); }

/* ===== CTA SECTION ===== */
.section-cta { padding: 5rem 2rem; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.cta-lede {
  font-size: 1.2rem;
  margin: 0 0 2rem;
  opacity: 0.92;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== INNER PAGES (page layout) ===== */
body.page main {
  max-width: 960px;
  margin: 6rem auto 4rem;
  padding: 3rem 3rem 3.5rem;
  background: var(--c-bg);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(15, 32, 55, 0.08);
}
/* page-iframe-bleed: container 960 kalir, iframe + disclaimer + placeholder
   container'in 3rem yan padding'ini asarak kenarlara dayanir (full-bleed) */
body.page-iframe-bleed #aiChatWrapper,
body.page-iframe-bleed #aiChatPlaceholder,
body.page-iframe-bleed #aiDisclaimerBar {
  margin-left: -3rem;
  margin-right: -3rem;
  width: calc(100% + 6rem);
  max-width: none;
  box-sizing: border-box;
}
body.page-iframe-bleed #aiChatWrapper iframe { border-radius: 0; }
body.page-iframe-bleed #aiDisclaimerBar { border-radius: 0; }
body.page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-primary);
  margin: 1.5rem 0 1.2rem;
}
body.page h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--c-primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--c-bg-alt);
}
body.page h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-primary-2);
  margin-top: 1.8rem;
}
body.page strong { color: var(--c-primary); }
body.page main a {
  color: var(--c-primary-2);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
body.page main a:hover { color: var(--c-primary); text-decoration-thickness: 3px; }
body.page main figure {
  margin: 2rem 0 2rem;
  text-align: center;
}
body.page main figure img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(15,32,55,0.14);
  display: block;
}
body.page main figure.portrait {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
body.page main figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--c-text-muted);
  font-style: italic;
  line-height: 1.5;
}
body.page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
body.page table th,
body.page table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--c-border);
  text-align: left;
}
body.page table th { background: var(--c-bg-alt); font-weight: 700; color: var(--c-primary); }
body.page blockquote {
  border-left: 4px solid var(--c-primary-2);
  padding: 0.5rem 1.5rem;
  color: var(--c-text-muted);
  margin: 1.5rem 0;
  font-style: italic;
  background: var(--c-bg-alt);
  border-radius: 0 8px 8px 0;
}
body.page iframe {
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
  border-radius: 8px;
  border: 0;
}
body.page iframe[title="Destekçi Haritası"] { max-width: 100%; height: 1300px; }

/* ===== FOOTER ===== */
footer.site {
  background: var(--c-primary);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 2rem 2rem;
  font-size: 0.9rem;
}
footer.site .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
footer.site .footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
footer.site .footer-col h4 {
  color: var(--c-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
footer.site .footer-col a {
  display: block;
  color: rgba(255,255,255,0.82);
  padding: 0.3rem 0;
  text-decoration: none;
  font-size: 0.92rem;
}
footer.site .footer-col a:hover { color: var(--c-text-light); text-decoration: underline; }
footer.site .footer-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  line-height: 1.5;
}
footer.site .copyright {
  font-size: 0.82rem;
  opacity: 0.55;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  margin-top: 1rem;
}
footer.site .copyright a {
  color: var(--c-accent);
  text-decoration: underline;
  text-decoration-color: rgba(212,160,23,0.45);
}
footer.site .copyright a:hover { color: var(--c-text-light); text-decoration-color: rgba(255,255,255,0.7); }

/* ===== YAPAY OĞUZ — ÖRNEK SORULAR ===== */
.ornek-sorular {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
}
.ornek-sorular button {
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: var(--c-bg-alt);
  color: var(--c-primary);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  line-height: 1.45;
  transition: background 0.15s, border-color 0.15s, transform 0.05s;
}
.ornek-sorular button:hover {
  background: #fff;
  border-color: var(--c-primary-2);
  border-left-color: var(--c-accent);
}
.ornek-sorular button:active { transform: translateY(1px); }
.ornek-sorular button::before {
  content: "→ ";
  color: var(--c-accent);
  font-weight: 700;
}
.ornek-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--c-primary);
  color: var(--c-text-light);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(15,32,55,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 9999;
}
.ornek-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== ÇALIŞMALAR — AÇIK PROJELER MINI KARTLAR ===== */
.proje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}
.proje-karti {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.proje-karti:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(15, 32, 55, 0.1);
  border-color: var(--c-primary-2);
  border-left-color: var(--c-accent);
}
.proje-karti .proje-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.proje-karti .proje-icerik {
  padding: 0.9rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
body.page .proje-karti h4 {
  margin: 0;
  color: var(--c-primary);
  font-size: 1.1rem;
  border: 0;
  padding: 0;
  line-height: 1.25;
}
.proje-karti p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.5;
}
.proje-karti .proje-url {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  word-break: break-all;
  margin-top: 0.15rem;
}

/* ===== ÇALIŞMALAR — DERS PLAYLIST KARTLARI ===== */
.ders-playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0 2rem;
}
.ders-playlist-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ders-playlist-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 32, 55, 0.12);
}
.ders-playlist-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.ders-playlist-card .thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.ders-playlist-card .thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ders-playlist-card .thumb-wrap::before {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  transition: transform 0.15s;
  z-index: 1;
}
.ders-playlist-card:hover .thumb-wrap::before { transform: scale(1.1); }
.ders-playlist-card .video-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 2;
}
.ders-playlist-card .info {
  padding: 0.85rem 1rem;
}
body.page .ders-playlist-card h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--c-primary);
  line-height: 1.3;
  border: 0;
  padding: 0;
}
.ders-playlist-card .meta {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.45;
}

/* ===== YOUTUBE KANAL KARTI ===== */
.youtube-kanal-karti {
  display: block;
  background: var(--c-bg-alt);
  color: var(--c-text);
  border-radius: 12px;
  margin: 1.5rem 0;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform 0.15s, box-shadow 0.15s;
}
.youtube-kanal-karti:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 32, 55, 0.18);
}
.youtube-kanal-karti img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--c-border);
}
.youtube-kanal-karti .info {
  padding: 1.1rem 1.5rem 1.25rem;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}
body.page .youtube-kanal-karti h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  border: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.youtube-kanal-karti .stats {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.01em;
}
.youtube-kanal-karti .cta {
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .youtube-kanal-karti .info { padding: 1rem 1.1rem 1.1rem; }
  body.page .youtube-kanal-karti h3 { font-size: 1.05rem; flex-basis: 100%; }
  .youtube-kanal-karti .stats { font-size: 0.95rem; }
}

/* ===== ÇALIŞMALAR — DERS KURUM KARTLARI ===== */
.ders-kurum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0 2rem;
}
.ders-kurum-karti {
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-accent);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
body.page .ders-kurum-karti h4 {
  margin: 0 0 0.4rem;
  color: var(--c-primary);
  font-size: 1.1rem;
  border: 0;
  padding: 0;
}
.ders-kurum-karti .donem {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin: 0 0 0.75rem;
}
.ders-kurum-karti ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.ders-kurum-karti li { margin: 0.2rem 0; font-size: 0.95rem; }

/* ===== DESTEKÇI FORMU — KVKK AYDINLATMA KUTUSU ===== */
.kvkk-bilgi-kutusu {
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-accent);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
}
body.page .kvkk-bilgi-kutusu h3 {
  color: var(--c-primary);
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}
.kvkk-bilgi-kutusu p {
  margin: 0.5rem 0;
}
.kvkk-bilgi-kutusu ul {
  margin: 0.4rem 0 0.6rem;
  padding-left: 1.25rem;
}
.kvkk-bilgi-kutusu li {
  margin: 0.25rem 0;
}
.kvkk-bilgi-kutusu a {
  color: var(--c-primary-2);
  font-weight: 500;
}

/* ===== ŞARKILAR — TELİF BEYANI ===== */
.sarkilar-uyari-bandi {
  background: #fff8e1;
  border: 1px solid #d4a017;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
.sarkilar-uyari-bandi p { margin: 0; color: #5d4400; }
.sarkilar-uyari-bandi a { color: var(--c-primary-2); font-weight: 600; }

.sarki-bilgi {
  background: var(--c-bg-alt);
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  border-left: 3px solid var(--c-accent);
}
.sarki-bilgi a { color: var(--c-primary-2); font-weight: 500; }
.sarki-bilgi strong { color: var(--c-primary); }

.telif-beyani {
  max-width: 900px;
  margin: 3rem auto 2rem;
  padding: 1.75rem 2rem;
  background: var(--c-bg-alt);
  border-radius: 12px;
  border-left: 4px solid var(--c-accent);
}
body.page .telif-beyani h2 { color: var(--c-primary); margin-top: 0; padding-bottom: 0.4rem; }
body.page .telif-beyani h3 { color: var(--c-primary-2); margin-top: 1.5rem; font-size: 1.05rem; }
.telif-beyani .lead { font-size: 1rem; color: #4a4a4a; margin-top: 0.5rem; }

.telif-tablosu {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1rem;
  font-size: 0.92rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.telif-tablosu th, .telif-tablosu td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.telif-tablosu th { background: var(--c-primary); color: var(--c-text-light); font-weight: 600; }

.lisans-listesi { list-style: none; padding-left: 0; }
.lisans-listesi li { padding: 0.25rem 0; }

/* ===== YAPAY OĞUZ — KVKK ONAY MODAL ===== */
[hidden] { display: none !important; }
.ai-consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 32, 55, 0.65);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ai-consent-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 720px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border-top: 4px solid var(--c-accent);
}
body.page .ai-consent-modal h2 {
  color: var(--c-primary);
  margin: 0 0 1rem;
  font-size: 1.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--c-bg-alt);
}
body.page .ai-consent-modal h3 {
  color: var(--c-primary-2);
  margin: 1.25rem 0 0.5rem;
  font-size: 1.1rem;
}
.ai-consent-modal__intro {
  background: #fff8e1;
  border-left: 4px solid var(--c-accent);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.ai-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 1rem;
  font-size: 0.92rem;
}
.ai-info-table th, .ai-info-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.ai-info-table th {
  background: var(--c-bg-alt);
  font-weight: 600;
  width: 38%;
  color: var(--c-primary-2);
}
.ai-consent-checkboxes {
  margin: 0.75rem 0;
  padding: 1rem;
  background: var(--c-bg-alt);
  border-radius: 8px;
}
.ai-consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.5;
}
.ai-consent-checkbox input {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.zorunlu-yildiz { color: #b71c1c; font-weight: 700; }
.ai-consent-warning {
  background: #fff8e1;
  border-left: 3px solid #c98e02;
  padding: 0.7rem 0.9rem;
  border-radius: 4px;
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
}
.ai-consent-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1rem;
}
.btn-primary, .btn-secondary {
  font: inherit;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-text-light);
}
.btn-primary:hover:not(:disabled) { background: var(--c-primary-2); }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-secondary {
  background: #fff;
  color: var(--c-primary);
  border-color: var(--c-border);
}
.btn-secondary:hover { border-color: var(--c-primary-2); }
.ai-consent-note {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-border);
}
.ai-disclaimer-bar {
  background: #fff8e1;
  border: 1px solid #d4a017;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  margin: 1rem 0 0.5rem;
  color: #5d4400;
}
.ai-disclaimer-bar a {
  color: var(--c-primary-2);
  font-weight: 600;
  margin-left: 0.5rem;
}
.ai-chat-placeholder {
  background: var(--c-bg-alt);
  border: 1px dashed var(--c-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}
.ai-chat-placeholder p { margin: 0.4rem 0 0.8rem; }
.ai-chat-placeholder .btn-primary { margin-top: 0.5rem; }

/* ===== YAPAY OĞUZ — DOĞRUDAN İLETİŞİM ===== */
.dogrudan-iletisim {
  background: var(--c-bg-alt);
  border-left: 3px solid var(--c-accent);
  padding: 0.5rem 1.5rem 1rem;
  border-radius: 8px;
  margin: 2rem 0 1.5rem;
}
body.page .dogrudan-iletisim h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.25;
  padding-bottom: 0;
  border-bottom: 0;
}
.dogrudan-iletisim p { margin: 0.4rem 0; }
.dogrudan-iletisim a { color: var(--c-primary-2); font-weight: 600; }

/* ===== HAMBURGER MENÜ (mobil) ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--c-text-light, #fff);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== MOBILE ===== */
@media (max-width: 720px) {
  header.site { padding: 0.6rem 1rem; flex-wrap: nowrap; gap: 0.5rem; align-items: center; }
  .nav-toggle { display: flex; }
  header.site nav#site-nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    /* iOS Safari + flex-child quirk: bottom:0 alone bbox'i 40px'te birakir.
       Explicit height vermek zorundayiz. */
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
    background: #0f2037;
    padding: 0.5rem 1.25rem 2rem;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 200;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  header.site nav#site-nav.is-open { display: flex !important; }
  header.site nav#site-nav a {
    color: #fff !important;
    opacity: 1 !important;
    padding: 1rem 0.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    display: block;
  }
  header.site nav#site-nav a:hover,
  header.site nav#site-nav a:active { background: rgba(255, 255, 255, 0.06); }
  /* .hero padding-top mobilde yukarida ayarlandi (line ~117); burada sadece yan/alt boslugu + min-height */
  /* dvh: iOS Safari adres+sekme cubuklari hesaba katilir, asagi ok ilk ekranda URL bar'in ustunde kalir */
  .hero { padding-right: 6vw; padding-left: 6vw; padding-bottom: 2.25rem; min-height: 82vh; min-height: 86dvh; }
  .hero-eyebrow { font-size: 0.7rem; padding: 0.35rem 0.85rem; }
  .hero-tagline { margin-bottom: 1.25rem; }
  .hero-cta { margin-bottom: 1rem; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-scroll { bottom: 1rem; width: 42px; height: 42px; font-size: 1.4rem; }
  .section { padding: 4rem 1.25rem; }
  .stat-num { font-size: 2.2rem; }
  body.page main { margin: 5rem 0.75rem 2rem; padding: 2rem 1.25rem 2.5rem; border-radius: 10px; }
  .big-quote { padding-left: 1rem; }
}
