/* ============================================
   BAŞLANGIÇ RİTİM SİSTEMİ - LANDING PAGE
   Dr. Murat Vural - Profesyonel Tasarım
   ============================================ */

/* ---------- FONT İMPORTLARI ---------- */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Lato:wght@400;700&display=swap');

/* ---------- CSS DEĞİŞKENLERİ - FOLİOFLİX RENK PALETİ ---------- */
:root {
    /* FOLİOFLİX RENKLERİ - BİREBİR */
    --primary-color: #3f396d;
    --secondary-color: #07003b;
    --accent: #fca61f;
    --text-color: #7d7789;
    --off-white-color: #f0f4ff;
    --light-purple-color: #6f34fe;
    --white-color: #fff;
    --light-grey-color: #f2f2ff;
    
    /* Fontlar - FOLİOFLİX */
    --font-family: 'Josefin Sans', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    /* Eski değişkenler (uyumluluk için) */
    --color-primary: #3f396d;
    --color-primary-light: #1B72E8;
    --color-accent: #FFD700;
    --color-accent-dark: #E6B800;
    --color-purple: #6f34fe;
    
    /* Metin Renkleri */
    --color-text-dark: #3f396d;
    --color-text-body: #7d7789;
    --color-text-muted: #7d7789;
    --color-text-light: #8792A2;
    
    /* Arka Plan Renkleri */
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F6F9FC;
    --color-bg-blue-light: #E3F2FD;
    --color-bg-dark: #0A2540;
    
    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.12);
    --shadow-xl: 0 30px 80px rgba(10, 37, 64, 0.16);
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-sm: 80px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ---------- RESET & TEMEL ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--color-text-body);
    background: var(--color-bg-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Paragraflar için Lato */
p, .text-body {
    font-family: var(--font-body);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- BOOTSTRAP GRID (FOLİOFLİX) ---------- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-lg-7, .col-lg-5, .col-lg-6, .col-lg-4, .col-md-6, .col-md-12 {
    padding: 0 15px;
    width: 100%;
}
@media (min-width: 992px) {
    .col-lg-7 { width: 58.333%; }
    .col-lg-5 { width: 41.667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-4 { width: 33.333%; }
}
@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
}
.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.flex-column { flex-direction: column; }
.text-center { text-align: center; }
.position-relative { position: relative; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }

/* ============================================
   FOLİOFLİX HERO BÖLÜMÜ - BİREBİR
   ============================================ */
.header-and-banner-con {
    background: rgb(242,242,255);
    background: linear-gradient(33deg, rgba(242,242,255,1) 0%, rgba(235,249,255,1) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.banner-main-con {
    padding-top: 40px;
    padding-bottom: 80px;
}

.banner-con {
    text-align: left;
}

.banner-left-con {
    padding-right: 20px;
}

/* HERO BÖLÜMÜ - Z KUŞAĞI ODAKLI */

/* Ana başlık - büyük, vurgulu */
.hero-main-title {
    font-size: 44px;
    line-height: 1.3;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

/* Alt başlık - daha küçük, destek */
.hero-sub-title {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--light-purple-color);
    margin-bottom: 32px;
    letter-spacing: -0.2px;
}

/* Empatik açıklama - orta, okunaklı */
.hero-empathy {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

/* Çözüm mesajı - mor vurgu */
.hero-solution {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 18px;
    font-family: 'Lato', sans-serif;
}

.hero-solution strong {
    color: var(--light-purple-color);
    font-weight: 700;
}

/* Söz/Promise mesajı - turuncu vurgu */
.hero-promise {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 0;
    font-family: 'Lato', sans-serif;
}

.hero-promise strong {
    color: var(--accent);
    font-weight: 700;
    font-size: large;
}

/* CTA Buton - büyük, dikkat çekici */
.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-purple-color), var(--accent));
    color: white !important;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(111, 52, 254, 0.35);
    transition: all 0.35s ease;
    letter-spacing: 0.2px;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(111, 52, 254, 0.45);
    color: white !important;
    text-decoration: none;
}

/* CTA alt açıklama */
.cta-subtitle {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted-color);
    margin-bottom: 0;
    line-height: 1.5;
    text-align: center;
}

/* SEGMENT BAŞLIKLARI - VURGULU */
.segment-title {
    text-align: center;
    margin-bottom: 48px;
}

.segment-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.segment-title h2 svg {
    width: 32px;
    height: 32px;
}

.segment-title .lead-text {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 0;
    font-family: 'Lato', sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.segment-title .lead-text strong {
    color: var(--light-purple-color);
    font-weight: 700;
}

/* STEP CARDS - DAHA VURGULU */
.step-card {
    text-align: center;
    padding: 24px;
}

.step-card h4 {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    margin-top: 16px;
}

.step-card p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 0;
}

.step-card p b {
    color: var(--accent);
    font-weight: 700;
}

/* FEATURE CARDS */
.feature-card {
    text-align: center;
    padding: 28px 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 16px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 0;
}

.feature-card p b {
    color: var(--accent);
    font-weight: 700;
}

.feature-icon {
    margin-bottom: 8px;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}


/* Banner Buton Alanı */
.banner-btn {
    display: block;
    margin-top: 36px;
    margin-bottom: 0;
    text-align: center;
}

/* Generic Button - FOLİOFLİX */
.generic-btn a {
    background: var(--accent);
    color: var(--white-color);
    padding: 20px 58px;
    font-size: 20px;
    display: inline-block;
    border-radius: 35px;
    line-height: 20px;
    text-decoration: none;
    box-shadow: 0 0 85px 0 #e9eefc;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.generic-btn a:hover {
    border-color: var(--light-purple-color);
    background: var(--light-purple-color);
    transform: translateY(-8px);
}

/* See Button - FOLİOFLİX */
.See-btn {
    margin-left: 28px;
    font-size: 20px;
    line-height: 20px;
    color: var(--light-purple-color);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--light-purple-color);
    position: relative;
    text-decoration: none;
}

.See-btn:hover {
    color: var(--accent);
}

.See-btn::after {
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    content: '';
    position: absolute;
    background: var(--accent);
    transition: ease-in-out 0.3s;
}

.See-btn:hover::after {
    width: 100%;
}

/* Banner Sağ Görsel */
.banner-right-con {
    position: relative;
}

.banner-right-con figure {
    margin: 0;
}

.banner-right-con img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    animation: right-mover 1s ease-in-out infinite alternate;
}

/* Floating Kartlar - FOLİOFLİX */
.best-award-con {
    background: #feffff;
    padding: 24px 33px;
    position: absolute;
    left: -74px;
    opacity: 0.95;
    border-radius: 17px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 10;
    top: 25%;
}

.best-award-con:hover figure {
    transform: translateY(-8px);
    top: auto;
}

.best-award-inner-con {
    display: flex;
    align-items: center;
}

.best-award-inner-con figure {
    position: relative;
    transition: transform 0.3s ease;
    margin-right: 15px;
}

