/*
=======================================================
  DSA Dijital Sanat Atölyesi — style.css
  Versiyon: 4.0
  -------------------------------------------------------
  Tasarım ilkeleri: Stratega referansından uyarlanan
  geniş beyaz alan, güçlü başlık hiyerarşisi,
  pastel lacivert / lila / mercan renk sistemi.
  Navbar + Hero: yeni.
  Alttaki bölümler: legacy stiller korunuyor.
=======================================================
*/

/* ─── 1. GOOGLE FONTS ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800;900&display=swap');


/* ─── 2. CSS DEĞİŞKENLERİ ────────────────────────── */
:root {
    /* Ana marka renkleri — Navbar + Hero */
    --ink:          #1C2B6E;   /* Lacivert: başlık, buton, ana metin */
    --ink-dark:     #111C50;
    --ink-mid:      #3A4A8C;
    --lila:         #EAE6FF;   /* Açık lila: dekoratif, badge arka planı */
    --lila-mid:     #C8BFF5;   /* Orta lila: şekil */
    --blue-soft:    #D4EEFF;   /* Yumuşak mavi: destek şekil */
    --coral:        #F05A3A;   /* Mercan: vurgu, nokta, küçük aksan */
    --coral-dark:   #D44826;
    --cream:        #FFFCF0;   /* Krem: hero arka plan */
    --white:        #FFFFFF;
    --text-body:    #4A527A;   /* Gövde metni */
    --text-muted:   #8A92BB;   /* İkincil metin */
    --border-c:     rgba(28, 43, 110, 0.1);

    /* Legacy değişkenler — alttaki bölümler için korunuyor */
    --primary-color:     #FF6B6B;
    --primary-dark:      #E63946;
    --secondary-color:   #4ECDC4;
    --secondary-dark:    #2B938A;
    --tertiary-color:    #FFE66D;
    --tertiary-dark:     #F4C531;
    --purple-color:      #9D4EDD;
    --purple-dark:       #7B2CBF;
    --bg-color:          #F9FAFB;
    --text-primary:      #2B2D42;
    --text-secondary:    #6C757D;
    --text-light:        #A0AEC0;
    --card-radius:       24px;
    --font-heading:      'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:         'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-primary:      'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-gallery:      'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-gallery-heading: 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --color-primary:     #432C7A;
    --color-secondary:   #6F5BD7;
    --color-text:        #29233D;
    --color-muted:       #69647A;
    --color-background:  #FFF9F1;
    --radius-card:       22px;
    --radius-button:     10px;
    --shadow-card:       0 18px 46px rgba(46, 39, 80, 0.10);
    --header-height:     80px;
    --container-width:   1200px;
    --transition-fast:   0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-medium: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.25s ease;
}


/* ─── 3. TEMEL SIFIRLAMA ─────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration:        0.01ms !important;
        animation-iteration-count: 1      !important;
        transition-duration:       0.01ms !important;
    }
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
}

*:focus         { outline: none; }
*:focus-visible {
    outline: 3px solid var(--lila-mid);
    outline-offset: 3px;
    border-radius: 6px;
}


/* ─── 4. NAVİGASYON ──────────────────────────────────
   Tam genişlik beyaz navbar.
   İçerik: max-width 1200px, yükseklik 80px.
   Logo solda — linkler + CTA sağda.
   Emoji yok. Sade alt kenarlık.
────────────────────────────────────────────────────── */
.playful-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-c);
    box-shadow: 0 1px 16px rgba(28, 43, 110, 0.06);
    z-index: 1000;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 148px;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    letter-spacing: 0;
}

.logo-sub {
    font-family: var(--font-primary);
    font-size: clamp(0.74rem, 1.2vw, 0.84rem);
    font-weight: 800;
    color: var(--ink-mid);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Nav linkleri (sağa hizalı) */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-body);
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 8px;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
    display: block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
    background: var(--lila);
}

/* Masaüstü CTA butonu */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 2px 10px rgba(28, 43, 110, 0.2);
}

.btn-nav-cta:hover {
    background: var(--ink-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(28, 43, 110, 0.28);
}

.btn-nav-cta:active { transform: translateY(0); }

.static-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-nav-cta-secondary {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid rgba(67, 44, 122, 0.18);
    box-shadow: none;
}

.btn-nav-cta-secondary:hover {
    background: var(--lila);
    color: var(--ink);
}

/* Mobil hamburger */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1.5px solid var(--border-c);
    color: var(--ink);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    padding: 7px 10px;
    transition: background 0.18s;
    line-height: 1;
    flex-shrink: 0;
}

.mobile-menu-btn:hover { background: var(--lila); }


/* ─── 5. HERO BÖLÜMÜ ─────────────────────────────────
   Stratega ilkelerinden uyarlanan iki sütunlu hero.
   Krem/açık arka plan. Büyük başlık hiyerarşisi.
   Geniş beyaz alan. Pastel dekoratif şekiller.
   Emoji yok.
────────────────────────────────────────────────────── */
#anasayfa {
    background: var(--cream);
    padding-top: 80px;           /* navbar yüksekliği */
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* Ana ızgara kapsayıcı */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 32px 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 56fr 44fr;
    gap: 72px;
    align-items: center;
}

/* ── Sol sütun: Metin ── */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Küçük üst etiket */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-mid);
    background: var(--lila);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
}

/* Ana başlık */
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 22px;
    font-weight: 700;
    max-width: 560px;
    text-wrap: balance;
}

/* Vurgu sözcüğü */
.hero-content h1 .accent {
    color: var(--coral);
}

/* Açıklama */
.hero-desc {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.72;
    color: var(--text-body);
    margin-bottom: 36px;
    max-width: 500px;
}

/* Buton grubu */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Birincil buton */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    height: 50px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 4px 18px rgba(28, 43, 110, 0.22);
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: var(--ink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(28, 43, 110, 0.28);
}

.btn-hero-primary:active { transform: translateY(0); }

/* İkincil buton */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    height: 50px;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid rgba(28, 43, 110, 0.25);
    transition: border-color 0.18s, background 0.18s, transform 0.15s;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    border-color: var(--ink);
    background: rgba(28, 43, 110, 0.05);
    transform: translateY(-1px);
}

.btn-hero-secondary:active { transform: translateY(0); }

/* Güven sinyalleri */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-trust-item::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
}

/* ── Sağ sütun: Görsel ── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dekoratif pastel şekiller (en fazla 3, arkada) */
.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Büyük lila daire — görselin sağ üstünde */
.hero-deco-1 {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--lila);
    top: -40px;
    right: -40px;
}

/* Küçük mercan daire — alt sol */
.hero-deco-2 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(240, 90, 58, 0.1);
    bottom: -16px;
    left: -16px;
}

/* Mavi yuvarlak dikdörtgen — sol orta */
.hero-deco-3 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--blue-soft);
    left: -24px;
    top: 35%;
    transform: rotate(12deg);
}

/* Görsel */
.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* Kayan bilgi etiketleri */
.hero-label {
    position: absolute;
    z-index: 2;
    background: var(--white);
    border: 1.5px solid var(--border-c);
    border-radius: 10px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 4px 18px rgba(28, 43, 110, 0.1);
    white-space: nowrap;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-label-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-label-1        { top: 20px; right: -18px; }
.hero-label-1 .hero-label-dot { background: var(--lila-mid); }

.hero-label-2        { bottom: 26px; left: -18px; }
.hero-label-2 .hero-label-dot { background: var(--coral); }


/* ─── 6. ALTTAKI BÖLÜMLER: LEGACY STİLLER ──────────
   Bu bölümler bu aşamada yeniden tasarlanmamıştır.
   Mevcut stiller aynen aktarılmıştır.
────────────────────────────────────────────────────── */

/* Arka plan blob'ları (çok düşük opaklık) */
.bg-blobs {
    display: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.04;
    animation: floatBlob 20s ease-in-out infinite alternate;
}

.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--primary-color); animation-delay: 0s; }
.blob-2 { bottom: -10%; right: -10%; width: 600px; height: 600px; background: var(--secondary-color); animation-delay: -6s; }
.blob-3 { top: 30%; left: 60%; width: 400px; height: 400px; background: var(--tertiary-color); animation-delay: -3s; }

@keyframes floatBlob {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 25px) scale(1.08); }
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-wrap: balance;
}

p {
    line-height: 1.75;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Section ortak */
section {
    padding: 100px max(5%, calc((100% - 1200px) / 2)) 80px;
    position: relative;
    z-index: 1;
}

section.bg-white { background: white; }

.section-header    { text-align: center; margin-bottom: 56px; }

.section-title {
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 55%;
    height: 6px;
    background: var(--tertiary-color);
    border-radius: 10px;
    margin: 10px auto 0;
}

.section-title--left { text-align: left; }
.section-title--left::after { margin-left: 0; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Playful card */
.playful-card {
    background: white;
    border: 3px solid var(--text-primary);
    box-shadow: 6px 6px 0px var(--tertiary-color);
    border-radius: var(--card-radius);
    transition: var(--transition-medium);
    overflow: hidden;
    position: relative;
}

.playful-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--primary-color);
}

/* Butonlar (legacy) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
    border: 3px solid var(--text-primary);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary { background: var(--primary-color); color: white; box-shadow: 0 7px 0 var(--primary-dark); }
.btn-primary:hover  { transform: translateY(2px); box-shadow: 0 5px 0 var(--primary-dark); }
.btn-primary:active { transform: translateY(7px); box-shadow: none; }

.btn-secondary { background: var(--secondary-color); color: white; box-shadow: 0 7px 0 var(--secondary-dark); }
.btn-secondary:hover  { transform: translateY(2px); box-shadow: 0 5px 0 var(--secondary-dark); }
.btn-secondary:active { transform: translateY(7px); box-shadow: none; }

.btn-outline { background: white; color: var(--text-primary); box-shadow: 0 7px 0 var(--text-primary); }
.btn-outline:hover  { transform: translateY(2px); box-shadow: 0 5px 0 var(--text-primary); background: var(--bg-color); }
.btn-outline:active { transform: translateY(7px); box-shadow: none; }

/* Form (legacy) */
.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 0.93rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: white;
    border: 2px solid #CBD5E0;
    border-radius: 13px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-control::placeholder { color: var(--text-light); }

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.14);
    outline: none;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-note {
    margin-top: 10px;
    font-size: 0.86rem;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

.form-status-note {
    background: rgba(255, 230, 109, 0.28);
    border: 2px solid var(--tertiary-dark);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.84rem;
    color: var(--text-primary);
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-heading);
    line-height: 1.4;
}

