/* ==========================================================================
   2C1N — Design tokens
   ========================================================================== */
:root {
  --green: #017a5a;
  --green-2: #019875;
  --green-dark: #01573f;
  --white: #ffffff;
  --gray-light: #ececec;
  --gray-lighter: #f7f7f8;
  --gray-text: #747474;
  --dark: #212121;

  --purple: #913d88;
  --violet: #6700ff;
  --pink: #ad4876;
  --brick: #a82400;

  --font-body: "Poppins", -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Montserrat", -apple-system, "Segoe UI", sans-serif;

  --container: 1140px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.icon-svg { width: 20px; height: 20px; flex: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  line-height: 1.2;
}
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid {
  background: var(--green);
  color: var(--white);
}
.btn-solid:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--green); }
.btn-white {
  background: var(--white);
  color: var(--green);
}
.btn-white:hover { background: var(--gray-light); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.site-header .logo img { height: 46px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: color .15s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--green); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--green);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--white);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    overflow-y: auto;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 30px;
  }
  .main-nav a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 17px;
  }
  .nav-toggle { display: block; }
}

/* ==========================================================================
   Emblem watermark (repeated brand motif — the logo mark, faded, oversized)
   ========================================================================== */
.emblem-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
/* The source logo's viewBox is 948.8x463.5; the circular wreath mark occupies
   the left ~48.75% (a near-square slice). Crop to just that mark so the
   watermark reads as an icon, not a legible duplicate of the wordmark. */
.emblem-crop {
  position: absolute;
  width: 420px;
  height: 420px;
  overflow: hidden;
  right: -7%;
  top: 50%;
  transform: translateY(-50%);
}
.emblem-crop img {
  position: absolute;
  left: 0;
  top: 0;
  width: 862px;
  max-width: none;
  height: auto;
  opacity: .09;
}
.emblem-bg.pos-left .emblem-crop { right: auto; left: -8%; }
.emblem-bg.pos-bottom-right .emblem-crop { top: auto; bottom: -14%; transform: none; width: 320px; height: 320px; }
.emblem-bg.pos-bottom-right .emblem-crop img { width: 656px; }
.emblem-bg.subtle .emblem-crop img { opacity: .05; }

/* Ring-only artwork (no square tile behind it) — sized and centered as its
   own image rather than cropped out of the full wordmark. */
.emblem-bg.emblem-ring .emblem-crop { width: 460px; height: 460px; right: -4%; }
.emblem-bg.emblem-ring .emblem-crop img {
  position: static;
  width: 100%;
  height: 100%;
  opacity: .07;
}

@media (max-width: 640px) {
  .emblem-crop { width: 260px; height: 260px; }
  .emblem-crop img { width: 534px; }
  .emblem-bg.pos-bottom-right .emblem-crop { width: 220px; height: 220px; }
  .emblem-bg.pos-bottom-right .emblem-crop img { width: 452px; }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  position: relative;
  background-color: var(--green-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 40px;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 {
  position: relative;
  color: var(--white);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 48px);
  margin: 0;
}

/* ==========================================================================
   Home hero
   ========================================================================== */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-light);
}
.home-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,58,43,.05) 0%, rgba(1,40,30,.35) 100%);
  z-index: 1;
}
.home-hero .emblem-bg { z-index: 1; }
.home-hero .emblem-bg img { opacity: .10; }
.home-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}
.home-hero-content img.logo-mark { height: 92px; margin-bottom: 26px; }
.home-hero-content h1 {
  color: var(--dark);
  font-size: clamp(28px, 4.2vw, 44px);
  max-width: 620px;
  margin-bottom: 32px;
}

/* ==========================================================================
   Wave divider
   ========================================================================== */
.wave-divider {
  display: block;
  width: 100%;
  height: 90px;
  margin-bottom: -2px;
}
.wave-divider path { fill: var(--green-2); }
.wave-divider.flip { transform: rotate(180deg); margin-bottom: 0; margin-top: -2px; }

/* Layered wave transition — three offset crests of increasing opacity so
   the join between sections reads as a soft stack of bands, not one line. */
.wave-stack { height: 110px; }
.wave-stack .wave-l1 { fill: var(--green-2); opacity: .25; }
.wave-stack .wave-l2 { fill: var(--green-2); opacity: .55; }
.wave-stack .wave-l3 { fill: var(--green-2); opacity: 1; }
.wave-stack.tone-dark .wave-l1,
.wave-stack.tone-dark .wave-l2,
.wave-stack.tone-dark .wave-l3 { fill: var(--green-dark); }