.best-award-title p {
    line-height: 24px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.best-award-title span {
    font-size: 14px;
    color: var(--text-color);
    line-height: 18px;
    font-family: 'Lato', sans-serif;
}

.happy-con {
    padding: 20px 33px;
    right: -30px;
    left: auto;
    top: 15%;
}

.happy-con .best-award-inner-con {
    flex-direction: column;
}

.happy-con figure {
    margin-bottom: 10px;
    margin-right: 0;
}

.happy-con .best-award-title {
    text-align: center;
}

.count-display {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

/* Dekoratif Elementler - FOLİOFLİX */
.banner-right-con::before {
    content: "";
    width: 36px;
    height: 36px;
    position: absolute;
    top: 25%;
    left: -20px;
    background: var(--accent);
    border-radius: 50%;
    animation: mover 1s infinite alternate;
    z-index: 5;
}

.banner-right-con::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 32px solid var(--light-purple-color);
    position: absolute;
    bottom: 100px;
    right: -40px;
    animation: mover 2s infinite alternate;
}

.happy-con::before {
    content: "";
    width: 52px;
    height: 52px;
    position: absolute;
    top: -80px;
    left: 10px;
    background: var(--light-purple-color);
    border-radius: 50% 50% 50% 0;
    opacity: 0.6;
    animation: mover 1.5s infinite alternate;
}

/* Animasyonlar - FOLİOFLİX */
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

@keyframes right-mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}

@keyframes left-mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(10px); }
}

/* Özel Cursor - FOLİOFLİX */
.cursor {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid var(--primary-color);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    visibility: hidden;
    z-index: 9999;
}

.cursor2 {
    width: 20px;
    height: 20px;
    visibility: hidden;
    border-radius: 100%;
    background-color: var(--accent);
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 9999;
}

/* ---------- SEGMENT (BÖLÜM) YAPISI ---------- */
.segment {
    width: 100%;
    padding: var(--section-padding) 0;
    position: relative;
}

.segment-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- SEGMENT RENK VARYASYONLARI ---------- */

/* Hero arka plan - FOLİOFLİX BİREBİR */
.segment--light-blue {
    background: rgb(242,242,255);
    background: linear-gradient(33deg, rgba(242,242,255,1) 0%, rgba(235,249,255,1) 100%);
    overflow: hidden;
}

/* Beyaz - Temiz bölümler için */
.segment--white {
    background: var(--color-bg-white);
    border-top: 1px solid rgba(10, 37, 64, 0.06);
}

/* Açık gri - Hafif kontrast için */
.segment--light-gray {
    background: var(--color-bg-light);
}

/* Koyu mavi - Dikkat çekici ara bölümler için */
.segment--dark-blue {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a365d 50%, #234876 100%);
    color: #fff;
}

.segment--dark-blue .segment-title h2 {
    color: #fff;
}

.segment--dark-blue .segment-title p {
    color: rgba(255,255,255,0.7);
}

