/* ============ RESET & BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #edeee6;
  --color-bg-alt: #e4e6db;
  --color-surface: #f5f6f0;
  --color-text: #1f2430;
  --color-text-muted: #6b6f72;
  --color-border: #cfd2c4;
  --color-fuchsia: #d52283;
  --color-fuchsia-hover: #b9186c;
  --color-fuchsia-soft: #fce5f1;
  --color-turquoise: #0aafc0;
  --color-turquoise-hover: #078d9d;
  --color-turquoise-soft: #d9f2f1;
  --max-width: 1160px;
  --radius: 8px;
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  font-size: 16px;
}

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

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

h1 {
  font-size: 3.4rem;
  font-weight: 700;
}

h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1rem;
  margin: 1.25rem 0 0.4rem;
  font-weight: 600;
}

p {
  color: var(--color-text-muted);
  margin-bottom: 0.9rem;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  color: var(--color-text-muted);
  padding-left: 1.2rem;
  margin-bottom: 0.9rem;
}

ul li {
  margin-bottom: 0.4rem;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

section {
  scroll-margin-top: 84px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.divider {
  border-top: 1px dashed var(--color-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-fuchsia);
  margin-bottom: 1rem;
}

.eyebrow-center {
  display: block;
  text-align: center;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--color-turquoise);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-turquoise-hover);
  box-shadow: 0 4px 14px rgba(10, 175, 192, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  border-color: var(--color-fuchsia);
  color: var(--color-fuchsia);
}

.btn-ghost:hover {
  background-color: var(--color-fuchsia-soft);
  border-color: var(--color-fuchsia-hover);
  color: var(--color-fuchsia-hover);
}

.btn-fuchsia {
  background: var(--color-fuchsia);
  color: #ffffff;
}

.btn-fuchsia:hover {
  background: var(--color-fuchsia-hover);
  box-shadow: 0 4px 14px rgba(213, 34, 131, 0.35);
  transform: translateY(-1px);
}

.btn-nav {
  padding: 9px 18px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.btn-full {
  width: 100%;
  border: none;
  font-family: inherit;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(237, 238, 230, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-switch .lang-current {
  color: var(--color-text);
}

.lang-switch .lang-sep {
  color: var(--color-border);
}

.lang-switch a {
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}

.lang-switch a:hover {
  color: var(--color-turquoise);
}

.coming-soon {
  text-align: center;
}

.coming-soon h1 {
  font-size: 2.6rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.logo-img {
  display: block;
  height: 28px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
  padding-left: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--color-turquoise);
}

/* ============ HERO ============ */
.hero {
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-col h1 {
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-illustration {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.hero-grid-stretch {
  align-items: stretch;
}

/* The image column has no in-flow content (the img is absolutely
   positioned), so it contributes zero natural height to the grid row.
   That lets "stretch" size the row purely from the text column's
   height, and only then does the absolutely positioned image resolve
   its own height:100% against that already-settled box — avoiding the
   circular sizing that height:auto + max-height:100% ran into. */
.hero-grid-stretch .hero-visual {
  position: relative;
  display: block;
}

.visual-illustration-compact {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: 400px;
}

/* ============ CALLOUT ============ */
.callout {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 56px;
}

.callout-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.callout p {
  margin-bottom: 20px;
}

/* ============ ROW LIST (nasıl / problemler / ornek program) ============ */
.row-list {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.row-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px dashed var(--color-border);
}

.row-list-tight .row-item {
  padding: 28px 0;
}

.row-item:last-child {
  border-bottom: 1px dashed var(--color-border);
}

.row-index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-turquoise);
}

.row-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.row-cta:hover {
  color: var(--color-turquoise-hover);
  border-color: var(--color-turquoise-hover);
}

/* ============ CARD GRIDS ============ */
.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid-5 {
  grid-template-columns: repeat(3, 1fr);
}

.program-card,
.format-card,
.reason-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.card-index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-turquoise);
  margin-bottom: 10px;
}

