/* ============================================================
 * U TELEKOM — NEDEN U TELEKOM
 * Hero ile birebir uyumlu: krem taban, mor vurgu, dalgalı altı çizgi
 * Beyaz ikonlu kartlar, yüzen noktalar, kesik halka dekoru
 * ============================================================ */

.ute-why-us {
    --ute-why-primary: #481477;
    --ute-why-primary-deep: #2d0a4c;
    --ute-why-primary-dark: #1f0633;
    --ute-why-secondary: #b893d5;
    --ute-why-text: #2a1444;
    --ute-why-muted: #6b5a82;
    --ute-why-bg: #fbfaff;
    --ute-why-bg-soft: #f4eef9;
    --ute-why-surface: #ffffff;
    --ute-why-border: rgba(72, 20, 119, 0.08);
    --ute-why-border-strong: rgba(72, 20, 119, 0.18);

    position: relative;
    width: 100%;
    padding: 90px 24px 120px;
    background-color: var(--ute-why-bg);
    color: var(--ute-why-text);
    overflow: hidden;
    isolation: isolate;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Poppins", sans-serif;
}

/* Hero ile aynı blob dekorları */
.ute-why-us::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ute-why-secondary) 0%, transparent 65%);
    opacity: 0.28;
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.ute-why-us::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ute-why-primary) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.ute-why-us__inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1320px);
    margin: 0 auto;
}

/* ============================================================
 * DEKORATIF TEKNOLOJİK ÖĞELER — bg grid + topology
 * ============================================================ */

/* İnce mor dot mesh — UI/ekran hissi */
.ute-why-us__grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(72, 20, 119, 0.085) 1px, transparent 1.5px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}

/* Network topolojisi — intro'nun arkasında dekoratif */
.ute-why-us__topology {
    position: absolute;
    top: 110px;
    left: 50%;
    width: min(680px, 90%);
    height: auto;
    transform: translateX(-50%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}

.ute-why-us__topology circle:nth-child(3) {
    animation: ute-why-node-pulse 2.4s ease-in-out infinite;
    transform-origin: 300px 100px;
}

@keyframes ute-why-node-pulse {
    0%, 100% { opacity: 1; r: 5; }
    50%      { opacity: 0.6; r: 6.5; }
}

/* ============================================================
 * INTRO — Hero ile aynı tipografi
 * ============================================================ */

.ute-why-us__intro {
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px;
}

/* Hero ile aynı pill eyebrow */
.ute-why-us__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 8px 18px 8px 14px;
    border-radius: 100px;
    background-color: var(--ute-why-bg-soft);
    color: var(--ute-why-primary);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ute-why-us__eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--ute-why-primary);
}

/* Başlık — hero ile aynı stil */
.ute-why-us__title {
    margin: 0;
    color: var(--ute-why-text);
    font-size: clamp(2rem, 3.6vw, 3.5rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.015em;
}

/* Vurgulu kelime — hero ile aynı italic gradient + dalgalı çizgi */
.ute-why-us__title span {
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, var(--ute-why-primary) 0%, var(--ute-why-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 700;
}

.ute-why-us__title span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 8px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M0,4 Q25,0 50,4 T100,4' fill='none' stroke='%23b893d5' stroke-width='2' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.ute-why-us__description {
    margin: 28px auto 0;
    max-width: 720px;
    color: var(--ute-why-muted);
    font-size: clamp(0.98rem, 1.05vw, 1.125rem);
    line-height: 1.75;
    font-weight: 400;
}

.ute-why-us__description p {
    margin: 0;
}

/* Hero'dan getirilen yüzen mor nokta + kesik halka dekoru */
.ute-why-us__intro::before {
    content: "";
    position: absolute;
    top: 18%;
    left: -8%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--ute-why-secondary);
    box-shadow: 0 0 22px rgba(184, 147, 213, 0.55);
    animation: ute-why-float 4.5s ease-in-out infinite;
    pointer-events: none;
}

.ute-why-us__intro::after {
    content: "";
    position: absolute;
    top: 8%;
    right: -4%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ute-why-primary);
    box-shadow: 0 0 18px rgba(72, 20, 119, 0.35);
    animation: ute-why-float 4.5s ease-in-out infinite 1.6s;
    pointer-events: none;
}

@keyframes ute-why-float {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(-12px); opacity: 0.6; }
}

/* ============================================================
 * STATS — Beyaz kart satırı (hero ile uyumlu)
 * ============================================================ */

.ute-why-us__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 960px;
    margin: 0 auto 80px;
}

