/* --- Ortak Değişkenler ve Reset Stilleri --- */
:root {
    --primary-color: #0d6efd; 
    --primary-hover: #0b5ed7; 
    --secondary-color: #f8f9fa; 
    --dark-color: #212529; 
    --muted-color: #6c757d; 
    --light-color: #ffffff; 
    --border-color: #e9ecef; 
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    
    /* YENİ MARKA VE BUTON RENKLERİ */
    --brand-color: #ff5722; 
    --accent-red: #dc3545; /* Kırmızı */
    --accent-purple: #6f42c1; /* Mor */
    
    /* Modül Renkleri (7 Modül için güncellendi) */
    --module-color-1: #007bff; /* Mavi - Yatırım */
    --module-color-2: #6f42c1; /* Mor - Ar-Ge */
    --module-color-3: #fd7e14; /* Turuncu - İhracat */
    --module-color-4: #198754; /* Yeşil - Personel */
    --module-color-5: #dc3545; /* Kırmızı - Sermaye/Finans */
    --module-color-6: #28a745; /* Koyu Yeşil - Sürdürülebilirlik */
    --module-color-7: #6c757d; /* Gri - Diğer */

    /* Durum Renkleri */
    --success-bg: #d1e7dd; 
    --warning-bg: #fff3cd; 
    --danger-bg: #f8d7da; /* Hafif Kırmızı Dolgu */
    
    /* Adım Renkleri */
    --step-color-1: #6f42c1; 
    --step-color-2: #fd7e14; 
    --step-color-3: #198754;
}
/* GENEL RESET VE TEMEL STİLLER */
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; margin: 0; background-color: var(--secondary-color); color: var(--dark-color); line-height: 1.7; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }

/* --- Header ve Logo --- */
.header { background-color: var(--light-color); padding: 15px 0; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header .brand { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; color: var(--dark-color); }
.header .brand .logo-img { height: 68px; margin-bottom: 0px; }
.header .brand .main-title-wrapper { display: flex; align-items: baseline; margin-top: 5px; }
.header .brand .main-title-wrapper .compass-icon { font-size: 24px; margin-right: 8px; line-height: 1; color: var(--brand-color); }
.header .brand .logo-text { 
    font-family: 'Poppins', sans-serif; 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--brand-color); 
    line-height: 1.2; 
    text-align: left; 
    display: inline; 
}
.header .brand .version-text { 
    font-family: 'Poppins', sans-serif; 
    font-weight: 500; 
    font-size: 14px; 
    margin-left: 8px;
    color: var(--muted-color); 
    opacity: 0.8;
}
.header nav a { margin: 0 15px; text-decoration: none; color: var(--dark-color); font-weight: 500; transition: color 0.3s ease; }
.header nav a:hover { color: var(--primary-color); }