/* ============ PROBLEM CARDS (fully expanded, no toggle) ============ */
.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.problem-card h3 {
  margin-bottom: 14px;
}

/* Visually hidden but still keyboard-focusable checkbox (CSS-only toggle) */
.card-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.card-content {
  position: relative;
  max-height: 7.4em;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.card-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  background: linear-gradient(to bottom, rgba(245, 246, 240, 0), rgba(245, 246, 240, 1));
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.card-toggle:checked ~ .card-content {
  max-height: 2400px;
}

.card-toggle:checked ~ .card-content::after {
  opacity: 0;
}

.card-toggle-label {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-turquoise);
  cursor: pointer;
}

.card-toggle-label:hover {
  color: var(--color-turquoise-hover);
}

.card-toggle-label .label-less {
  display: none;
}

.card-toggle:checked ~ .card-toggle-label .label-more {
  display: none;
}

.card-toggle:checked ~ .card-toggle-label .label-less {
  display: inline;
}

.card-toggle:focus-visible ~ .card-toggle-label {
  outline: 2px solid var(--color-turquoise);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ SUBSECTIONS / EXAMPLE PROGRAM ============ */
.lead-paragraph {
  max-width: 720px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 1.02rem;
}

.outcomes-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 48px;
}

.outcomes-box h4 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: var(--font-display);
}

/* ============ CASE STUDIES ============ */
.case-study {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-surface);
  padding: 40px 44px;
  margin-bottom: 28px;
}

.case-study:last-child {
  margin-bottom: 0;
}

.case-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

.case-head .card-index {
  margin-bottom: 0;
}

.case-study h3 {
  font-size: 1.5rem;
}

.case-meta {
  font-size: 0.95rem;
}

.case-tech {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  font-size: 0.9rem;
}

/* ============ TRAINERS ============ */
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trainer-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.trainer-card h4 {
  color: var(--color-fuchsia);
  font-family: var(--font-display);
}

.trainer-photo {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

/* ============ FAQ (accordion, CSS-only) ============ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.02rem;
  color: var(--color-text);
  margin-bottom: 0;
}

.faq-toggle-icon {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-turquoise);
  line-height: 1;
  transition: transform 0.25s ease;
}

.card-toggle:checked ~ .faq-question .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.card-toggle:checked ~ .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
}

.card-toggle:focus-visible ~ .faq-question {
  outline: 2px solid var(--color-turquoise);
  outline-offset: -2px;
}

/* ============ CONTACT / KESIF GORUSMESI ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.contact-info ul {
  padding-left: 1.1rem;
  margin-bottom: 40px;
}

.contact-info ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--color-text);
}

.contact-form-wrapper {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-muted);
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* Light brand alignment for the embedded Brevo discovery-call form —
   cosmetic only, Brevo's own markup/classes/JS wiring are left untouched
   so the widget's validation and submit behavior keep working. */
.contact-form-wrapper #sib-container,
.contact-form-wrapper #sib-container * {
  font-family: var(--font-body) !important;
  text-align: left !important;
}

.contact-form-wrapper .entry__label,
.contact-form-wrapper .sib-form-block p {
  color: var(--color-text) !important;
}

.contact-form-wrapper .sib-form-message-panel--active {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  margin-top: 18px;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input {
  width: 100%;
  padding: 10px 2px;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: transparent;
}

.contact-form input:focus {
  outline: none;
  border-bottom-color: var(--color-turquoise);
}

.contact-form button {
  margin-top: 30px;
}

.contact-form textarea {
  width: 100%;
  padding: 10px 2px;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  resize: vertical;
  min-height: 76px;
}

.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--color-turquoise);
}

.form-checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
}

.form-checkbox-row input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--color-turquoise);
  flex-shrink: 0;
}

.form-checkbox-row label {
  display: block;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  margin: 0;
}

.form-checkbox-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 3px;
}

.form-checkbox-note a {
  color: var(--color-turquoise);
  text-decoration: underline;
}