.ute-why-us__stat {
    position: relative;
    padding: 26px 28px 36px;
    border-radius: 20px;
    background: var(--ute-why-surface);
    border: 1px solid var(--ute-why-border);
    box-shadow: 0 18px 44px -22px rgba(72, 20, 119, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Üst gradient çizgi */
.ute-why-us__stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ute-why-primary), var(--ute-why-secondary));
}

/* Sağ üstte soft mor ışıma */
.ute-why-us__stat::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ute-why-secondary) 0%, transparent 70%);
    opacity: 0.12;
    pointer-events: none;
}

.ute-why-us__stat:hover {
    transform: translateY(-4px);
    border-color: var(--ute-why-border-strong);
    box-shadow: 0 24px 50px -20px rgba(72, 20, 119, 0.3);
}

/* LIVE durum etiketi — sağ üst */
.ute-why-us__stat-status {
    position: absolute;
    top: 18px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px 4px 8px;
    border-radius: 100px;
    background: rgba(72, 20, 119, 0.06);
    z-index: 2;
}

.ute-why-us__stat-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ute-why-primary);
    box-shadow: 0 0 0 3px rgba(72, 20, 119, 0.16);
    animation: ute-why-live-pulse 1.6s ease-in-out infinite;
}

@keyframes ute-why-live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.8); }
}

.ute-why-us__stat-status-label {
    color: var(--ute-why-primary);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
}

/* Sparkline — alt taraf */
.ute-why-us__stat-spark {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 14px;
    width: calc(100% - 44px);
    height: 18px;
    opacity: 0.7;
    pointer-events: none;
}

.ute-why-us__stat:hover .ute-why-us__stat-spark {
    opacity: 1;
}

.ute-why-us__stat-value {
    position: relative;
    display: block;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, var(--ute-why-primary) 0%, var(--ute-why-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ute-why-us__stat-label {
    position: relative;
    display: block;
    margin-top: 12px;
    color: var(--ute-why-muted);
    font-size: 0.96rem;
    line-height: 1.45;
    font-weight: 500;
}

/* ============================================================
 * KARTLAR — Beyaz, BEYAZ ikonlu, mor numara badge
 * ============================================================ */

.ute-why-us__cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.ute-why-us__card {
    position: relative;
    min-height: 280px;
    padding: 32px 30px 24px;
    border-radius: 22px;
    background: var(--ute-why-surface);
    border: 1px solid var(--ute-why-border);
    box-shadow: 0 18px 44px -22px rgba(72, 20, 119, 0.18);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
}

.ute-why-us__card:nth-child(1),
.ute-why-us__card:nth-child(2) {
    grid-column: span 3;
}

.ute-why-us__card:nth-child(n+3) {
    grid-column: span 2;
}

/* Sağ üstte soft mor ışıma (hover'da büyür) */
.ute-why-us__card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ute-why-secondary) 0%, transparent 70%);
    opacity: 0.1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

/* Alt gradient accent çizgi (hover'da soldan sağa açılır) */
.ute-why-us__card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ute-why-primary), var(--ute-why-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ute-why-us__card:hover {
    transform: translateY(-6px);
    border-color: var(--ute-why-border-strong);
    box-shadow: 0 28px 60px -20px rgba(72, 20, 119, 0.32);
}

.ute-why-us__card:hover::before {
    opacity: 0.22;
    transform: scale(1.15);
}

.ute-why-us__card:hover::after {
    transform: scaleX(1);
}

/* Numara badge (sağ üst) — mor pill */
.ute-why-us__card-number {
    position: absolute;
    top: 24px;
    right: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    border-radius: 100px;
    background: var(--ute-why-bg-soft);
    color: var(--ute-why-primary);
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.06em;
    z-index: 2;
}

/* İkon kutusu — mor gradient + BEYAZ ikon */
.ute-why-us__icon {
    position: relative;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ute-why-primary) 0%, var(--ute-why-primary-deep) 100%);
    box-shadow:
        0 14px 30px -10px rgba(72, 20, 119, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.35s ease;
    z-index: 1;
    /* Beyaz ikon zorlaması */
    color: #ffffff;
}

/* İkonun gerçekten beyaz olması için her olası iç elemanı kapsayan kural */
.ute-why-us__icon i,
.ute-why-us__icon svg,
.ute-why-us__icon svg * {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: currentColor;
}

.ute-why-us__card:hover .ute-why-us__icon {
    transform: translateY(-3px) rotate(-4deg);
}