/* Yaratıcı üretim süreci */
#nasil-isliyor { background: white; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-card {
    background: var(--bg-color);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 24px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.process-card:hover {
    background: white;
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(78, 205, 196, 0.15);
}

.process-number {
    position: absolute;
    top: -13px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 3px 12px;
    border-radius: 20px;
    border: 2px solid var(--text-primary);
}

.process-icon  { font-size: 3rem; display: block; margin-bottom: 14px; }
.process-card h3 { font-size: 1.35rem; color: var(--text-primary); margin-bottom: 8px; }
.process-card p  { font-size: 0.93rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* Programlar */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.course-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 3px solid var(--text-primary);
    box-shadow: 6px 6px 0px var(--tertiary-color);
    border-radius: var(--card-radius);
    transition: var(--transition-medium);
    overflow: hidden;
    position: relative;
}

.course-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--primary-color);
}

.course-accent   { height: 6px; }
.course-accent-1 { background: var(--primary-color);  }
.course-accent-2 { background: var(--secondary-color); }
.course-accent-3 { background: var(--purple-color);   }
.course-accent-4 { background: var(--tertiary-dark);  }

.course-badge {
    position: absolute;
    top: 18px; right: 18px;
    background: var(--tertiary-color);
    color: var(--text-primary);
    padding: 5px 13px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    border: 2px solid var(--text-primary);
}

.course-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.course-icon    { font-size: 2.2rem; display: block; margin-bottom: 10px; }

.course-content h3 {
    font-size: 1.45rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
    padding-right: 80px;
}

.course-content p { font-size: 0.98rem; color: var(--text-secondary); margin: 0; flex: 1; line-height: 1.65; }

/* Çıktılar */
#ciktilar { background: white; }

.outcomes-intro {
    text-align: center;
    max-width: 680px;
    margin: -30px auto 44px;
    font-size: 1.05rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.outcome-item {
    background: var(--bg-color);
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.outcome-item:hover {
    border-color: var(--secondary-color);
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(78, 205, 196, 0.14);
}

.outcome-icon    { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.outcome-item h4 { font-size: 1.05rem; color: var(--text-primary); margin: 0; line-height: 1.4; }

/* Portfolyo */
.portfolio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.portfolio-content h2    { font-size: 2.3rem; margin-bottom: 14px; }
.portfolio-content > p   { font-size: 1.05rem; margin-bottom: 8px; }
.portfolio-items         { list-style: none; margin: 20px 0 0; }

.portfolio-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.portfolio-items li:last-child { border-bottom: none; }
.pi-icon { font-size: 1.4rem; flex-shrink: 0; }

.portfolio-placeholder {
    background: white;
    border: 3px dashed #CBD5E0;
    border-radius: 24px;
    padding: 56px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-height: 320px;
    justify-content: center;
}

.ph-icon                   { font-size: 3.8rem; opacity: 0.45; display: block; }
.portfolio-placeholder h3  { font-size: 1.35rem; color: var(--text-secondary); margin: 0; }
.portfolio-placeholder p   { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* Veliler */
#veliler-icin { background: white; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.trust-item {
    background: var(--bg-color);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    transition: var(--transition-smooth);
}

.trust-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.1);
    background: white;
}

.trust-icon    { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.trust-item h3 { font-size: 1.2rem; color: var(--text-primary); margin-bottom: 8px; }
.trust-item p  { font-size: 0.95rem; margin: 0; color: var(--text-secondary); line-height: 1.6; }

.trust-note {
    background: rgba(78, 205, 196, 0.07);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
}

.trust-note p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
}

/* Eğitmen */
.instructor-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 52px;
    align-items: start;
    background: white;
    border: 3px solid var(--text-primary);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 8px 8px 0 var(--tertiary-color);
}

.instructor-avatar {
    width: 190px; height: 190px;
    border-radius: 24px;
    border: 4px solid var(--text-primary);
    box-shadow: 6px 6px 0 var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--purple-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    flex-shrink: 0;
}

.instructor-info h2     { font-size: 2.1rem; margin-bottom: 6px; }

.instructor-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary-dark);
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
}

.instructor-info > p    { font-size: 1.03rem; margin-bottom: 24px; }

.instructor-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.instructor-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.45;
}

.instructor-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* İletişim */
#iletisim { background: white; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 52px;
    align-items: start;
}

.contact-info-block h2 { font-size: 2.1rem; margin-bottom: 12px; line-height: 1.2; }
.contact-info-block > p { font-size: 1.03rem; margin-bottom: 32px; }
.contact-highlights { display: flex; flex-direction: column; gap: 14px; }

.contact-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-color);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: var(--transition-smooth);
}

.contact-highlight-item:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.08);
}

.chi-icon { font-size: 1.8rem; flex-shrink: 0; }

.contact-highlight-item div strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.contact-highlight-item div span { font-size: 0.88rem; color: var(--text-secondary); }

.contact-form-block {
    background: var(--bg-color);
    border-radius: 24px;
    padding: 36px;
    border: 2px solid #e2e8f0;
}

.contact-form-block h3 { font-size: 1.5rem; margin-bottom: 24px; color: var(--text-primary); }

/* Footer */
footer {
    background: var(--text-primary);
    color: white;
    padding: 56px max(5%, calc((100% - 1200px) / 2)) 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 28px;
    align-items: start;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo span  { color: var(--tertiary-color); }
.footer-brand p    { color: rgba(255, 255, 255, 0.6); font-size: 0.93rem; margin: 0; }

.footer-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.93rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--tertiary-color); }

.footer-bottom { text-align: center; }
.footer-bottom p { color: rgba(255, 255, 255, 0.42); font-size: 0.86rem; margin: 0; }

.footer-logo {
    display: inline-grid;
    gap: 3px;
}

.footer-logo-main {
    font-size: 1.65rem;
    line-height: 1;
}

.footer-logo-sub {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-social {
    min-width: min(100%, 360px);
}

.footer-social h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    margin: 0 0 8px;
}

.footer-social p {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 14px;
}

.footer-social > div {
    display: grid;
    gap: 8px;
}

.social-link {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.18s ease, border-color 0.18s ease;
}

.social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.social-icon {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #fff;
    background: rgba(201, 191, 245, 0.18);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link strong,
.social-link small {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.social-link strong {
    font-size: 0.9rem;
    line-height: 1.2;
}

.social-link small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 700;
}

.mobile-social-menu {
    display: none;
}


/* ─── 7. RESPONSIVE ──────────────────────────────── */

/* Navbar ince ayarı */
@media (max-width: 1180px) {
    .navbar-inner { gap: 14px; padding-inline: 20px; }
    .nav-links a { font-size: 13px; padding: 6px 8px; }
    .btn-nav-cta { padding: 9px 14px; font-size: 13px; }
}

/* Tablet: 992px */
@media (max-width: 992px) {
    section { padding: 80px 5% 60px; }

    /* Hero tek sütun */
    #anasayfa { min-height: auto; align-items: flex-start; }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 56px 24px 64px;
        gap: 52px;
        text-align: center;
    }

    .hero-content     { align-items: center; }
    .hero-content h1  { max-width: 100%; }
    .hero-desc        { max-width: 560px; margin-inline: auto; }
    .hero-actions     { justify-content: center; }
    .hero-trust       { justify-content: center; }
    .hero-img         { max-width: 400px; margin: 0 auto; }
    .hero-label-1     { right: 0; }
    .hero-label-2     { left: 0; }

    /* Diğer bölümler */
    .process-grid      { grid-template-columns: repeat(2, 1fr); }
    .courses-grid      { grid-template-columns: 1fr; }
    .outcomes-grid     { grid-template-columns: repeat(2, 1fr); }
    .portfolio-layout  { grid-template-columns: 1fr; }
    .instructor-layout { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; gap: 32px; }
    .instructor-avatar { margin: 0 auto; }
    .instructor-list   { grid-template-columns: 1fr; text-align: left; }
    .contact-layout    { grid-template-columns: 1fr; }
    .footer-top        { grid-template-columns: 1fr; gap: 28px; }
    .footer-links      { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .footer-social     { width: 100%; }
}

/* Mobil: 768px */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links       { display: none; }
    .static-header-actions { display: none; }
    .btn-nav-cta     { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }

    /* Hero */
    .hero-container  { padding: 40px 20px 52px; gap: 36px; }
    .hero-content h1 { font-size: clamp(30px, 9vw, 40px); }
    .hero-desc       { font-size: 16px; }
    .hero-actions    { gap: 12px; }
    .hero-trust      { gap: 14px; }
    .hero-img        { max-width: 100%; }

    /* Etiketleri küçük ekranda gizle */
    .hero-label-1,
    .hero-label-2    { display: none; }

    /* Diğer */
    .section-title     { font-size: 2rem; }
    .process-grid      { grid-template-columns: 1fr; }
    .outcomes-grid     { grid-template-columns: 1fr; }
    .trust-grid        { grid-template-columns: 1fr; }
    .contact-form-block { padding: 24px 18px; }
    .form-row          { grid-template-columns: 1fr; }
    .mobile-social-menu {
        display: grid;
        gap: 9px;
        width: 100%;
        padding: 14px 18px 4px;
        border-top: 1px solid rgba(28, 43, 110, 0.1);
    }
    .mobile-social-menu > strong {
        color: var(--ink);
        font-size: 0.9rem;
    }
    .mobile-social-menu .social-link {
        grid-template-columns: 28px 1fr;
        color: var(--ink);
        background: var(--lila);
        border-color: rgba(28, 43, 110, 0.1);
    }
    .mobile-social-menu .social-icon {
        width: 28px;
        height: 28px;
        color: var(--ink);
        background: rgba(255, 255, 255, 0.82);
    }
    .mobile-social-menu .social-link small {
        color: var(--text-body);
    }
}

