/* ============================================================
   PsykoLink — Hakkımızda Sayfası
   Design System: Psiko Mavi & Mint Paleti
   Fonts: Poppins (headers) + Inter (body)
   ============================================================ */

:root {
  --primary-green: #10B981;
  --primary-blue: #3B82F6;
  --accent-purple: #6C63FF;
  --success-green: #22C55E;
  --warning-orange: #F59E0B;
  --gradient-blue-green: linear-gradient(135deg, #27AE60, #3498DB);
  --soft-gray: #F9FAFB;
  --dark-navy: #0C0F1A;
  --text-black: #1F2937;
  --text-muted: #4B5563;
  --text-light-gray: #9CA3AF;
  --white: #FFFFFF;
  --surface: rgba(255, 255, 255, 0.65);
  --border: rgba(59, 130, 246, 0.3);
  --shadow: 0 25px 60px -30px rgba(14, 22, 40, 0.6);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: clamp(16rem, 90vw, 1200px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-black);
  background: var(--soft-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 25%;
  box-shadow:
    0 4px 14px -2px rgba(59, 130, 246, 0.45),
    0 2px 6px -1px rgba(14, 22, 40, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
  box-shadow:
    0 8px 22px -4px rgba(59, 130, 246, 0.55),
    0 4px 10px -2px rgba(14, 22, 40, 0.3);
}

.logo-text {
  font-size: 1.1rem;
  color: var(--text-black);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  color: var(--text-black);
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--primary-green) !important;
  color: white !important;
  box-shadow: 0 12px 30px -18px var(--primary-green);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--success-green) !important;
  color: white !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-black);
  margin-bottom: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Nav backdrop (mobile drawer overlay) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-backdrop.is-open { display: block; }

/* ============================================================
   BADGE & TAG
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #059669;
}

.badge i { font-size: 0.75rem; }

.tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.tag--green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.tag--blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563EB;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.tag--purple {
  background: rgba(108, 99, 255, 0.1);
  color: #5B21B6;
  border: 1px solid rgba(108, 99, 255, 0.25);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
  color: white;
  box-shadow: 0 14px 36px -16px rgba(16, 185, 129, 0.6);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -18px rgba(16, 185, 129, 0.7);
}

.btn.ghost {
  background: transparent;
  color: var(--text-black);
  border: 1.5px solid rgba(59, 130, 246, 0.35);
}

.btn.ghost:hover {
  background: rgba(59, 130, 246, 0.06);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* ============================================================
   GRADIENT TEXT
   ============================================================ */

.gradient-text {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   HERO
   ============================================================ */

.about-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(
    165deg,
    rgba(108, 99, 255, 0.05) 0%,
    rgba(59, 130, 246, 0.06) 50%,
    rgba(16, 185, 129, 0.04) 100%
  );
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.hero-message-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  background: rgba(108, 99, 255, 0.06);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-left: 3px solid var(--accent-purple);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-black);
  line-height: 1.65;
}

.hero-message-note i {
  color: var(--accent-purple);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   ABOUT-CARD (Hero Right Side)
   ============================================================ */

.hero-visual {
  display: grid;
  gap: 1rem;
}

.about-card {
  padding: 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-top: 3px solid transparent;
  box-shadow:
    0 4px 20px -6px rgba(14, 22, 40, 0.08),
    0 1px 4px -1px rgba(14, 22, 40, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px -12px rgba(14, 22, 40, 0.14),
    0 4px 12px -4px rgba(14, 22, 40, 0.06);
}

.about-card--green { border-top-color: var(--primary-green); }
.about-card--blue  { border-top-color: var(--primary-blue); }
.about-card--purple { border-top-color: var(--accent-purple); }

.about-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.about-card__icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.icon--green {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}

.icon--blue {
  background: rgba(59, 130, 246, 0.18);
  color: #1D4ED8;
}

.icon--purple {
  background: rgba(108, 99, 255, 0.18);
  color: #5B21B6;
}

.about-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-gray);
}

.about-card__title {
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 0.5rem;
}

.about-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: gap 0.2s ease, color 0.2s ease;
}

