/* ═══════════════════════════════════
   KARAKTER SAYFASI — karakter.css
   ═══════════════════════════════════ */

.karakter-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── HERO ── */
.karakter-hero {
    padding: 0;
    overflow: visible;
    position: relative;
}
.karakter-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Üst kısım: başlık + alıntı + buton (ortalı) */
.karakter-hero-top {
    text-align: center;
    padding: 60px 40px 40px;
    max-width: 700px;
}
.karakter-hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: black;
    margin-bottom: 20px;
    line-height: 1.15;
}
.karakter-quote {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.6;
    color: black;
    font-style: italic;
    margin-bottom: 28px;
}
.btn-hero-pill {
    display: inline-block;
    background: #FFD200;
    border: 4px solid black;
    color: black;
    padding: 16px 48px;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
    box-shadow: 6px 6px 0 black;
    text-transform: uppercase;
    border-radius: 60px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.1s;
    text-decoration: none;
}
.btn-hero-pill:hover { background: black; color: #FFD200; }
.btn-hero-pill:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 black; }

/* Alt kısım: büyük isim + karakter görseli (üst üste) */
.karakter-hero-bottom {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 380px;
    padding-top: 20px;
    overflow: visible !important;
}
.karakter-big-name {
    font-family: 'Bangers', cursive;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(8rem, 40vw, 22rem);
    line-height: 0.75;
    color: rgba(0,0,0,0.15);
    letter-spacing: 0.04em;
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.karakter-hero-img {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.karakter-hero-img img {
    max-height: 420px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(4px 4px 12px rgba(0,0,0,0.15));
    border: none;
}

/* ── PAINS ── */
.karakter-pains {
    padding: 80px 40px;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
}
.karakter-pains .karakter-section-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.pain-left {
    flex: 0 0 53%;
}
.comic-panel-placeholder {
    border: 4px solid black;
    box-shadow: 8px 8px 0 black;
    background: white;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: repeating-linear-gradient(
        45deg,
        #f5f5f5,
        #f5f5f5 10px,
        #ececec 10px,
        #ececec 20px
    );
}
.comic-panel-text {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    text-align: center;
    color: black;
    padding: 20px;
    background: white;
    border: 3px solid black;
    box-shadow: 4px 4px 0 black;
    text-transform: uppercase;
}
.pain-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pain-item {
    font-size: 1.15rem;
    font-weight: 800;
    font-style: italic;
    border-left: 6px solid black;
    padding: 14px 20px;
    background: white;
    box-shadow: 4px 4px 0 black;
    border-top: 2px solid black;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}

/* ── ÖZELLİKLER ── */
.karakter-features {
    padding: 80px 40px;
}
.karakter-features .karakter-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.features-comic-panel {
    border: 4px solid black;
    box-shadow: 8px 8px 0 black;
    background: repeating-linear-gradient(
        45deg,
        #f5f5f5,
        #f5f5f5 10px,
        #ececec 10px,
        #ececec 20px
    );
    padding: 0;
    width: 100%;
    max-width: 560px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.features-comic-panel .comic-panel-text {
    font-size: 1.8rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}
.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 3px solid black;
    box-shadow: 6px 6px 0 black;
    background: white;
    transition: transform 0.1s, box-shadow 0.1s;
}
.feat-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 black;
}
.feat-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFD200;
    border: 3px solid black;
}
.feat-item strong {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.feat-item p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* ── İSTATİSTİKLER ── */
.karakter-stats {
    padding: 60px 40px;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
}
.karakter-stats .karakter-section-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.stats-comic-panel {
    flex: 0 0 38%;
    border: 4px solid black;
    box-shadow: 8px 8px 0 black;
    background: repeating-linear-gradient(
        45deg,
        #f5f5f5,
        #f5f5f5 10px,
        #ececec 10px,
        #ececec 20px
    );
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.stat-box {
    background: white;
    border: 4px solid black;
    box-shadow: 6px 6px 0 black;
    padding: 28px 20px;
    text-align: center;
}
.stat-val {
    font-family: 'Bangers', cursive;
    font-size: 3.5rem;
    line-height: 1;
    color: black;
    letter-spacing: 0.03em;
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #333;
    margin-top: 8px;
}

/* ── SSS ── */
.karakter-faq {
    padding: 80px 40px;
    background: #f9f9f9;
}
.karakter-faq .karakter-section-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.faq-left {
    flex: 1;
}
.faq-right {
    flex: 0 0 453px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.faq-comic-panel {
    border: 4px solid black;
    box-shadow: 8px 8px 0 black;
    background: repeating-linear-gradient(
        45deg,
        #f5f5f5,
        #f5f5f5 10px,
        #ececec 10px,
        #ececec 20px
    );
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.page-faq-item {
    border: 3px solid black;
    margin-top: -3px;
    background: white;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s;
}
.page-faq-item:hover { background: #FFD200; }
.page-faq-q {
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 18px 24px;
    letter-spacing: 0.04em;
}
.page-faq-a {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    color: #333;
    line-height: 1.5;
}
.page-faq-item:hover .page-faq-a {
    max-height: 120px;
    padding: 0 24px 18px;
    opacity: 1;
}

/* ── CTA ── */
.karakter-cta {
    padding: 80px 40px;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
}
.karakter-cta h2 { color: black; }

/* ── "EKİBİNLE TANIŞ" BÖLÜMÜ ── */
.karakter-team-section {
    padding: 80px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #FFD200;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
}
.karakter-team-section .karakter-section-inner {
    max-width: 100%;
    padding: 0 40px;
}
.team-scroll-btn {
    display: none;
}
.karakter-team-section h2 {
    color: black;
}
.karakter-team-section p.team-sub {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}
.team-cards-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 40px;
    width: 100%;
    box-sizing: border-box;
}
.team-card-mini {
    flex: 1 1 0;
    min-width: 100px;
    max-width: none;
    background: white;
    border: 3px solid black;
    box-shadow: 6px 6px 0 black;
    overflow: hidden;
    text-decoration: none;
    color: black;
}
.team-card-mini:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 black;
}
.team-card-mini img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: top;
    border-bottom: 3px solid black;
}
.team-card-mini-info {
    padding: 10px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.team-card-mini-info strong {
    font-size: 0.8rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.team-card-mini-info span {
    font-size: 0.65rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* ── DEMO BÖLÜMÜ ── */
.karakter-demo-section {
    padding: 80px 40px;
    background: white;
    border-bottom: 4px solid black;
}
.karakter-demo-section h2 {
    color: black;
}
.karakter-demo-section p.demo-sub {
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ── SON CTA ── */
.karakter-final-cta {
    padding: 100px 40px;
    background: #FFD200;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
    text-align: center;
}
.karakter-final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: black;
    margin-bottom: 32px;
}

/* ── DİĞER AJANLAR ── */
.karakter-others {
    padding: 60px 40px;
    background: white;
}
.others-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
}
.others-scroll::-webkit-scrollbar { height: 6px; }
.others-scroll::-webkit-scrollbar-thumb { background: black; }
.other-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: black;
    transition: transform 0.15s;
}
.other-card:hover { transform: translateY(-4px); }
.other-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid black;
    box-shadow: 4px 4px 0 black;
}
.other-card span {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── FOOTER ── */
.karakter-footer {
    background: black;
    color: white;
    padding: 60px 40px 30px;
    border-top: 4px solid #FFD200;
}
.karakter-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.karakter-footer-col h4 {
    font-family: 'Bangers', cursive;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #FFD200;
}
.karakter-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.karakter-footer-col ul li + li {
    margin-top: 10px;
}
.karakter-footer-col ul li a {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ccc;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.15s;
}
.karakter-footer-col ul li a:hover {
    color: #FFD200;
}
.karakter-footer-col p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    line-height: 1.6;
}
.karakter-footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.karakter-footer-bottom p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .karakter-hero-top { padding: 40px 20px 24px; }
    .karakter-hero-bottom { min-height: 240px; }
    .karakter-big-name { font-size: 28vw; color: rgba(0,0,0,0.15); }
    .karakter-hero-img img { max-height: 280px; border: none; }
    .karakter-pains .karakter-section-inner { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .karakter-stats .karakter-section-inner { flex-direction: column; }
    .stats-comic-panel { flex: none; width: 100%; height: 200px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); width: 100%; }
    .karakter-faq .karakter-section-inner { flex-direction: column; }
    .faq-right { flex: none; width: 100%; }
    .karakter-footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .karakter-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .team-cards-row { justify-content: flex-start; flex-wrap: nowrap; }
    .team-card-mini { flex: 0 0 130px; }
    .karakter-section-inner { padding: 0 16px; }
    .btn-hero-pill { padding: 12px 28px; font-size: 1.2rem; }
    .pain-item { font-size: 0.9rem; padding: 12px 16px; }
    .feature-card { padding: 20px 16px; }
    .stat-card { padding: 16px 12px; }
}
