/* ==========================================================================
   PEHLEVAN TEKNOLOJİ — Tasarım Sistemi
   ========================================================================== */

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

:root {
  /* Marka renkleri (logodan) */
  --ink: #1F1F26;
  --ink-soft: #2C2C34;
  --gray-700: #4A4A52;
  --gray-500: #6B6B73;
  --gray-300: #A6A6AD;
  --gray-200: #D8D8DC;
  --gray-100: #EEEEEE;
  --paper: #FAFAF9;
  --white: #FFFFFF;
  --gold: #F5B301;
  --gold-deep: #D99900;
  --gold-soft: #FDE8B0;

  /* Tipografi */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Boşluk ölçeği */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6.5rem;
  --space-8: 9rem;

  --container: 1200px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { color: var(--gray-700); }

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

@media (max-width: 640px) {
  .container { padding: 0 var(--space-3); }
}

section { position: relative; }

/* Görünür odak halkası — erişilebilirlik */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ==========================================================================
   İmza motifi — sarı kare (logodaki nokta)
   ========================================================================== */

.dot {
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  background: var(--gold);
  vertical-align: baseline;
  margin-left: 0.04em;
  border-radius: 1px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}

.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-5);
}

.section-head p {
  margin-top: var(--space-2);
  font-size: 1.05rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ==========================================================================
   Üst bar / Header
   ========================================================================== */

.topbar {
  background: var(--ink);
  color: var(--gray-300);
  font-size: 0.82rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}

.topbar-links {
  display: flex;
  gap: var(--space-4);
}

.topbar a:hover { color: var(--gold); }

.topbar-links span { color: var(--gray-500); margin-right: 0.4rem; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-links > ul {
  display: flex;
  gap: var(--space-4);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links > ul > li { position: relative; }

.nav-links a {
  display: inline-block;
  padding: 0.4rem 0.1rem;
  position: relative;
}

.nav-links > ul > li > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

.nav-links > ul > li > a:hover::after,
.nav-links > ul > li.active > a::after {
  width: 100%;
}

.nav-links > ul > li.active > a { color: var(--ink); font-weight: 600; }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -1.2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  min-width: 280px;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s var(--ease);
  box-shadow: 0 18px 40px -10px rgba(31,31,38,0.15);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 1px;
}

.dropdown a:hover { background: var(--paper); color: var(--gold-deep); }

.dropdown a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gray-300);
  flex-shrink: 0;
}

.dropdown a:hover::before { background: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold); color: var(--ink); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--ink); color: var(--white); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--ink);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: #24242C;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: var(--space-7) 0 var(--space-6);
}

/* Canvas yüklenemezse/desteklenmezse görünecek statik yedek */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(245,179,1,0.18), transparent 45%),
    radial-gradient(circle at 70% 55%, rgba(226,80,40,0.14), transparent 50%),
    radial-gradient(circle at 45% 80%, rgba(200,50,50,0.12), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
  align-items: center;
}

.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--gold); }

.hero-lede {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 480px;
  margin: var(--space-3) 0 var(--space-4);
}

.hero-cta { display: flex; gap: var(--space-2); flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white);
}
.stat-num .dot { width: 0.16em; height: 0.16em; }
.stat-label { font-size: 0.84rem; color: var(--gray-300); margin-top: 0.2rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
}

/* ==========================================================================
   Marka şeritleri / sektörler
   ========================================================================== */

.strip {
  background: var(--paper);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-3) 0;
}
.strip .container {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: space-between;
}
.strip-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}
.strip-items {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-300);
  font-size: 0.95rem;
}

/* ==========================================================================
   Genel bölüm
   ========================================================================== */

.section { padding: var(--space-7) 0; }
.section-sm { padding: var(--space-6) 0; }
.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink p { color: var(--gray-300); }
.bg-ink h2, .bg-ink h3 { color: var(--white); }

