/**
 * Bulut Depolama Sayfası Stilleri
 * Kimlik: zümrüt/teal + koyu orman yeşili; veri ve güven hissi.
 * Animasyonlar yalnızca transform/opacity kullanır (performans).
 */

/* ========================================
   HERO — koyu header ile bütünleşik
   ======================================== */

.st-hero {
    position: relative;
    padding-top: 220px !important;
    margin-top: -200px !important;
}

@media (max-width: 768px) {
    .st-hero {
        padding-top: 180px !important;
        margin-top: -160px !important;
    }
}

/* ========================================
   KAYARKEN BELİRME + HOVER HAREKETLERİ
   ======================================== */

.st-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.st-reveal.st-in {
    opacity: 1;
    transform: none;
}

.st-lift {
    transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1),
        box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.st-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(16, 185, 129, 0.16);
}

.st-icon {
    transition: transform 0.35s ease;
}

.st-lift:hover .st-icon {
    transform: scale(1.1) rotate(-4deg);
}

.st-bar {
    display: block;
    width: 72px;
    height: 5px;
    border-radius: 9999px;
    margin: 1.1rem auto 0;
    background: linear-gradient(90deg, #10b981, #14b8a6);
}

.st-bar-light {
    background: linear-gradient(90deg, #34d399, #2dd4bf);
}

@keyframes st-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.st-float {
    animation: st-float 7s ease-in-out infinite;
}

/* ========================================
   KAPASİTE KAYDIRICISI
   ======================================== */

.st-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #10b981 var(--st-fill, 30%), #e2e8f0 var(--st-fill, 30%));
    outline: none;
    cursor: pointer;
}

.st-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    background: #ffffff;
    border: 3px solid #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    cursor: grab;
    transition: transform 0.15s ease;
}

.st-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.st-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    background: #ffffff;
    border: 3px solid #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    cursor: grab;
}

.st-slider::-moz-range-track {
    height: 8px;
    border-radius: 9999px;
    background: transparent;
}

.st-slider:focus-visible {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
}

@keyframes st-price-pop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.st-price-pop {
    animation: st-price-pop 0.3s ease;
}

/* ========================================
   REPLİKASYON GÖRSELİ (nesne -> 3 düğüm)
   ======================================== */

@keyframes st-pulse-dot {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}

.st-rep-dot {
    animation: st-pulse-dot 1.8s ease-in-out infinite;
}

/* ========================================
   HAREKET AZALTMA TERCİHİ
   ======================================== */

@media (prefers-reduced-motion: reduce) {

    .st-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .st-lift,
    .st-icon {
        transition: none;
    }

    .st-float,
    .st-price-pop,
    .st-rep-dot {
        animation: none;
    }
}