/* Küçük mobil: 480px */
@media (max-width: 480px) {
    .hero-actions         { flex-direction: column; align-items: stretch; }
    .btn-hero-primary,
    .btn-hero-secondary   { width: 100%; text-align: center; height: auto; padding: 14px 24px; }
    .hero-trust           { flex-direction: column; align-items: center; gap: 10px; }
    .instructor-layout    { padding: 24px 16px; }
    .course-content h3    { padding-right: 0; }
    .course-badge         { position: static; display: inline-block; margin-bottom: 10px; }
}

/* =======================================================
   8. PROGRAM KARTI BİLEŞENİ
   Tüm sayfalarda kullanılan tekrar kullanılabilir kart.
   Mevcut tasarım diline (playful-card + ink/coral/lila) uyumlu.
======================================================= */

.program-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.program-card {
    background: var(--white);
    border: 2.5px solid var(--border-c);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(28, 43, 110, 0.12);
    border-color: var(--lila-mid);
}

.program-card--featured {
    border: 2.5px solid var(--ink);
    box-shadow: 0 8px 32px rgba(28, 43, 110, 0.14);
    background: linear-gradient(160deg, #f8f7ff 0%, var(--white) 60%);
}

.program-card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 52px rgba(28, 43, 110, 0.2);
    border-color: var(--ink-dark);
}

.program-card__stripe {
    height: 5px;
    background: var(--lila-mid);
    flex-shrink: 0;
}

.program-card--featured .program-card__stripe {
    background: linear-gradient(90deg, var(--ink) 0%, var(--ink-mid) 100%);
    height: 6px;
}

.program-card__badge {
    position: absolute;
    top: 20px;
    right: 18px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.program-card__body {
    padding: 24px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card__meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.program-card__icon { font-size: 2rem; line-height: 1; }

.program-card__title {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 10px;
    text-wrap: balance;
}

.program-card__info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.program-card__info li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-body);
    font-weight: 600;
}

.program-card__info li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
}

.program-card__desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.program-card__divider {
    height: 1px;
    background: var(--border-c);
    margin: 0 -24px 18px;
}

.program-card__pricing {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    min-width: 0;
}

.program-card__price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.price-original {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.price-discounted {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.price-installment {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-align: right;
    align-self: flex-end;
    padding-bottom: 2px;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
}

.program-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-card-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 3px 12px rgba(28, 43, 110, 0.2);
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-card-primary:hover {
    background: var(--ink-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(28, 43, 110, 0.28);
}

.btn-card-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid rgba(28, 43, 110, 0.22);
    transition: border-color 0.18s, background 0.18s, transform 0.15s;
    text-align: center;
    cursor: pointer;
}

.btn-card-secondary:hover {
    border-color: var(--ink);
    background: rgba(28, 43, 110, 0.05);
    transform: translateY(-1px);
}

.programs-section-cta {
    text-align: center;
    margin-top: 44px;
}

/* ═══════════════════════════════════════════════════════
   10. PROGRAMLAR LİSTE SAYFASI
═══════════════════════════════════════════════════════ */

.page-body { padding-top: 80px; }

.programs-hero {
    background: var(--cream);
    padding: 72px max(5%, calc((100% - 1200px) / 2)) 60px;
    text-align: center;
    position: relative;
    overflow: clip;
    contain: paint;
}

.programs-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--lila);
    opacity: 0.5;
    pointer-events: none;
}

.programs-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(240, 90, 58, 0.07);
    pointer-events: none;
}

.programs-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-mid);
    background: var(--lila);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.programs-hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
}

.programs-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    color: var(--ink);
    margin-bottom: 18px;
    text-wrap: balance;
    position: relative;
    z-index: 1;
}

.programs-hero__subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-body);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.programs-list-section {
    padding: 72px max(5%, calc((100% - 1200px) / 2)) 80px;
}

.programs-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.filter-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: 4px;
}

.btn-filter {
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid var(--border-c);
    background: var(--white);
    color: var(--text-body);
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.btn-filter:hover { border-color: var(--ink); color: var(--ink); background: var(--lila); }
.btn-filter.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.comparison-section {
    background: var(--cream);
    padding: 72px max(5%, calc((100% - 1200px) / 2)) 80px;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 2px solid var(--border-c);
    box-shadow: 0 8px 32px rgba(28, 43, 110, 0.07);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
}

.comparison-table th {
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
    white-space: nowrap;
}

.comparison-table th:first-child { background: var(--ink-dark); }

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-c);
    color: var(--text-body);
    font-weight: 600;
    vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--lila); }
.comparison-table td:first-child { font-weight: 700; color: var(--ink); background: rgba(28, 43, 110, 0.03); }
.ct-check { color: var(--coral); font-size: 1.1rem; }

.programs-cta-section {
    background: var(--ink);
    padding: 72px max(5%, calc((100% - 1200px) / 2)) 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programs-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.programs-cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(240, 90, 58, 0.1);
}

.programs-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 40px);
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.programs-cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.btn-cta-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════
   11. PROGRAM DETAY SAYFASI
═══════════════════════════════════════════════════════ */

.breadcrumb {
    padding: 16px max(5%, calc((100% - 1200px) / 2));
    background: var(--cream);
    border-bottom: 1px solid var(--border-c);
}

.breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; font-weight: 600; transition: color 0.18s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb strong { color: var(--ink); font-weight: 700; }

.detail-hero {
    background: var(--cream);
    padding: 52px max(5%, calc((100% - 1200px) / 2)) 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 52px;
    align-items: start;
}

.detail-hero__left { min-width: 0; }

.detail-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--ink);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.detail-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 46px);
    color: var(--ink);
    margin-bottom: 20px;
    line-height: 1.15;
    text-wrap: balance;
}

.detail-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-stat {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: var(--white);
    border: 1.5px solid var(--border-c);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}

.detail-stat__icon { font-size: 1rem; }

.detail-hero__desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.72;
    max-width: 580px;
}

.detail-hero__price-box {
    background: var(--white);
    border: 2px solid var(--border-c);
    border-radius: 24px;
    padding: 28px;
    width: 300px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(28, 43, 110, 0.09);
    position: sticky;
    top: 100px;
}

.detail-price-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.detail-price-original {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-price-discounted {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}

.detail-price-installment {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.detail-price-divider { height: 1px; background: var(--border-c); margin: 16px 0; }

.detail-price-box-actions { display: flex; flex-direction: column; gap: 10px; }

.detail-program-price {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid var(--border-c);
    border-radius: 10px;
    background: rgba(255,255,255,.78);
}

.detail-program-price__label {
    color: var(--text-muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.detail-program-price strong {
    color: var(--card-strong, var(--dark-purple));
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.25rem);
    line-height: 1;
}

.detail-program-price small,
.detail-program-price em {
    color: var(--text-muted);
    font-style: normal;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.btn-detail-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 4px 16px rgba(240, 90, 58, 0.3);
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-detail-buy:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 7px 22px rgba(240, 90, 58, 0.38); }

.btn-detail-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid rgba(28, 43, 110, 0.25);
    transition: border-color 0.18s, background 0.18s, transform 0.15s;
    text-align: center;
    cursor: pointer;
}

.btn-detail-apply:hover { border-color: var(--ink); background: rgba(28, 43, 110, 0.05); transform: translateY(-1px); }

.detail-price-note {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

.detail-content {
    padding: 60px max(5%, calc((100% - 1200px) / 2)) 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 52px;
    align-items: start;
}

.detail-content__main { min-width: 0; }

.detail-section { margin-bottom: 52px; }

.detail-section__title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-c);
}

.curriculum-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.curriculum-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--cream);
    border: 1.5px solid var(--border-c);
    border-radius: 14px;
    transition: border-color 0.18s, background 0.18s;
}

.curriculum-item:hover { border-color: var(--lila-mid); background: var(--lila); }

.curriculum-item__week {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    background: var(--ink);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.curriculum-item__info h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.curriculum-item__info p { font-family: var(--font-body); font-size: 13.5px; color: var(--text-body); line-height: 1.6; margin: 0; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-body);
    font-weight: 600;
}

.check-list li::before {
    content: '\2713';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lila);
    color: var(--ink);
    font-weight: 900;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-reqs {
    background: var(--cream);
    border: 1.5px solid var(--border-c);
    border-radius: 18px;
    padding: 24px 28px;
}

.tech-reqs p { font-family: var(--font-body); font-size: 14.5px; color: var(--text-body); line-height: 1.7; margin: 0; }

.detail-content__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--cream);
    border: 1.5px solid var(--border-c);
    border-radius: 18px;
    padding: 22px 24px;
}

.sidebar-box__title { font-family: var(--font-heading); font-size: 1rem; color: var(--ink); margin-bottom: 14px; }

.sidebar-stat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.sidebar-stat-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-body);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-c);
}

.sidebar-stat-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-stat-list li strong { font-weight: 700; color: var(--ink); }

.detail-cta-section {
    background: var(--ink);
    padding: 60px max(5%, calc((100% - 1200px) / 2)) 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(240,90,58,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.detail-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.8vw, 38px);
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.detail-cta-section p {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.detail-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-coral {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 4px 20px rgba(240, 90, 58, 0.35);
    cursor: pointer;
    border: none;
}

.btn-cta-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240, 90, 58, 0.42); }

.btn-cta-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: border-color 0.18s, background 0.18s, transform 0.15s;
}

.btn-cta-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════
   12. BAŞVURU VE ÖDEME HAZIRLIK SAYFASI
═══════════════════════════════════════════════════════ */

.selected-program-notice {
    background: var(--lila);
    border: 1.5px solid var(--lila-mid);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
}

.selected-program-notice__icon { font-size: 1.4rem; flex-shrink: 0; }

.payment-prep-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px max(5%, calc((100% - 1200px) / 2)) 80px;
    background: var(--cream);
}