/* ==========================================================================
   Hizmet kartları
   ========================================================================== */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--space-4);
  position: relative;
  transition: all 0.25s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(31,31,38,0.14);
  border-color: transparent;
}
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  position: relative;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.service-card:hover .service-icon { background: var(--gold); }
.service-card:hover .service-icon svg { stroke: var(--ink); }

.service-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.service-card p { font-size: 0.94rem; margin-bottom: var(--space-2); }

.service-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ==========================================================================
   Süreç / Numaralı adımlar
   ========================================================================== */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.process-item { position: relative; padding-top: var(--space-4); }
.process-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--space-2);
}
.process-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-item p { font-size: 0.92rem; }
.process-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 4px;
  background: var(--gold);
}

/* ==========================================================================
   Karşılaştırma / değer önerisi
   ========================================================================== */

.feature-row {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-row:first-child { border-top: 1px solid var(--gray-200); }
.feature-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { stroke: var(--gold-deep); }
.feature-row h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.2rem; }
.feature-row p { font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   Logo / İstatistik şeridi
   ========================================================================== */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.stats-band .stat {
  padding: var(--space-4) var(--space-3);
  border-right: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}
.stats-band .stat:last-child { border-right: none; }
.stats-band .stat-num { font-size: 2.6rem; }
.stats-band .stat-label { font-size: 0.85rem; margin-top: 0.3rem; }

/* ==========================================================================
   Kartlar — referans / proje
   ========================================================================== */

.case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.case-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--ink), #34343d);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: var(--space-3);
}
.case-tag {
  position: absolute;
  top: var(--space-3); left: var(--space-3);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  text-transform: uppercase;
}
.case-body { padding: var(--space-3); }
.case-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.case-body p { font-size: 0.9rem; }
.case-meta {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--gray-200);
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ==========================================================================
   Yorum / testimonial
   ========================================================================== */

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--space-4);
  position: relative;
}
.testimonial::before {
  content: '';
  display: block;
  width: 32px; height: 6px;
  background: var(--gold);
  margin-bottom: var(--space-3);
}
.testimonial p { font-size: 1rem; color: var(--ink-soft); margin-bottom: var(--space-3); }
.testimonial-person { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-500); }

/* ==========================================================================
   CTA bandı
   ========================================================================== */

.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -120px; bottom: -120px;
  width: 360px; height: 360px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 50%;
}
.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.4rem; }
.cta-band p { color: var(--gray-300); }

/* ==========================================================================
   Footer
   ========================================================================== */

footer.site-footer {
  background: #17171C;
  color: var(--gray-300);
  padding-top: var(--space-7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--space-4);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 30px; margin-bottom: var(--space-2); filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; max-width: 280px; color: var(--gray-500); }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; color: var(--gray-300); }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 0.6rem; font-size: 0.9rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; stroke: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 0.7rem; margin-top: var(--space-3); }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--gray-300); }
.footer-social a:hover svg { stroke: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  font-size: 0.82rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: var(--space-2);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: var(--space-3); }

/* ==========================================================================
   Sayfa başlığı (alt sayfalar)
   ========================================================================== */

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-6) 0 var(--space-5);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,179,1,0.14), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(226,80,40,0.11), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .hero-flow-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; mix-blend-mode: screen; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: var(--space-3);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-500); }
.page-hero h1 { color: var(--white); }
.page-lede { color: var(--gray-300); max-width: 600px; margin-top: var(--space-2); font-size: 1.05rem; }