/* İkon arkasında soft glow */
.ute-why-us__icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--ute-why-secondary) 0%, var(--ute-why-primary) 100%);
    opacity: 0;
    z-index: -1;
    filter: blur(14px);
    transition: opacity 0.35s ease;
}

.ute-why-us__card:hover .ute-why-us__icon::before {
    opacity: 0.55;
}

.ute-why-us__icon svg,
.ute-why-us__icon i {
    width: 28px;
    height: 28px;
    font-size: 26px;
    line-height: 1;
}

.ute-why-us__card-title {
    position: relative;
    margin: 0 0 14px;
    color: var(--ute-why-text);
    font-size: clamp(1.15rem, 1.5vw, 1.4rem);
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.01em;
    z-index: 1;
}

.ute-why-us__card-text {
    position: relative;
    margin: 0;
    color: var(--ute-why-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 400;
    z-index: 1;
}

/* ============================================================
 * KART STATUS FOOTER — ● AKTİF + sinyal barları
 * ============================================================ */

.ute-why-us__card-status {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px dashed rgba(72, 20, 119, 0.16);
    z-index: 1;
}

.ute-why-us__card-status-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ute-why-primary);
    box-shadow: 0 0 0 3px rgba(72, 20, 119, 0.16);
    flex: 0 0 auto;
}

.ute-why-us__card-status-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--ute-why-primary);
    opacity: 0.4;
    animation: ute-why-card-pulse 1.8s ease-in-out infinite;
}

@keyframes ute-why-card-pulse {
    0%   { transform: scale(0.8); opacity: 0.55; }
    100% { transform: scale(2.4);  opacity: 0; }
}

.ute-why-us__card-status-label {
    color: var(--ute-why-primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
}

/* Sinyal barları — sağ tarafta */
.ute-why-us__card-status-bars {
    margin-left: auto;
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 14px;
}

.ute-why-us__card-status-bars span {
    width: 3px;
    border-radius: 2px;
    background: var(--ute-why-secondary);
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ute-why-us__card-status-bars span:nth-child(1) { height: 5px;  }
.ute-why-us__card-status-bars span:nth-child(2) { height: 8px;  }
.ute-why-us__card-status-bars span:nth-child(3) { height: 11px; }
.ute-why-us__card-status-bars span:nth-child(4) { height: 14px; background: var(--ute-why-primary); opacity: 0.9; }

.ute-why-us__card:hover .ute-why-us__card-status-bars span {
    opacity: 1;
}

.ute-why-us__card:hover .ute-why-us__card-status-bars span:nth-child(4) {
    animation: ute-why-bar-blink 1.2s ease-in-out infinite;
}

@keyframes ute-why-bar-blink {
    0%, 100% { transform: scaleY(1);   }
    50%      { transform: scaleY(0.6); }
}

/* ============================================================
 * RESPONSIVE
 * ============================================================ */

@media (max-width: 1024px) {
    .ute-why-us {
        padding: 68px 24px 90px;
    }

    .ute-why-us__intro::before,
    .ute-why-us__intro::after {
        display: none;
    }

    .ute-why-us__topology {
        opacity: 0.32;
    }
}

@media (max-width: 900px) {
    .ute-why-us {
        padding: 54px 20px 72px;
    }

    .ute-why-us__intro {
        margin-bottom: 48px;
    }

    .ute-why-us__topology {
        top: 80px;
    }

    .ute-why-us__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 56px;
    }

    .ute-why-us__stat {
        padding: 22px 18px 32px;
    }

    .ute-why-us__stat-status-label {
        display: none;
    }

    .ute-why-us__stat-status {
        padding: 4px;
    }

    .ute-why-us__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .ute-why-us__card,
    .ute-why-us__card:nth-child(1),
    .ute-why-us__card:nth-child(2),
    .ute-why-us__card:nth-child(n+3) {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .ute-why-us {
        padding: 48px 20px 64px;
    }

    .ute-why-us__topology {
        display: none;
    }

    .ute-why-us__title {
        font-size: 1.85rem;
    }

    .ute-why-us__description {
        font-size: 0.96rem;
    }

    .ute-why-us__stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 44px;
    }

    .ute-why-us__cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ute-why-us__card {
        min-height: auto;
        padding: 28px 24px 22px;
    }

    .ute-why-us__card-number {
        top: 20px;
        right: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ute-why-us__intro::before,
    .ute-why-us__intro::after,
    .ute-why-us__stat-status-dot,
    .ute-why-us__card-status-dot::after,
    .ute-why-us__topology circle:nth-child(3),
    .ute-why-us__card:hover .ute-why-us__card-status-bars span:nth-child(4) {
        animation: none;
    }
}