/* --- Genel Buton Stilleri --- */
.btn { padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; display: inline-block; text-align: center; border: 1px solid transparent; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background-color: var(--primary-color); color: var(--light-color); border-color: var(--primary-color); }
.btn-primary:hover { background-color: var(--primary-hover); border-color: var(--primary-hover); }
.btn-light { background-color: var(--secondary-color); color: var(--dark-color); border-color: var(--border-color); }
.btn-light:hover { background-color: #e9e9e9; border-color: #d1d1d1; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* --- Modül İçi Navigasyon Butonları (Önceki/Sonraki) --- */
.navigation-buttons .btn-primary { /* Sonraki/Bitir Butonu: MOR */
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 4px 10px rgba(111, 66, 193, 0.3);
}
.navigation-buttons .btn-primary:hover {
    background-color: #5d38a8;
    border-color: #5d38a8;
}
.navigation-buttons .btn-light { /* Önceki Butonu: KIRMIZI */
    background-color: var(--accent-red); 
    border-color: var(--accent-red);
    color: var(--light-color);
}
.navigation-buttons .btn-light:hover {
    background-color: #b32a35;
    border-color: #b32a35;
}


/* --- Hero Section --- */
.hero { 
    position: relative; 
    color: var(--light-color); 
    text-align: center; 
    padding: 120px 20px; 
    background-image: url('destek.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    transition: opacity 0.01s ease, transform 0.5s ease, height 0.5s ease, padding 0.5s ease; 
}
.hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background-color: rgba(15, 23, 42, 0.45); 
    z-index: 1; 
}
.hero-content { 
    position: relative; 
    z-index: 5; 
}
.hero h1 { font-size: 48px; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
.hero p { font-size: 20px; max-width: 700px; margin: 0 auto 30px auto; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); font-weight: 400; }
.btn-light { background-color: var(--light-color); color: var(--primary-color); }
#start-button {
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 700;
}
.time-info { color: var(--light-color); font-size: 24px; font-weight: 500; margin-top: 25px; display: flex; align-items: center; justify-content: center; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
.time-info i { margin-right: 12px; font-size: 28px; }

/* --- 3 Adım Bölümü --- */
.steps-section { padding: 80px 0; transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease, padding 0.5s ease; }
.steps-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.section-title { font-size: 36px; font-weight: 700; color: var(--dark-color); margin-top: 0; margin-bottom: 60px; text-align: center; }
.step-item { flex-basis: calc(33.33% - 40px); max-width: 300px; background-color: #f8f9fa; border-radius: 15px; padding: 30px 20px; box-shadow: var(--box-shadow); border: 1px solid var(--border-color); display: flex; flex-direction: column; align-items: center; transition: transform 0.3s ease; text-align: center; }
.step-item:hover { transform: translateY(-10px); }
.step-item .icon-wrapper { width: 70px; height: 70px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-bottom: 25px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.step-item .icon-wrapper i { font-size: 35px; color: var(--light-color); }
.step-item:nth-child(1) .icon-wrapper { background-color: var(--step-color-1); } .step-item:nth-child(2) .icon-wrapper { background-color: var(--step-color-2); } .step-item:nth-child(3) .icon-wrapper { background-color: var(--step-color-3); }
.step-item h3 { font-size: 22px; font-weight: 700; margin-bottom: 15px; color: var(--dark-color); }
.step-item p { color: var(--muted-color); font-size: 15px; line-height: 1.6; }

/* --- Amaç ve Faydalar Bölümü --- */
.purpose-section { padding: 80px 0; background-color: #f8f9fa; transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease, padding 0.5s ease; }
.purpose-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.purpose-card { background-color: var(--light-color); border-radius: 10px; padding: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); border: 1px solid var(--border-color); }
.purpose-card h3 { font-size: 24px; font-weight: 600; color: var(--dark-color); margin-top: 0; margin-bottom: 20px; }
.purpose-card ul { list-style: none; padding: 0; margin: 0; }
.purpose-card ul li { display: flex; align-items: flex-start; margin-bottom: 15px; font-size: 16px; color: #495057; text-align: left; }
.purpose-card ul li i { color: var(--primary-color); margin-right: 12px; margin-top: 5px; flex-shrink: 0; }
.purpose-card ul li div { flex: 1; } 

/* --- Kaynaklar Bölümü --- */
.resources-section { padding: 80px 0; background-color: var(--secondary-color); transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease, padding 0.5s ease; }
.resources-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.resource-card { background-color: var(--light-color); border-radius: 8px; padding: 25px 30px; border: 1px solid var(--border-color); box-shadow: 0 4px 6px rgba(0,0,0,0.04); }
.resource-card h3 { font-size: 22px; margin-top: 0; margin-bottom: 20px; font-weight: 600; }
.resource-card ul { list-style: none; padding: 0; margin: 0; }
.resource-card ul li { border-bottom: 1px solid var(--border-color); padding: 12px 0; }
.resource-card ul li:last-child { border-bottom: none; }
.resource-card ul a { text-decoration: none; color: var(--primary-color); font-weight: 500; font-size: 16px; }
.resource-card ul a:hover { text-decoration: underline; }
.resource-card ul a i { margin-right: 8px; }

/* --- Main Content ve Analiz Animasyonları --- */
.main-content { padding: 80px 0; display: none; }
#analysis-container { min-height: 400px; }
.module { max-width: 960px; background-color: var(--light-color); margin: 0 auto; border-radius: 10px; overflow: hidden; box-shadow: var(--box-shadow); border: 1px solid var(--border-color); }
.module-body { padding: 30px; overflow: hidden; position: relative; }
.question-wrapper { position: relative; width: 100%; }
.slide-in { animation: slideInRight 0.6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide-out { animation: slideOutLeft 0.6s forwards cubic-bezier(0.55, 0.085, 0.68, 0.53); }
.slide-out-rev { animation: slideOutRight 0.6s forwards cubic-bezier(0.55, 0.085, 0.68, 0.53); }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutLeft { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-100%); opacity: 0; } }
@keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } } 

/* MODÜL VE İLERLEME BAŞLIKLARI (YENİ ÇİFTLİ HİYERARŞİ) */
.module-header { 
    color: var(--light-color); 
    padding: 20px; 
    /* Başlığı ve ilerleme bilgisini tek bir alanda tutar */
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: flex-start;
    position: relative; /* İçindeki öğeleri konumlandırmak için */
}

/* ESKİ TEK SPAN YAPISINI GİZLİYORUZ (script.js'te Pre-Module için kullanılıyordu) */
.module-header > .module-progress {
    display: none; 
}


/* YENİ: İlerleme bilgisini sarmalayan div */
.module-header .progress-info-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%; /* Tüm alanı kapla */
    order: 1; /* H2'den önce gelsin */
    margin-bottom: 5px;
}