/* ==========================================================================
   Form
   ========================================================================== */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  border-radius: 1px;
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold-deep);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: #34343F;
  color: var(--white);
  padding: var(--space-4);
}
.contact-info-card h3 { color: var(--white); margin-bottom: var(--space-3); }
.contact-info-card .footer-contact li { color: var(--gray-300); margin-bottom: var(--space-3); }
.contact-info-card .footer-contact svg { stroke: var(--gold); }

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.blog-card:hover { box-shadow: 0 24px 48px -16px rgba(31,31,38,0.14); transform: translateY(-4px); }
.blog-media {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2C2C34, #1F1F26);
  position: relative;
}
.blog-cat {
  position: absolute; top: var(--space-2); left: var(--space-2);
  background: var(--gold); color: var(--ink);
  font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-display);
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-body { padding: var(--space-3); }
.blog-meta { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-body p { font-size: 0.9rem; }

/* ==========================================================================
   Kariyer
   ========================================================================== */

.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3);
  border: 1px solid var(--gray-200);
  background: var(--white);
  margin-bottom: 1px;
  transition: all 0.2s var(--ease);
  flex-wrap: wrap;
  gap: var(--space-2);
}
.job-row:hover { border-color: var(--gold-deep); }
.job-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.3rem; }
.job-meta { display: flex; gap: var(--space-2); font-size: 0.82rem; color: var(--gray-500); }
.job-meta span { display: flex; align-items: center; gap: 0.3rem; }
.job-meta svg { width: 13px; height: 13px; stroke: var(--gold-deep); }

.perk-card { text-align: center; padding: var(--space-3); }
.perk-icon {
  width: 56px; height: 56px;
  background: var(--ink);
  margin: 0 auto var(--space-2);
  display: flex; align-items: center; justify-content: center;
}
.perk-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.perk-card h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.4rem; }
.perk-card p { font-size: 0.88rem; }

/* ==========================================================================
   Değer / Misyon kartları (Hakkımızda)
   ========================================================================== */

.value-card { padding: var(--space-3) 0; }
.value-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  display: block;
}

.timeline { position: relative; padding-left: var(--space-4); border-left: 2px solid var(--gray-200); }
.timeline-item { position: relative; padding-bottom: var(--space-5); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-4) - 6px);
  top: 4px;
  width: 12px; height: 12px;
  background: var(--gold);
}
.timeline-year { font-family: var(--font-display); font-weight: 700; color: var(--gray-500); font-size: 0.9rem; }
.timeline-item h3 { margin: 0.3rem 0 0.4rem; font-size: 1.15rem; }
.timeline-item p { font-size: 0.94rem; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.accordion-trigger .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.accordion-trigger .plus::before, .accordion-trigger .plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.25s var(--ease);
}
.accordion-trigger .plus::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.accordion-trigger .plus::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.accordion-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.accordion-item.open .accordion-trigger .plus::before { background: var(--gold-deep); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.accordion-panel-inner { padding-bottom: var(--space-3); font-size: 0.94rem; max-width: 700px; }

/* ==========================================================================
   Yardımcı sınıflar
   ========================================================================== */

.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-1); } .mt-2 { margin-top: var(--space-2); } .mt-3 { margin-top: var(--space-3); }
.mb-1 { margin-bottom: var(--space-1); } .mb-2 { margin-bottom: var(--space-2); } .mb-3 { margin-bottom: var(--space-3); }

.tag-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  margin: 0 0.3rem 0.3rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* JavaScript çalışmıyorsa içerik gizli kalmasın */
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat:nth-child(2) { border-right: none; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links > ul, .nav-links .btn { display: none; }
  .menu-toggle { display: flex; }
  .topbar-links { gap: var(--space-2); font-size: 0.74rem; }
  .hero-stats { grid-template-columns: 1fr; gap: var(--space-2); }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.14); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .section { padding: var(--space-6) 0; }
  .cta-flex { flex-direction: column; align-items: flex-start; }

  /* Mobil menü */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 86px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-3);
    gap: var(--space-3);
    align-items: stretch;
  }
  .nav-links.mobile-open > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-links.mobile-open > ul > li { width: 100%; border-bottom: 1px solid var(--gray-200); }
  .nav-links.mobile-open > ul > li > a { display: block; padding: 0.85rem 0; }
  .nav-links.mobile-open .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding-left: 0.8rem;
    display: none;
  }
  .nav-links.mobile-open .has-dropdown.dd-open .dropdown { display: block; }
  .nav-links.mobile-open .btn { display: inline-flex; margin-top: var(--space-2); }
}
