/* ============================================
   PLACEHOLDER SAYFASI - Yakında/Hazırlanıyor
   ============================================ */

.ph-page {
    min-height: calc(100vh - 100px);
}

.ph-hero {
    position: relative;
    padding: 40px 24px 100px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

/* .ph-hero içinde kalan .ph-bg'yi genişlet */
.ph-bg {
    position: absolute;
    /* Container'ın dışına taş */
    top: 0;
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: 100vw; /* Tam ekran genişlik */
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ph-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
}

.ph-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, #8B5CF6 0%, rgba(139, 92, 246, 0.4) 30%, transparent 70%);
    top: -200px;
    left: -180px;
    animation: phFloat 14s ease-in-out infinite;
}

.ph-glow-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle at center, #06B6D4 0%, rgba(6, 182, 212, 0.4) 30%, transparent 70%);
    bottom: -220px;
    right: -160px;
    animation: phFloat 14s ease-in-out infinite reverse;
}
.ph-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, #EC4899 0%, rgba(236, 72, 153, 0.3) 30%, transparent 70%);
    top: 40%;
    right: -120px;
    opacity: 0.2;
    animation: phFloat 18s ease-in-out infinite;
    animation-delay: -3s;
}

.ph-glow-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle at center, #10B981 0%, rgba(16, 185, 129, 0.25) 30%, transparent 70%);
    top: 50%;
    left: -150px;
    opacity: 0.15;
    animation: phFloat 16s ease-in-out infinite reverse;
    animation-delay: -5s;
}

@keyframes phFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

.ph-grad {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ph-inner {
    position: relative;
    z-index: 2;
}

.ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(236, 72, 153, 0.12));
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: var(--r-full);
    font-size: 0.72rem;
    font-weight: 800;
    color: #D97706;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    animation: phBadgeIn 0.6s var(--ease) backwards;
}

@keyframes phBadgeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ph-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D97706;
    animation: phBadgePulse 2s ease-in-out infinite;
}

@keyframes phBadgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(217, 119, 6, 0);
    }
}

.ph-icon-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 32px;
    animation: phBadgeIn 0.6s var(--ease) 0.1s backwards;
}

.ph-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(139, 92, 246, 0.25);
    animation: phOrbitRotate 20s linear infinite;
}

.ph-orbit-1 {
    inset: -10px;
    border-color: rgba(139, 92, 246, 0.3);
}

.ph-orbit-2 {
    inset: -20px;
    border-color: rgba(6, 182, 212, 0.2);
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes phOrbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ph-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35),
    0 16px 48px rgba(6, 182, 212, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: phIconBounce 3s ease-in-out infinite;
}

@keyframes phIconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.ph-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    animation: phBadgeIn 0.6s var(--ease) 0.2s backwards;
}

.ph-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 40px;
    animation: phBadgeIn 0.6s var(--ease) 0.3s backwards;
}

.ph-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    animation: phBadgeIn 0.6s var(--ease) 0.4s backwards;
}

.ph-fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.ph-fact:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.06),
    0 12px 24px rgba(6, 182, 212, 0.08);
}

.ph-fact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ph-fact > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ph-fact strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.ph-fact span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.ph-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: phBadgeIn 0.6s var(--ease) 0.5s backwards;
}

.ph-divider {
    position: relative;
    text-align: center;
    margin: 48px 0 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.ph-divider::before,
.ph-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.ph-divider::before {
    left: 0;
}

.ph-divider::after {
    right: 0;
}

.ph-others {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ph-other-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.ph-other-link:hover {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.ph-other-link svg {
    transition: transform 0.3s;
}

.ph-other-link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .ph-hero {
        padding: 30px 16px 60px;
    }

    .ph-icon-wrap {
        width: 110px;
        height: 110px;
    }

    .ph-icon svg {
        width: 32px;
        height: 32px;
    }

    .ph-facts {
        grid-template-columns: 1fr;
    }

    .ph-cta {
        flex-direction: column;
    }

    .ph-cta > * {
        width: 100%;
        justify-content: center;
    }

    .ph-divider::before,
    .ph-divider::after {
        width: 20%;
    }
}