.company-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Arka plan beyaz */
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Şık durması için hafif gölge */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.pill-icon {
    width: 48px; /* Logonuza göre bu boyutu ayarlayabilirsiniz */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px; /* Logo ile yazı arasındaki boşluk */
}

.pill-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-pill span {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333333; /* Metin rengi */
}

/* === CONFIG & RESET === */
:root {
    --bg-dark: #02132b;
    --bg-deep: #073059;
    --brand-blue: #038cd2;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(3, 140, 210, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none; /* Metin seçme engeli */
    -webkit-user-select: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* === DYNAMIC FOG / LIGHT BACKGROUND === */
#fog-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.light-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 140, 210, 0.18) 0%, rgba(2, 19, 43, 0) 70%);
    z-index: 1;
    transition: background 0.8s ease, transform 0.8s ease, opacity 0.8s ease;
    pointer-events: none;
    filter: blur(40px);
}

/* Light state modifications */
body.light-white .light-glow {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(2, 19, 43, 0) 70%);
    transform: translate(-50%, -50%) scale(1.2);
}

body.light-color .light-glow {
    background: radial-gradient(circle, rgba(3, 140, 210, 0.45) 0%, rgba(0, 210, 255, 0.15) 40%, rgba(2, 19, 43, 0) 75%);
    transform: translate(-50%, -50%) scale(1.35);
}

/* === MAIN LAYOUT CONTAINER === */
.app-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* === TOP HEADER / SLOGAN === */
header {
    text-align: center;
    padding-top: 0.5rem;
}

.brand-title {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-blue);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.main-slogan {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.sub-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* === CENTER CONTENT (3-COLUMN GRID) === */
.main-content {
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    align-items: center;
    gap: 2rem;
    margin: auto 0;
    padding: 1.5rem 0;
}

/* LEFT COLUMN: GROUP COMPANIES */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-pill {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 280px;
}

.company-pill:hover {
    background: var(--glass-hover);
    border-color: var(--brand-blue);
    transform: translateX(6px);
    box-shadow: 0 0 20px rgba(3, 140, 210, 0.2);
}

.pill-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pill-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* CENTER COLUMN: LOGO / INTERACTIVE ICON */
.center-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.interactive-icon-wrap {
    position: relative;
    cursor: pointer;
    padding: 1rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-icon-wrap:hover {
    transform: scale(1.05);
}

/* Ortadaki Logo Stili */
.center-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(3, 140, 210, 0.4));
    transition: filter 0.5s ease;
}

.click-hint {
    margin-top: 0.8rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.interactive-icon-wrap:hover + .click-hint {
    opacity: 1;
    color: var(--brand-blue);
}

/* RIGHT COLUMN: PTS LOGINS */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.pts-card {
    width: 100%;
    max-width: 280px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(10px);
}

.pts-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pts-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pts-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.pts-btn:hover {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    transform: translateX(-4px);
}

/* === BOTTOM SECTION: APP BADGES & FOOTER === */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 0.5rem;
}

.apps-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.app-badge img {
    height: 20px;
    width: auto;
}

.app-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-text span:first-child {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.app-text span:last-child {
    font-size: 0.8rem;
    font-weight: 600;
}

.contact-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item:hover {
    color: var(--brand-blue);
}

.contact-item i {
    color: var(--brand-blue);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--brand-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* === RESPONSIVE STYLES FOR MOBILE === */
@media (max-width: 992px) {
    body {
        overflow-y: auto;
    }

    .app-container {
        height: auto;
        min-height: 100vh;
        padding: 1.5rem 1rem;
        gap: 2rem;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .left-column, .right-column {
        align-items: center;
    }

    .center-column {
        order: -1;
    }

    .main-slogan {
        font-size: 1.4rem;
    }

    .contact-bar {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Accessibility: Motion Preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}