/* ============ APPLY MODAL (CSS-only, no JS) ============ */
.modal-toggle {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-toggle:checked ~ .modal-overlay {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 36, 48, 0.6);
  cursor: pointer;
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--color-text);
}

/* Light brand alignment for the embedded Brevo form — cosmetic only,
   Brevo's own markup/classes/JS wiring are left untouched so the
   widget's validation and submit behavior keep working. */
.modal-box #sib-container,
.modal-box #sib-container * {
  font-family: var(--font-body) !important;
}

.modal-box .sib-form-block__button {
  background-color: var(--color-turquoise) !important;
  border-radius: var(--radius) !important;
  transition: background-color 0.15s ease;
}

.modal-box .sib-form-block__button:hover {
  background-color: var(--color-turquoise-hover) !important;
}

.modal-box .entry__label,
.modal-box .sib-form-block p {
  color: var(--color-text) !important;
}

/* Keep the Brevo success/error message visible even when the user has
   scrolled the modal down to reach the submit button — otherwise it
   renders off-screen at the top and submission looks like it did nothing. */
.modal-box .sib-form-message-panel--active {
  position: sticky !important;
  top: 0;
  z-index: 5;
  margin-bottom: 12px;
}

/* Custom "thank you" content injected into Brevo's success panel. */
.apply-thankyou {
  text-align: left;
  font-family: var(--font-body);
  color: var(--color-text);
}

.apply-thankyou__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-text);
}

.apply-thankyou__lede {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.apply-thankyou__callout {
  background: var(--color-turquoise-soft);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0 0 20px;
}

.apply-thankyou__callout strong {
  display: block;
  color: var(--color-turquoise-hover);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.apply-thankyou__callout p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.apply-thankyou__subhead {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}

.apply-thankyou__steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apply-thankyou__steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.apply-thankyou__steps li.is-done {
  color: var(--color-text);
  font-weight: 600;
}

.apply-thankyou__step-marker {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--color-border);
  color: var(--color-text-muted);
}

.apply-thankyou__steps li.is-done .apply-thankyou__step-marker {
  background: var(--color-turquoise);
  color: #fff;
}

.apply-thankyou__contact {
  margin: 0;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.apply-thankyou__contact a {
  color: var(--color-turquoise-hover);
  text-decoration: none;
}

.apply-thankyou__contact a:hover {
  text-decoration: underline;
}

.modal-box h3 {
  padding-right: 24px;
}

/* ============ FOOTER ============ */
/* One consistent dark footer surface site-wide — brand/social, link
   columns, and the copyright bar all live on the same background
   instead of being split into separate light/gradient/light bands. */
.site-footer {
  background: var(--color-text);
  color: rgba(237, 238, 230, 0.68);
}

/* ============ YAZILIM OKULU ============ */

/* Logo marquee ("Where our graduates get hired") — pure CSS, no JS */
.logo-marquee-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.logo-marquee-section .lead-paragraph {
  margin-top: 8px;
  margin-bottom: 0;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: logo-marquee-scroll 32s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  display: block;
  width: auto;
  height: 40px;
}

/* Klarna and SoundCloud are near-square marks rather than wide
   wordmarks; bump them slightly so they don't read smaller than the
   others at the same nominal height. */
.logo-item img.logo-item-klarna {
  height: 52px;
}

.logo-item img.logo-item-square {
  height: 52px;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
  }
}

.hero-ctas-center {
  justify-content: center;
}

.hero-crosslink {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-top: -8px;
}

.hero-crosslink a {
  color: var(--color-turquoise);
  font-weight: 600;
  border-bottom: 1px solid var(--color-turquoise);
  padding-bottom: 1px;
}

.hero-crosslink a:hover {
  color: var(--color-turquoise-hover);
  border-color: var(--color-turquoise-hover);
}

.yo-narrow {
  max-width: 700px;
  margin: 0 auto;
}

.yo-block {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px dashed var(--color-border);
}

.yo-subtitle {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.yo-callout {
  margin-top: 72px;
}

.yo-contact-note {
  margin-top: 20px;
  font-size: 0.85rem;
}

.yo-contact-note a {
  color: var(--color-turquoise);
  text-decoration: underline;
}

/* Kimler için / kimler için değil */
.yo-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.yo-audience-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.yo-audience-yes h4 {
  color: var(--color-turquoise);
  font-family: var(--font-display);
  margin-top: 0;
}

.yo-audience-no h4 {
  color: var(--color-fuchsia);
  font-family: var(--font-display);
  margin-top: 0;
}

/* Program seçenekleri - illustration */
.tuition-image {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 14px 0 18px;
}

/* Program seçenekleri - price display */
.tuition-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.tuition-strike {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 500;
  margin-right: 8px;
}

.tuition-current {
  color: var(--color-turquoise);
}

.tuition-note {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-fuchsia);
  font-weight: 600;
  margin-bottom: 14px;
}

.trainer-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Testimonials */
.testimonial-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 16px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-fuchsia);
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Curriculum ("Neler öğreneceksiniz?") */
.curriculum-meta {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.curriculum-chapter {
  padding: 18px 0;
  border-top: 1px dashed var(--color-border);
}

.curriculum-visible .curriculum-chapter:first-child {
  border-top: none;
  padding-top: 0;
}

.curriculum-chapter h4 {
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.lesson-count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--color-turquoise);
}