/* YENİ: Sola dayalı Modül İlerleme Metni (Modül X/Y) - Büyütüldü */
.module-header .main-progress-text {
    font-size: 20px; /* Büyütüldü */
    font-weight: 900; /* Daha kalın yapıldı */
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-color);
}

/* YENİ: Sağa dayalı Soru İlerleme Metni (Soru Z/X) - Font korundu */
.module-header .sub-progress-text {
    font-size: 14px; 
    font-weight: 500; 
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}


/* Ana Başlık (Modül Adı) */
.module-header h2 { 
    /* H2 başlığını alt satıra itecek şekilde genişletiyoruz */
    margin: 0;
    font-size: 26px; 
    display: flex; 
    align-items: center; 
    color: var(--light-color); 
    font-weight: 700;
    flex-basis: 100%; /* Tüm satırı kapla */
    order: 3; /* En alt sıraya it */
}
.module-header h2 i { 
    margin-right: 15px; 
    font-size: 28px; 
    width: 30px; 
    text-align: center; 
}


#module1 .module-header { background-color: var(--module-color-1); } 
#module2 .module-header { background-color: var(--module-color-2); } 
#module3 .module-header { background-color: var(--module-color-3); } 
#module4 .module-header { background-color: var(--module-color-4); } 
#module5 .module-header { background-color: var(--module-color-5); }
#module6 .module-header { background-color: var(--module-color-6); }
#module7 .module-header { background-color: var(--module-color-7); }
#pre-module .module-header { background-color: var(--primary-color); } 

.question p { font-size: 18px; margin: 0 0 20px 0; font-weight: 500; }

/* --- EVET/HAYIR BUTON GÖRSELLİĞİ (Pre-Module ve Main Questions) --- */
.rating { display: flex; justify-content: center; align-items: center; gap: 40px; }
.rating-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    cursor: pointer; 
    padding: 10px 20px; 
    border-radius: 10px; 
    border: 2px solid var(--muted-color); 
    min-width: 80px; 
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.rating-item:hover { 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.rating-item span { 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--dark-color); 
    margin-top: 0;
}
.rating-item input[type="radio"] { display: none; }
.rating-item .radio-dot { display: none; } 

/* Ticari Profil Butonlarını İki Satıra Bölme */
#pre-module .rating.multi-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütunlu ızgara */
    gap: 10px; 
    justify-content: start;
}
#pre-module .rating-item {
    padding: 10px 15px;
    min-width: unset;
    box-shadow: none;
    font-size: 14px;
}
#pre-module .rating-item span {
    font-size: 14px;
}

/* Vurgulama Stilleri (JAVASCRIPT İLE is-selected SINIFI KULLANILARAK KESİN ÇÖZÜM) */

.rating-item {
    transition: all 0.3s ease;
    border: 2px solid var(--muted-color); 
}

/* SEÇİLMİŞ BUTON: Kırmızı Vurgu (HAYIR) */
.rating-item.is-selected-no {
    background-color: var(--danger-bg); 
    border: 3px solid var(--accent-red);
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
    transform: scale(1.05);
}
.rating-item.is-selected-no span {
    color: var(--dark-color) !important; /* Etiket Rengi Kesinlikle Koyu Kalsın */
}

/* SEÇİLMİŞ BUTON: Mor Vurgu (EVET) */
.rating-item.is-selected-yes {
    background-color: #ede7f6;
    border: 3px solid var(--accent-purple);
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.5);
    transform: scale(1.05);
}
.rating-item.is-selected-yes span {
    color: var(--dark-color) !important; /* Etiket Rengi Kesinlikle Koyu Kalsın */
}