/* Altın vurgu şeridi - Kısa mesajlar için */
.segment--gold-strip {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFB300 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.segment--gold-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Gradient geçiş */
.segment--gradient {
    background: linear-gradient(180deg, #E3F2FD 0%, var(--color-bg-white) 100%);
    position: relative;
    overflow: hidden;
}

/* ---------- BAŞLIK STİLLERİ - BÜYÜK VE ÇARPICI ---------- */
.segment-title {
    text-align: center;
    margin-bottom: 60px;
}

.segment-title h6 {
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--accent);
}

.segment-title h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 42px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Başlık ikonu */
.segment-title h2 svg {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 15px;
}

.segment--dark-blue .segment-title h2 {
    color: #fff;
}

.segment-title p {
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 32px;
}

.segment--dark-blue .segment-title p {
    color: rgba(255,255,255,0.8);
}

/* Divider - Başlık üstü dekoratif çizgi */
.divider {
    width: 50px;
    height: 3px;
    background: var(--color-accent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Scroll Animasyonları için */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

.fadeInUp {
    animation: fadeInUp 0.8s ease-out both;
}

.fadeInLeft {
    animation: slideInLeft 0.8s ease-out both;
}

.fadeInRight {
    animation: slideInRight 0.8s ease-out both;
}

/* ---------- BUTON STİLLERİ ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn--large {
    padding: 24px 60px;
    font-size: 1.3rem;
    border-radius: 50px;
}

/* ANA BUTON - Mor Gradient - ÇOK DİKKAT ÇEKİCİ */
.btn--primary {
    background: linear-gradient(135deg, var(--color-purple) 0%, #4c1d95 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(111, 52, 254, 0.4);
    font-size: 1.2rem;
    padding: 22px 50px;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, var(--color-accent) 0%, #FFA500 100%);
    color: #0B3D91;
}

.btn--secondary {
    background: transparent;
    color: var(--color-purple);
    border: 3px solid var(--color-purple);
    font-size: 1.1rem;
}

.btn--secondary:hover {
    background: var(--color-purple);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(111, 52, 254, 0.3);
}

/* ALTIN BUTON - EN DİKKAT ÇEKİCİ */
.btn--gold {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FFA500 100%);
    color: #0B3D91;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 24px 55px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--gold:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 25px 60px rgba(111, 52, 254, 0.5);
    background: linear-gradient(135deg, var(--color-purple) 0%, #4c1d95 100%);
    color: #fff;
}

.btn--white {
    background: #fff;
    color: var(--color-purple);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    font-size: 1.15rem;
}

.btn--white:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ---------- GRID SİSTEMİ ---------- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }

/* ---------- KART YAPISI ---------- */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ---------- İKON KUTUSU ---------- */
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box svg {
    width: 32px;
    height: 32px;
    fill: #0B3D91;
}

/* ---------- LİSTE STİLLERİ ---------- */
.check-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list .check-icon {
    width: 24px;
    height: 24px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- İSTATİSTİK KUTUSU ---------- */
.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1B72E8;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: #666;
}

/* ---------- AYIRICI ÇİZGİ ---------- */
.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* ---------- MOBİL UYUM ---------- */
@media (max-width: 992px) {
    .col-4 { width: 50%; }
    .col-3 { width: 50%; }
    
    .segment {
        padding: 60px 0;
    }
    
    .segment-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .col-6, .col-4, .col-3 {
        width: 100%;
    }
    
    .segment {
        padding: 50px 0;
    }
    
    .segment-inner {
        padding: 0 20px;
    }
    
    .segment-title h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* ---------- ANİMASYON HAZIRLIĞI ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SABİT NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

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

.navbar-brand a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.navbar-brand strong {
    font-size: 1.15rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.navbar-brand span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.navbar-menu {
    display: flex;
    gap: 35px;
    margin: 0 100px;
}

.navbar-menu a {
    color: var(--color-text-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.navbar-menu a:hover {
    color: var(--light-purple-color);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-purple-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-menu a.is-active {
    color: var(--light-purple-color);
}

.navbar-menu a.is-active::after {
    width: 100%;
}

.navbar-cta {
    display: flex;
    align-items: center;
}

.btn--small {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

/* Hero için üst boşluk (navbar yüksekliği kadar) */
.segment--hero {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ============================================
   HERO BÖLÜMÜ
   Sol: Metin | Sağ: Görsel
   ============================================ */
.hero-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 114, 232, 0.1);
    color: var(--color-primary-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge::before {
    content: '●';
    font-size: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FOLİOFLİX - Hareketli Dekoratif Elementler */
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

@keyframes right-mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(15px); }
}

@keyframes bounceInRight {
    0% { opacity: 0; transform: translateX(100px); }
    60% { opacity: 1; transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

/* Dinamik Başlık Animasyonu */
.hero-dynamic-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    height: 5.5rem;
    margin-bottom: 25px;
}


/* HERO ÜST BAŞLIK - Küçük */
.hero-pretitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3f396d;
    margin-bottom: 10px;
    animation: slideInLeft 0.8s ease-out;
}

/* HERO ANA BAŞLIK - FOLİOFLİX STİLİ */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--light-purple-color);
    line-height: 1.1;
    margin-bottom: 6px;
}

/* Dinamik değişen kelimeler - FOLİOFLİX */
.hero-dynamic-title {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light-purple-color);
    line-height: 1.1;
    margin-bottom: 10px;
    min-height: 1.2em;
}

.hero-title span {
    color: var(--color-purple);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.5), rgba(255, 165, 0, 0.4));
    z-index: -1;
    border-radius: 4px;
}

/* HERO ALT AÇIKLAMA */
.hero-subtitle {
    font-size: 1.25rem;
    font-family: var(--font-body);
    color: #7d7789;
    margin-bottom: 35px;
    line-height: 1.9;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.hero-subtitle strong, .hero-subtitle b {
    color: #3f396d;
    font-weight: 700;
}

.hero-micro {
    font-size: 1.15rem;
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: 40px;
    padding-left: 25px;
    border-left: 5px solid var(--color-accent);
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* HERO BUTONLAR */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

/* FOLİOFLİX generic-btn stili */
.hero-cta .btn--gold,
.hero-cta .btn--primary {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* İkincil link stili - FOLİOFLİX See-btn */
.hero-see-link {
    margin-left: 28px;
    font-size: 20px;
    line-height: 20px;
    color: var(--light-purple-color);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--light-purple-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-see-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   HERO FOTOĞRAF STİLLERİ
   ============================================ */
.hero-figure {
    position: relative;
}

.hero-figure .banner-right-img {
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Fotoğrafa altın çerçeve - SVG image elementine */
.hero-figure .banner-right-img image {
    border-radius: 16px;
}

/* Floating kartlar fotoğrafın üstünde */
.best-award-con {
    z-index: 10 !important;
}

/* ============================================
   FINAL CTA - DR FOTOĞRAFI
   ============================================ */
.final-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.final-cta-image {
    flex: 0 0 220px;
    max-width: 220px;
    margin-right: -40px;
    text-align: center;
}

.final-cta-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.final-cta-image figcaption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 8px;
    font-style: italic;
}

.final-cta-text {
    flex: 1;
    text-align: center;
}

.final-cta-text h2 {
    color: #fff;
}

/* Responsive - 5 kırılım */
@media (max-width: 1400px) {
    .hero-figure .banner-right-img {
        max-width: 420px !important;
    }
    .final-cta-image {
        flex: 0 0 240px;
        max-width: 240px;
    }
}

@media (max-width: 1200px) {
    .hero-figure .banner-right-img {
        max-width: 380px !important;
    }
    .final-cta-image {
        flex: 0 0 200px;
        max-width: 200px;
    }
}

@media (max-width: 992px) {
    .hero-figure .banner-right-img {
        max-width: 350px !important;
    }
    .final-cta-content {
        flex-direction: column;
        gap: 30px;
    }
    .final-cta-image {
        flex: 0 0 180px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .hero-figure .banner-right-img {
        max-width: 300px !important;
    }
    .final-cta-image {
        flex: 0 0 150px;
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .hero-figure .banner-right-img {
        max-width: 260px !important;
    }
    .final-cta-image {
        flex: 0 0 120px;
        max-width: 120px;
    }
}

.hero-cta-note {
    font-size: 1rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.hero-cta-note::before {
    content: '✓';
    color: #22C55E;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   HERO GÖRSEL - FOLİOFLİX banner-right-con BİREBİR
   ============================================ */
.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual figure {
    margin: 0;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
}

/* FOLİOFLİX - Hareketli dekoratif elementler */
.hero-visual::before {
    content: "";
    width: 36px;
    height: 36px;
    position: absolute;
    top: 25%;
    left: 0;
    background: #FFD700;
    border-radius: 50%;
    animation: mover 1s infinite alternate;
}

.hero-visual::after {
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom: 100px;
    right: -15%;
    background: #6f34fe;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: mover 2s infinite alternate;
}

/* Büyük buton */
.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============================================
   MODAL (TEST POPUP)
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 145, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #333;
}

/* ============================================
   TEST FORMU
   ============================================ */
.test-header {
    text-align: center;
    margin-bottom: 30px;
}

.test-header h2 {
    font-size: 1.6rem;
    color: #0B3D91;
    margin-bottom: 8px;
}

.test-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

/* Eski test-progress stilleri kaldırıldı - yeni stiller dosya sonunda */

/* Soru Kartı */
.question-card {
    display: none;
    animation: fadeIn 0.3s ease;
}

.question-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    text-align: center;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-label:hover {
    border-color: #1B72E8;
    background: #f8faff;
}

.option-label input {
    margin-right: 14px;
    width: 20px;
    height: 20px;
    accent-color: #1B72E8;
}

.option-label.selected {
    border-color: #1B72E8;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fc 100%);
}

/* Test Navigasyon */
.test-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ============================================
   SONUÇ EKRANI
   ============================================ */
.result-screen {
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.result-profile-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0B3D91;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-title {
    font-size: 1.5rem;
    color: #0B3D91;
    margin-bottom: 16px;
}

.result-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.result-cta {
    margin-top: 20px;
}

/* ============================================
   PROFİL SONUÇ BÖLÜMÜ (Sayfa içi)
   ============================================ */
.profile-card {
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(11, 61, 145, 0.1);
    border: 1px solid rgba(27, 114, 232, 0.1);
}

.profile-cta {
    margin-top: 30px;
}

/* ============================================
   ADIM KARTLARI - FOLİOFLİX service-box-item BİREBİR
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step-card {
    background: #fff;
    border: 1px solid transparent;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 0 85px 0 #e9eefc;
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    border-color: var(--light-purple-color);
    transform: translateY(-5px);
}

.step-card:hover .step-icon svg {
    transform: scale(1.1);
}

.step-card:hover h4 {
    color: var(--light-purple-color);
}

/* BÜYÜK YUVARLAK İKON - Ortalanmış */
.step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    background: #f4f9ff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px auto;
}

.step-icon svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

/* İçerik - Ortalanmış */
.step-card-content {
    text-align: center;
}

.step-card h3,
.step-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.step-card p {
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
}

.step-card p b {
    color: #3f396d;
    font-weight: 700;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   FOLİOFLİX - YANDAN ÇIKAN DEKORATİF ELEMENTLER
   ============================================ */
.segment--white {
    position: relative;
    overflow: hidden;
}

.segment--white::before {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 100px;
    left: 0;
    background: linear-gradient(180deg, rgba(111, 52, 254, 0.1) 0%, rgba(111, 52, 254, 0.05) 100%);
    border-radius: 0 200px 200px 0;
    animation: right-mover 2s infinite alternate;
}

.segment--white::after {
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 80px;
    left: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    animation: mover 1.5s infinite alternate;
    opacity: 0.6;
}

/* FOLİOFLİX service-con - Yandan çıkan elementler */
.segment--light-gray {
    position: relative;
    overflow: hidden;
}

.segment--light-gray::before {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 207px;
    left: 0;
    background: linear-gradient(180deg, rgba(111, 52, 254, 0.08) 0%, rgba(111, 52, 254, 0.02) 100%);
    border-radius: 0 200px 200px 0;
    animation: right-mover 1s infinite alternate;
}

.segment--light-gray::after {
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 154px;
    left: 72px;
    background: #FFD700;
    border-radius: 50%;
    animation: mover 1s infinite alternate;
    opacity: 0.5;
}

/* ============================================
   ALTIN ŞERİT - ÇARPICI
   ============================================ */
.segment--gold-strip {
    padding: 30px 0;
}

.segment--gold-strip .segment-inner {
    padding: 25px 40px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 12px;
}

.gold-strip-text {
    text-align: center;
    font-size: 1.6rem;
    color: #0B3D91;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
}

.gold-strip-text strong {
    font-weight: 800;
}

/* ============================================
   İSTATİSTİK GRID
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.stat-box:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.segment--dark-blue .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    display: inline;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.segment--dark-blue .stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

.segment--dark-blue .stat-label {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   ÖZELLİKLER GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    border: 1px solid transparent;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 0 85px 0 #e9eefc;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--light-purple-color);
    transform: translateY(-5px);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card:hover h3 {
    color: var(--light-purple-color);
}

/* İKON - Ortalanmış */
.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    background: #f4f9ff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px auto;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

/* İçerik - Ortalanmış */
.feature-card-content {
    text-align: center;
}

.feature-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 26px;
    transition: color 0.3s ease;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
}

.feature-card p b {
    color: #3f396d;
    font-weight: 700;
}

/* ============================================
   HEDEF KİTLE GRID
   ============================================ */
.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 950px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-bg-white);
    padding: 28px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 37, 64, 0.05);
    transition: all var(--transition-normal);
}

.target-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.target-check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.target-item p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

.target-item strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* ============================================
   SÜREÇ TİMELİNE
   ============================================ */
.process-timeline {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary-light), var(--color-accent));
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 35px 0;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-number {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(27, 114, 232, 0.3);
    position: relative;
    z-index: 1;
}

.process-content {
    padding-top: 10px;
}

.process-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.process-content p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Process Step - Tamamlandı Durumu */
.process-step.completed .process-number {
    display: none;
}

.process-check {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
    position: relative;
    z-index: 1;
}

.process-step.completed .process-check {
    display: flex;
}

/* Process Step - Aktif (Şu an yapılacak) Durumu */
.process-step.active .process-number {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(251, 191, 36, 0.8); }
}

/* Profil Rozeti */
.process-profile-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.process-profile-badge.profile-p1 {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: #fff;
}
.process-profile-badge.profile-p2 {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
}
.process-profile-badge.profile-p3 {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}
.process-profile-badge.profile-p4 {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: #fff;
}

/* Process CTA */
.process-cta {
    margin-top: 15px;
}

.process-cta .btn--gold {
    font-size: 0.95rem;
    padding: 12px 24px;
}

/* Process İçi İletişim Segmenti */
.process-contact-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.15);
}

.process-contact-section .segment-inner {
    max-width: 100%;
    padding: 0;
}

.process-contact-section .contact-header {
    margin-bottom: 30px;
}

.process-contact-section .contact-options {
    max-width: 100%;
}

/* ============================================
   TESTİMONİAL (YORUMLAR)
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
    position: relative;
    transition: all var(--transition-normal);
    border: 1px solid rgba(111, 52, 254, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(111, 52, 254, 0.15);
    border-color: rgba(111, 52, 254, 0.2);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    font-family: var(--font-body);
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.author-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(111, 52, 254, 0.1);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-photo-placeholder {
    width: 32px;
    height: 32px;
    background: rgba(111, 52, 254, 0.15);
    border-radius: 50%;
}

.author-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--color-text-dark);
    font-size: 1rem;
    font-family: var(--font-family);
}

.author-info {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

/* ============================================
   SSS (FAQ)
   ============================================ */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(10, 37, 64, 0.05);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.faq-question:hover {
    background: var(--color-bg-light);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--color-bg-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary-light);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--color-primary-light);
    color: #fff;
}

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

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   SON CTA
   ============================================ */
.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta-content h2 span {
    color: var(--color-accent);
}

.final-cta-content > p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-cta-buttons {
    margin-bottom: 25px;
}

.final-cta-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.final-cta-note span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.final-cta-note span::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
}

/* Final CTA Butonları */
.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn--outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: all 0.3s ease;
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

.btn--outline-light i {
    margin-right: 8px;
}

/* Direkt Rezervasyon İletişim Segmenti (Koyu Mavi Tema) */
.direct-contact-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.direct-contact-section .contact-header h3 {
    color: #fff;
}

.direct-contact-section .contact-header p {
    color: rgba(255, 255, 255, 0.7);
}

.direct-contact-section .contact-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.direct-contact-section .contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    text-decoration: none;
}