.payment-prep-section {
    max-width: 680px;
    width: 100%;
    text-align: center;
}

.payment-prep-icon { font-size: 4rem; display: block; margin-bottom: 24px; line-height: 1; }

.payment-prep-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--ink);
    margin-bottom: 16px;
}

.payment-prep-section > p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    max-width: 540px;
    margin: 0 auto 12px;
    line-height: 1.7;
}

.payment-prep-card {
    background: var(--white);
    border: 1.5px solid var(--border-c);
    border-radius: 20px;
    padding: 28px 32px;
    margin: 32px auto;
    max-width: 480px;
    text-align: left;
    box-shadow: 0 6px 24px rgba(28, 43, 110, 0.07);
}

.payment-prep-card__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.payment-prep-card__program {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.payment-prep-divider { height: 1px; background: var(--border-c); margin: 16px 0; }

.payment-prep-card__price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.payment-prep-card__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.payment-prep-card__installment {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    padding-bottom: 4px;
}

.payment-prep-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ═══════════════════════════════════════════════════════
   13. BAŞVURU SAYFASI
═══════════════════════════════════════════════════════ */

.basvuru-layout {
    width: min(calc(100% - 40px), 1000px);
    margin: 0 auto;
    padding: 52px 0 84px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.application-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto 16px;
    padding: 7px 14px;
    border: 1px solid rgba(67, 44, 122, 0.14);
    border-radius: 999px;
    color: var(--color-primary);
    background: rgba(201, 184, 255, 0.22);
    font-family: var(--font-primary);
    font-size: 0.84rem;
    font-weight: 850;
    line-height: 1.2;
}

.basvuru-info {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.basvuru-info h1 {
    max-width: 760px;
    margin: 0 auto 18px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
    text-wrap: balance;
}

.basvuru-info > p {
    max-width: 700px;
    margin: 0 auto 26px;
    color: var(--color-muted);
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    font-weight: 650;
    line-height: 1.7;
}

.contact-highlights {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-block {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 40px);
    border: 1px solid rgba(67, 44, 122, 0.14);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
}

.application-form-title,
.contact-form-block h2 {
    margin: 0 0 24px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 850;
    line-height: 1.25;
}

.contact-form-block label,
.form-section-title,
.checkbox-label,
.radio-label,
.day-pill label,
.form-note {
    font-family: var(--font-primary);
}

.form-section-title {
    color: var(--color-primary);
    letter-spacing: 0.04em;
}

.form-control,
.contact-form-block input,
.contact-form-block select,
.contact-form-block textarea {
    min-height: 48px;
    border-radius: 12px;
    font-family: var(--font-primary);
}

#submit-btn,
.btn,
.btn-primary {
    min-height: 50px;
    border-radius: var(--radius-button);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
}

/* ═══════════════════════════════════════════════════════
   14. YENİ BİLEŞENLER İÇİN RESPONSIVE
═══════════════════════════════════════════════════════ */

@media (max-width: 992px) {
    .program-cards-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .detail-hero { grid-template-columns: 1fr; gap: 32px; }
    .detail-hero__price-box { width: 100%; position: static; }
    .detail-content { grid-template-columns: 1fr; }
    .detail-content__sidebar { position: static; }
    .comparison-table { font-size: 13px; }
    .comparison-table td, .comparison-table th { padding: 12px 14px; }
    .basvuru-layout { grid-template-columns: 1fr; }
    .contact-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .programs-hero { padding: 52px 5% 44px; }
    .programs-hero h1 { font-size: clamp(26px, 8vw, 38px); }
    .programs-list-section { padding: 52px 5% 60px; }
    .comparison-section { padding: 52px 5% 60px; }
.programs-cta-section { padding: 52px 5% 52px; }
    .detail-hero { padding: 40px 5% 44px; }
    .detail-content { padding: 44px 5% 60px; }
    .detail-cta-section { padding: 48px 5% 48px; }
    .detail-cta-actions { flex-direction: column; align-items: center; }
    .btn-cta-coral, .btn-cta-outline-white { width: 100%; max-width: 320px; }
    .basvuru-layout {
        width: min(calc(100% - 28px), 1000px);
        padding-top: 32px;
    }
    .basvuru-info h1 {
        font-size: clamp(1.9rem, 9vw, 2.45rem);
    }
    .contact-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .program-cards-grid { max-width: 100%; }
    .detail-hero__stats { gap: 8px; }
    .detail-stat { font-size: 12px; padding: 7px 11px; }
    .payment-prep-card { padding: 22px 20px; }
    .payment-prep-actions { flex-direction: column; align-items: center; }
    .payment-prep-card__price-row { flex-direction: column; gap: 4px; }
}

/* Distinct Programs Release - 2026-07-11-HOME-LAYOUT-01 */
:root {
    --ink: #29233D;
    --ink-dark: #211A34;
    --ink-mid: #4A3A7A;
    --cream: #FFF9F1;
    --lila: #C9B8FF;
    --lila-mid: #B8A3F4;
    --blue-soft: #8DD7F7;
    --mint: #A9E8D2;
    --peach: #FFB69F;
    --warm-yellow: #FFD86F;
    --coral: #F05A3A;
    --text-body: #4D4862;
    --text-muted: #77728A;
}

/* Student gallery base styles */
.digital-exhibition-page {
  background:
    linear-gradient(180deg, #f7f3ec 0%, #f4efe6 48%, #eef3f5 100%);
}

.exhibition-entrance__copy::after {
  display: none;
}

.exhibition-entrance__copy {
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,243,235,.92) 56%, rgba(232,239,242,.94)),
    #fff;
}

.exhibition-entrance h1 {
  letter-spacing: 0;
}

.exhibition-subtitle {
  color: #332a4f;
  font-weight: 900;
}

.exhibition-message {
  color: #5b536e;
  font-weight: 750;
}

.gallery-card--museum .gallery-card__media img {
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
  background: #f8f4ee;
}

.gallery-card--museum .gallery-card__video-preview {
  background:
    linear-gradient(135deg, #1f1b2d, #2c2444 62%, #12131b);
  color: #fff;
}

.modal-project-layout--museum .modal-media img,
.modal-project-layout--museum .modal-media video {
  max-height: min(72vh, 680px);
  object-fit: contain;
  background: #111;
}

.modal-project-layout--museum .modal-media img {
  background: #f8f4ee;
}

body {
    background: linear-gradient(180deg, #FFF9F1 0%, #F7F1FF 48%, #F6FCFF 100%);
}

.program-card {
    --program-accent: var(--lila);
    --program-accent-strong: var(--ink-mid);
    background: rgba(255, 255, 255, 0.92);
}

.program-card--art,
.detail-hero--art,
.fit-card--art {
    --program-accent: var(--peach);
    --program-accent-strong: #C85E3D;
}

.program-card--story,
.detail-hero--story,
.fit-card--story {
    --program-accent: var(--lila);
    --program-accent-strong: #7556C9;
}

.program-card--ai,
.detail-hero--ai,
.fit-card--ai {
    --program-accent: var(--mint);
    --program-accent-strong: #138E86;
}

.program-card__stripe {
    background: linear-gradient(90deg, var(--program-accent), rgba(255, 216, 111, 0.75));
}

.program-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
}

.program-card__age-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    color: var(--ink);
    background: color-mix(in srgb, var(--program-accent, var(--lila)), white 42%);
    box-shadow: 0 12px 26px rgba(46, 39, 80, 0.18);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
}

.program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-card__badge,
.programs-hero__badge {
    background: var(--program-accent, var(--lila));
    color: var(--ink);
}

.program-card__headline {
    margin: -2px 0 10px;
    color: var(--program-accent-strong);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.program-card__gains {
    display: grid;
    gap: 7px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.program-card__gains li {
    display: flex;
    gap: 8px;
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.program-card__gains li::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--program-accent-strong);
    flex: 0 0 auto;
}

.program-card__final {
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--program-accent), white 68%);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.price-discounted {
    color: var(--program-accent-strong, var(--ink));
}

.detail-hero {
    background: linear-gradient(135deg, color-mix(in srgb, var(--program-accent, var(--lila)), white 68%), rgba(255, 255, 255, 0.88)), var(--cream);
}

.detail-hero__visual {
    margin-top: 22px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(41, 35, 61, 0.14);
}

.detail-hero__visual img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.fit-grid-static {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fit-card {
    padding: 22px;
    border: 2px solid var(--program-accent, var(--lila));
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(41, 35, 61, 0.1);
}

.fit-card h3 {
    color: var(--ink);
    margin-bottom: 14px;
}

.fit-card ul {
    display: grid;
    gap: 10px;
    padding-left: 18px;
    color: var(--text-body);
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .fit-grid-static { grid-template-columns: 1fr; }
}

/* Sales Academy Release - 2026-07-11-HOME-LAYOUT-01 */
:root {
  --cream: #FFF9F1;
  --dark-purple: #432C7A;
  --main-purple: #7556C9;
  --lavender: #C9B8FF;
  --sky: #8DD7F7;
  --mint: #A9E8D2;
  --peach: #FFB69F;
  --coral: #FF8E7A;
  --warm-yellow: #FFD86F;
  --ink: #29233D;
  --muted: #69647A;
}
body.page-body {
  background: linear-gradient(180deg, var(--cream) 0%, #f5efff 54%, #f6fcff 100%);
  color: var(--ink);
}
.logo-sub { color: var(--muted); }
.nav-links a { min-height: 44px; }
.programs-hero__badge { background: rgba(201,184,255,.42); color: var(--dark-purple); }
.program-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.program-card {
  min-width: 0;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.program-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.program-card__title { min-height: 3.1em; }
.program-card__actions { margin-top: auto; }
.program-card--art { --card-accent: var(--peach); --card-strong: #d95f43; }
.program-card--story { --card-accent: var(--lavender); --card-strong: var(--main-purple); }
.program-card--ai { --card-accent: var(--mint); --card-strong: #168f8a; }
.program-card--book { --card-accent: var(--peach); --card-strong: #b8653c; }
.program-card--web { --card-accent: var(--mint); --card-strong: #177f87; }
.program-card--future { --card-accent: var(--sky); --card-strong: #2b61b9; }
.program-card--culture { --card-accent: var(--coral); --card-strong: #b74762; }
.program-card__stripe,
.program-card__badge { background: color-mix(in srgb, var(--card-accent, var(--lavender)), white 28%); color: var(--ink); }
.program-card__headline,
.price-discounted { color: var(--card-strong, var(--dark-purple)); }
.fit-grid-static,
.student-category-grid,
.static-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.fit-card,
.student-category-grid span,
.static-project-card,
.piko-static {
  border: 1px solid rgba(41,35,61,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 34px rgba(46,39,80,.1);
}
.student-categories,
.student-projects,
.piko-static {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 42px;
}
.student-category-grid span {
  min-height: 46px;
  padding: 12px 14px;
  font-weight: 800;
  color: var(--dark-purple);
}
.static-project-card { overflow: hidden; }
.static-project-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.static-project-card > div { padding: 22px; }
.static-project-card ul { margin: 14px 0 0; color: var(--muted); font-weight: 700; line-height: 1.55; }
.project-type {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--mint);
  color: #174a4a;
  font-size: .82rem;
  font-weight: 900;
}
.piko-static {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(201,184,255,.34), rgba(141,215,247,.2)), rgba(255,255,255,.82);
}
.piko-static img { width: min(240px, 100%); justify-self: center; filter: drop-shadow(0 18px 34px rgba(67,44,122,.22)); }
.detail-hero--book { --detail-accent: var(--peach); }
.detail-hero--web { --detail-accent: var(--mint); }
.detail-hero--future { --detail-accent: var(--sky); }
.detail-hero--culture { --detail-accent: var(--coral); }
@media (max-width: 1080px) {
  .program-cards-grid,
  .fit-grid-static,
  .student-category-grid,
  .static-project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .program-cards-grid,
  .fit-grid-static,
  .student-category-grid,
  .static-project-grid,
  .piko-static { grid-template-columns: 1fr; }
  .program-card__title { min-height: 0; }
  .piko-static { padding: 20px; }
}

/* DSA Dijital Sergi Salonu */
.digital-exhibition-page {
  background:
    linear-gradient(180deg, #fbf8f1 0%, #f5f1ea 42%, #f6f8fb 100%);
}

.exhibition-entrance {
  width: min(calc(100% - 40px), 1180px);
  margin: 34px auto 24px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 28px;
  align-items: stretch;
}

.exhibition-entrance__copy,
.exhibition-stats > div,
.exhibition-toolbar,
.gallery-card,
.project-modal__panel {
  border: 1px solid rgba(41,35,61,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 42px rgba(46,39,80,.09);
}

.exhibition-entrance__copy {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,241,234,.88) 58%, rgba(232,238,246,.9)),
    #fff;
}

.exhibition-entrance__copy::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -74px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(92,59,200,.12);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201,184,255,.22), rgba(141,215,247,.08) 62%, transparent 64%);
  pointer-events: none;
}

.exhibition-entrance__copy > * {
  position: relative;
  z-index: 1;
}

.exhibition-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(92,59,200,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--dark-purple, #432c7a);
  font-size: .82rem;
  font-weight: 900;
}

.exhibition-entrance h1 {
  max-width: 780px;
  margin: 18px 0 12px;
  color: var(--ink, #29233d);
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: .98;
}

.exhibition-subtitle {
  max-width: 720px;
  color: var(--muted, #69647a);
  font-size: clamp(1.05rem, 2.2vw, 1.34rem);
  line-height: 1.48;
}

.exhibition-message {
  max-width: 700px;
  margin-top: 14px;
  color: #342a62;
  font-weight: 900;
  line-height: 1.45;
}

.exhibition-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.exhibition-actions {
  margin-top: 24px;
}

.digital-exhibition-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.digital-exhibition-page .button.primary {
  background: #5c3bc8;
  color: #fff;
  box-shadow: 0 14px 26px rgba(92,59,200,.22);
}

.digital-exhibition-page .button.secondary {
  background: rgba(255,255,255,.88);
  border-color: rgba(92,59,200,.22);
  color: #432c7a;
}

.digital-exhibition-page .button.compact {
  min-height: 40px;
  padding: 9px 13px;
  font-size: .92rem;
}

.digital-exhibition-page .button:hover,
.digital-exhibition-page .button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(46,39,80,.16);
  outline: none;
}

.project-modal__close {
  border: 1px solid rgba(41,35,61,.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink, #29233d);
  font-weight: 900;
  cursor: pointer;
}

.exhibition-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.exhibition-stats > div {
  min-height: 132px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.exhibition-stats strong {
  color: #432c7a;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.05;
}

.exhibition-stats > div:nth-child(n+3) strong {
  font-size: clamp(1.15rem, 2vw, 1.8rem);
}

.exhibition-stats span {
  color: var(--muted, #69647a);
  font-weight: 800;
}

.classic-gallery {
  position: relative;
  width: 100%;
  margin: 0 auto 52px;
  padding: 0;
}

.classic-gallery > .section-header {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 16px;
}

.classic-gallery[hidden] {
  display: none !important;
}

.gallery-filters {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(150px, 1fr));
  gap: 10px;
}

.gallery-filters input,
.gallery-filters select {
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(41,35,61,.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink, #29233d);
  font: inherit;
}

.gallery-grid {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.gallery-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.gallery-card > img,
.gallery-card__media,
.gallery-card__media img,
.gallery-card__placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(201,184,255,.42), rgba(141,215,247,.28)),
    #fff;
}

.gallery-card__media {
  overflow: hidden;
  display: block;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.gallery-card__media-button:focus-visible {
  outline: 3px solid rgba(92, 59, 200, .42);
  outline-offset: 3px;
}

.gallery-card__media img {
  display: block;
  height: 100%;
}

.gallery-card__video-preview {
  display: grid;
  place-items: center;
  color: #432c7a;
  background:
    linear-gradient(135deg, rgba(41,35,61,.1), rgba(141,215,247,.2)),
    #fff;
}

.gallery-card__video-preview::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: currentColor;
  -webkit-mask: var(--icon-video) center / 28px 28px no-repeat;
  mask: var(--icon-video) center / 28px 28px no-repeat;
  box-shadow: 0 16px 30px rgba(67,44,122,.16);
}

.gallery-card__video-preview span {
  margin-top: 10px;
  font-size: .86rem;
  font-weight: 900;
}

.gallery-card__placeholder {
  display: grid;
  place-items: center;
  padding: 20px;
  color: #432c7a;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

.gallery-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-card h3 {
  margin: 0;
  color: var(--ink, #29233d);
  font-size: 1.22rem;
  line-height: 1.25;
}

.gallery-card p {
  margin: 0;
  color: var(--muted, #69647a);
  line-height: 1.5;
}

.gallery-card dl,
.modal-summary dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.gallery-card dl div,
.modal-summary dl div {
  display: grid;
  gap: 2px;
}

.gallery-card dt,
.modal-summary dt {
  color: #6e6384;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card dd,
.modal-summary dd {
  margin: 0;
  color: #29233d;
  font-weight: 800;
}

.skill-tags,
.modal-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.skill-tags span,
.modal-tags span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f4eeff;
  color: #432c7a;
  font-size: .78rem;
  font-weight: 900;
}

.gallery-card .button {
  margin-top: auto;
}

.gallery-card--local h3 {
  min-height: 2.5em;
}

.empty-gallery {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(41,35,61,.12);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.empty-gallery h3 {
  margin: 0 0 8px;
  color: #29233d;
}

.project-modal[hidden] {
  display: none;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33,24,61,.48);
  backdrop-filter: blur(8px);
}

.project-modal__panel {
  position: relative;
  width: min(1060px, 100%);
  max-height: min(860px, calc(100vh - 44px));
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,246,240,.96)),
    #fff;
}

.project-modal__close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  z-index: 2;
  font-size: 1.5rem;
}

.modal-project-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.modal-media img,
.modal-media video,
.modal-media .gallery-card__placeholder {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(41,35,61,.12);
}

.modal-media video {
  background: #111;
  object-fit: contain;
}

.modal-media--local img,
.modal-media--local video {
  max-height: min(72vh, 680px);
  object-fit: contain;
}

.modal-summary h2 {
  margin: 14px 0 10px;
  color: #29233d;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.modal-summary p {
  color: #5f5674;
  line-height: 1.55;
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.modal-detail-grid article,
.modal-tags,
.modal-gallery {
  padding: 16px;
  border: 1px solid rgba(41,35,61,.12);
  border-radius: 8px;
  background: #fbf9ff;
}

.modal-detail-grid h3,
.modal-tags h3,
.modal-gallery h3 {
  margin: 0 0 8px;
  color: #432c7a;
  font-size: 1rem;
}

.modal-detail-grid p {
  margin: 0;
  color: #514869;
}

.modal-tags,
.modal-gallery,
.modal-actions {
  margin-top: 14px;
}

.modal-gallery {
  display: grid;
  gap: 14px;
}

.modal-gallery figure {
  margin: 0;
  display: grid;
  gap: 8px;
}

.modal-gallery img,
.modal-gallery video,
.modal-gallery iframe,
.model-file-preview {
  width: 100%;
  min-height: 220px;
  max-height: 520px;
  border: 1px solid rgba(41,35,61,.12);
  border-radius: 8px;
  background: #fff;
}

.modal-gallery img,
.modal-gallery video {
  object-fit: contain;
}

.model-file-preview {
  display: grid;
  place-items: center;
  color: #432c7a;
  font-weight: 900;
}

.modal-gallery figcaption {
  color: #5f5674;
  font-weight: 800;
}

.modal-actions {
  justify-content: space-between;
}

@media (max-width: 1020px) {
  .exhibition-entrance,
  .modal-project-layout {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-filters {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  body.digital-exhibition-page.page-body {
    padding-top: 72px;
  }

  .exhibition-entrance {
    margin-top: 18px;
  }

  .exhibition-entrance__copy {
    padding: 22px;
  }

  .exhibition-entrance,
  .gallery-filters,
  .gallery-grid,
  .classic-gallery > .section-header {
    width: min(calc(100% - 28px), 1180px);
  }
  .exhibition-stats,
  .gallery-grid,
  .gallery-filters,
  .modal-detail-grid {
    grid-template-columns: 1fr;
  }
  .exhibition-actions .button {
    width: 100%;
  }
  .project-modal {
    padding: 10px;
  }
}

/* Gallery performance rebuild - 2026-07-11-GALLERY-PERF-01 */
.gallery-first-page .gallery-page-hero {
  margin-bottom: 18px;
}

.gallery-page-hero .exhibition-message {
  color: #514869;
  font-weight: 800;
}

.gallery-summary-bar {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 30px;
  padding: 16px 18px;
  border: 1px solid rgba(92,59,200,.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(242,248,255,.9)),
    #fff;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(46,39,80,.07);
}

.gallery-summary-bar div {
  display: grid;
  gap: 4px;
}

.gallery-summary-bar strong {
  color: #29233d;
}

.gallery-summary-bar span {
  color: #5f5674;
  font-weight: 750;
  line-height: 1.45;
}

.gallery-summary-bar a {
  color: #432c7a;
  font-weight: 900;
  white-space: nowrap;
}

.gallery-primary-section {
  padding-bottom: 58px;
  scroll-margin-top: 104px;
}

.gallery-primary-section .section-title {
  max-width: 820px;
}

.gallery-filters {
  grid-template-columns: minmax(260px, 1.6fr) repeat(4, minmax(140px, 1fr));
}

.gallery-count {
  width: min(calc(100% - 40px), 1180px);
  margin: -4px auto 16px;
  color: #5f5674;
  font-weight: 850;
}

.gallery-card__media {
  aspect-ratio: var(--art-aspect, 16 / 10);
  min-height: 190px;
  max-height: 310px;
  background:
    linear-gradient(135deg, rgba(248,246,255,.9), rgba(236,246,252,.88)),
    #fff;
}

.gallery-card__media img {
  object-fit: contain;
  background: #fffefa;
}

.gallery-card__video-preview {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, #21183d, #365c88 56%, #6f5bd8),
    #21183d;
}

.gallery-card__video-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  filter: saturate(.9) contrast(1.04);
}

.gallery-card__video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0%, rgba(18,18,28,.18) 48%, rgba(18,18,28,.68) 100%),
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.24), transparent 28%);
  pointer-events: none;
}

.gallery-card__video-preview::before {
  position: relative;
  z-index: 2;
  background: #fff;
  box-shadow: 0 16px 30px rgba(14,13,24,.24);
}

.gallery-card__video-preview .gallery-card__play {
  position: relative;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #432c7a;
  box-shadow: 0 10px 18px rgba(14,13,24,.18);
}

/* Gallery-only release - 2026-07-11-HOME-LAYOUT-01 */
.digital-exhibition-page {
  --font-heading: var(--font-gallery-heading);
  --font-body: var(--font-gallery);
  --font-primary: var(--font-gallery);
  font-family: var(--font-gallery);
  letter-spacing: 0;
}

.digital-exhibition-page button,
.digital-exhibition-page input,
.digital-exhibition-page select,
.digital-exhibition-page textarea {
  font: inherit;
}

.digital-exhibition-page h1,
.digital-exhibition-page h2,
.digital-exhibition-page h3,
.digital-exhibition-page h4,
.digital-exhibition-page .section-title,
.digital-exhibition-page .logo-name {
  font-family: var(--font-gallery-heading);
  letter-spacing: 0;
}

.gallery-first-page .gallery-page-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
}

.gallery-first-page .exhibition-entrance__copy {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,243,236,.94) 58%, rgba(236,245,249,.96)),
    #fff;
}

.gallery-search-field {
  position: relative;
  min-width: 0;
}

.gallery-search-field input {
  width: 100%;
  padding-right: 88px;
}

.gallery-search-field button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(41,35,61,.12);
  border-radius: 7px;
  background: #f8f4ff;
  color: #432c7a;
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.featured-gallery {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 22px;
  padding: 18px;
  border: 1px solid rgba(41,35,61,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 34px rgba(46,39,80,.07);
}

.featured-gallery[hidden] {
  display: none !important;
}

.featured-gallery__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
}

.featured-gallery__header h3 {
  margin: 0;
  max-width: 620px;
  color: #29233d;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  line-height: 1.12;
}

.featured-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.featured-card {
  overflow: hidden;
  border: 1px solid rgba(41,35,61,.1);
  border-radius: 8px;
  background: #fff;
}

.featured-card .gallery-card__media {
  min-height: 170px;
  max-height: 260px;
}

.featured-card__body {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.featured-card__body span {
  color: #5c3bc8;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-card__body h4 {
  margin: 0;
  color: #29233d;
  line-height: 1.18;
}

.featured-card__body p {
  margin: 0;
  color: #6e6384;
  font-weight: 800;
}

.gallery-filters {
  grid-template-columns: minmax(260px, 1.6fr) repeat(4, minmax(128px, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: start;
}

.gallery-card {
  align-self: start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(92,59,200,.22);
  box-shadow: 0 22px 42px rgba(46,39,80,.12);
}

.gallery-card__media {
  aspect-ratio: var(--art-aspect, 16 / 10);
  min-height: 190px;
  max-height: none;
  background:
    linear-gradient(135deg, rgba(248,246,255,.9), rgba(236,246,252,.88)),
    #fff;
}

.gallery-card__media img {
  height: auto;
  min-height: 100%;
  object-fit: contain;
  background: #fffefa;
}

.gallery-card__meta {
  color: #6e6384;
  font-size: .92rem;
  font-weight: 820;
}

.gallery-card__file-preview {
  display: grid;
  place-items: center;
  color: #432c7a;
  font-weight: 950;
}

.gallery-card__file-preview span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 22px rgba(46,39,80,.08);
}

.gallery-load-more {
  width: min(calc(100% - 40px), 1180px);
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
}

.gallery-load-more .button[hidden] {
  display: none !important;
}

.modal-media {
  overflow: auto;
}

.modal-media img {
  transition: transform .18s ease;
  transform-origin: center;
  cursor: zoom-in;
}

.modal-media.is-zoomed img {
  transform: scale(1.38);
  cursor: zoom-out;
}

@media (max-width: 1120px) {
  .gallery-first-page .gallery-page-hero {
    grid-template-columns: 1fr;
  }
  .featured-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gallery-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .gallery-summary-bar,
  .featured-gallery {
    width: min(calc(100% - 28px), 1180px);
  }
  .gallery-summary-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-summary-bar a {
    white-space: normal;
  }
  .featured-gallery__header {
    display: grid;
    align-items: start;
  }
  .featured-gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery-first-page .exhibition-entrance h1 {
    font-size: clamp(2.25rem, 15vw, 3.8rem);
  }
  .gallery-filters {
    grid-template-columns: 1fr;
  }
  .gallery-card__media {
    min-height: 220px;
  }
  .modal-actions .button {
    flex: 1 1 150px;
  }
}

/* Visual polish pass: image sizing, crop control and card alignment */
img {
  height: auto;
}

:root {
  --icon-menu: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4%206h16M4%2012h16M4%2018h16'/%3E%3C/svg%3E");
  --icon-close: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M6%206l12%2012M18%206L6%2018'/%3E%3C/svg%3E");
  --icon-lock: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='4'%20y='11'%20width='16'%20height='9'%20rx='2'/%3E%3Cpath%20d='M8%2011V8a4%204%200%200%201%208%200v3'/%3E%3C/svg%3E");
  --icon-check: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%206L9%2017l-5-5'/%3E%3C/svg%3E");
  --icon-alert: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%209v4M12%2017h.01'/%3E%3Cpath%20d='M10.3%204.7L2.8%2018a2%202%200%200%200%201.7%203h15a2%202%200%200%200%201.7-3L13.7%204.7a2%202%200%200%200-3.4%200z'/%3E%3C/svg%3E");
  --icon-target: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='8'/%3E%3Ccircle%20cx='12'%20cy='12'%20r='3'/%3E%3Cpath%20d='M12%202v3M12%2019v3M2%2012h3M19%2012h3'/%3E%3C/svg%3E");
  --icon-users: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M16%2021v-2a4%204%200%200%200-4-4H6a4%204%200%200%200-4%204v2'/%3E%3Ccircle%20cx='9'%20cy='7'%20r='4'/%3E%3Cpath%20d='M22%2021v-2a4%204%200%200%200-3-3.87M16%203.13a4%204%200%200%201%200%207.75'/%3E%3C/svg%3E");
  --icon-user: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%2021a8%208%200%200%200-16%200'/%3E%3Ccircle%20cx='12'%20cy='7'%20r='4'/%3E%3C/svg%3E");
  --icon-screen: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='3'%20y='4'%20width='18'%20height='13'%20rx='2'/%3E%3Cpath%20d='M8%2021h8M12%2017v4'/%3E%3C/svg%3E");
  --icon-video: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='3'%20y='6'%20width='14'%20height='12'%20rx='2'/%3E%3Cpath%20d='M17%2010l4-2v8l-4-2z'/%3E%3C/svg%3E");
  --icon-clock: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='9'/%3E%3Cpath%20d='M12%207v5l3%202'/%3E%3C/svg%3E");
  --icon-heart: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20.8%204.6a5.5%205.5%200%200%200-7.8%200L12%205.7l-1-1.1a5.5%205.5%200%200%200-7.8%207.8l1%201L12%2021l7.8-7.6%201-1a5.5%205.5%200%200%200%200-7.8z'/%3E%3C/svg%3E");
  --icon-search: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='11'%20cy='11'%20r='7'/%3E%3Cpath%20d='M20%2020l-3.5-3.5'/%3E%3C/svg%3E");
  --icon-receipt: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M6%202h12v20l-3-2-3%202-3-2-3%202V2z'/%3E%3Cpath%20d='M9%207h6M9%2011h6M9%2015h4'/%3E%3C/svg%3E");
  --icon-shield: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.1'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%202l7%203v6c0%205-3.2%209.4-7%2011-3.8-1.6-7-6-7-11V5l7-3z'/%3E%3Cpath%20d='M9%2012l2%202%204-4'/%3E%3C/svg%3E");
}

.ui-icon,
.menu-icon {
  display: inline-block;
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  background: currentColor;
  vertical-align: -0.16em;
  -webkit-mask: var(--ui-icon) center / contain no-repeat;
  mask: var(--ui-icon) center / contain no-repeat;
}

.ui-icon-lock { --ui-icon: var(--icon-lock); }
.ui-icon-check { --ui-icon: var(--icon-check); }
.ui-icon-alert { --ui-icon: var(--icon-alert); }
.ui-icon-target { --ui-icon: var(--icon-target); }
.ui-icon-users { --ui-icon: var(--icon-users); }
.ui-icon-user { --ui-icon: var(--icon-user); }
.ui-icon-screen { --ui-icon: var(--icon-screen); }
.ui-icon-video { --ui-icon: var(--icon-video); }
.ui-icon-clock { --ui-icon: var(--icon-clock); }
.ui-icon-heart { --ui-icon: var(--icon-heart); }
.ui-icon-search { --ui-icon: var(--icon-search); }
.ui-icon-receipt { --ui-icon: var(--icon-receipt); }
.ui-icon-shield { --ui-icon: var(--icon-shield); }
.menu-icon { --ui-icon: var(--icon-menu); }

.mobile-menu-btn[aria-expanded="true"] .menu-icon {
  --ui-icon: var(--icon-close);
}

.radio-label .ui-icon,
.sec-badge .ui-icon,
.btn .ui-icon,
.btn-primary .ui-icon {
  margin-right: 8px;
}

.result-icon.ui-icon {
  margin-inline: auto;
}

.result-icon.ui-icon-alert {
  color: #dc2626;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.playful-navbar nav {
  min-width: 0;
  flex: 1 1 auto;
}

.navbar-inner {
  gap: 18px;
}

.nav-links {
  justify-content: flex-end;
  min-width: 0;
}

.static-header-actions .btn-nav-cta-secondary {
  display: inline-flex;
}

.btn-nav-cta {
  padding-inline: 16px;
}

.hero-img {
  height: auto;
  max-height: min(560px, 62vh);
  object-fit: contain;
  object-position: center;
}

.program-card {
  box-shadow: 0 10px 28px rgba(46, 39, 80, 0.1);
}

.program-card__body {
  gap: 10px;
  height: 100%;
  min-height: 0;
  padding: 22px 22px 20px;
}

.program-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: color-mix(in srgb, var(--card-accent, var(--lavender)), white 72%);
}

.program-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 48%;
}

.program-card__title {
  overflow-wrap: anywhere;
  line-height: 1.18;
}

.program-card__headline,
.program-card__desc,
.program-card__gains li,
.program-card__final {
  line-height: 1.42;
}

.program-card__desc {
  flex: 1 1 auto;
  margin-bottom: 4px;
}

.program-card__campaign {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--card-strong, var(--ink)), transparent 78%);
  border-radius: 999px;
  color: var(--card-strong, var(--ink));
  background: color-mix(in srgb, var(--card-accent, var(--lavender)), white 62%);
  box-shadow: 0 10px 22px rgba(41, 35, 61, 0.11);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.program-card__final {
  margin-bottom: 12px;
}

.program-card__divider {
  margin-top: 0;
}

.program-card__pricing {
  display: grid;
  align-items: start;
  justify-content: stretch;
  gap: 4px;
  margin-top: 0;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--border-c);
  border-radius: 10px;
  background: rgba(255,255,255,.72);
}

.program-card__pricing-label {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.program-card__pricing .price-installment {
  align-self: auto;
  padding-bottom: 0;
  text-align: left;
}

.program-card__pricing small {
  color: var(--text-muted);
  font-weight: 700;
}

.program-card__value-tags,
.program-value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.program-card__value-tags span,
.program-value-tags span {
  min-width: 0;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.program-discount-note {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.35;
}

.program-card__actions {
  margin-top: 0;
}

.program-card__actions a {
  min-width: 0;
}

.detail-hero__visual {
  max-width: 760px;
}

.detail-hero__visual img {
  width: 100%;
  height: auto;
  max-height: 420px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 48%;
}

.static-project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.piko-static img {
  width: min(220px, 70vw);
  height: auto;
  max-height: 340px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .hero-img {
    max-height: 330px;
  }

  .program-card__body {
    padding: 20px;
  }

  .program-card__pricing {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .program-card__pricing .price-installment {
    align-self: flex-start;
    padding-bottom: 0;
    text-align: left;
  }

  .detail-hero__visual img {
    max-height: 260px;
  }

  .piko-static {
    justify-items: center;
  }

  .piko-static img {
    width: min(180px, 62vw);
    max-height: 240px;
  }
}

@media (max-width: 860px) {
  .program-card__pricing {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .program-card__pricing .price-installment {
    align-self: flex-start;
    padding-bottom: 0;
    text-align: left;
  }
}

@media (max-width: 1180px) {
  .static-header-actions {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-img {
    max-height: 280px;
  }

  .program-card__body {
    padding: 18px;
  }
}

/* Education Packages Release - 2026-07-11-HOME-LAYOUT-01 */
.program-card--enterprise,
.fit-card--enterprise {
  --card-accent: var(--mint);
  --card-strong: #197d6a;
}

.program-card--comic,
.fit-card--comic {
  --card-accent: var(--warm-yellow);
  --card-strong: #9a5a12;
}

.program-card--video,
.fit-card--video {
  --card-accent: var(--blue-soft);
  --card-strong: #225d94;
}

.detail-hero--enterprise { --detail-accent: var(--mint); }
.detail-hero--comic { --detail-accent: var(--warm-yellow); }
.detail-hero--video { --detail-accent: var(--blue-soft); }

.btn-card-buy {
  background: var(--coral);
  box-shadow: 0 3px 12px rgba(240, 90, 58, 0.24);
}

.btn-card-buy:hover {
  background: var(--coral-dark);
  box-shadow: 0 6px 20px rgba(240, 90, 58, 0.34);
}

.program-card__final strong {
  color: var(--ink);
}

.program-card__actions {
  margin-top: auto;
}

.programs-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.programs-cta-actions .btn-cta-white {
  margin: 0;
}

.btn-table-detail {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.comparison-table {
  min-width: 980px;
}

.comparison-table td {
  line-height: 1.45;
  vertical-align: top;
}

.program-process-static {
  display: grid;
  gap: 12px;
}

.lesson-item-static {
  overflow: hidden;
  border: 1.5px solid var(--border-c);
  border-radius: 8px;
  background: var(--white);
}

.lesson-item-static summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  list-style: none;
}

.lesson-item-static summary::-webkit-details-marker {
  display: none;
}

.lesson-item-static summary span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  border-radius: 8px;
  background: var(--lila);
  color: var(--ink);
  font-weight: 800;
}

.lesson-item-static__body {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px 68px;
}

.lesson-item-static__body p {
  margin: 0;
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.62;
}

.detail-hero__price-box {
  width: min(360px, 100%);
}

.detail-price-discounted {
  overflow-wrap: anywhere;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
}

.detail-price-installment {
  color: var(--text-body);
  line-height: 1.55;
}

@media (max-width: 992px) {
  .program-cards-grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .programs-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lesson-item-static summary {
    grid-template-columns: 1fr;
  }

  .lesson-item-static__body {
    padding: 0 16px 16px;
  }

  .btn-table-detail {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .program-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Cross-page layout consistency release - 2026-07-21-LAYOUT-01 */
:root {
  --site-container-max: 1120px;
  --site-container-space: 40px;
}

.playful-navbar {
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(55, 50, 82, 0.12);
  box-shadow: 0 12px 28px rgba(46, 39, 80, 0.08);
  backdrop-filter: blur(18px);
}

.navbar-inner {
  max-width: var(--site-container-max);
  height: 72px;
  padding-inline: 0;
  gap: clamp(16px, 2vw, 26px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  max-width: 230px;
  color: var(--ink);
}

.logo .brand-mark,
.logo::before {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #55389c, #7f6eea 55%, #51a8d8);
  box-shadow: 0 10px 24px rgba(87, 70, 180, 0.24);
  font-family: var(--font-gallery-heading, "Noto Sans", system-ui, sans-serif);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.logo:not(.dsa-brand)::before {
  content: "DSA";
}

.logo.dsa-brand::before {
  content: none;
}

.logo-content {
  min-width: 0;
  gap: 2px;
}

.logo-name {
  color: var(--ink);
  font-family: var(--font-gallery-heading, "Noto Sans", system-ui, sans-serif);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
}

.logo-sub {
  max-width: 172px;
  color: var(--text-body);
  font-family: var(--font-gallery, "Noto Sans", system-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.nav-links a {
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--text-body);
  font-family: var(--font-gallery, "Noto Sans", system-ui, sans-serif);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #55389c;
  background: rgba(201, 184, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(117, 86, 201, 0.08);
}

.static-header-actions {
  gap: 10px;
}

.static-header-actions .btn-nav-cta-secondary {
  display: inline-flex;
}

.btn-nav-cta {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #55389c, #7556c9 64%, #58aee0);
  box-shadow: 0 14px 34px rgba(93, 74, 195, 0.28);
  font-family: var(--font-gallery, "Noto Sans", system-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
}

.btn-nav-cta-secondary {
  color: #55389c;
  border: 1px solid rgba(94, 76, 190, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(46, 39, 80, 0.08);
}

.programs-hero,
.basvuru-layout,
.student-categories,
.student-projects,
.piko-static,
.exhibition-entrance,
.gallery-summary-bar,
.classic-gallery > .section-header,
.gallery-filters,
.gallery-count,
.gallery-grid,
.featured-gallery,
.gallery-load-more,
.programs-cta-section,
.programs-footer,
.payment-prep-section {
  width: min(calc(100% - var(--site-container-space)), var(--site-container-max));
  margin-inline: auto;
}

.programs-hero,
.payment-prep-page {
  padding-right: max(20px, calc((100vw - var(--site-container-max)) / 2));
  padding-left: max(20px, calc((100vw - var(--site-container-max)) / 2));
}

.program-cards-grid,
.fit-grid-static,
.program-info-grid,
.student-category-grid,
.static-project-grid,
.gallery-grid {
  gap: clamp(16px, 2vw, 28px);
}

.program-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - var(--site-container-space)), var(--site-container-max));
  margin-inline: auto;
}

.program-info-grid .info-panel,
.locked-info-panel {
  min-height: 100%;
  border: 1px solid rgba(108, 76, 228, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.locked-content-card {
  border: 1px solid rgba(108, 76, 228, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 240, 255, 0.76));
}

.program-cards-grid {
  max-width: var(--site-container-max);
  margin-inline: auto;
}

.gallery-filters {
  gap: clamp(10px, 1.5vw, 16px);
}

.program-card__body,
.static-project-card > div,
.contact-form-block,
.piko-static,
.exhibition-entrance__copy,
.featured-gallery,
.gallery-card__body {
  padding: clamp(18px, 2.1vw, 24px);
}

footer {
  padding-right: max(20px, calc((100vw - var(--site-container-max)) / 2));
  padding-left: max(20px, calc((100vw - var(--site-container-max)) / 2));
}

.footer-top {
  gap: clamp(24px, 4vw, 40px);
}

@media (max-width: 1180px) {
  .navbar-inner {
    width: min(calc(100% - 40px), var(--site-container-max));
    padding-inline: 0;
  }

  .static-header-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --site-container-space: 40px;
  }

  .playful-navbar {
    position: sticky;
    top: 0;
    z-index: 80;
  }

  .navbar-inner {
    height: 72px;
    position: relative;
  }

  .playful-navbar .nav-links.open,
  .playful-navbar .nav-links.active {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(117, 86, 201, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(46, 39, 80, 0.14);
    backdrop-filter: blur(16px);
  }

  .playful-navbar .nav-links.open a,
  .playful-navbar .nav-links.active a {
    justify-content: flex-start;
    min-height: 42px;
    width: 100%;
  }

  .logo .brand-mark,
  .logo::before {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .logo-sub {
    max-width: 132px;
    font-size: 0.68rem;
  }

  .programs-hero,
  .basvuru-layout,
  .student-categories,
  .student-projects,
  .piko-static,
  .exhibition-entrance,
  .gallery-summary-bar,
  .classic-gallery > .section-header,
  .gallery-filters,
  .gallery-count,
  .gallery-grid,
  .featured-gallery,
  .gallery-load-more,
  .programs-cta-section,
  .programs-footer,
  .payment-prep-section {
    width: min(calc(100% - 40px), var(--site-container-max));
  }

  .program-cards-grid,
  .fit-grid-static,
  .program-info-grid,
  .student-category-grid,
  .static-project-grid,
  .gallery-grid {
    gap: 16px;
  }

  .program-info-grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), var(--site-container-max));
  }

  .program-card__body,
  .static-project-card > div,
  .contact-form-block,
  .piko-static,
  .exhibition-entrance__copy,
  .featured-gallery,
  .gallery-card__body {
    padding: 18px;
  }
}

footer.dsa-static-footer.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.18fr) repeat(5, minmax(0, 0.8fr));
  gap: clamp(20px, 2.6vw, 30px);
  width: min(calc(100% - var(--site-container-space)), var(--site-container-max));
  margin: 0 auto 28px;
  padding: 34px 0;
  color: var(--ink);
  border-top: 1px solid rgba(28, 43, 110, 0.12);
  background: transparent;
}

.dsa-static-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  color: var(--ink);
  text-decoration: none;
}

.dsa-static-footer .brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #55389c, #7556c9 58%, #58aee0);
  box-shadow: 0 10px 24px rgba(85, 56, 156, 0.22);
  font-family: var(--font-gallery, "Noto Sans", system-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.dsa-static-footer .brand strong,
.dsa-static-footer .brand small {
  display: block;
  letter-spacing: 0;
}

.dsa-static-footer .brand strong {
  color: var(--ink);
  font-family: var(--font-gallery-heading, "Noto Sans", system-ui, sans-serif);
  font-size: 1rem;
  line-height: 1.05;
}

.dsa-static-footer .brand small {
  max-width: 150px;
  color: var(--text-body);
  font-family: var(--font-gallery, "Noto Sans", system-ui, sans-serif);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.15;
}

.dsa-static-footer .footer-brand p {
  max-width: 410px;
  margin: 14px 0 0;
  color: var(--text-body);
  font-family: var(--font-gallery, "Noto Sans", system-ui, sans-serif);
  font-size: 0.94rem;
  line-height: 1.65;
}

.dsa-static-footer .footer-group {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.dsa-static-footer .footer-group h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--font-gallery-heading, "Noto Sans", system-ui, sans-serif);
  font-size: 0.98rem;
  line-height: 1.15;
}

.dsa-static-footer .footer-group a {
  min-width: 0;
  color: var(--text-body);
  font-family: var(--font-gallery, "Noto Sans", system-ui, sans-serif);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.dsa-static-footer .footer-group a:hover {
  color: #55389c;
}

.dsa-static-footer .footer-social-account {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.dsa-static-footer .footer-social-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #55389c;
  background: rgba(201, 184, 255, 0.3);
}

.dsa-static-footer .footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.dsa-static-footer .footer-social-account span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.dsa-static-footer .footer-social-account strong,
.dsa-static-footer .footer-social-account small {
  overflow-wrap: anywhere;
}

.dsa-static-footer .footer-social-account small {
  color: #55389c;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  footer.dsa-static-footer.site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  footer.dsa-static-footer.site-footer {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), var(--site-container-max));
    padding-block: 30px;
  }
}

/* Header spacing refinement - 2026-07-29-HEADER-01 */
.playful-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 253, 248, 0.96);
}

.navbar-inner {
  width: min(calc(100% - 48px), 1180px);
  max-width: 1180px;
  min-height: 84px;
  height: auto;
  padding-inline: 0;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 46px);
}

.logo {
  gap: 14px;
  min-width: 236px;
  max-width: 260px;
  margin-right: clamp(26px, 3vw, 42px);
}

.logo .brand-mark,
.logo::before {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}

.logo > span:last-child,
.logo-content {
  display: grid;
  gap: 3px;
  align-content: center;
  min-width: 0;
}

.logo strong,
.logo-name {
  color: var(--ink);
  font-family: var(--font-gallery-heading, "Noto Sans", system-ui, sans-serif);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.08;
}

.logo small,
.logo-sub {
  max-width: none;
  color: var(--text-body);
  font-family: var(--font-gallery, "Noto Sans", system-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.playful-navbar nav {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: clamp(28px, 3vw, 44px);
  padding-left: clamp(18px, 2.1vw, 28px);
  border-left: 1px solid rgba(85, 56, 156, 0.13);
}

.nav-links {
  justify-content: flex-end;
  gap: 9px;
  margin-left: clamp(24px, 2.5vw, 36px);
}

.nav-links a {
  min-height: 38px;
  padding: 0 11px;
  border-radius: 10px;
  font-size: 0.84rem;
  line-height: 1.1;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(201, 184, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(117, 86, 201, 0.07);
}

.static-header-actions {
  gap: 12px;
  margin-left: clamp(6px, 1vw, 16px);
}

.btn-nav-cta {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.82rem;
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1320px) {
  .static-header-actions .btn-nav-cta-secondary {
    display: none;
  }
}

@media (max-width: 1180px) {
  .navbar-inner {
    width: min(calc(100% - 40px), 1120px);
    min-height: 80px;
    gap: 24px;
  }

  .logo {
    min-width: 226px;
    max-width: 250px;
  }

  .playful-navbar nav {
    padding-left: 18px;
    margin-left: 24px;
  }

  .nav-links {
    gap: 7px;
    margin-left: 24px;
  }

  .nav-links a {
    padding-inline: 9px;
    font-size: 0.8rem;
  }

  .static-header-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    width: min(calc(100% - 40px), 1120px);
    min-height: 76px;
    gap: 16px;
  }

  .logo {
    gap: 12px;
    min-width: 0;
    max-width: min(252px, calc(100vw - 106px));
    margin-right: 0;
  }

  .logo .brand-mark,
  .logo::before {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 11px;
  }

  .logo strong,
  .logo-name {
    font-size: 0.98rem;
  }

  .logo small,
  .logo-sub {
    max-width: 158px;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .playful-navbar nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 1001;
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .nav-links {
    margin-left: 0;
  }
}

@media (max-width: 390px) {
  .navbar-inner {
    width: min(calc(100% - 32px), 1120px);
    gap: 12px;
  }

  .logo {
    gap: 10px;
    max-width: calc(100vw - 104px);
  }

  .logo .brand-mark,
  .logo::before {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .logo small,
  .logo-sub {
    max-width: 146px;
    font-size: 0.68rem;
  }

  .mobile-menu-btn {
    width: 42px;
    height: 42px;
  }
}

/* Header collision guard - 2026-07-29-HEADER-HERO-01 */
:root {
  --header-height: 84px;
  --header-container-max: 1280px;
}

.page-body {
  padding-top: var(--header-height);
}

body.digital-exhibition-page.page-body {
  padding-top: var(--header-height);
}

.playful-navbar {
  height: var(--header-height);
  z-index: 1000;
  overflow: visible;
}

.navbar-inner {
  width: min(calc(100% - 48px), var(--header-container-max));
  max-width: var(--header-container-max);
  height: 100%;
  min-height: 0;
}

.playful-navbar nav {
  min-width: 0;
}

.nav-links {
  min-width: 0;
}

.logo,
.logo .brand-mark,
.logo::before {
  position: relative;
  z-index: 2;
}

@media (max-width: 1600px) {
  .static-header-actions .btn-nav-cta-secondary {
    display: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .playful-navbar nav {
    z-index: 1100;
  }
}