/* ==========================================================================
   Sections — generic
   ========================================================================== */
.section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-lighter); }
.section-green {
  background: linear-gradient(180deg, var(--green-2) 0%, var(--green-dark) 100%);
  color: var(--white);
}
.section-title {
  text-align: center;
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 50px;
}
.section-green .section-title { color: var(--white); }
.section-lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--gray-text);
}

/* ==========================================================================
   Countdown-replacement banner (Neden Katılmalı CTA strip on home)
   ========================================================================== */
.cta-strip {
  background: var(--gray-lighter);
  text-align: center;
  padding: 70px 0 50px;
}
.cta-strip h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 28px; }
.cta-strip .btn { margin: 0 10px 12px; }
.cta-strip .text-link {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}
.partner-banner {
  background: var(--green);
  text-align: center;
  padding: 44px 0;
}

/* ==========================================================================
   Coordinator message
   ========================================================================== */
.section-message {
  background-repeat: no-repeat;
  background-position: right 0 top;
  background-size: contain;
  background-image: url("../img/bg-silhuette-emblem.png");
}
.message-block {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.message-block h3 {
  color: var(--gray-text);
  font-size: 20px;
  text-transform: none;
}
.message-block .signature {
  margin-top: 24px;
  font-style: italic;
  color: var(--dark);
  font-weight: 600;
}
.message-block.has-image {
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 48px;
  align-items: center;
}
.message-block.has-image .message-media {
  border-radius: var(--radius);
  overflow: hidden;
  align-self: stretch;
}
.message-block.has-image .message-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
@media (max-width: 820px) {
  .message-block.has-image {
    grid-template-columns: 1fr;
  }
  .message-block.has-image .message-media {
    max-width: 340px;
    margin: 0 auto 8px;
  }
}

/* ==========================================================================
   Icon blurb list (why join / discover)
   ========================================================================== */
.blurb-list { display: flex; flex-direction: column; gap: 34px; max-width: 640px; margin: 0 auto; }
.blurb-list.on-dark { color: var(--white); }
.blurb-item { display: flex; gap: 22px; align-items: flex-start; }
.blurb-item .icon {
  flex: none;
  width: 48px; height: 48px;
}
.blurb-item .icon svg { width: 100%; height: 100%; }
.blurb-item h4 {
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blurb-item p { margin: 0; color: inherit; opacity: .92; }

/* Three-column variant (Neden Katılmalı?) — icon + label share a row,
   the paragraph runs full-width beneath, columns sit side by side. */
.blurb-list.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
  max-width: 100%;
}
.blurb-list.grid-3 .blurb-item { display: block; }
.blurb-list.grid-3 .item-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.blurb-list.grid-3 .icon { width: 30px; height: 30px; }
.blurb-list.grid-3 h4 { margin-bottom: 0; font-size: 15px; }
@media (max-width: 780px) {
  .blurb-list.grid-3 { grid-template-columns: 1fr; gap: 32px; }
}

.blurb-grid { display: flex; flex-direction: column; gap: 60px; max-width: 640px; margin: 0 auto; text-align: center; }
.blurb-grid .icon { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--green); }
.blurb-grid .icon svg { width: 100%; height: 100%; }
.blurb-grid h3 { color: var(--green); font-size: 22px; }
.blurb-grid p { color: var(--gray-text); }

/* ==========================================================================
   Discover layout — solo / 2-up / solo / 3-up-in-a-card rhythm
   ========================================================================== */
.discover-layout { display: flex; flex-direction: column; gap: 70px; }
.discover-layout .icon { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--green); }
.discover-layout .icon svg { width: 100%; height: 100%; }
.discover-layout h3 { color: var(--green); font-size: 22px; }
.discover-layout p { color: var(--gray-text); }

.discover-solo { max-width: 620px; margin: 0 auto; text-align: center; }

.discover-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.discover-card {
  background: var(--green);
  border-radius: 24px;
  padding: 56px 44px;
}
.discover-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.discover-card h3, .discover-card p { color: var(--white); }
.discover-card p { opacity: .92; }

@media (max-width: 780px) {
  .discover-row-2, .discover-row-3 { grid-template-columns: 1fr; gap: 36px; }
  .discover-card { padding: 40px 26px; }
}