/* Generic fully-hidden reveal block (curriculum extra chapters) */
.reveal-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.card-toggle:checked ~ .reveal-content {
  max-height: 8000px;
}

/* ============ BLOG (index + article, shared by both sites) ============ */
.blog-hero {
  padding: 72px 0 8px;
}

.blog-hero h1 {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 56px auto 0;
}

.blog-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-card-cover {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px 32px;
}

.blog-card-meta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-fuchsia);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card h2 {
  text-align: left;
  max-width: none;
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.blog-card-excerpt {
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-turquoise);
  border-bottom: 1px solid var(--color-turquoise);
  padding-bottom: 2px;
}

.blog-card-link:hover {
  color: var(--color-turquoise-hover);
  border-color: var(--color-turquoise-hover);
}

/* ============ ARTICLE (single blog post) ============ */
.article-section {
  padding-top: 56px;
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article-crosslink {
  display: inline-block;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-turquoise);
}

.article-crosslink:hover {
  color: var(--color-turquoise-hover);
}

.article-meta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-fuchsia);
  font-weight: 600;
  margin-bottom: 18px;
}

.article h1 {
  text-align: left;
  max-width: none;
  margin: 0 0 28px;
  font-size: 2.3rem;
}

.article-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-top: -18px;
  margin-bottom: 28px;
}

.article-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 44px;
}

.article-body h2 {
  text-align: left;
  max-width: none;
  margin: 52px 0 16px;
  font-size: 1.55rem;
}

.article-body h3 {
  color: var(--color-fuchsia);
  font-size: 1.1rem;
  margin: 32px 0 10px;
}

.article-body p {
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-left: 1.4rem;
}

.article-body li {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.article-lead {
  font-size: 1.12rem;
  color: var(--color-text);
}

.article-body blockquote {
  border-left: 3px solid var(--color-turquoise);
  padding: 4px 0 4px 20px;
  margin: 0 0 18px;
  font-style: italic;
  color: var(--color-text);
}

.article-body code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.9em;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2px 6px;
}

.article-body li strong {
  color: var(--color-text);
}

.article-footer-cta {
  margin-top: 64px;
}

