:root {
  /* EWU marka paleti — derin lacivert, kontrollü kırmızı, temiz nötrler */
  --coral: #c21f30;
  --coral-2: #a81727;
  --blue: #263c88;
  --sky: #5268ae;
  --teal: #263c88;
  --sunny: #e8ecf8;
  --yellow: #f0b429;
  --apricot: #e8ecf8;
  --orange: #c21f30;
  --pink: #c21f30;
  --grape: #5268ae;
  --forest: #172554;
  --forest-2: #101b3d;
  --navy: #172554;
  --ink: #172554;
  --muted: #667085;
  --cream: #f7f8fc;
  --paper: #ffffff;
  --white: #fff;
  --mint: #eef1f9;
  --line: #e4e7ec;
  /* Bölümler aynı ailenin sakin tonlarında kalır */
  --bg-sky: #eef2ff;
  --bg-sun: #f7f8fc;
  --bg-pink: #fff4f5;
  --bg-mint: #f1f4fa;
  --bg-peach: #faf7f7;
  --bg-lilac: #f2f3f9;
  --shadow: 0 22px 48px rgba(23, 37, 84, .12);
  --shadow-coral: 0 14px 30px rgba(194, 31, 48, .24);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
h1, h2, h3, h4 {
  margin: 0 0 .7em;
  font-family: "Fredoka", "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.6rem, 8vw, 5.4rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
}
.skip-link:focus { top: 1rem; }
.announcement {
  padding: .45rem 1rem;
  color: var(--white);
  background: var(--forest);
  font-size: .75rem;
  text-align: center;
}
.announcement span { color: var(--yellow); padding: 0 .35rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23,37,84,.08);
}
.nav-wrap {
  min-height: 88px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 92px; height: 72px; object-fit: contain; object-position: left center; }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 13px;
  background: var(--cream);
}
.menu-toggle span { width: 21px; height: 2px; background: var(--forest); }
.main-nav {
  position: fixed;
  inset: 103px 0 auto;
  max-height: calc(100vh - 103px);
  padding: 1.2rem;
  display: none;
  overflow: auto;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.main-nav.open { display: grid; }
.main-nav a { padding: .72rem .4rem; font-weight: 600; }
.main-nav a.active { color: var(--coral); }
.nav-label-desktop { display: none; }
.nav-label-mobile { display: inline; }
.main-nav .nav-mobile-only {
  margin-top: -.3rem;
  padding-left: 1.1rem;
  color: var(--blue);
  font-size: .94rem;
}
.main-nav .nav-cta {
  margin-top: .5rem;
  padding: .7rem 1.3rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  text-align: center;
  box-shadow: var(--shadow-coral);
}

.section, .page-hero { padding: 4.5rem 1rem; }
.section-inner, .hero-inner, .footer-grid, .footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.hero {
  position: relative;
  min-height: 690px;
  padding: 4.5rem 1rem 3rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero {
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f8fc 58%, #eef2ff 100%);
}
.hero::before { width: 460px; height: 460px; right: -160px; top: -80px; background: rgba(38,60,136,.09); }
.hero::after { width: 280px; height: 280px; left: -110px; bottom: -60px; background: var(--coral); opacity: .07; }
.hero-inner { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.2rem;
  color: var(--forest-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--coral); border-radius: 3px; }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero-copy > p { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.7rem; }
.button {
  min-height: 54px;
  padding: .85rem 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  font-family: "Fredoka", "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease, filter .18s ease;
}
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(-1px) scale(.98); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 26px rgba(38,60,136,.24); }
.button-primary:hover { box-shadow: 0 18px 34px rgba(38,60,136,.3); }
.button-secondary { color: var(--forest); background: var(--white); box-shadow: inset 0 0 0 2px var(--forest); }
.button-secondary:hover { background: var(--forest); color: var(--white); }
.button-coral { color: var(--white); background: var(--coral); box-shadow: var(--shadow-coral); }
.button-coral:hover { box-shadow: 0 20px 40px rgba(194,31,48,.3); }
.button-whatsapp { color: var(--white); background: #176b52; box-shadow: 0 12px 26px rgba(23,107,82,.22); }
.button-whatsapp:hover { box-shadow: 0 18px 34px rgba(23,107,82,.3); }
.hero-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}
.hero-photo {
  width: min(520px, 100%);
  height: 390px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 42px 42px 42px 14px;
  box-shadow: var(--shadow);
}
.float-note {
  position: absolute;
  padding: .85rem 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 700;
  transform: rotate(-5deg);
}
.float-note.one { left: 0; top: 10px; }
.float-note.two { right: 0; bottom: 12px; color: var(--white); background: var(--blue); }
.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.section-head { margin-bottom: 2.2rem; }
.section-head p { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.center { text-align: center; }
.center p { margin-inline: auto; }
.grid { display: grid; gap: 1rem; }
.card {
  padding: 1.8rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(33,48,107,.07);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 46px rgba(33,48,107,.13); }
.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  font-family: "Fredoka", sans-serif;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.35rem;
}
.grid > .card:nth-child(odd) .card-icon { background: var(--blue); }
.grid > .card:nth-child(even) .card-icon { background: var(--coral); }
.card p { color: var(--muted); }
.card-link { color: var(--forest-2); font-weight: 800; }
.tinted { background: var(--cream); }
.bg-mint { background: var(--bg-mint); }
.bg-sky { background: var(--bg-sky); }
.bg-peach { background: var(--bg-peach); }
.bg-sun { background: var(--bg-sun); }
.bg-lilac { background: var(--bg-lilac); }
.bg-pink { background: var(--bg-pink); }
.dark { color: var(--white); background: var(--forest); }
.dark .section-head p, .dark .card p { color: #cdd4f2; }
.dark .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.dark .eyebrow { color: var(--sunny); }
.dark .eyebrow::before { background: var(--sunny); }
.program-card { position: relative; overflow: hidden; }
.program-image {
  width: calc(100% + 3.1rem);
  height: 185px;
  margin: -1.55rem -1.55rem 1.25rem;
  object-fit: cover;
}
.program-card::after {
  content: attr(data-number);
  position: absolute;
  right: .7rem;
  top: -.9rem;
  color: rgba(38,60,136,.05);
  font: 800 6rem "Manrope", sans-serif;
}
.program-card .meta { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pill {
  padding: .4rem .85rem;
  color: var(--blue);
  background: var(--bg-mint);
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 700;
}
.meta .pill:nth-child(2n) { color: var(--coral-2); background: #fff1f2; }
.program-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.program-actions .button { min-height: 44px; padding: .65rem .85rem; font-size: .88rem; }
.split { display: grid; gap: 2rem; align-items: center; }
.feature-list { padding: 0; margin: 1.4rem 0; display: grid; gap: .7rem; list-style: none; }
.feature-list li { position: relative; padding-left: 1.75rem; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 900;
}
.device {
  width: min(320px, 84vw);
  margin: auto;
  padding: .65rem;
  background: #101a3d;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.device-screen {
  min-height: 470px;
  padding: 1.4rem;
  background: linear-gradient(160deg, #ffffff, #eef2ff);
  border-radius: 30px;
}
.real-device {
  width: min(390px, 80vw);
  max-height: 610px;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(13,27,62,.25));
}
.content-image {
  width: 100%;
  max-height: 520px;
  margin-bottom: 2rem;
  object-fit: cover;
  border-radius: 28px 28px 28px 8px;
  box-shadow: var(--shadow);
}
.content-image.poster { object-fit: contain; background: var(--cream); }
.media-frame { position: relative; }
.media-frame::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -14px;
  bottom: 10px;
  z-index: -1;
  background: var(--yellow);
  border-radius: 50%;
}
.lms-preview {
  padding: .7rem;
  color: #16214c;
  background: #edf0fa;
  border: 3px solid #16214c;
  border-radius: 22px;
  box-shadow: 7px 7px 0 #16214c;
  font-family: "Poppins", sans-serif;
}
.lms-browser {
  padding: .55rem .7rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  color: #5c6488;
  background: #fff;
  border: 2px solid #16214c;
  border-radius: 12px;
  font-size: .58rem;
}
.lms-browser span { width: 8px; height: 8px; border-radius: 50%; background: #ba1d2a; }
.lms-browser span:nth-child(2) { background: #ffd60a; }
.lms-browser span:nth-child(3) { background: #2c40a0; }
.lms-browser b { margin-left: .3rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lms-top { margin-top: .65rem; display: grid; grid-template-columns: 1fr 90px; gap: .55rem; }
.lms-welcome, .lms-level, .lms-stats > div, .lms-bottom > div {
  padding: .8rem;
  background: #fff;
  border: 2px solid #16214c;
  border-radius: 14px;
  box-shadow: 3px 3px 0 #16214c;
}
.lms-welcome small {
  width: fit-content;
  padding: .15rem .45rem;
  display: block;
  background: #ffd60a;
  border: 1.5px solid #16214c;
  border-radius: 99px;
  font-size: .52rem;
  font-weight: 800;
}
.lms-welcome strong, .lms-welcome span, .lms-level b, .lms-level span { display: block; }
.lms-welcome strong { margin-top: .35rem; font-size: 1.25rem; }
.lms-welcome span { color: #5c6488; font-size: .62rem; }
.lms-level { display: grid; place-content: center; text-align: center; background: #cad3f3; }
.lms-level b { font-size: 1.25rem; }
.lms-level span { font-size: .56rem; font-weight: 700; }
.lms-stats { margin-top: .55rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.lms-stats > div { padding: .55rem; }
.lms-stats i, .lms-stats b, .lms-stats span { display: block; }
.lms-stats i { font-style: normal; }
.lms-stats b { font-size: 1rem; }
.lms-stats span { color: #5c6488; font-size: .5rem; font-weight: 700; }
.lms-quest {
  margin-top: .55rem;
  padding: .7rem;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: .55rem;
  align-items: center;
  color: #fff;
  background: #2c40a0;
  border: 2px solid #16214c;
  border-radius: 14px;
  box-shadow: 3px 3px 0 #16214c;
}
.lms-quest > i { font-style: normal; font-size: 1.2rem; }
.lms-quest small, .lms-quest strong, .lms-quest span { display: block; }
.lms-quest small { color: #ffd60a; font-size: .48rem; font-weight: 800; }
.lms-quest strong { font-size: .72rem; }
.lms-quest span { font-size: .52rem; opacity: .8; }
.lms-quest > b { padding: .4rem .55rem; color: #16214c; background: #ffd60a; border: 2px solid #16214c; border-radius: 9px; font-size: .58rem; }
.lms-bottom { margin-top: .55rem; display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.lms-bottom strong, .lms-bottom span { display: block; }
.lms-bottom strong { font-size: .65rem; }
.lms-bottom span { margin-top: .25rem; color: #5c6488; font-size: .5rem; }
.device-screen .app-top { display: flex; justify-content: space-between; font-weight: 800; }
.progress-ring {
  width: 150px;
  height: 150px;
  margin: 2rem auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--coral) 78%, var(--white) 0);
}
.progress-ring span {
  width: 115px;
  height: 115px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  font: 800 2rem "Manrope", sans-serif;
}
.mini-task { margin-top: .7rem; padding: .8rem; background: rgba(255,255,255,.72); border-radius: 13px; font-weight: 700; }
.cta-band { padding: 2rem; text-align: center; border-radius: 30px; background: var(--yellow); }
.cta-band p { max-width: 620px; margin-inline: auto; }

.page-hero { padding-top: 4rem; background: var(--cream); }
.page-hero .hero-inner { display: block; }
.page-hero-grid { display: grid !important; gap: 2rem; align-items: center; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.5rem, 7vw, 4.9rem); }
.page-hero p { max-width: 690px; color: var(--muted); font-size: 1.08rem; }
.page-hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 7px solid var(--white);
  border-radius: 28px 28px 28px 8px;
  box-shadow: var(--shadow);
}
.page-hero-image[src*="stock-summer"] { object-position: center 45%; }
.page-hero-image[src*="stock-playgroup"] { object-position: center 38%; }
.page-hero-image[src*="stock-kids-course"] { object-position: center 48%; }
.page-hero-image[src*="stock-private"] { object-position: center 58%; }
.stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
}
.stat { padding: 1rem; background: var(--white); border-radius: 16px; border: 1px solid var(--line); }
.stat strong { display: block; font: 800 1.15rem "Manrope", sans-serif; }
.stat span { color: var(--muted); font-size: .8rem; }
.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.schedule div { padding: 1rem .5rem; background: var(--cream); border-radius: 14px; text-align: center; }
.schedule strong, .schedule span { display: block; }
.schedule span { color: var(--muted); font-size: .8rem; }
.detail-panel { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }

.lead-form {
  padding: 1.3rem;
  margin-bottom: 4.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lead-form h2 { font-size: 1.75rem; }
.form-grid { display: grid; gap: .9rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .84rem; font-weight: 700; }
.field input, .field select {
  width: 100%;
  min-height: 51px;
  padding: .75rem .9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(38,60,136,.11); }
.form-note { color: var(--muted); font-size: .75rem; }
.form-message { min-height: 24px; margin-top: .8rem; font-weight: 700; }
.form-message.success { color: #13704f; }
.form-message.error { color: #a6362f; }

.faq-section { position: relative; overflow: hidden; background: var(--cream); }
.faq-section::before { content: ""; position: absolute; width: 360px; height: 360px; top: -180px; right: -140px; background: rgba(38,60,136,.07); border-radius: 50%; }
.faq-inner { position: relative; max-width: 920px; }
.faq-list { display: grid; gap: .85rem; }
.faq-item { overflow: hidden; background: var(--white); border: 1px solid rgba(38,60,136,.14); border-radius: 18px; box-shadow: 0 8px 24px rgba(38,60,136,.06); transition: border-color .2s, box-shadow .2s, transform .2s; }
.faq-item:hover { border-color: rgba(38,60,136,.3); box-shadow: 0 12px 30px rgba(38,60,136,.1); transform: translateY(-1px); }
.faq-question { width: 100%; min-height: 68px; padding: 1.05rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink); background: transparent; border: 0; border-radius: 0; text-align: left; font: inherit; font-size: 1rem; font-weight: 800; line-height: 1.4; cursor: pointer; appearance: none; }
.faq-question b { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; color: var(--forest); background: var(--mint); border-radius: 11px; font-size: 1.3rem; line-height: 1; transition: transform .2s, background .2s; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; padding: 0 1.25rem; color: var(--muted); line-height: 1.75; }
.faq-item.open { border-color: rgba(38,60,136,.35); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 1.25rem; }
.faq-item.open .faq-question b { color: var(--white); background: var(--forest); transform: rotate(45deg); }
.faq-help { margin-top: 2rem; padding: 1.6rem; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(38,60,136,.06); }
.faq-help .actions { justify-content: center; margin-top: .8rem; }

.blog-section { background: var(--cream); }
.blog-status, .blog-empty { grid-column: 1 / -1; padding: 3rem; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.blog-grid { display: grid; gap: 1.25rem; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(38,60,136,.08); transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-image { height: 220px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--forest); font-weight: 800; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 1.35rem; display: flex; flex: 1; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; gap: .7rem; color: var(--muted); font-size: .72rem; }
.blog-card-meta span { padding: .28rem .6rem; color: var(--forest); background: var(--mint); border-radius: 99px; font-weight: 800; }
.blog-card-body h2 { margin: 1rem 0 .65rem; font-size: 1.35rem; }
.blog-card-body p { flex: 1; color: var(--muted); }
.blog-read-link { margin-top: .8rem; color: var(--coral); font-weight: 800; }

.blog-detail-section { padding-top: 4rem; background: var(--cream); }
.blog-back { display: inline-flex; margin-bottom: 1.5rem; color: var(--coral); font-weight: 800; }
.blog-article-header { max-width: 880px; margin-bottom: 2.2rem; }
.blog-article-header h1 { margin: 1rem 0; font-size: clamp(2.35rem,6vw,4.9rem); }
.blog-article-header > p { color: var(--muted); font-size: 1.08rem; }
.blog-detail-layout { display: grid; gap: 2rem; align-items: start; }
.blog-article { min-width: 0; padding: 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 36px rgba(38,60,136,.07); }
.blog-article-image { width: 100%; max-height: 520px; margin-bottom: 2rem; object-fit: cover; border-radius: 18px; }
.blog-article-content { color: #273754; font-size: 1.02rem; line-height: 1.85; overflow-wrap: anywhere; }
.blog-article-content p, .blog-article-content ul, .blog-article-content ol, .blog-article-content blockquote { margin: 0 0 1.25rem; }
.blog-article-content h2, .blog-article-content h3, .blog-article-content h4 { margin-top: 2rem; color: var(--forest); }
.blog-article-content ul, .blog-article-content ol { padding-left: 1.4rem; }
.blog-article-content blockquote { padding: 1rem 1.2rem; color: var(--forest); background: var(--mint); border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0; }
.blog-sidebar { display: grid; gap: .75rem; padding: 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.blog-sidebar h2 { font-size: 1.35rem; }
.blog-sidebar > a { padding: .9rem 0; display: grid; gap: .3rem; border-bottom: 1px solid var(--line); }
.blog-sidebar > a span { color: var(--coral); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.blog-sidebar > a strong { line-height: 1.35; }
.blog-sidebar-cta { margin-top: .6rem; padding: 1rem; display: grid; gap: .9rem; background: var(--bg-sky); border: 1px solid var(--line); border-radius: 16px; }
.blog-sidebar-cta .button { min-height: 44px; }

.placement-section { background: linear-gradient(180deg, #eaf2ff 0%, #dcecff 100%); }
.placement-grid { display: grid; gap: 1.25rem; max-width: 1180px; margin: 0 auto; }
.placement-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.placement-card-featured { border-color: rgba(38, 60, 136, .32); }
.placement-card-teen { border-color: rgba(194, 31, 48, .3); }
.placement-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}
.placement-card-teen .placement-icon { background: var(--coral); }
.placement-card-featured .placement-icon { background: var(--blue); }
.placement-card h3 { margin: .9rem 0 .6rem; font-size: clamp(1.3rem, 3vw, 1.65rem); }
.placement-card p { color: var(--muted); }
.placement-card ul { display: grid; gap: .55rem; margin: 1.25rem 0 1.5rem; padding: 0; list-style: none; }
.placement-card li::before { content: "✓"; margin-right: .55rem; color: var(--coral); font-weight: 900; }
.placement-card .button { width: 100%; margin-top: auto; }

.site-footer { padding: 4rem 1rem 6.5rem; color: #e6e9f5; background: #121f4a; }
.footer-grid { display: grid; gap: 2rem; }
.footer-grid > div:first-child p { max-width: 380px; margin-top: 1.2rem; }
.brand-light { padding: .5rem; background: var(--white); border-radius: 16px; }
.brand-light img { width: 125px; height: 90px; }
.footer-grid h3 { color: var(--white); margin-bottom: .7rem; }
.footer-grid a:not(.brand):not(.button) { display: block; padding: .25rem 0; color: #cdd4ea; }
.newsletter-signup {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.35rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 2.6rem auto 0;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  box-shadow: 0 20px 45px rgba(4, 13, 46, .18);
}
.newsletter-signup::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -125px;
  top: -145px;
  border-radius: 50%;
  background: rgba(213, 29, 53, .32);
  pointer-events: none;
}
.newsletter-copy { position: relative; z-index: 1; max-width: 500px; }
.newsletter-signup .eyebrow { margin-bottom: .55rem; color: #ffacb7; }
.newsletter-signup h2 { margin: 0 0 .45rem; color: var(--white); font-size: clamp(1.45rem, 2.2vw, 1.9rem); line-height: 1.12; }
.newsletter-signup p { margin: 0; color: #cdd4ea; font-size: .92rem; line-height: 1.55; }
.newsletter-signup form { position: relative; z-index: 1; min-width: 0; }
.newsletter-fields { display: grid; gap: .65rem; align-items: end; }
.newsletter-fields label { min-width: 0; }
.newsletter-fields label span { display: block; margin-bottom: .4rem; color: #f4f6ff; font-size: .78rem; font-weight: 700; }
.newsletter-fields input {
  width: 100%;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: .78rem 1rem;
  color: #172b4d;
  background: #fff;
  box-shadow: 0 8px 22px rgba(5, 14, 46, .12);
  outline: none;
}
.newsletter-fields input::placeholder { color: #8790aa; }
.newsletter-fields input:focus { border-color: #ff8191; box-shadow: 0 0 0 4px rgba(255, 129, 145, .18), 0 8px 22px rgba(5, 14, 46, .12); }
.newsletter-fields .button { min-height: 52px; padding-inline: 1.35rem; white-space: nowrap; box-shadow: 0 10px 24px rgba(213, 29, 53, .24); }
.newsletter-consent { display: flex; align-items: flex-start; gap: .6rem; margin-top: .7rem; cursor: pointer; }
.newsletter-consent input { width: 17px; height: 17px; margin-top: .12rem; flex: 0 0 auto; accent-color: var(--coral); }
.newsletter-consent span { color: #cdd4ea; font-size: .75rem; line-height: 1.5; }
.newsletter-consent a { color: #fff; text-decoration: underline; }
.newsletter-message { min-height: 20px; margin-top: .5rem !important; font-size: .82rem; font-weight: 700; }
.newsletter-message.success { color: #8ee0bd; }
.newsletter-message.error { color: #ffb4ab; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

.legal-page { background: var(--cream); }
.legal-layout {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
.legal-toc,
.legal-section,
.legal-contact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(23, 37, 84, .07);
}
.legal-toc { padding: 1.35rem; }
.legal-toc > strong { display: block; color: var(--forest); font-family: "Fredoka", sans-serif; font-size: 1.35rem; }
.legal-toc > p { margin: .25rem 0 1rem; color: var(--muted); font-size: .82rem; }
.legal-toc nav { display: grid; gap: .35rem; }
.legal-toc nav a { padding: .55rem .65rem; display: grid; grid-template-columns: 30px 1fr; gap: .55rem; align-items: start; color: var(--muted); border-radius: 10px; font-size: .86rem; line-height: 1.35; }
.legal-toc nav a:hover { color: var(--forest); background: var(--bg-sky); }
.legal-toc nav span { color: var(--coral); font-weight: 800; }
.legal-content { min-width: 0; display: grid; gap: 1rem; }
.legal-section { min-width: 0; padding: clamp(1.35rem, 4vw, 2.2rem); scroll-margin-top: 125px; }
.legal-number { display: inline-block; margin-bottom: .6rem; color: var(--coral); font-size: .75rem; font-weight: 800; letter-spacing: .08em; }
.legal-section h2 { margin-bottom: 1rem; color: var(--forest); font-size: clamp(1.45rem, 4vw, 2rem); }
.legal-section h3 { margin-top: 1.4rem; font-size: 1.1rem; }
.legal-section p,
.legal-section li { color: #475467; }
.legal-section ul,
.legal-section ol { margin: 1rem 0; padding-left: 1.35rem; display: grid; gap: .55rem; }
.legal-section a,
.legal-contact a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-info { margin: 1rem 0; padding: 1.1rem 1.2rem; background: var(--bg-sky); border-left: 4px solid var(--blue); border-radius: 14px; }
.legal-info p { margin: .25rem 0; }
.legal-table-wrap { width: 100%; max-width: 100%; margin: 1rem 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.legal-table { width: 100%; min-width: 580px; border-collapse: collapse; font-size: .9rem; }
.legal-table th,
.legal-table td { padding: .85rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.legal-table th { color: var(--white); background: var(--forest); }
.legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-contact { padding: 1.4rem; color: var(--white); background: var(--forest); border-color: var(--forest); }
.legal-contact strong { font-family: "Fredoka", sans-serif; font-size: 1.25rem; }
.legal-contact p { margin: .35rem 0 0; color: #dce3f8; }
.legal-contact a { color: var(--white); }
.mobile-actions {
  position: fixed;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: .5rem;
  padding: .45rem;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow);
}
.mobile-actions a { padding: .75rem .5rem; border-radius: 12px; text-align: center; font-weight: 800; }
.mobile-actions .whatsapp { color: var(--white); background: var(--blue); }
.mobile-actions .trial { color: var(--white); background: var(--coral); }

@media (min-width: 680px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
  .lead-form { padding: 2rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .placement-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .announcement { font-size: .82rem; }
  .nav-wrap { width: min(1320px, 100%); margin: auto; padding-inline: 1.5rem; }
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .1rem;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .main-nav a { padding: .55rem .7rem; font-size: .92rem; white-space: nowrap; }
  .nav-label-desktop { display: inline; }
  .nav-label-mobile, .main-nav .nav-mobile-only { display: none; }
  .brand img { width: 112px; height: 76px; }
  .main-nav .nav-cta { margin: 0 0 0 .3rem; padding: .68rem .85rem; }
  .placement-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: 720px; padding-block: 5.5rem; }
  .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .section, .page-hero { padding: 6.5rem 1.5rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
  .page-hero-grid { grid-template-columns: 1.15fr .85fr; }
  .page-hero-copy { grid-column: 1; grid-row: 1; }
  .page-hero-image { height: 420px; grid-column: 2; grid-row: 1 / span 2; }
  .page-hero-grid > .stats { grid-column: 1; grid-row: 2; }
  .split.reverse > :first-child { order: 2; }
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr 1fr 1.15fr; }
  .newsletter-signup { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 3rem; align-items: center; }
  .newsletter-fields { grid-template-columns: minmax(0, 1fr) auto; }
  .legal-layout { grid-template-columns: 280px minmax(0, 1fr); gap: 2rem; }
  .legal-toc { position: sticky; top: 118px; max-height: calc(100vh - 140px); overflow: auto; }
  .mobile-actions { display: none; }
  .lead-form { margin-bottom: 0; }
  .site-footer { padding-bottom: 3rem; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-detail-layout { grid-template-columns: minmax(0, 1fr) 320px; }
  .blog-sidebar { position: sticky; top: 118px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* ===== Ücretler ve paket karşılaştırma ===== */
.pricing-section { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card { position: relative; overflow: hidden; padding: clamp(1.5rem, 3vw, 2.5rem); background: #fff; border: 1px solid rgba(38, 60, 136, .13); border-radius: 28px; box-shadow: 0 22px 55px rgba(33, 48, 107, .09); }
.pricing-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: linear-gradient(90deg, var(--blue), var(--coral)); }
.pricing-card-group::before { background: linear-gradient(90deg, #f5b82e, var(--coral)); }
.pricing-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.pricing-card-head h2 { margin: .2rem 0 0; font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.pricing-icon { display: grid; flex: 0 0 58px; width: 58px; height: 58px; place-items: center; background: var(--cream); border-radius: 18px; font-size: 1.7rem; }
.pricing-price-box { position: relative; margin: 0 0 1.5rem; padding: 1.5rem; text-align: center; background: #f7f8fc; border: 2px solid rgba(38, 60, 136, .09); border-radius: 22px; }
.pricing-price-box > span, .pricing-price-box > small { display: block; color: var(--muted); }
.pricing-price-box > strong { display: flex; align-items: baseline; justify-content: center; gap: .1rem; margin: .35rem 0; color: var(--blue); font-size: clamp(2.3rem, 5vw, 3.25rem); line-height: 1; }
.pricing-price-box > strong i, .pricing-price-box > strong em { font-style: normal; font-size: 1rem; }
.pricing-price-box > strong b { font: inherit; }
.pricing-price-box mark { display: inline-block; margin-top: .75rem; padding: .35rem .75rem; color: #fff; background: var(--coral); border-radius: 999px; font-size: .78rem; font-weight: 800; }
.pricing-selector { margin: 0 0 1rem; padding: 0; border: 0; }
.pricing-selector legend { margin-bottom: .65rem; color: var(--ink); font-weight: 800; }
.pricing-selector > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .55rem; }
.pricing-option { min-height: 54px; padding: .55rem .35rem; display: grid; place-content: center; gap: .08rem; border: 2px solid rgba(38, 60, 136, .13); border-radius: 14px; color: var(--ink); background: #fff; font: inherit; font-weight: 800; cursor: pointer; transition: .2s ease; }
.pricing-option strong { font-size: .98rem; }
.pricing-option small { color: var(--muted); font-size: .7rem; font-weight: 700; line-height: 1.2; }
.pricing-option:hover { border-color: var(--blue); transform: translateY(-2px); }
.pricing-option.active { color: #fff; border-color: var(--blue); background: var(--blue); box-shadow: 0 8px 20px rgba(38, 60, 136, .2); }
.pricing-option.active small { color: rgba(255, 255, 255, .8); }
.pricing-term-selector { margin-top: 1.25rem; }
.pricing-term-selector > div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-selection-summary { margin-bottom: 1rem; text-align: center; color: var(--muted); font-size: .9rem; }
.pricing-payment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin-bottom: .8rem; }
.pricing-payment-card { position: relative; min-width: 0; padding: 1.25rem 1rem; text-align: center; background: #f7f8fc; border: 2px solid rgba(38, 60, 136, .09); border-radius: 20px; }
.pricing-payment-card h3 { margin: .35rem 0 .55rem; color: var(--ink); font-size: 1rem; }
.pricing-payment-card > strong { display: flex; align-items: baseline; justify-content: center; margin: .15rem 0 .5rem; color: var(--blue); font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1; }
.pricing-payment-card > strong i { font-style: normal; font-size: .8em; }
.pricing-payment-card > small { display: block; color: var(--muted); line-height: 1.4; }
.pricing-payment-card > small b { color: var(--blue); }
.pricing-payment-cash { background: linear-gradient(145deg, rgba(245, 184, 46, .12), rgba(194, 31, 48, .06)); border-color: rgba(245, 184, 46, .55); }
.pricing-payment-badge, .pricing-payment-label { display: inline-flex; min-height: 27px; align-items: center; padding: .25rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 900; }
.pricing-payment-badge { color: #fff; background: var(--coral); }
.pricing-payment-label { color: var(--blue); background: rgba(38, 60, 136, .09); }
.pricing-gap-note { margin: 0 0 1.25rem; color: var(--muted); text-align: center; font-size: .76rem; line-height: 1.5; }
.pricing-features { display: grid; gap: .1rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.pricing-features li { position: relative; padding: .7rem 0 .7rem 1.7rem; border-bottom: 1px solid rgba(38, 60, 136, .09); color: var(--muted); }
.pricing-features li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.pricing-full-button { width: 100%; justify-content: center; }
.pricing-actions { display: grid; grid-template-columns: 1fr; gap: .7rem; }
.pricing-actions .button { justify-content: center; text-align: center; }
.pricing-payment-note { display: flex; gap: .6rem; margin: 1rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.pricing-help { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; margin-top: 1.5rem; padding: 1.5rem; color: #fff; background: var(--blue); border-radius: 24px; }
.pricing-help > span { font-size: 2.2rem; }
.pricing-help h2 { margin: 0 0 .25rem; color: #fff; font-size: 1.45rem; }
.pricing-help p { margin: 0; color: rgba(255, 255, 255, .76); }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
@media (max-width: 650px) { .pricing-payment-grid, .pricing-actions, .pricing-help { grid-template-columns: 1fr; } .pricing-selector > div { grid-template-columns: repeat(2, minmax(0, 1fr)); } .pricing-term-selector > div { grid-template-columns: repeat(3, minmax(0, 1fr)); } .pricing-help { text-align: center; } .pricing-help .button { justify-content: center; } }

/* ===== Rakamlarla / Stats band ===== */
.stats-band {
  padding: 3.4rem 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest) 0%, var(--ink) 100%);
}
.stats-band .section-head { margin-bottom: 2rem; }
.stats-band .eyebrow { color: var(--yellow); }
.stats-band .eyebrow::before { background: var(--yellow); }
.stats-band h2 { color: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.stat-cell {
  text-align: center;
  padding: 1.4rem 0.8rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}
.stat-num {
  display: block;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--yellow);
}
.stat-label {
  display: block;
  margin-top: .5rem;
  font-size: .92rem;
  color: #d5def5;
}

/* ===== Güven rozetleri / Trust badges ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(20, 61, 52, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(20, 61, 52, .12); }
.trust-ic {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 15px;
  background: var(--cream);
}
.trust-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.trust-card p { color: var(--muted); font-size: .95rem; }

/* ===== Google yorumları / Reviews ===== */
.g-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  padding: 1rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(20, 61, 52, .07);
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.g-summary:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(20, 61, 52, .13); }
.g-logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #4285F4;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.g-score { display: flex; flex-direction: column; line-height: 1.15; }
.g-score b { font-size: 1.6rem; font-weight: 800; }
.g-score i { color: #fbbc04; font-style: normal; letter-spacing: 1px; }
.g-meta { display: flex; flex-direction: column; font-weight: 700; font-size: .95rem; }
.g-meta small { font-weight: 500; color: var(--muted); }
.g-link { margin-left: auto; color: var(--coral); font-weight: 800; white-space: nowrap; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.reviews-grid .review-card:nth-child(n + 4) { display: none; }
.reviews-grid.open .review-card:nth-child(n + 4) { display: block; }
.review-card {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(20, 61, 52, .06);
}
.review-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .7rem; }
.review-avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  border-radius: 50%;
  background: var(--blue);
}
.review-card:nth-child(even) .review-avatar { background: var(--coral); }
.review-name { display: flex; flex-direction: column; line-height: 1.2; }
.review-name small { color: var(--muted); font-size: .82rem; }
.review-stars { color: #fbbc04; letter-spacing: 1px; margin-bottom: .5rem; }
.review-card p { color: var(--muted); font-size: .96rem; }
.reviews-toggle-wrap { text-align: center; margin-top: 1.8rem; }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:nth-child(n + 3) { display: none; }
  .reviews-grid.open .review-card:nth-child(n + 3) { display: block; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .g-summary { flex-wrap: wrap; }
  .g-link { margin-left: 0; width: 100%; }
}

/* ===== Ön Kayıt Sihirbazı / Multi-step wizard ===== */
.wizard {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 61, 52, .10);
}
.wizard-head { margin-bottom: 1.6rem; }
.wizard-progress-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: .5rem;
}
.wizard-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--cream);
  overflow: hidden;
}
.wizard-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), #e0483f);
  transition: width .35s ease;
}
.wizard-step h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: .4rem;
}
.wizard-hint { color: var(--muted); margin-bottom: 1.3rem; }
.wizard-fields { display: grid; gap: 1rem; margin-bottom: 1rem; }
.wizard .field { display: flex; flex-direction: column; gap: .4rem; }
.wizard .field label { font-weight: 700; font-size: .95rem; }
.wizard input,
.wizard textarea {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wizard input:focus,
.wizard textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(38, 60, 136, .12);
}
.wizard-options { display: grid; gap: .7rem; margin: .4rem 0 1rem; }
.wizard-option {
  text-align: left;
  padding: 1rem 1.2rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.wizard-option:hover { border-color: var(--forest); background: var(--cream); }
.wizard-option:active { transform: scale(.99); }
.wizard-option.selected {
  border-color: var(--coral);
  background: #fff2f1;
  box-shadow: 0 0 0 3px rgba(194, 31, 48, .10);
}
.wizard-error { color: var(--coral); font-weight: 600; font-size: .9rem; min-height: 1.2rem; margin-bottom: .3rem; }
.wizard-error-big { color: var(--coral); font-weight: 700; font-size: 1.15rem; margin-bottom: .5rem; }
.wizard-controls { display: flex; justify-content: space-between; gap: 1rem; margin-top: .6rem; }
.wizard-controls .button { min-width: 120px; }
.wizard-sending { text-align: center; padding: 2rem 0; }
.wizard-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  border: 4px solid var(--cream);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: wizspin .8s linear infinite;
}
@keyframes wizspin { to { transform: rotate(360deg); } }
.wizard-success { text-align: center; padding: 1rem 0; }
.wizard-check {
  width: 68px;
  height: 68px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--white);
  background: #2bb36a;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(43, 179, 106, .35);
}
.wizard-success-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

@media (max-width: 560px) {
  .wizard { padding: 1.4rem; }
  .wizard-controls .button { min-width: 0; flex: 1; }
}

/* ===== Kurumsal / Partner şeridi ===== */
.partners { margin-top: 2.4rem; text-align: center; }
.partners-label {
  display: block;
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 1rem;
}
.partner {
  padding: .7rem 1.4rem;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
}
.actions.center { justify-content: center; }
.program-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}
.program-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.program-picker > article {
  height: 280px;
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(260px, 38%) 1fr;
  grid-template-rows: 280px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 10px 32px rgba(33,48,107,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.program-picker > article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(33,48,107,.14);
}
.program-picker img { width: 100%; height: 280px; min-height: 0; object-fit: cover; }
.program-picker > article > span { padding: clamp(1.15rem, 2vw, 1.6rem); display: flex; flex-direction: column; justify-content: center; }
.program-picker small { color: var(--coral); font-weight: 800; font-size: 1rem; }
.program-picker strong { margin: .35rem 0 .55rem; font: 700 clamp(1.5rem, 2.2vw, 1.95rem) "Fredoka", sans-serif; line-height: 1.08; }
.program-picker p { max-width: 56ch; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.45; }
.program-picker .button {
  position: static;
  align-self: flex-start;
  margin-top: .75rem;
}
@media (max-width: 680px) {
  .program-picker > article { height: auto; grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .program-picker img { height: clamp(220px, 62vw, 340px); }
  .program-picker > article > span { padding: 1.5rem; }
}

/* ===== Galeri / Bizden kareler ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(33,48,107,.12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute;
  left: .8rem;
  bottom: .8rem;
  padding: .4rem .9rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(33,48,107,.18);
}
.gallery-item.gi-1 { grid-column: span 2; grid-row: span 2; }
.gallery-item.gi-6 { grid-column: span 2; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.gi-1 { grid-column: span 2; grid-row: span 2; }
  .gallery-item.gi-6 { grid-column: span 2; }
}

/* ===== Kurumsal başvuru formu ===== */
.corporate-cta { max-width: 640px; margin: 2.4rem auto 0; }
.corporate-alt { margin-top: 1rem; text-align: center; color: rgba(255,255,255,.85); }
.corporate-alt a { color: var(--sunny); font-weight: 700; text-decoration: underline; }
.dark .corporate-form {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 19, 58, .28);
}
.dark .corporate-form h2 { color: var(--ink); }
.dark .corporate-form > p,
.dark .corporate-form .form-note { color: var(--muted); }
.dark .corporate-form label { color: var(--ink); }
.dark .corporate-form input,
.dark .corporate-form textarea,
.dark .corporate-form select {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}
.dark .corporate-form input::placeholder,
.dark .corporate-form textarea::placeholder { color: #7b849c; opacity: 1; }
.corporate-form-explainer {
  display: grid;
  gap: .65rem;
  margin: 1.35rem 0 1.6rem;
}
.corporate-form-explainer div {
  padding: .9rem 1rem;
  display: grid;
  gap: .2rem;
  text-align: left;
  background: var(--bg-sky);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.corporate-form-explainer strong { color: var(--forest); font-size: .95rem; }
.corporate-form-explainer span { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.corporate-form select {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
}
.corporate-form select:focus { outline: none; border-color: var(--teal); }

/* ===== Program detay sayfaları ===== */
.program-main-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.program-facts {
  margin: 1.4rem 0 2rem;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}
.program-facts div {
  padding: .9rem 1rem;
  display: grid;
  grid-template-columns: minmax(105px, .6fr) 1.4fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}
.program-facts div:last-child { border-bottom: 0; }
.program-facts dt { color: var(--forest); font-weight: 800; }
.program-facts dd { margin: 0; color: var(--muted); }
.program-content-box {
  padding: 1.5rem;
  background: var(--bg-sky);
  border-radius: 20px;
}
.program-content-box h2 { margin-bottom: 1rem; font-size: clamp(1.5rem, 4vw, 2.1rem); }
.program-start-strip { padding: 2rem 0; background: var(--forest); color: var(--white); }
.program-start-head { margin-bottom: 1.25rem; }
.program-start-head .eyebrow { color: var(--sun); }
.program-start-head h2 { max-width: 760px; margin: .35rem 0 0; color: var(--white); font-size: clamp(1.45rem, 3vw, 2rem); }
.program-start-grid { display: grid; gap: .8rem; }
.program-start-grid a {
  min-width: 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .8rem;
  align-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.program-start-grid a:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0, 0, 0, .16); }
.program-start-grid b { color: var(--coral); font-family: "Fredoka", sans-serif; font-size: 1.1rem; }
.program-start-grid span { display: grid; gap: .2rem; }
.program-start-grid strong { font-size: 1rem; }
.program-start-grid small { color: var(--muted); line-height: 1.35; }
.program-start-grid i { color: var(--forest); font-style: normal; font-size: 1.3rem; }
.program-lead-wrap { min-width: 0; }
.response-promise {
  margin: .75rem .3rem 0;
  color: var(--muted);
  text-align: center;
  font-size: .82rem;
}
.response-promise span { color: #28a96b; }
.program-story-grid { display: grid; gap: 1rem; }
.program-story-card {
  min-width: 0;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(28, 47, 82, .06);
}
.program-story-card > span { color: var(--coral); font-weight: 800; }
.program-story-card h3 { margin: .65rem 0 .45rem; color: var(--forest); font-size: 1.15rem; }
.program-story-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.program-outcomes-layout { display: grid; gap: 2rem; align-items: start; }
.program-outcomes-intro h2 { margin: .55rem 0 .75rem; font-size: clamp(2rem, 5vw, 3.2rem); }
.program-outcomes-intro p { color: var(--muted); }
.program-outcomes-list { display: grid; gap: .8rem; }
.program-outcomes-list article {
  padding: 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  background: var(--bg-sky);
  border-radius: 16px;
}
.program-outcomes-list article > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}
.program-outcomes-list h3 { margin-bottom: .25rem; font-size: 1.05rem; }
.program-outcomes-list p { margin: 0; color: var(--muted); font-size: .92rem; }
.program-process-grid { display: grid; gap: 1rem; }
.program-process-grid article {
  position: relative;
  min-width: 0;
  padding: 1.4rem;
  background: var(--white);
  border-radius: 18px;
}
.program-process-grid b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
}
.program-process-grid h3 { margin: .8rem 0 .4rem; color: var(--forest); }
.program-process-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.program-process-grid i { display: none; }
.program-review-grid { display: grid; gap: 1rem; }
.program-review-grid article { padding: 1.35rem; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.program-review-grid p { margin: .65rem 0 1rem; color: var(--ink); line-height: 1.65; }
.program-review-grid strong { color: var(--muted); font-size: .85rem; }
.program-review-link { margin-top: 1.25rem; text-align: center; }
.program-review-link a { color: var(--forest); font-weight: 800; }
.program-included-grid { display: grid; gap: 1rem; }
.program-included-grid article {
  min-width: 0;
  padding: 1.25rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: var(--bg-sky);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.program-included-grid b { font-size: 1.5rem; line-height: 1; }
.program-included-grid p { margin: 0; color: var(--ink); line-height: 1.55; }
.comparison-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.program-comparison { width: 100%; min-width: 980px; border-collapse: collapse; text-align: left; }
.program-comparison th, .program-comparison td { padding: 1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: top; }
.program-comparison tr:last-child th, .program-comparison tr:last-child td { border-bottom: 0; }
.program-comparison th:last-child, .program-comparison td:last-child { border-right: 0; }
.program-comparison thead th { color: var(--white); background: var(--forest); }
.program-comparison tbody th { color: var(--forest); background: var(--bg-sky); }
.program-comparison td { color: var(--muted); }
.program-comparison a { color: var(--coral); font-weight: 800; white-space: nowrap; }
.comparison-actions { margin-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.program-final-cta { display: grid; gap: 1.5rem; align-items: center; }
.program-final-cta h2 { margin: .5rem 0 .75rem; font-size: clamp(2rem, 5vw, 3.2rem); }
.program-final-cta > div > p { color: var(--muted); }
.program-final-trust { padding: 1.5rem; display: grid; gap: .7rem; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.program-final-trust strong { color: var(--forest); font-size: 1.15rem; }
.program-final-trust span { color: var(--muted); }
.program-final-trust small { margin-top: .35rem; color: var(--ink); font-weight: 700; }
.program-final-trust i { color: #28a96b; font-style: normal; }
.registration-timeline { max-width: 900px; margin: 0 auto; display: grid; }
.registration-timeline article { position: relative; min-height: 120px; padding: 0 0 2rem 4.5rem; }
.registration-timeline article:not(:last-child)::before { content: ""; position: absolute; top: 52px; bottom: 0; left: 25px; width: 3px; background: var(--line); }
.registration-timeline b { position: absolute; top: 0; left: 0; width: 52px; height: 52px; display: grid; place-items: center; color: var(--white); background: var(--coral); border-radius: 50%; font: 700 1.2rem "Fredoka", sans-serif; }
.registration-timeline h2 { margin: 0 0 .4rem; color: var(--forest); font-size: clamp(1.35rem, 3vw, 1.8rem); }
.registration-timeline p { margin: 0; color: var(--muted); line-height: 1.65; }
.registration-next { padding: clamp(1.5rem, 4vw, 2.2rem); background: var(--white); border: 1px solid var(--line); border-radius: 24px; }
.registration-next p { color: var(--muted); }
.registration-next small { display: block; margin-top: 1rem; font-weight: 700; }
.registration-next i { color: #28a96b; font-style: normal; }
.trial-result-note { display: flex; gap: .5rem; justify-content: center; margin: 1.5rem auto 0; color: var(--muted); }
.trial-result-note strong { color: var(--coral); }
.parent-progress-card { padding: clamp(1.4rem, 4vw, 2.2rem); color: var(--white); background: var(--navy); border-radius: 28px; box-shadow: 0 20px 50px rgba(23,37,84,.18); }
.parent-progress-card > span { color: #f9c74f; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.parent-progress-card h3 { margin: .5rem 0 1.3rem; color: var(--white); font-size: 1.7rem; }
.parent-progress-card > div { display: flex; align-items: baseline; justify-content: space-between; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.parent-progress-card b { color: #f9c74f; font-size: 1.35rem; }
.parent-progress-card small { color: rgba(255,255,255,.78); }
.parent-progress-card p { margin: 1.3rem 0 0; padding: 1rem; color: var(--navy); background: var(--white); border-radius: 15px; line-height: 1.55; }
.wizard-recommendation { display: grid; gap: .25rem; margin: 1rem 0 1.4rem; padding: 1rem 1.15rem; background: rgba(38,60,136,.08); border: 1px solid rgba(38,60,136,.18); border-radius: 16px; }
.wizard-recommendation span { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.wizard-recommendation strong { color: var(--navy); font-size: 1.15rem; }
.wizard-recommendation small { color: var(--muted); line-height: 1.45; }
.teaching-approach-section { background: var(--cream); }
.teaching-approach-layout { display: grid; gap: 2rem; align-items: center; }
.teaching-approach-photo { position: relative; min-height: 380px; overflow: hidden; border-radius: 28px; }
.teaching-approach-photo img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.teaching-approach-photo span { position: absolute; left: 1rem; bottom: 1rem; padding: .55rem .8rem; color: var(--white); background: var(--navy); border-radius: 999px; font-weight: 800; }
.teaching-approach-layout > div > p { color: var(--muted); line-height: 1.7; }
.teaching-principles { display: grid; gap: .75rem; margin-top: 1.4rem; }
.teaching-principles > div { display: grid; grid-template-columns: auto 1fr; gap: .9rem; padding: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.teaching-principles b { display: grid; place-items: center; width: 42px; height: 42px; color: var(--white); background: var(--coral); border-radius: 12px; }
.teaching-principles span { display: grid; gap: .2rem; }
.teaching-principles strong { color: var(--navy); }
.teaching-principles small { color: var(--muted); line-height: 1.45; }
@media (min-width: 900px) {
  .teaching-approach-layout { grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr); }
  .program-main-layout { grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); }
  .program-main-layout .program-lead-wrap { position: sticky; top: 120px; }
  .program-start-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .program-story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .program-story-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .program-outcomes-layout { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .program-process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .program-process-grid i { display: block; position: absolute; top: 1.6rem; right: -.75rem; z-index: 1; color: var(--coral); font-style: normal; font-size: 1.3rem; }
  .program-review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .program-included-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .program-final-cta { grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); }
}
@media (max-width: 520px) {
  .program-facts div { grid-template-columns: 1fr; gap: .2rem; }
}

/* ===== 2026–2027 kayıt duyurusu ===== */
.enrollment-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  background: rgba(23, 37, 84, .68);
  backdrop-filter: blur(5px);
  transition: opacity .22s ease, visibility .22s ease;
}
.enrollment-popup.open { visibility: visible; opacity: 1; }
.enrollment-popup-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(2rem, 7vw, 3.2rem);
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 32px 32px 32px 10px;
  box-shadow: 0 28px 80px rgba(11, 22, 65, .35);
  transform: translateY(18px) scale(.97);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.enrollment-popup.open .enrollment-popup-card { transform: translateY(0) scale(1); }
.enrollment-popup-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -105px;
  right: -70px;
  border-radius: 50%;
  background: rgba(38, 60, 136, .1);
}
.enrollment-popup-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .45rem .85rem;
  color: var(--coral);
  background: rgba(194, 31, 48, .09);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.enrollment-popup h2 { margin-bottom: .8rem; font-size: clamp(2rem, 7vw, 3rem); }
.enrollment-popup p { margin: 0 auto; max-width: 390px; color: var(--muted); }
.enrollment-popup .actions { justify-content: center; }
.enrollment-popup-close {
  position: absolute;
  z-index: 1;
  top: .7rem;
  right: .7rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}
.enrollment-popup-note { display: block; margin-top: 1rem; color: var(--muted); font-size: .82rem; }

/* ===== Sayfa geçişleri ===== */
.page-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  pointer-events: none;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #cf2038, #ffcc3d 50%, #2d4ba0);
  box-shadow: 0 3px 14px rgba(194, 31, 48, .35);
}
.page-transitioning .page-progress {
  opacity: 1;
  animation: page-progress-run .85s cubic-bezier(.2, .75, .25, 1) both;
}
.page-loader {
  position: fixed;
  z-index: 1999;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .6rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(5px);
  transition: opacity .16s ease, visibility .16s ease;
}
.page-transitioning .page-loader {
  visibility: visible;
  opacity: 1;
}
.page-loader img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  animation: loader-bounce .7s ease-in-out infinite alternate;
}
.page-loader span { display: flex; gap: .32rem; }
.page-loader i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cf2038;
  animation: loader-dot .75s ease-in-out infinite alternate;
}
.page-loader i:nth-child(2) { background: #ffbf24; animation-delay: .15s; }
.page-loader i:nth-child(3) { background: #2d4ba0; animation-delay: .3s; }
@keyframes loader-bounce {
  to { transform: translateY(-6px) rotate(3deg); }
}
@keyframes loader-dot {
  to { transform: translateY(-5px); opacity: .45; }
}
#main {
  transition: opacity .22s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
#main.page-leaving {
  opacity: 0;
  transform: translateY(8px);
}
#main.page-entering {
  opacity: 0;
  transform: translateY(14px);
}
@keyframes page-progress-run {
  0% { transform: scaleX(0); }
  65% { transform: scaleX(.82); }
  100% { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .page-progress, .page-loader { display: none; }
  #main { transition: none; }
}

/* ===== Gelişim takibi / veli görünürlüğü ===== */
.development-home-section {
  padding-block: 3.75rem;
}
.development-home-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.development-home-copy { max-width: 650px; }
.development-home-copy h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
.development-home-copy p { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 1rem; }
.development-home-actions { max-width: 470px; }
.development-home-benefits { margin-top: 0; }
.development-home-benefits li {
  padding-block: .72rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.development-home-benefits li:first-child { border-top: 1px solid var(--line); }
.development-home-actions .button { margin-top: .35rem; }

.parent-format-preview {
  padding: 1.2rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(28, 47, 82, .06);
}
.format-preview-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}
.format-preview-head span {
  color: var(--coral);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.format-preview-head small { color: var(--muted); font-size: .72rem; font-weight: 600; }
.format-preview-title { display: flex; gap: .8rem; align-items: center; padding: 1.2rem 0 1rem; }
.format-preview-title small,
.format-preview-title strong { display: block; }
.format-preview-title small,
.format-preview-note small { color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .09em; }
.format-preview-title strong { margin-top: .15rem; font-size: 1.15rem; }
.format-preview-list { margin: 0; }
.format-preview-list > div {
  display: grid;
  grid-template-columns: minmax(115px, .8fr) 1.4fr;
  gap: .8rem;
  padding: .72rem 0;
  border-top: 1px solid var(--line);
}
.format-preview-list dt { color: var(--muted); font-size: .82rem; }
.format-preview-list dd { margin: 0; font-size: .88rem; font-weight: 700; }
.format-preview-note { margin-top: .8rem; padding: .9rem; background: var(--cream); border-radius: 15px; }
.format-preview-note p { margin: .25rem 0 0; font-size: .88rem; }
.format-preview-disclaimer { margin: .8rem 0 0; color: var(--muted); font-size: .7rem; text-align: center; }

.development-page-hero h1 { max-width: 720px; font-size: clamp(2.5rem, 5vw, 4.1rem); }
.development-page-hero .page-hero-image { object-position: center 52%; }
.development-section-copy { max-width: 600px; }
.development-section-copy p { color: var(--muted); }
.development-callout { max-width: 520px; border-left: 4px solid var(--coral); }
.development-callout strong,
.development-meaning-note strong { display: block; margin-bottom: .5rem; font-family: "Fredoka", "Poppins", sans-serif; font-size: 1.3rem; }
.development-callout p,
.development-meaning-note p { margin-bottom: 0; color: var(--muted); }
.development-process-list { margin: 0; }
.development-process-list li { padding-block: .5rem; border-bottom: 1px solid var(--line); }
.development-availability-note { padding-left: 1rem; border-left: 3px solid var(--coral); font-size: .9rem; }
.parent-format-preview-large { max-width: 520px; margin-left: auto; padding: 1.5rem; }
.development-meaning-layout { display: grid; gap: 2rem; align-items: center; }
.development-meaning-note { max-width: 520px; background: var(--white); }
.development-definition-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.development-definition-card > span { color: var(--coral); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.development-definition-card h3 { margin: 1rem 0 .5rem; color: var(--ink); }
.development-definition-card p { color: var(--muted); }
.development-definition-card a,
.text-link { color: var(--coral); font-weight: 800; }

@media (min-width: 820px) {
  .development-home-section { padding-block: 5rem; }
  .development-home-layout { grid-template-columns: 1.15fr .85fr; gap: 5rem; }
  .development-meaning-layout { grid-template-columns: 1.15fr .85fr; gap: 5rem; }
}

@media (max-width: 560px) {
  .parent-format-preview { border-radius: 20px; }
  .format-preview-list > div { grid-template-columns: 1fr; gap: .2rem; }
  .parent-format-preview-large { padding: 1.1rem; }
  .development-home-actions .button { width: 100%; }
}

/* ===== Öğretmenlerimiz ===== */
.teacher-page-hero { padding-block: 4.5rem; }
.teacher-page-hero h1 { max-width: 790px; font-size: clamp(2.45rem, 5vw, 4.15rem); }
.teacher-list-head { max-width: 700px; }
.teacher-list-head p { color: var(--muted); }
.teacher-status,
.teacher-empty {
  padding: 2.2rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.teacher-empty { grid-column: 1 / -1; text-align: center; }
.teacher-empty h2 { margin-bottom: .55rem; color: var(--ink); font-size: 1.6rem; }
.teacher-empty p { max-width: 610px; margin-inline: auto; }
.teacher-grid { display: grid; gap: 1.25rem; }
.teacher-profile {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.teacher-profile-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mint);
}
.teacher-profile-body { padding: clamp(1.35rem, 3vw, 2rem); }
.teacher-profile header { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.teacher-profile header h2 { margin-bottom: .3rem; font-size: clamp(1.65rem, 3vw, 2.1rem); }
.teacher-profile header p { margin: 0; color: var(--coral); font-weight: 700; }
.teacher-profile-bio { margin: 1.15rem 0; color: var(--muted); line-height: 1.75; }
.teacher-profile-facts { margin: 0; }
.teacher-profile-facts > div {
  display: grid;
  grid-template-columns: minmax(130px, .7fr) minmax(0, 1.3fr);
  gap: .9rem;
  padding: .78rem 0;
  border-top: 1px solid var(--line);
}
.teacher-profile-facts dt { color: var(--muted); font-size: .82rem; font-weight: 700; }
.teacher-profile-facts dd { margin: 0; overflow-wrap: anywhere; font-size: .9rem; font-weight: 600; }
.teacher-profile-block { margin-top: 1.2rem; }
.teacher-profile-block h3 { margin-bottom: .55rem; font-size: 1.05rem; }
.teacher-profile-block p { margin: 0; color: var(--muted); }
.teacher-certifications { margin: 0; padding: 0; display: grid; gap: .55rem; list-style: none; }
.teacher-certifications li { padding: .7rem .8rem; background: var(--cream); border-radius: 13px; }
.teacher-certifications strong,
.teacher-certifications span { display: block; }
.teacher-certifications strong { font-size: .9rem; }
.teacher-certifications span { margin-top: .1rem; color: var(--muted); font-size: .76rem; }
.teacher-profile blockquote {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: var(--cream);
  border-left: 3px solid var(--coral);
  border-radius: 0 14px 14px 0;
  font-family: "Fredoka", "Poppins", sans-serif;
  font-size: 1.05rem;
}
.teaching-team-link { display: inline-flex; margin-top: 1.25rem; }
.teacher-working-layout { display: grid; gap: 2rem; align-items: start; }
.teacher-working-layout > div > p { max-width: 580px; color: var(--muted); }
.teacher-working-list { margin: 0; border-top: 1px solid var(--line); }
.teacher-working-list > div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.teacher-working-list dt { margin-bottom: .25rem; color: var(--ink); font-family: "Fredoka", "Poppins", sans-serif; font-size: 1.08rem; font-weight: 700; }
.teacher-working-list dd { margin: 0; color: var(--muted); }

@media (min-width: 820px) {
  .teacher-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teacher-working-layout { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 5rem; }
}

@media (max-width: 560px) {
  .teacher-page-hero { padding-block: 3.5rem; }
  .teacher-profile-facts > div { grid-template-columns: 1fr; gap: .15rem; }
  .teacher-status,
  .teacher-empty { padding: 1.4rem; }
}
