@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ── Keyframes ── */
@keyframes wc-gridPulse {

    0%,
    100% {
        opacity: 0.02;
    }

    50% {
        opacity: 0.04;
    }
}

@keyframes wc-scanLine {
    0% {
        top: -2px;
    }

    100% {
        top: 100%;
    }
}

@keyframes wc-flagScroll1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes wc-flagScroll2 {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes wc-flagScrollVertical1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes wc-flagScrollVertical2 {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes wc-lockScan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ── Feature Grid ── */
.wc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 1000px;
    width: 100%;
}

@media (max-width: 768px) {
    .wc-feature-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        max-width: 100%;
        width: 100%;
        overflow: visible;
    }

    /* First card (48 Saatte Kurulum) — full width on top */
    .wc-feature-grid>div:first-child {
        width: 100%;
        flex-shrink: 0;
        grid-column: auto !important;
    }

    /* Scrollable wrapper for remaining cards */
    .wc-feature-grid>div:not(:first-child) {
        grid-column: auto !important;
    }

    /* Make a horizontal scroll container using the grid itself */
    .wc-feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
    }

    .wc-feature-grid>div:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }
}

/* ── Range Input ── */
.wc-section input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.wc-section input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.wc-section input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

/* ── Mobile WhyChooseScene2 spacing ── */
@media (max-width: 768px) {
    .wc-scene2 {
        padding-bottom: 160px !important;
        min-height: auto !important;
    }

    .wc-scene2-text {
        padding: 0 16px;
    }
}

/* Add some spacious padding to separate it from WhatIsCally */
.wc-section {
    padding-top: 150px;
}

@media (min-width: 769px) {
    #features.wc-scene1 {
        position: relative;
        min-height: 80vh;
        padding: 20px 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        background: transparent;
    }

    #why-choose-scene1-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #competitors.wc-section {
        position: relative;
        min-height: 100vh;
        padding: 100px 20px;
        background: transparent;
        overflow: hidden;
        z-index: 10;
    }

    #competitor-benchmark-content {
        position: relative;
        width: 100%;
    }

    #savings-content {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* Competitor Benchmark Responsiveness */
.benchmark-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-comparison-grid {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
    align-items: stretch;
}

.pricing-comparison-card {
    min-height: 100%;
    padding: 24px 26px;
    display: grid;
    gap: 18px;
}

.pricing-comparison-card.is-highlighted {
    transform-origin: center;
}

.pricing-comparison-meta,
.pricing-comparison-block {
    display: grid;
    gap: 8px;
}

.pricing-comparison-label {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.pricing-comparison-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(168, 85, 247, 0.2), rgba(255, 255, 255, 0.06));
}

@media (max-width: 768px) {
    .wc-section {
        padding-top: 80px;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .benchmark-charts-grid {
        grid-template-columns: 1fr;
    }

    .benchmark-chart-card {
        min-height: 350px !important;
        padding: 20px !important;
    }

    .pricing-comparison-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pricing-comparison-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .pricing-comparison-label {
        font-size: 10px;
    }
}