/* ==========================================================================
   Testimonial slider
   ========================================================================== */
.testimonial-slider { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-slider .quote-icon {
  width: 64px; height: 64px;
  margin: 0 auto 30px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.testimonial-slide p { font-size: 18px; color: var(--dark); }
.testimonial-slide .name { font-weight: 700; margin-top: 20px; }
.testimonial-slide .role { color: var(--gray-text); font-size: 14px; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testimonial-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: var(--gray-light); cursor: pointer; padding: 0;
}
.testimonial-dots button.is-active { background: var(--green); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--green);
  color: var(--white);
  padding: 100px 0 40px;
  overflow: hidden;
}
.site-footer .footer-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-logo {
  display: inline-flex;
}
.site-footer .footer-logo img { height: 70px; display: block; }
.footer-links { list-style: none; margin: 0; padding: 0; font-size: 17px; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { opacity: .95; }
.footer-links a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 26px; align-items: center; }
.footer-social a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 28px; height: 28px; }
.footer-bottom {
  position: relative;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: 13.5px;
  opacity: .9;
}
.footer-bottom a { text-decoration: underline; }
.footer-admin-link {
  position: absolute;
  right: 22px;
  bottom: 14px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .03em;
  color: rgba(255,255,255,.32);
  text-decoration: none;
}
.footer-admin-link:hover { color: rgba(255,255,255,.85); text-decoration: underline; }
.site-footer .emblem-bg.emblem-ring .emblem-crop { width: 640px; height: 640px; right: 4%; top: 45%; }
.site-footer .emblem-bg.emblem-ring .emblem-crop img { opacity: .12; }

/* ==========================================================================
   Accordion (S.S.S. + Etkinlik Takvimi)
   ========================================================================== */
.accordion { max-width: 780px; margin: 0 auto; }
.accordion-item {
  border-bottom: 1px solid var(--gray-light);
}
.accordion-item.is-open,
.accordion-item.is-open-default {
  background: var(--gray-lighter);
  border: none;
  border-radius: 8px;
  padding: 6px 26px;
  margin-bottom: 16px;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  padding: 22px 4px;
  cursor: pointer;
}
.accordion-trigger .chevron { flex: none; transition: transform .2s ease; }
.accordion-item.is-open .accordion-trigger .chevron { transform: rotate(180deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.accordion-panel-inner { padding: 0 4px 22px; color: var(--gray-text); }
.accordion-item.is-open-default .accordion-panel { max-height: none; }
.accordion-item.is-open-default .accordion-trigger { cursor: default; }
.accordion-item.is-open-default .accordion-trigger .chevron { display: none; }

/* ==========================================================================
   Timeline (Etkinlik Takvimi)
   ========================================================================== */
.evt-groups { max-width: 900px; margin: 0 auto; }
.evt-group { margin-bottom: 16px; }
.evt-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  background: var(--gray-lighter);
  border: none;
  border-radius: 10px;
  padding: 20px 26px;
  text-align: left;
  cursor: pointer;
}
.evt-group.is-intro .evt-group-title {
  background: none;
  border-radius: 0;
  color: var(--gray-text);
  font-size: 26px;
  font-weight: 600;
  padding: 6px 4px 26px;
  cursor: default;
}
.evt-group-title .toggle-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  color: var(--gray-text);
}
.evt-group:not(.is-intro) .evt-group-title .toggle-icon {
  background: var(--white);
  border-color: rgba(255,255,255,.6);
  color: var(--green);
}
.evt-group-title .icon-minus { display: none; }
.evt-group.is-open .evt-group-title .icon-plus { display: none; }
.evt-group.is-open .evt-group-title .icon-minus { display: block; }
.evt-group-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}
.evt-group.is-open .evt-group-panel { max-height: 3000px; }
.evt-group.is-intro .evt-group-panel { overflow: visible; }

.evt-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 30px;
  row-gap: 34px;
  padding: 12px 0 28px;
}
.evt-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 3px;
  background: var(--green);
}
.evt-dot {
  grid-column: 1;
  align-self: center;
  justify-self: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  z-index: 1;
}
.evt-card {
  grid-column: 2;
  align-self: center;
  background: var(--gray-lighter);
  border-radius: 12px;
  padding: 22px 26px;
  min-width: 0;
}
.evt-card .date { font-weight: 700; }
.evt-card .desc { color: var(--gray-text); font-size: 14px; margin-top: 2px; }