.about-card--green .about-card__link { color: var(--primary-green); }
.about-card--purple .about-card__link { color: var(--accent-purple); }

.about-card__link:hover {
  gap: 0.65rem;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */

.content-section {
  padding: 5.5rem 0;
}

.content-section--light { background: var(--soft-gray); }
.content-section--white { background: #fff; }

.section-grid {
  display: grid;
  grid-template-columns: 80px 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.section-tag-col {
  padding-top: 0.5rem;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: white;
}

.section-number.green {
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
}

.section-number.blue {
  background: linear-gradient(135deg, var(--primary-blue), #6C63FF);
}

.section-number.purple {
  background: linear-gradient(135deg, var(--accent-purple), #3B82F6);
}

.section-body {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.section-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.section-body-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.section-visual {
  position: sticky;
  top: 6rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fi-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.fi--green {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}

.fi--blue {
  background: rgba(59, 130, 246, 0.18);
  color: #1D4ED8;
}

.fi--purple {
  background: rgba(108, 99, 255, 0.18);
  color: #5B21B6;
}

.fi-body strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 0.25rem;
}

.fi-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   VISUAL CARDS (Section Right Side)
   ============================================================ */

.visual-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(14, 22, 40, 0.07);
  box-shadow:
    0 8px 32px -8px rgba(14, 22, 40, 0.1),
    0 2px 8px -2px rgba(14, 22, 40, 0.05);
}

.visual-card--dark {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.9);
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.vc-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.vc-icon--blue {
  background: linear-gradient(135deg, #2563EB, var(--primary-blue));
}

.vc-icon--green {
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
}

.vc-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-gray);
}

.visual-card--dark .vc-label {
  color: rgba(255, 255, 255, 0.5);
}

.vc-sub {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.vc-sub--positive {
  color: var(--primary-green);
}

.vc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vc-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.vc-list--negative li { color: #EF4444; }
.vc-list--negative li i { color: #EF4444; font-size: 0.8rem; }

.vc-list--positive li { color: var(--primary-green); }
.vc-list--positive li i { color: var(--primary-green); font-size: 0.85rem; }

.vc-divider {
  height: 1px;
  background: rgba(14, 22, 40, 0.08);
  margin: 0.9rem 0;
}

.vc-note {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  font-style: italic;
}

/* BDT Cycle (Section 02 visual card) */
.cbt-cycle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.25rem 0;
}

.cbt-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.cbt-node i {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cbt-node span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}

.cbt-arrows {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

/* Mission visual card */
.vc-quote {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
  border-left: 3px solid var(--primary-green);
  padding: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mpillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  background: var(--soft-gray);
  border-radius: var(--radius-sm);
}

.mpillar__num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-green);
  font-family: "Poppins", sans-serif;
}

.mpillar__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-black);
}

/* Vision visual card */
.vc-vision-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.vc-vision-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.vision-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vmetric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-sm);
}

.vmetric__icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.vmetric__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-black);
}

/* Goal visual card */
.visual-card--goal {
  background: linear-gradient(160deg, #f0fdf4 0%, #eff6ff 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.vc-goal-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.goal-beliefs {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gbelief {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-black);
}

.gbelief i {
  color: var(--primary-green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */

.manifesto-section {
  padding: 5.5rem 0;
}

.manifesto-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.manifesto-num {
  margin-bottom: 0.5rem;
}

.manifesto-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.2;
}

.manifesto-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.manifesto-belief {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-black);
  padding: 0.75rem 1.5rem;
  background: rgba(108, 99, 255, 0.06);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: var(--radius-md);
  font-weight: 500;
  margin: 0;
}

.manifesto-belief em {
  font-style: italic;
  color: var(--accent-purple);
  font-weight: 600;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.principle-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  border: 1px solid rgba(14, 22, 40, 0.07);
  border-top: 3px solid transparent;
  box-shadow:
    0 4px 20px -6px rgba(14, 22, 40, 0.08),
    0 1px 4px -1px rgba(14, 22, 40, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px -12px rgba(14, 22, 40, 0.12),
    0 4px 12px -4px rgba(14, 22, 40, 0.06);
}

.pc--green { border-top-color: var(--primary-green); }
.pc--blue  { border-top-color: var(--primary-blue); }
.pc--purple { border-top-color: var(--accent-purple); }
.pc--orange { border-top-color: var(--warning-orange); }

.pc-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pc-icon--green {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}

.pc-icon--blue {
  background: rgba(59, 130, 246, 0.18);
  color: #1D4ED8;
}

.pc-icon--purple {
  background: rgba(108, 99, 255, 0.18);
  color: #5B21B6;
}

.pc-icon--orange {
  background: rgba(245, 158, 11, 0.18);
  color: #92400E;
}

.principle-card h3 {
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.3;
}

.principle-card p {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0;
}

.manifesto-closing {
  margin-top: 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 2.5rem 2rem;
  background: rgba(108, 99, 255, 0.04);
  border: 1px solid rgba(108, 99, 255, 0.14);
  border-radius: var(--radius-lg);
}

.manifesto-lines {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-black);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  margin: 0;
}

.manifesto-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.manifesto-tagline strong {
  color: var(--accent-purple);
}

.manifesto-end {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light-gray);
  margin: 0;
}