/* ============ TOOL STRIP (EN corporate page) ============ */
.tool-strip {
  padding: 22px 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.tool-strip p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.tool-strip-label {
  font-weight: 600;
  color: var(--color-text);
  margin-right: 6px;
}

/* ============ STAT SOURCE (EN problem/stats cards) ============ */
.stat-source {
  margin-top: 14px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

/* ============ COMPARISON TABLE (EN corporate page) ============ */
.compare-table-wrapper {
  margin-top: 48px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px dashed var(--color-border);
}

.compare-table th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.compare-table th:last-child {
  color: var(--color-fuchsia);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  color: var(--color-text);
  font-weight: 500;
}

.compare-table td.compare-highlight {
  color: var(--color-turquoise-hover);
  font-weight: 700;
}

/* ============ EN SOFTWARE SCHOOL PAGE ============ */
.login-link {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.login-link:hover {
  color: var(--color-turquoise);
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  background-color: var(--color-turquoise-soft);
  color: var(--color-turquoise-hover);
}

.hero-stat-panel {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  width: 100%;
}

.hero-stat-duration {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-fuchsia);
  margin-bottom: 4px;
}

.hero-stat-title {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 18px;
}

.hero-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed var(--color-border);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.hero-stat-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.hero-stat-row span:last-child {
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}

.stats-strip {
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.stats-strip-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-turquoise);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 220px;
  margin: 0 auto;
}

.spotlight-intro {
  text-align: center;
}

.spotlight-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  background-color: var(--color-fuchsia-soft);
  color: var(--color-fuchsia-hover);
  margin-bottom: 16px;
}

.spotlight-title {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.spotlight-subhead {
  text-align: center;
  font-size: 1.15rem;
  margin: 56px 0 0;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.trainer-role {
  color: var(--color-turquoise);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 14px;
}

.footer-expanded-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 32px 40px;
}

.footer-logo-img {
  display: block;
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col-brand p {
  margin-bottom: 20px;
  max-width: 320px;
  color: rgba(237, 238, 230, 0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-col .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(237, 238, 230, 0.1);
  color: rgba(237, 238, 230, 0.85);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.footer-col .footer-social a:hover {
  background: var(--color-turquoise);
  color: var(--color-text);
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(237, 238, 230, 0.4);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(237, 238, 230, 0.78);
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--color-turquoise);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 32px;
  border-top: 1px solid rgba(237, 238, 230, 0.12);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(237, 238, 230, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-grid-stretch .hero-visual {
    height: 320px;
  }

  .row-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card-grid-3,
  .card-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .trainer-grid {
    grid-template-columns: 1fr;
  }

  .yo-audience-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-cover {
    min-height: 200px;
  }

  .article h1 {
    font-size: 1.9rem;
  }

  .main-nav {
    display: none;
  }

  h1 {
    font-size: 2.4rem;
  }

  .footer-expanded-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

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

  .footer-expanded-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 24px 32px;
  }

  .stats-strip-grid {
    gap: 24px;
  }

  .hero-grid-stretch .hero-visual {
    height: 240px;
  }

  .logo-marquee-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .logo-marquee {
    margin-top: 28px;
  }

  .logo-marquee-track {
    gap: 36px;
    animation-duration: 22s;
  }

  .logo-item img {
    height: 28px;
  }

  .logo-item img.logo-item-klarna,
  .logo-item img.logo-item-square {
    height: 36px;
  }

  .header-inner {
    gap: 12px;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .header-right {
    width: 100%;
    justify-content: flex-end;
  }

  .btn-nav {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 48px 0 56px;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 64px 0;
  }

  .case-study,
  .callout,
  .outcomes-box,
  .contact-form-wrapper,
  .trainer-card,
  .problem-card,
  .yo-audience-card,
  .testimonial-card {
    padding: 24px;
  }

  .modal-box {
    padding: 28px 24px;
    max-height: 92vh;
  }

  .blog-card-body {
    padding: 22px;
  }

  .blog-hero {
    padding: 48px 0 8px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .card-toggle:checked ~ .faq-answer {
    padding: 0 20px 18px;
  }

  .yo-block {
    margin-top: 48px;
    padding-top: 40px;
  }

  .yo-callout {
    margin-top: 48px;
  }

  .yo-subtitle {
    font-size: 1.3rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