/* Checkbox Görünümü Düzeltme: Checkbox'lar radyo butonu görselini almasın */
.checkbox-item {
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
.checkbox-item input[type="checkbox"]:checked:after {
    color: var(--primary-color);
}


/* --- KOŞULLU ALANLAR --- */
.note-container p { font-family: 'Poppins', sans-serif; font-style: normal; font-size: 16px; color: var(--dark-color); font-weight: 500; margin: 0 0 15px 0; text-align: left; }
.note-area textarea, .note-area input[type="text"], .note-area input[type="number"] { width: 100%; box-sizing: border-box; border: 2px solid var(--border-color); padding: 10px; font-family: 'Poppins', sans-serif; font-size: 14px; }
.note-area input[type="text"] { height: 40px; margin-bottom: 0px; } /* Harcama tutarı için yükseklik düzeltildi */
.note-area textarea:focus, .note-area input[type="text"]:focus, .note-area input[type="number"]:focus { border-color: var(--primary-color); box-shadow: 0 0 8px rgba(13, 110, 253, 0.25); outline: none; }
.note-container.hidden { display: none; }

/* --- YENİ SONUÇ SAYFASI STİLLERİ --- */
.results-card { 
    text-align: center; 
    background-color: var(--light-color); 
    padding: 40px; 
    border-radius: 15px; 
    box-shadow: var(--box-shadow); 
    border: 1px solid var(--border-color); 
    position: relative; 
}
.results-card .lead { font-size: 18px; color: var(--muted-color); margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.results-header-icon { font-size: 4em; display: inline-block; margin-bottom: 20px; color: #198754; } 

.general-assessment { text-align: left; margin: 40px 0; padding: 25px; background-color: #f8f9fa; border-left: 5px solid #198754; border-radius: 5px; }
.general-assessment h3 { margin-top: 0; color: #198754; } 
.general-assessment p { font-size: 16px; line-height: 1.8; }

.cta-section { 
    margin: 40px 0; 
    padding: 30px; 
    background-color: #198754; 
    color: var(--light-color); 
    border-radius: 10px; 
    text-align: center; 
}
.cta-section h3 { font-size: 24px; color: var(--light-color); }
.cta-section p { color: #e2f4e4; } 

.email-status { margin-top: 30px; font-size: 15px; color: var(--muted-color); height: 20px; }

.results-summary { list-style: none; padding: 0; margin: 40px 0 0 0; text-align: left; }
.results-summary h3 { margin-bottom: 20px; }
.results-summary li { display: flex; justify-content: space-between; align-items: flex-start; padding: 20px; border-radius: 8px; margin-bottom: 15px; background-color: var(--secondary-color); border-left: 5px solid; }
.module-details .module-info { font-size: 18px; font-weight: 600; display: flex; align-items: center; margin-bottom: 10px; }
.module-details .module-info i { margin-right: 15px; font-size: 20px; width: 25px; }
.module-advice { font-size: 15px; color: var(--muted-color); padding-top: 10px; border-top: 1px solid var(--border-color); margin-top: 10px; }
.results-summary .module-final-score { font-size: 28px; font-weight: 700; }

#result-module1 { border-color: var(--module-color-1); } #result-module1 i, #result-module1 .module-final-score { color: var(--module-color-1); }
#result-module2 { border-color: var(--module-color-2); } #result-module2 i, #result-module2 .module-final-score { color: var(--module-color-2); }
#result-module3 { border-color: var(--module-color-3); } #result-module3 i, #result-module3 .module-final-score { color: var(--module-color-3); }
#result-module4 { border-color: var(--module-color-4); } #result-module4 i, #result-module4 .module-final-score { color: var(--module-color-4); }
#result-module5 { border-color: var(--module-color-5); } #result-module5 i, #result-module5 .module-final-score { color: var(--module-color-5); }
#result-module6 { border-color: var(--module-color-6); } #result-module6 i, #result-module6 .module-final-score { color: var(--module-color-6); }
#result-module7 { border-color: var(--module-color-7); } #result-module7 i, #result-module7 .module-final-score { color: var(--module-color-7); }


/* --- FOOTER VE MOBİL STİLLERİ --- */

/* FOOTER DÜZENİ */
.footer { 
    background-color: var(--dark-color); 
    color: #ced4da; 
    padding: 30px 0; 
    font-size: 14px; 
    text-align: center; 
}
.footer .container {
    padding-bottom: 20px; /* Sosyal ikonlar için boşluk */
}
.footer .footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Üstten başlasınlar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.footer-col {
    flex-basis: 50%;
    max-width: 50%;
}
.footer-col.left-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px; /* Alt alta gelen satırlar arası boşluk */
    padding-right: 20px;
}
.footer-col.right-col {
    text-align: center; /* İletişim bloklarının ortalanması için */
    padding-left: 20px;
}
.footer .copyright, .footer .ai-note, .footer .version-text {
    margin: 0;
    line-height: 1.5;
}

/* İletişim Linkleri (Sağ Sütun) */
.footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center; /* İletişim bloklarını ortala */
    gap: 10px;
}
.footer .contact-item {
    display: flex;
    align-items: center;
    color: var(--ced4da);
}
.footer .contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}
.footer .contact-item a {
    color: var(--ced4da);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer .contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Sosyal İkonlar (Ortalanmış) */
.footer .social-icons-wrapper {
    width: 100%;
    text-align: center; /* İkonları ortalar */
}
.footer .social-icons {
    display: inline-flex; /* İçindeki ikonları yan yana getirir */
    gap: 15px;
    margin-top: 0;
}
.footer .social-link {
    width: 35px;
    height: 35px;
    background-color: #495057; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}
.footer .social-link:hover {
    transform: translateY(-3px);
}
.footer .social-link.linkedin:hover { background-color: #0077b5; }
.footer .social-link.instagram:hover { background-color: #e4405f; }
.footer .social-link.facebook:hover { background-color: #3b5998; }
.footer .social-link.youtube:hover { background-color: #ff0000; }

/* MODAL STİLLERİ */
.modal-backdrop { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.6); 
    display: none; 
    justify-content: center; 
    align-items: center; 
    z-index: 2000; 
    padding: 20px; 
    box-sizing: border-box; 
}
#kvkk-modal { z-index: 2001; }
.modal-content { 
    background-color: var(--light-color); 
    padding: 40px; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
    max-width: 800px; 
    width: 100%; 
    position: relative; 
    animation: fadeIn 0.4s; 
    max-height: 90vh; 
    overflow-y: auto; 
}
.modal-content.modal-lg { max-width: 800px; }
.modal-content h2 { margin-top: 0; color: var(--primary-color); }
.modal-intro { font-size: 15px; color: var(--muted-color); margin-bottom: 25px; line-height: 1.6; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 28px; font-weight: bold; color: #aaa; cursor: pointer; }
.close-modal:hover { color: var(--dark-color); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 14px; }
.form-group input { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 5px; font-size: 16px; box-sizing: border-box; }
.form-group input:focus { border-color: var(--primary-color); box-shadow: 0 0 8px rgba(13, 110, 253, 0.25); outline: none; }
#user-info-form {
    display: flex;
    flex-wrap: wrap; 
    gap: 0 40px; 
}
#user-info-form > .form-group {
    flex-basis: calc(50% - 20px); 
    max-width: calc(50% - 20px);
    box-sizing: border-box;
}
#user-info-form > .form-group-checkbox,
#user-info-form > button[type="submit"] {
    flex-basis: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}
#user-info-form > .form-group-checkbox:nth-of-type(6) {
    margin-top: 25px; 
}
.form-group-checkbox { display: flex; align-items: center; margin-top: 20px; }
.form-group-checkbox input[type="checkbox"] { width: 1.2em; height: 1.2em; margin-right: 10px; }
.form-group-checkbox label { margin-bottom: 0; font-size: 14px; }
.form-group-checkbox a { color: var(--primary-color); text-decoration: underline; font-weight: 600; }
.kvkk-text { text-align: left; font-size: 14px; }
.kvkk-text h4 { margin-top: 20px; margin-bottom: 5px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* --- MOBİL UYUMLULUK --- */
@media (max-width: 850px) { 
    .modal-content { 
        max-width: 90%; 
        padding: 20px;
    }
    #user-info-form > .form-group {
        flex-basis: 100%; 
        max-width: 100%;
    }
    #user-info-form {
        gap: 0;
    }
    
    /* Mobil Footer Düzeni */
    .footer .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 10px;
    }
    .footer-col {
        flex-basis: 100%;
        max-width: 100%;
        padding: 10px 0;
    }
    .footer-col.left-col {
        text-align: center;
        align-items: center;
        padding-right: 0;
        margin-bottom: 10px;
    }
    .footer-col.right-col {
        padding-left: 0;
    }
    .footer .footer-links {
        align-items: center;
    }
    .footer .contact-item {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .module-header { padding: 15px; }
    .module-body { padding: 20px 10px; }
    
    .module-header h2 { font-size: 18px; }
    .module-header h2 i { margin-right: 10px; }
    
    /* Mobil görünümde ilerleme yazısını düzeltme */
    .module-header .main-progress-text { font-size: 16px; }
    .module-header .sub-progress-text { font-size: 12px; }

    .rating {
        flex-wrap: wrap;
        justify-content: center; 
        gap: 20px; 
    }
    .rating-item {
        flex-basis: 45%; 
        min-width: unset;
        padding: 10px 15px;
        box-sizing: border-box; 
    }
    
    .rating-item span { font-size: 14px; text-align: center; }
}