/* ============================================================
   ETHICS BANNER
   ============================================================ */

.ethics-banner {
  background: var(--dark-navy);
  padding: 3.5rem 0;
}

.ethics-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ethics-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--warning-orange);
}

.ethics-text {
  flex: 1;
  min-width: 280px;
}

.ethics-text h2 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.6rem;
}

.ethics-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.ethics-text strong {
  color: rgba(255, 255, 255, 0.92);
}

.ethics-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.ethics-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.75rem;
}

.logo-text-footer {
  font-size: 1.1rem;
  color: white;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
}

.logo-text-footer + p,
.footer-brand .logo {
  margin-bottom: 0.5rem;
}

.site-footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.site-footer ul a:hover {
  color: white;
}

.footer-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin: 0;
}

.footer-note a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
}

/* ============================================================
   MOBILE NAV OPEN STATE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-grid {
    grid-template-columns: 60px 1fr;
    gap: 2rem;
  }

  .section-visual {
    display: none;
  }

  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    z-index: 999;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
  }

  .site-header {
    position: sticky;
  }

  .about-hero {
    padding: 3rem 0 2.5rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-tag-col {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ethics-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .cbt-cycle {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cbt-arrows {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.75rem;
  }

  .section-body h2 {
    font-size: 1.45rem;
  }

  .manifesto-header h2 {
    font-size: 1.6rem;
  }

  .about-card {
    padding: 1.2rem 1.3rem;
  }
}

/* ============================================================
   EKİBİMİZ & YARARLANILAN KAYNAKLAR
   ============================================================ */

.team-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.team-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.team-lead {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

/* Ekip kartları */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 720px;
}

.team-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid rgba(14, 22, 40, 0.07);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: 0 4px 20px -8px rgba(14, 22, 40, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  box-shadow: 0 8px 32px -12px rgba(59, 130, 246, 0.18);
  transform: translateY(-2px);
}

.team-card__avatar {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.team-card__avatar--blue {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
}

.team-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.team-card__name {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: var(--text-black);
}

.team-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0.4rem 0 0;
}

/* Kaynak kartları */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.source-card {
  background: #fff;
  border: 1px solid rgba(14, 22, 40, 0.07);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: 0 4px 20px -8px rgba(14, 22, 40, 0.08);
}

.source-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 1rem;
}

.source-card__icon--green  { background: linear-gradient(135deg, var(--primary-green), #0EA5E9); }
.source-card__icon--blue   { background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple)); }
.source-card__icon--purple { background: linear-gradient(135deg, var(--accent-purple), #9333EA); }

.source-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: var(--text-black);
  margin: 0 0 0.9rem;
}

.source-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.source-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.source-list li i {
  flex-shrink: 0;
  color: var(--primary-blue);
  margin-top: 0.15rem;
  width: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .team-grid    { grid-template-columns: 1fr; }
  .sources-grid { grid-template-columns: 1fr; }
  .team-card    { flex-direction: row; }
  .team-header  { max-width: 100%; }
}