@media (max-width: 700px) {
  .evt-timeline { grid-template-columns: 20px 1fr; column-gap: 18px; }
  .evt-dot { width: 16px; height: 16px; }
  .evt-group-title { padding: 16px 20px; font-size: 16px; }
  .evt-group.is-intro .evt-group-title { font-size: 19px; }
}

/* ==========================================================================
   Year tabs (Hakkımızda — koordinatörlükler)
   ========================================================================== */
.year-tabs { max-width: 760px; margin: 0 auto; }
.year-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.year-tabs-nav button {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 30px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.year-tabs-nav button.is-active { background: var(--green); color: var(--white); }
.year-panel { display: none; }
.year-panel.is-active { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; text-align: center; }
.year-panel .person strong { display: block; font-size: 16px; }
.year-panel .person span { display: block; color: var(--gray-text); font-size: 13.5px; margin-top: 4px; }

/* ==========================================================================
   About split (Hakkımızda — intro / 2C1Night image+text rows)
   ========================================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split + .about-split { margin-top: 70px; }
.about-split .about-media img { border-radius: var(--radius); width: 100%; height: auto; }
.about-split .about-logo { height: 44px; margin-bottom: 22px; }
.about-split h3 { font-size: 24px; margin-bottom: 16px; }
.about-split p { color: var(--gray-text); }
@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; gap: 26px; }
  .about-split .about-media { order: -1; }
}

/* ==========================================================================
   Coordinator timeline (Hakkımızda — koordinatörlükler)
   ========================================================================== */
.coord-timeline { max-width: 620px; margin: 0 auto; position: relative; }
.coord-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--gray-light);
}
.coord-year { position: relative; padding: 0 0 30px 34px; }
.coord-year:last-child { padding-bottom: 0; }
.coord-year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-light);
}
.coord-year .year-label { display: block; color: var(--green); font-weight: 700; font-size: 17px; margin-bottom: 12px; }
.coord-year .person { margin-bottom: 10px; }
.coord-year .person:last-child { margin-bottom: 0; }
.coord-year .person strong { display: block; font-size: 15px; }
.coord-year .person span { display: block; color: var(--gray-text); font-size: 13px; font-style: italic; margin-top: 2px; }
.coord-year.is-current {
  background: var(--green);
  border-radius: var(--radius);
  padding: 22px 26px 22px 40px;
  margin-left: -6px;
}
.coord-year.is-current::before { left: 6px; background: var(--white); border-color: var(--green); }
.coord-year.is-current .year-label,
.coord-year.is-current .person strong { color: var(--white); }
.coord-year.is-current .person span { color: rgba(255,255,255,.85); }

/* ==========================================================================
   Simurg Derneği card (Hakkımızda)
   ========================================================================== */
.simurg-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 60px 50px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.simurg-card .simurg-logo { height: 38px; margin-bottom: 10px; }
.simurg-card .simurg-url { display: block; font-size: 13px; opacity: .85; margin-bottom: 34px; }
.simurg-card .simurg-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}
.simurg-card h3 { color: var(--white); font-size: 19px; }
.simurg-card p { color: rgba(255,255,255,.92); margin: 0; }
.simurg-card .stat-grid { max-width: none; grid-template-columns: repeat(4, 1fr); gap: 30px 20px; }
.simurg-card .stat-grid .num { color: var(--white); }
.simurg-card .stat-grid .label { color: rgba(255,255,255,.85); }
.simurg-card .simurg-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.25);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 780px) {
  .simurg-card { padding: 44px 26px; }
  .simurg-card .simurg-columns { grid-template-columns: 1fr; gap: 24px; }
  .simurg-card .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .simurg-card .simurg-tags { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Stat counters (Hakkımızda — Vizyon)
   ========================================================================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-grid .num { font-family: var(--font-heading); font-size: 40px; color: var(--green); font-weight: 700; }
.stat-grid .label { color: var(--gray-text); font-size: 14px; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 50px auto 0;
}
.feature-cards .card {
  background: var(--gray-lighter);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  font-weight: 700;
  color: var(--green);
}

/* ==========================================================================
   Logo grid (Partnerliklerimiz)
   ========================================================================== */
.year-block { max-width: 980px; margin: 0 auto 70px; }
.year-block h2 { text-align: center; color: var(--green); font-size: 30px; margin-bottom: 40px; }
.partner-group { margin-bottom: 34px; }
.partner-group h3 {
  text-align: center;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 22px;
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 34px;
}
.logo-grid img {
  max-height: 62px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
}

/* ==========================================================================
   Simple card / list pages (Raporlarımız)
   ========================================================================== */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-lighter);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}