.direct-contact-section .contact-option span {
    color: #fff;
}

.direct-contact-section .contact-option small {
    color: rgba(255, 255, 255, 0.7);
}

.direct-contact-section .contact-whatsapp i {
    color: #25D366;
}

.direct-contact-section .contact-email i {
    color: #FFD700;
}

.direct-contact-section .contact-form i {
    color: #64B5F6;
}

/* ============================================
   FOOTER
   ============================================ */
.segment--footer {
    background: linear-gradient(180deg, #0a1628 0%, #050d18 100%);
    color: #fff;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand strong {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.footer-brand span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

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

.footer-copy p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE TASARIM - 5 BREAKPOINT
   
   1. Büyük Ekran (1400px+): Varsayılan
   2. Laptop (1200px): Küçük laptop
   3. Tablet (992px): iPad landscape
   4. Mini Tablet (768px): iPad portrait
   5. Mobil (576px): Telefon
   6. Küçük Mobil (480px): Küçük telefon
   ============================================ */

/* ---------- LAPTOP (max-width: 1200px) ---------- */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }
    
    .segment-inner {
        padding: 0 35px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-layout {
        gap: 60px;
    }
    
    /* Başlıklar */
    .segment-title h2 {
        font-size: 2.4rem;
    }
    
    /* Gridler */
    .features-grid {
        gap: 30px;
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    /* Kartlar */
    .feature-card {
        padding: 40px 30px;
    }
    
    .step-card {
        padding: 40px 30px;
    }
    
    /* Final CTA */
    .final-cta-content h2 {
        font-size: 2.5rem;
    }
}

/* ---------- TABLET LANDSCAPE (max-width: 992px) ---------- */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .segment-inner {
        padding: 0 30px;
    }
    
    /* Navbar */
    .navbar-menu {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-cta {
        display: none;
    }
    
    /* Hero */
    .segment--hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 80px;
    }
    
    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .hero-micro {
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--color-accent);
        padding-bottom: 15px;
        display: inline-block;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-visual {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Başlıklar */
    .segment-title h2 {
        font-size: 2rem;
    }
    
    .segment-title {
        margin-bottom: 50px;
    }
    
    .segment-title p {
        font-size: 1.1rem;
    }
    
    /* Gridler - 2 kolon */
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Process */
    .process-timeline {
        max-width: 100%;
    }
    
    /* Kartlar */
    .feature-card {
        padding: 35px 25px;
    }
    
    .step-card {
        padding: 35px 25px;
    }
    
    .testimonial-card {
        padding: 28px 24px;
    }
    
    .author-photo {
        width: 48px;
        height: 48px;
    }
    
    /* Final CTA */
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .final-cta-content > p {
        font-size: 1.15rem;
    }
    
    .final-cta-note {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Footer */
    .footer-content {
        gap: 30px;
    }
}

/* ---------- TABLET PORTRAIT / MİNİ TABLET (max-width: 768px) ---------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .segment-inner {
        padding: 0 25px;
    }
    
    /* Navbar */
    .navbar-inner {
        padding: 12px 20px;
    }
    
    .segment--hero {
        padding-top: 110px;
        padding-bottom: 70px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-micro {
        font-size: 1.05rem;
    }
    
    .hero-visual {
        max-width: 280px;
    }
    
    /* Başlıklar */
    .segment-title h2 {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .segment-title h2::after {
        width: 50px;
        height: 3px;
    }
    
    .segment-title p {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .segment-title {
        margin-bottom: 45px;
    }
    
    /* Gridler - Tek kolon geçişi */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* İstatistikler */
    .segment--dark-blue .stat-number {
        font-size: 3rem;
    }
    
    .segment--dark-blue .stat-suffix {
        font-size: 1.5rem;
    }
    
    .stat-box {
        padding: 30px 20px;
    }
    
    /* Process Timeline */
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 0;
    }
    
    .process-number {
        margin: 0 auto;
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .process-content {
        padding-top: 0;
    }
    
    .process-content h3 {
        font-size: 1.2rem;
    }
    
    .process-content p {
        font-size: 1rem;
    }
    
    /* Kartlar */
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .step-card {
        padding: 30px 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .testimonial-card {
        padding: 26px 22px;
    }
    
    .author-photo {
        width: 44px;
        height: 44px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Target Items */
    .target-item {
        padding: 22px 25px;
    }
    
    .target-check {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .target-item p {
        font-size: 1rem;
    }
    
    /* Gold strip */
    .segment--gold-strip {
        padding: 30px 0;
    }
    
    .gold-strip-text {
        font-size: 1.2rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    /* Butonlar */
    .btn {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
    
    .btn--large {
        padding: 18px 38px;
        font-size: 1rem;
    }
    
    /* Final CTA */
    .final-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .final-cta-content > p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .final-cta-note {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Modal */
    .modal-content {
        padding: 30px 25px;
        margin: 20px;
        border-radius: var(--radius-md);
    }
    
    .question-text {
        font-size: 1.05rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .segment--footer {
        padding: 50px 0 35px;
    }
}

/* ---------- MOBİL (max-width: 576px) ---------- */
@media (max-width: 576px) {
    :root {
        --section-padding: 60px;
    }
    
    .segment-inner {
        padding: 0 20px;
    }
    
    /* Navbar */
    .navbar-inner {
        padding: 10px 15px;
    }
    
    .navbar-brand strong {
        font-size: 1.05rem;
    }
    
    .navbar-brand span {
        font-size: 0.75rem;
    }
    
    .segment--hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    /* Hero */
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .hero-micro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta-note {
        font-size: 0.85rem;
    }
    
    .hero-visual {
        max-width: 240px;
    }
    
    /* Başlıklar */
    .segment-title h2 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .segment-title p {
        font-size: 0.95rem;
    }
    
    .segment-title {
        margin-bottom: 40px;
    }
    
    .divider {
        width: 40px;
        margin-bottom: 15px;
    }
    
    /* Gridler */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* İstatistikler */
    .segment--dark-blue .stat-number {
        font-size: 2.5rem;
    }
    
    .segment--dark-blue .stat-suffix {
        font-size: 1.3rem;
    }
    
    .segment--dark-blue .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-box {
        padding: 25px 15px;
    }
    
    /* Kartlar */
    .feature-card {
        padding: 28px 22px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .step-card {
        padding: 28px 22px;
    }
    
    .step-card h3 {
        font-size: 1.15rem;
    }
    
    .step-card p {
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .author-photo {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-info {
        font-size: 0.85rem;
    }
    
    /* Target Items */
    .target-item {
        padding: 20px 22px;
        gap: 15px;
    }
    
    .target-check {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .target-item p {
        font-size: 0.95rem;
    }
    
    /* Process */
    .process-step {
        padding: 22px 0;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .process-content h3 {
        font-size: 1.1rem;
    }
    
    .process-content p {
        font-size: 0.95rem;
    }
    
    /* Gold strip */
    .segment--gold-strip {
        padding: 25px 0;
    }
    
    .gold-strip-text {
        font-size: 1.05rem;
        line-height: 1.5;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 20px 18px;
    }
    
    /* Butonlar */
    .btn {
        padding: 15px 28px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .btn--large {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
    
    .section-cta {
        margin-top: 35px;
    }
    
    /* Final CTA */
    .final-cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .final-cta-content > p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .final-cta-buttons {
        margin-bottom: 20px;
    }
    
    .final-cta-note span {
        font-size: 0.85rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 25px 20px;
        margin: 15px;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
    
    .test-progress {
        margin-bottom: 25px;
    }
    
    .question-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .option-btn {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .segment--footer {
        padding: 40px 0 30px;
    }
    
    .footer-brand strong {
        font-size: 1.1rem;
    }
    
    .footer-brand span {
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-copy p {
        font-size: 0.8rem;
    }
}

/* ---------- KÜÇÜK MOBİL (max-width: 400px) ---------- */
@media (max-width: 400px) {
    :root {
        --section-padding: 50px;
    }
    
    .segment-inner {
        padding: 0 16px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-visual {
        max-width: 200px;
    }
    
    /* Başlıklar */
    .segment-title h2 {
        font-size: 1.35rem;
    }
    
    .segment-title p {
        font-size: 0.9rem;
    }
    
    /* İstatistikler */
    .segment--dark-blue .stat-number {
        font-size: 2.2rem;
    }
    
    /* Kartlar */
    .feature-card,
    .step-card,
    .testimonial-card {
        padding: 20px 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .target-item {
        padding: 18px 18px;
    }
    
    /* Gold strip */
    .gold-strip-text {
        font-size: 0.95rem;
    }
    
    /* Final CTA */
    .final-cta-content h2 {
        font-size: 1.35rem;
    }
    
    .final-cta-content > p {
        font-size: 0.95rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 22px 16px;
        margin: 10px;
    }
    
    .question-text {
        font-size: 0.95rem;
    }
    
    .option-btn {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON - FOLİOFLİX ORİJİNAL
   ============================================ */
#button {
    display: inline-block;
    background-color: #FF9800;
    width: 82px;
    height: 82px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 57px;
    right: 113px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spineer 2s infinite;
    cursor: pointer;
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgba(255, 161, 34, .99);
    }
    to {
        box-shadow: 0 0 0 45px rgba(255, 161, 34, .01);
    }
}

#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 26px;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: var(--light-purple-color);
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   TESTIMONIALS CAROUSEL - FOLİOFLİX ORİJİNAL
   ============================================ */
.tastimonials-con {
    overflow: hidden;
    background: rgb(242,242,255);
    background: linear-gradient(33deg, rgba(242,242,255,1) 0%, rgba(235,249,255,1) 100%);
}

.padding-top {
    padding-top: 130px;
}

.padding-bottom {
    padding-bottom: 130px;
}

.w-100 {
    width: 100%;
}

.float-left {
    float: left;
}

.text-lg-left {
    text-align: left;
}

.tastimonials-left-con figure {
    margin: 0;
}

.testimonials-content h6 {
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--light-purple-color);
    font-size: 22px;
}

.testimonials-content figure {
    position: absolute;
    margin-top: 9px;
}

.testimonials-inner-content {
    margin-left: 52px;
}

.testimonials-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 42px;
    line-height: 48px;
}

.testimonials-content p {
    font-size: 20px;
    line-height: 33px;
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
}

.auther-name {
    color: var(--primary-color) !important;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.testimonials-inner-content span:last-child {
    font-size: 16px;
    line-height: 16px;
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
}

/* Carousel Kontrolleri */
.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
    top: inherit;
    bottom: -86px;
    width: auto;
    transition: all .3s ease;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}

.carousel-control-prev {
    left: 47px;
}

.carousel-control-prev:hover {
    left: 37px;
}

.carousel-control-next:hover {
    padding-left: 10px;
}

.carousel-control-next {
    left: 114px;
    right: initial;
}

.carousel-control-prev,
.carousel-control-next {
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.carousel-control-prev i,
.carousel-control-next i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent);
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}

.carousel-control-prev i:hover,
.carousel-control-next i:hover {
    background: var(--light-purple-color);
}

/* Testimonials sol taraf dekoratif elementler */
.tastimonials-con::after {
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 115px;
    left: 72px;
    background: var(--accent);
    border-radius: 50%;
    animation: mover 1s infinite alternate;
    opacity: 0.6;
}

.tastimonials-con::before {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 132px;
    left: 0;
    background: linear-gradient(180deg, rgba(111, 52, 254, 0.08) 0%, rgba(111, 52, 254, 0.02) 100%);
    border-radius: 0 200px 200px 0;
    animation: right-mover 1s infinite alternate;
}

/* ============================================
   SAĞ TARAF DEKORATİF ELEMENTLER - FOLİOFLİX
   ============================================ */

/* Service/Features bölümü sağ taraf */
.segment--white .service-inner-con::after,
.segment--light-gray .service-inner-con::after {
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom: 190px;
    right: -116px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: mover 1s infinite alternate;
}

/* Stats bölümü sağ taraf dekoratif */
.segment--dark-blue::before {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 50px;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 200px 0 0 200px;
    animation: left-mover 1s infinite alternate;
}

.segment--dark-blue::after {
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 100px;
    right: 72px;
    background: var(--accent);
    border-radius: 50%;
    animation: mover 1s infinite alternate;
    opacity: 0.5;
}

/* Features bölümü sağ taraf */
.features-grid::after {
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom: 50px;
    right: -50px;
    background: var(--light-purple-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: mover 1.5s infinite alternate;
    opacity: 0.6;
}

/* Process bölümü sağ taraf */
.segment--gradient::before {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 100px;
    right: 0;
    background: linear-gradient(180deg, rgba(111, 52, 254, 0.06) 0%, rgba(111, 52, 254, 0.01) 100%);
    border-radius: 200px 0 0 200px;
    animation: left-mover 1.5s infinite alternate;
}

.segment--gradient::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: 150px;
    right: 60px;
    background: var(--accent);
    border-radius: 50%;
    animation: mover 1.2s infinite alternate;
    opacity: 0.5;
}

/* Fixed Header class */
.fixed-header {
    background: #fff;
    z-index: 3;
    transition: top 5s linear;
    padding: 0 !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slide-down 0.7s;
    box-shadow: 0 0 12px 0 #e9eefc;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-main-con2 {
    padding-top: 130px;
}

/* Responsive - Scroll to top button */
@media (max-width: 768px) {
    #button {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 30px;
    }
    
    #button::after {
        font-size: 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        bottom: -60px;
    }
    
    .carousel-control-prev i,
    .carousel-control-next i {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        left: 80px;
    }
    
    .testimonials-content h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .testimonials-content p {
        font-size: 16px;
        line-height: 26px;
    }
    
    .padding-top {
        padding-top: 80px;
    }
    
    .padding-bottom {
        padding-bottom: 100px;
    }
}

/* ============================================
   SAYFA İÇİ RİTİM TESTİ STİLLERİ
   ============================================ */

.segment--test {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4fc 100%);
    padding: 60px 0;
    border-top: 4px solid var(--color-accent);
    border-bottom: 4px solid var(--color-accent);
    width: 100%;
    float: none;
    clear: both;
}

.segment--test .segment-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Test Başlığı */
.test-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.test-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.test-section-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* İlerleme Göstergesi */
.test-progress {
    max-width: 600px;
    margin: 0 auto 40px;
}

.test-progress-bar {
    height: 16px;
    background: rgba(111, 52, 254, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.test-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 10px;
    width: 16.66%;
    transition: width 0.4s ease;
    box-shadow: 0 2px 8px rgba(111, 52, 254, 0.4);
}

.test-progress-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.test-progress-text strong {
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* Soru Carousel */
.question-carousel {
    max-width: 700px;
    margin: 0 auto;
    min-height: 280px;
    position: relative;
}

/* Soru Kartı */
.question-card {
    display: none;
    animation: fadeIn 0.4s ease;
}

.question-card.active {
    display: block;
}

.question-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Seçenek Kartları */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.option-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.option-card:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 52, 254, 0.15);
}

.option-card.selected {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(111, 52, 254, 0.05) 0%, rgba(252, 166, 31, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(111, 52, 254, 0.2);
}

.option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.option-card input[type="radio"] {
    display: none;
}

.option-card span {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.5;
}

.option-card.selected span {
    color: var(--color-primary);
    font-weight: 600;
}

/* Navigasyon Butonları */
.test-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.test-nav-btn {
    min-width: 150px;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Test Kapat Butonu */
.test-actions {
    text-align: center;
    margin-top: 30px;
}

.test-close-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.test-close-btn:hover {
    color: var(--color-primary);
}

/* ============================================
   SONUÇ BÖLÜMÜ STİLLERİ
   ============================================ */

.test-result-section {
    padding: 60px 0;
    transition: background 0.5s ease;
}

/* Profil 1: Hızlı Başlayan - Turuncu/Amber tonları (Enerji, hız) */
.test-result-section.profile-p1 {
    background: linear-gradient(135deg, #fff8f0 0%, #ffedd5 100%);
    color: #7c2d12;
}
.test-result-section.profile-p1 .result-badge {
    background: #fb923c;
    color: #fff;
}
.test-result-section.profile-p1 .result-solution {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(251, 146, 60, 0.1) 100%);
}

/* Profil 2: Plan Odaklı - Mavi tonları (Güven, düzen) */
.test-result-section.profile-p2 {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0c4a6e;
}
.test-result-section.profile-p2 .result-badge {
    background: #0ea5e9;
    color: #fff;
}
.test-result-section.profile-p2 .result-solution {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
}

/* Profil 3: Geç Açılan - Yeşil tonları (Büyüme, sabır) */
.test-result-section.profile-p3 {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #14532d;
}
.test-result-section.profile-p3 .result-badge {
    background: #22c55e;
    color: #fff;
}
.test-result-section.profile-p3 .result-solution {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
}

/* Profil 4: Duygu Odaklı - Lavanta/Mor tonları (Yaratıcılık, esneklik) */
.test-result-section.profile-p4 {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    color: #581c87;
}
.test-result-section.profile-p4 .result-badge {
    background: #a855f7;
    color: #fff;
}
.test-result-section.profile-p4 .result-solution {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
}

/* Sonuç butonları - profil renklerine göre */
.test-result-section .btn--gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}
.test-result-section .btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

/* Profil detayları butonu - her profil için özel */
.test-result-section.profile-p1 .btn--outline {
    border: 2px solid #ea580c;
    color: #ea580c;
    background: rgba(255,255,255,0.8);
}
.test-result-section.profile-p1 .btn--outline:hover {
    background: #ea580c;
    color: #fff;
}

.test-result-section.profile-p2 .btn--outline {
    border: 2px solid #0284c7;
    color: #0284c7;
    background: rgba(255,255,255,0.8);
}
.test-result-section.profile-p2 .btn--outline:hover {
    background: #0284c7;
    color: #fff;
}

.test-result-section.profile-p3 .btn--outline {
    border: 2px solid #16a34a;
    color: #16a34a;
    background: rgba(255,255,255,0.8);
}
.test-result-section.profile-p3 .btn--outline:hover {
    background: #16a34a;
    color: #fff;
}

.test-result-section.profile-p4 .btn--outline {
    border: 2px solid #9333ea;
    color: #9333ea;
    background: rgba(255,255,255,0.8);
}
.test-result-section.profile-p4 .btn--outline:hover {
    background: #9333ea;
    color: #fff;
}

.result-summary {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.result-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.result-description {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
}

.result-solution {
    position: relative;
    font-size: 1rem;
    margin-top: 25px;
    padding: 25px 30px;
    border-radius: 16px;
    border: none;
    overflow: hidden;
}
.result-solution::before {
    content: '💡';
    position: absolute;
    top: -5px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.2;
}
.result-solution::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 100%);
    pointer-events: none;
}

/* Sonuç Butonları */
.result-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.result-buttons .btn--outline {
    border-color: #fff;
    color: #fff;
}

.result-buttons .btn--outline:hover {
    background: #fff;
    color: var(--color-primary);
}

/* Teste Geri Dön */
.result-actions {
    text-align: center;
    margin-top: 30px;
}

.test-restart-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.test-restart-btn:hover {
    color: #fff;
}

/* ============================================
   PROFİL DETAYLARI STİLLERİ
   ============================================ */

.profile-details-section {
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    transition: background 0.5s ease;
}

/* Profil 1: Hızlı Başlayan - Turuncu tonları */
.profile-details-section.profile-p1 {
    background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
}
.profile-details-section.profile-p1 h3 { color: #c2410c; }
.profile-details-section.profile-p1 h4 { color: #ea580c; }
.profile-details-section.profile-p1 .ideal-plan { 
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-color: #fb923c;
}

/* Profil 2: Plan Odaklı - Mavi tonları */
.profile-details-section.profile-p2 {
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
}
.profile-details-section.profile-p2 h3 { color: #0369a1; }
.profile-details-section.profile-p2 h4 { color: #0284c7; }
.profile-details-section.profile-p2 .ideal-plan { 
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-color: #0ea5e9;
}

/* Profil 3: Geç Açılan - Yeşil tonları */
.profile-details-section.profile-p3 {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}
.profile-details-section.profile-p3 h3 { color: #15803d; }
.profile-details-section.profile-p3 h4 { color: #16a34a; }
.profile-details-section.profile-p3 .ideal-plan { 
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-color: #22c55e;
}

/* Profil 4: Duygu Odaklı - Mor tonları */
.profile-details-section.profile-p4 {
    background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}
.profile-details-section.profile-p4 h3 { color: #7e22ce; }
.profile-details-section.profile-p4 h4 { color: #9333ea; }
.profile-details-section.profile-p4 .ideal-plan { 
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: #a855f7;
}

.profile-details-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Profil Başlık Bölümü */
.profile-header-section {
    text-align: center;
    margin-bottom: 30px;
}

.profile-header-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.profile-badge-large {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(111, 52, 254, 0.1);
    color: var(--color-accent);
}

/* Profil Özet Kutusu */
.profile-summary-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 35px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.profile-summary-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin: 0;
}

/* Acil Yapılacaklar (Quick Wins) */
.quick-wins-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 35px;
    border: 2px solid #ffd700;
}

.quick-wins-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8860b !important;
}

.quick-wins-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-win-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-win-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.quick-win-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-body);
}

/* Bölüm Blokları */
.section-block {
    margin-bottom: 35px;
}

.section-block h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(111, 52, 254, 0.1);
}

.section-block h4 i {
    font-size: 1.1rem;
}

/* Psikolojik Analiz */
.analysis-content {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 25px;
}

.analysis-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 15px;
}

.analysis-content p:last-child {
    margin-bottom: 0;
}

/* Sen İşte Bu Kişisin */
.you-are-this-section {
    background: linear-gradient(135deg, rgba(111, 52, 254, 0.08) 0%, rgba(111, 52, 254, 0.03) 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 35px;
    border: 1px solid rgba(111, 52, 254, 0.15);
}

.you-are-this-section h4 {
    margin-bottom: 15px;
}

.you-are-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-body);
    font-style: italic;
}

/* Davranış Listesi */
.behavior-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.behavior-list li {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.behavior-list li i {
    color: var(--color-accent);
    margin-top: 4px;
}

/* Accordion Stilleri */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-heading);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(111, 52, 254, 0.05);
}

.accordion-header.active {
    background: rgba(111, 52, 254, 0.08);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-content.open {
    max-height: 500px;
    padding: 0 20px 20px;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text-body);
}

.accordion-content li:last-child {
    border-bottom: none;
}

/* 7 Günlük Plan */
.weekly-plan-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-day {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.day-label {
    font-weight: 700;
    color: var(--color-accent);
    min-width: 70px;
    font-size: 0.95rem;
}

.day-task {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--color-text-body);
}

/* Seans Bilgisi */
.session-info-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 35px;
    color: white;
}

.session-info-section h4 {
    color: #ffd700 !important;
    margin-bottom: 25px;
    border-bottom-color: rgba(255, 215, 0, 0.3);
}

.session-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.session-duration {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
}

.session-duration i {
    font-size: 1.5rem;
}

.session-steps {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.session-steps strong {
    display: block;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.session-steps ol {
    margin: 0;
    padding-left: 20px;
}

.session-steps li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.6;
}

.session-outcome {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.session-outcome i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 2px;
}

.session-outcome span {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Metrikler */
.metrics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.metrics-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    font-size: 0.98rem;
    color: var(--color-text-body);
}

.metrics-list li i {
    color: var(--color-accent);
}

/* FAQ Stilleri */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-heading);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(111, 52, 254, 0.05);
}

.faq-question.active {
    background: rgba(111, 52, 254, 0.08);
}

.faq-icon {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

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

.faq-answer.open {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin: 0;
}

/* Detay CTA Bölümü */
.details-cta-section {
    background: linear-gradient(135deg, rgba(111, 52, 254, 0.1) 0%, rgba(111, 52, 254, 0.05) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid rgba(111, 52, 254, 0.2);
}

.cta-messages {
    margin-bottom: 25px;
}

.cta-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-style: italic;
}

.details-cta-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

.profile-details-cta {
    text-align: center;
    margin-top: 40px;
}

.details-close-action {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-details-content {
        padding: 0 15px;
    }
    
    .profile-header-section h3 {
        font-size: 1.6rem;
    }
    
    .quick-wins-section {
        padding: 20px;
    }
    
    .session-info-section {
        padding: 25px 20px;
    }
    
    .metrics-list {
        grid-template-columns: 1fr;
    }
    
    .plan-day {
        flex-direction: column;
        gap: 8px;
    }
    
    .day-label {
        min-width: auto;
    }
}

/* ============================================
   İLETİŞİM BÖLÜMÜ STİLLERİ
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 60px 0;
    color: #1b5e20;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #2e7d32;
}

.contact-header h3 svg {
    fill: #2e7d32;
}

.contact-header p {
    font-size: 1rem;
    color: #388e3c;
}

/* İletişim Seçenekleri */
.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 2px solid #a5d6a7;
    border-radius: 16px;
    padding: 30px 40px;
    text-decoration: none;
    color: #2e7d32;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
}

.contact-option:hover {
    background: #f1f8e9;
    border-color: #66bb6a;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
    text-decoration: none;
}

.contact-option span,
.contact-option small {
    text-decoration: none !important;
}

.contact-option i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-whatsapp i {
    color: #25D366;
}

.contact-email i {
    color: #f57c00;
}

.contact-form i {
    color: var(--color-primary);
}

.contact-option span {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1b5e20;
}

.contact-option small {
    font-size: 0.85rem;
    color: #558b2f;
}

.contact-extra {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #a5d6a7;
}

.contact-extra .btn--outline {
    border-color: #2e7d32;
    color: #2e7d32;
}

.contact-extra .btn--outline:hover {
    background: #2e7d32;
    color: #fff;
}

/* ============================================
   ANİMASYONLAR
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSİVE - TEST BÖLÜMÜ
   ============================================ */

@media (max-width: 768px) {
    .test-section-header h2 {
        font-size: 1.5rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        padding: 16px 20px;
    }
    
    .test-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .test-nav-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .result-title {
        font-size: 1.5rem;
    }
    
    .result-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .result-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 300px;
    }
    
    /* Final CTA Butonları */
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    /* Direkt İletişim Segmenti */
    .direct-contact-section .contact-options {
        flex-direction: column;
    }
    
    .direct-contact-section .contact-option {
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   RESPONSİVE - PROFİL DETAYLARI (Tablet)
   ============================================ */

@media (max-width: 992px) {
    .profile-details-content {
        max-width: 100%;
    }
    
    .profile-header-section h3 {
        font-size: 1.7rem;
    }
    
    .session-info-section {
        padding: 30px 25px;
    }
    
    .accordion-header {
        padding: 15px 18px;
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSİVE - PROFİL DETAYLARI (Mobil)
   ============================================ */

@media (max-width: 576px) {
    .profile-header-section h3 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .profile-badge-large {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .profile-summary-box {
        padding: 20px;
    }
    
    .profile-summary-box p {
        font-size: 1rem;
    }
    
    .quick-wins-section {
        padding: 20px 15px;
    }
    
    .quick-wins-section h4 {
        font-size: 1.1rem;
    }
    
    .quick-win-item {
        padding: 12px 15px;
    }
    
    .quick-win-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .quick-win-text {
        font-size: 0.95rem;
    }
    
    .section-block h4 {
        font-size: 1.1rem;
    }
    
    .analysis-content {
        padding: 20px 15px;
    }
    
    .analysis-content p {
        font-size: 0.98rem;
    }
    
    .you-are-this-section {
        padding: 20px 15px;
    }
    
    .you-are-text {
        font-size: 1rem;
    }
    
    .behavior-list li {
        padding: 12px 15px;
        font-size: 0.98rem;
    }
    
    .accordion-header {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .accordion-content {
        padding: 0 15px;
    }
    
    .accordion-content.open {
        padding: 0 15px 15px;
    }
    
    .accordion-content li {
        font-size: 0.92rem;
    }
    
    .session-info-section {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .session-duration {
        font-size: 1.1rem;
    }
    
    .session-steps {
        padding: 15px;
    }
    
    .session-steps li {
        font-size: 0.92rem;
    }
    
    .session-outcome {
        padding: 15px;
    }
    
    .session-outcome span {
        font-size: 0.92rem;
    }
    
    .faq-question {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 0.92rem;
    }
    
    .details-cta-section {
        padding: 25px 20px;
    }
    
    .cta-message {
        font-size: 1rem;
    }
    
    .details-cta-btn {
        font-size: 1rem;
        padding: 14px 30px;
        width: 100%;
    }
}

/* ============================================
   RESPONSİVE - İLETİŞİM SEGMENTLERİ
   ============================================ */

@media (max-width: 576px) {
    .contact-section,
    .process-contact-section,
    .direct-contact-section {
        padding: 40px 15px;
    }
    
    .contact-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-option {
        padding: 20px 15px;
    }
    
    .contact-option h4 {
        font-size: 1rem;
    }
    
    .contact-option p {
        font-size: 0.9rem;
    }
}