.link-card:hover { background: var(--gray-light); transform: translateY(-2px); }
.link-card .icon { flex: none; width: 26px; height: 26px; color: var(--green); }
.card-block {
  max-width: 760px;
  margin: 0 auto 50px;
  background: var(--gray-lighter);
  border-radius: var(--radius);
  padding: 34px;
}

/* ==========================================================================
   Plain text page (Gizlilik Politikası)
   ========================================================================== */
.legal-content { max-width: 820px; margin: 0 auto; color: var(--gray-text); }
.legal-content h2 { color: var(--dark); font-size: 20px; margin-top: 2em; }
.legal-content p { margin-bottom: 1.2em; }

/* ==========================================================================
   Coming soon (Başvuru)
   ========================================================================== */
.coming-soon-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 18px -6px rgba(0, 0, 0, .3);
  padding: 120px 40px;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.coming-soon-card h2 {
  color: var(--white);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3rem;
  margin-bottom: .6em;
}
.coming-soon-card p {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 2rem;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .coming-soon-card { padding: 70px 24px; }
  .coming-soon-card h2 { font-size: 1.9rem; line-height: 2.4rem; }
  .coming-soon-card p { font-size: 1.05rem; line-height: 1.7rem; }
}

/* ==========================================================================
   Başvuru — native application form
   ========================================================================== */
.basvuru-intro {
  max-width: 820px;
  margin: 0 auto 32px;
  color: var(--gray-text);
  font-size: 17px;
  line-height: 1.85;
}
.basvuru-intro p { margin-bottom: 1.3em; }
.basvuru-intro strong { font-weight: 700; color: inherit; }
.basvuru-intro em { font-style: italic; }
.basvuru-intro u { text-decoration: underline; text-underline-offset: 2px; }
.basvuru-intro a { color: var(--green); text-decoration: underline; font-weight: 600; }
.basvuru-intro a:hover { color: var(--green-dark); }
.basvuru-intro h1, .basvuru-intro h2, .basvuru-intro h3 {
  color: var(--dark);
  font-size: 34px;
  line-height: 1.25;
  margin: 1.1em 0 .55em;
}
.basvuru-intro ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.3em;
}
.basvuru-intro li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}
.basvuru-intro li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--gray-text);
}

.app-ai-notice {
  text-align: center;
  font-weight: 600;
  color: var(--dark);
  max-width: 820px;
  margin: 0 auto 28px;
}

.app-errors {
  max-width: 780px;
  margin: 0 auto 28px;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #9c1c14;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
}
.app-errors ul { margin: 8px 0 0; padding-left: 1.2em; }

.app-form { max-width: 780px; margin: 0 auto; }
.app-form-title { text-align: center; font-size: 26px; margin-bottom: 28px; }

.app-honeypot {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .app-row { grid-template-columns: 1fr; }
}

.app-field { margin-bottom: 22px; }
.app-label {
  display: block;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
}

.app-input, .app-select, .app-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--gray-lighter);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .15s ease, background .15s ease;
}
.app-input:focus, .app-select:focus, .app-textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.app-textarea { min-height: 110px; resize: vertical; }
.app-select { appearance: auto; cursor: pointer; }

.app-radio-group { display: flex; flex-direction: column; gap: 10px; }
.app-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--dark);
  cursor: pointer;
}
.app-radio input { margin-top: 3px; accent-color: var(--green); flex: none; }

.app-checkbox-field { background: var(--gray-lighter); border-radius: 8px; padding: 16px; }
.app-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-text);
  cursor: pointer;
}
.app-checkbox input { margin-top: 3px; accent-color: var(--green); flex: none; }
.app-checkbox a { color: var(--green); text-decoration: underline; }

.app-submit-row { text-align: center; margin-top: 32px; }
.app-submit-row .btn { padding: 15px 48px; font-size: 16px; }

.app-thanks {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}
.app-thanks svg { width: 64px; height: 64px; color: var(--green); margin: 0 auto 20px; }
.app-thanks h2 { font-size: 26px; margin-bottom: .5em; }
.app-thanks p { color: var(--gray-text); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 90;
  border: none;
  cursor: pointer;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .page-hero { padding: 80px 0; }
}
