/* Ortak Paket Servis - Anasayfa
   Tum sinifar .opsx- onekli; tema sinifariyla cakismaz. */

body.kurumsal-site {
    --opsx-navy: hsl(197, 89%, 10%);
    --opsx-red: hsl(358, 86%, 47%);
    --opsx-ink: #0b1a22;
    --opsx-body: #445560;
    --opsx-line: #dfe6ea;
    --opsx-surface: #f3f6f8;
    --opsx-sec-y: clamp(3.25rem, 6.5vw, 7rem);
    --opsx-radius: 1.15rem;
    --opsx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.opsx-sec {
    position: relative;
    padding-block: var(--opsx-sec-y);
}

.opsx-sec--tight {
    padding-block: clamp(2.25rem, 4.5vw, 4rem);
}

.opsx-sec--surface {
    background: var(--opsx-surface);
}

/* ---------- Bolum basligi ---------- */

.opsx-head {
    max-width: 44rem;
    margin-bottom: clamp(1.85rem, 3.5vw, 3rem);
}

.opsx-head--center {
    margin-inline: auto;
    text-align: center;
}

/* Bir blogun icinde ust baslik olarak kullanildiginda daha dar bosluk */
.opsx-head--sub {
    margin-bottom: 1.75rem;
}

.opsx-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.9rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--opsx-red);
}

.opsx-head--center .opsx-eyebrow {
    justify-content: center;
}

.opsx-eyebrow::before {
    content: "";
    width: 1.75rem;
    height: 2px;
    background: currentColor;
    flex: 0 0 auto;
}

.opsx-title {
    margin: 0;
    font-size: clamp(1.7rem, 1.05rem + 2.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.022em;
    color: var(--opsx-ink);
    text-wrap: balance;
}

.opsx-title em {
    font-style: normal;
    color: var(--opsx-red);
}

.opsx-lede {
    margin: 0.95rem 0 0;
    font-size: clamp(1rem, 0.97rem + 0.2vw, 1.125rem);
    line-height: 1.62;
    color: var(--opsx-body);
    max-width: 38rem;
}

.opsx-head--center .opsx-lede {
    margin-inline: auto;
}

/* ---------- Hero ---------- */

.opsx-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
    padding-top: clamp(5.5rem, 13vh, 8.5rem);
    padding-bottom: clamp(1.25rem, 3vh, 2.5rem);
}

.opsx-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 50%;
}

/* 576px ustunde ust iletisim seridi devreye girer (~137px); clamp'in ust siniri yetmiyordu */
@media (min-width: 576px) and (max-width: 991.98px) {
    .opsx-hero {
        padding-top: 9.25rem;
    }
}

/* Masaustunde ust iletisim seridi + navbar toplami 155px; icerik altina girmesin */
@media (min-width: 992px) {
    .opsx-hero {
        padding-top: 10.5rem;
    }
}

/* 992-1199px arasinda paylasilan navbar menusu iki satira sariyor ve header
   155px yerine 247px oluyor (components/header.php). Hero o araliki header'i de
   temizleyecek kadar bosluk birakir; navbar duzeltilirse bu blok kaldirilabilir. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .opsx-hero {
        padding-top: 16.25rem;
    }
}

/* Genis ekranda odak sagda kalsin, metin sutunuyla carpismasin */
@media (min-width: 1200px) {
    .opsx-hero__bg {
        object-position: 64% 50%;
    }
}

.opsx-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to top, rgba(2, 14, 21, 0.95) 0%, rgba(2, 14, 21, 0.82) 42%, rgba(2, 14, 21, 0.55) 70%, rgba(2, 14, 21, 0.5) 100%);
}

@media (min-width: 992px) {
    .opsx-hero__scrim {
        background:
            radial-gradient(120% 90% at 18% 52%, rgba(2, 14, 21, 0.88) 0%, rgba(2, 14, 21, 0.55) 38%, transparent 68%),
            linear-gradient(100deg, rgba(2, 14, 21, 0.92) 0%, rgba(2, 14, 21, 0.7) 30%, rgba(2, 14, 21, 0.22) 62%, rgba(2, 14, 21, 0.04) 100%),
            linear-gradient(to top, rgba(2, 14, 21, 0.85) 0%, transparent 46%);
    }
}

/* Ince film graini: duz gradyanin dijital/yapay gorunumunu kirar */
.opsx-hero__scrim::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
}

.opsx-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: clamp(1.5rem, 4vh, 3rem);
    /* shrink kapali: icerik sigmazsa hero uzasin. Daralmaya izin verilirse 1fr satiri
       icerikten kucuk kalir ve ortalama metni yukari, sabit header'in altina itiyor. */
    flex: 1 0 auto;
    width: 100%;
}

.opsx-hero__copy {
    align-self: center;
    max-width: 34rem;
}

@media (min-width: 992px) {
    .opsx-hero__copy {
        position: relative;
        max-width: 41rem;
        padding-left: 1.85rem;
    }

    /* Editoryal capa: ustte kirmizi, devaminda sonumlenen dikey cizgi */
    .opsx-hero__copy::before {
        content: "";
        position: absolute;
        inset-inline-start: 0;
        top: 0.4rem;
        bottom: 0.4rem;
        width: 2px;
        border-radius: 2px;
        background: linear-gradient(to bottom, var(--opsx-red) 0 4.5rem, rgba(255, 255, 255, 0.16) 4.5rem 100%);
    }
}

@media (min-width: 1400px) {
    .opsx-hero__copy {
        max-width: 46rem;
    }
}

/* Genis ekranda sag bosluga platform ozeti; serit iki sutunun altini kaplar */
@media (min-width: 1200px) {
    .opsx-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(19rem, 23rem);
        column-gap: clamp(2rem, 4vw, 4.5rem);
    }

    .opsx-hero__copy {
        grid-column: 1;
        grid-row: 1;
    }

    .opsx-hero__panel {
        grid-column: 2;
        grid-row: 1;
    }

    .opsx-stats {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

/* ---------- Hero guven seridi ---------- */

.opsx-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1.15rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.opsx-hero__proof li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: rgba(226, 238, 244, 0.82);
}

.opsx-hero__proof i {
    color: #23d17f;
    font-size: 0.95em;
}

/* Dar ekranda flex-wrap 2+1 dagink duruyor; hizali izgaraya alinir */
@media (max-width: 575.98px) {
    .opsx-hero__proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 0.6rem;
    }

    .opsx-hero__proof li:last-child {
        grid-column: 1 / -1;
    }
}

/* ---------- Hero platform ozeti paneli ---------- */

.opsx-hero__panel {
    display: none;
}

@media (min-width: 1200px) {
    .opsx-hero__panel {
        display: block;
        align-self: center;
        padding: 1.5rem 1.6rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 1.15rem;
        background: rgba(3, 18, 26, 0.58);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}

.opsx-hero__panel-k {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(226, 238, 244, 0.6);
}

.opsx-hero__caps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.opsx-hero__caps li {
    display: flex;
    gap: 0.85rem;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.opsx-hero__caps li:first-child {
    border-top: 0;
}

.opsx-hero__caps li:last-child {
    padding-bottom: 0.15rem;
}

.opsx-hero__cap-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.6rem;
    background: rgba(223, 17, 34, 0.16);
    color: #ff5d6b;
    font-size: 1.15rem;
}

.opsx-hero__caps strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 650;
    line-height: 1.35;
    color: #fff;
}

.opsx-hero__caps strong + span {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(226, 238, 244, 0.68);
}

.opsx-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem 0.4rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.92);
}

.opsx-pulse {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #23d17f;
}

.opsx-pulse::after {
    content: "";
    position: absolute;
    inset: -0.28rem;
    border-radius: 50%;
    border: 1px solid #23d17f;
    animation: opsxPulse 2.4s var(--opsx-ease) infinite;
}

@keyframes opsxPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }

    70%,
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.opsx-hero__title {
    margin: 0;
    font-size: clamp(1.95rem, 1.05rem + 3.9vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    text-wrap: balance;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.opsx-hero__title span {
    display: block;
}

/* Ikinci satir soluk degil, ince bir kirmizi vurguyla ayrilir */
.opsx-hero__title span + span {
    position: relative;
    display: inline-block;
    padding-bottom: 0.14em;
    background-image: linear-gradient(var(--opsx-red), var(--opsx-red));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 3px;
}

/* Kisa ekranli telefonlar (SE, eski Android): hero tek ekrana sigsin */
@media (max-height: 700px) and (max-width: 991.98px) {
    .opsx-hero {
        /* Alt sinir xs navbar'i (~72px) temizlemeli; 4.25rem yetmiyordu */
        padding-top: clamp(4.9rem, 11vh, 5.5rem);
    }

    .opsx-hero__eyebrow,
    .opsx-hero__proof {
        display: none;
    }

    .opsx-hero__inner {
        gap: 1rem;
    }

    .opsx-hero__title {
        font-size: clamp(1.65rem, 1rem + 3vw, 2.25rem);
    }

    .opsx-role__text {
        margin-bottom: 0.85rem;
        font-size: 0.9375rem;
    }

    .opsx-stat {
        padding: 0.6rem 0.75rem;
    }
}

/* ---------- Rol secici ---------- */

.opsx-seg {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.15rem;
    margin-top: clamp(1.35rem, 3vh, 2rem);
    padding: 0.28rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(6, 24, 33, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
    .opsx-seg {
        display: inline-grid;
        grid-template-columns: repeat(3, auto);
    }
}

.opsx-seg__thumb {
    position: absolute;
    top: 0.28rem;
    bottom: 0.28rem;
    left: 0;
    z-index: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.42s var(--opsx-ease), width 0.42s var(--opsx-ease);
    will-change: transform, width;
}

.opsx-seg__btn {
    position: relative;
    z-index: 1;
    appearance: none;
    border: 0;
    background: transparent;
    border-radius: 999px;
    /* Dokunma hedefi 44px altina inmesin (WCAG 2.5.8 / iOS HIG) */
    min-height: 2.75rem;
    padding: 0.62rem 0.9rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transition: color 0.28s ease;
}

/* Dar telefonlarda 3 etiket tek satirda sigsin */
@media (max-width: 400px) {
    .opsx-seg__btn {
        padding-inline: 0.4rem;
        font-size: 0.8125rem;
    }
}

@media (min-width: 768px) {
    .opsx-seg__btn {
        padding-inline: 1.4rem;
        font-size: 1rem;
    }
}

.opsx-seg__btn:hover {
    color: #fff;
}

.opsx-seg__btn[aria-selected="true"] {
    color: var(--opsx-navy);
}

.opsx-seg__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.opsx-role {
    margin-top: clamp(1.1rem, 2.5vh, 1.6rem);
}

.opsx-role[hidden] {
    display: none;
}

.opsx-role__text {
    margin: 0 0 1.15rem;
    font-size: clamp(1rem, 0.95rem + 0.35vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 32rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.opsx-role__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

/* Mobilde iki CTA yan yana; tek satira sigmasi icin olculer kuculur */
@media (max-width: 767.98px) {
    .opsx-role__cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .opsx-role__cta .opsx-btn {
        min-width: 0;
        padding-inline: 0.7rem;
        font-size: 0.875rem;
        white-space: nowrap;
        gap: 0.4rem;
    }

    .opsx-role__cta .opsx-btn i {
        font-size: 1em;
    }
}

@media (max-width: 374.98px) {
    .opsx-role__cta .opsx-btn {
        padding-inline: 0.5rem;
        font-size: 0.8125rem;
    }
}

.opsx-anim .opsx-role:not([hidden]) {
    animation: opsxRoleIn 0.42s var(--opsx-ease) both;
}

@keyframes opsxRoleIn {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }
}

/* ---------- Butonlar ---------- */

.opsx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 0.7rem;
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s var(--opsx-ease), background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.opsx-btn i {
    font-size: 1.15em;
    line-height: 1;
    transition: transform 0.3s var(--opsx-ease);
}

.opsx-btn:hover i {
    transform: translateX(0.18rem);
}

.opsx-btn:active {
    transform: translateY(1px);
}

.opsx-btn:focus-visible {
    outline: 2px solid var(--opsx-red);
    outline-offset: 3px;
}

.opsx-btn--primary {
    background: var(--opsx-red);
    color: #fff;
    box-shadow: 0 10px 26px -10px rgba(223, 17, 34, 0.75);
}

.opsx-btn--primary:hover {
    background: hsl(358, 86%, 41%);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(223, 17, 34, 0.85);
}

.opsx-btn--ghost {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.opsx-btn--ghost:hover {
    background: #fff;
    border-color: #fff;
    color: var(--opsx-navy);
}

.opsx-btn--dark {
    background: var(--opsx-navy);
    color: #fff;
}

.opsx-btn--dark:hover {
    background: var(--opsx-red);
    color: #fff;
}

.opsx-btn--line {
    border-color: var(--opsx-line);
    background: #fff;
    color: var(--opsx-ink);
}

.opsx-btn--line:hover {
    border-color: var(--opsx-navy);
    background: var(--opsx-navy);
    color: #fff;
}

/* Formun icindeki giris butonu (POST /giris) */
.opsx-inlineform {
    display: contents;
}

/* ---------- Hero istatistik seridi ---------- */

.opsx-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Esit satir: "Tamamlanan Teslimat" iki satira dusunce alt satir uzamasin */
    grid-auto-rows: 1fr;
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

@media (min-width: 768px) {
    .opsx-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.opsx-stat {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.95rem;
    background: rgba(3, 18, 26, 0.62);
}

@media (min-width: 768px) {
    .opsx-stat {
        padding: 1.1rem 1.35rem;
    }
}

/* Genis ekranda hucreler cok genisliyor; icerik ortalanmazsa serit bos duruyor */
@media (min-width: 1200px) {
    .opsx-stat {
        justify-content: center;
        gap: 0.95rem;
    }
}

.opsx-stat__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    background: rgba(223, 17, 34, 0.16);
    color: #ff5d6b;
    font-size: 1.25rem;
}

.opsx-stat__icon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.opsx-stat__num {
    display: block;
    font-size: clamp(1.15rem, 1rem + 0.65vw, 1.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    /* counterUp sayarken rakam genisligi degisip zipliyor */
    font-variant-numeric: tabular-nums;
}

.opsx-stat__label {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.8125rem;
    line-height: 1.3;
    color: rgba(226, 238, 244, 0.72);
    /* Tema main.css'te global word-break: break-word var; "Tamamlanan" ortadan bolunuyordu */
    word-break: normal;
    overflow-wrap: normal;
}

/* ---------- Referans seridi ---------- */

.opsx-partners {
    padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
    background: #fff;
    border-bottom: 1px solid var(--opsx-line);
    /* Swiper slaytlari sayfayi yatay kaydirmasin */
    overflow: hidden;
}

.opsx-partners .brand-three-slider {
    overflow: hidden;
}

.opsx-partners__label {
    margin: 0 0 1.15rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7b8b95;
}

.opsx-partners .brand-three-slider {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.opsx-partners .brand-three-slider .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.opsx-partners .brand-three-slider,
.opsx-partners .brand-three-slider .swiper-slide {
    user-select: none;
    -webkit-user-drag: none;
}

.opsx-partner-logo {
    display: block;
    max-width: 160px;
    max-height: 74px;
    width: auto;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.62;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.opsx-partners a:hover .opsx-partner-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* ---------- Kart izgarasi ---------- */

.opsx-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 992px) {
    .opsx-grid {
        gap: 1.15rem;
        grid-template-columns: repeat(var(--opsx-cols, 4), 1fr);
    }
}

.opsx-grid--after {
    margin-top: clamp(2.25rem, 4.5vw, 3.5rem);
}

/* 3 kartlik izgara 2 sutuna dustugunde sonuncusu yalniz kalmasin */
@media (max-width: 991.98px) {
    .opsx-grid--after .opsx-card:last-child {
        grid-column: span 2;
    }
}

.opsx-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: clamp(1rem, 2.2vw, 1.65rem);
    border: 1px solid var(--opsx-line);
    border-radius: var(--opsx-radius);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    box-shadow: 0 1px 2px rgba(11, 26, 34, 0.04);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.32s var(--opsx-ease), border-color 0.3s ease, box-shadow 0.32s ease;
}

.opsx-card::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 2px;
    background: var(--opsx-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--opsx-ease);
}

.opsx-card:hover,
.opsx-card:focus-visible {
    transform: translateY(-3px);
    border-color: #c4d1d9;
    box-shadow: 0 18px 34px -20px rgba(11, 26, 34, 0.42), 0 2px 6px rgba(11, 26, 34, 0.05);
}

a.opsx-card:focus-visible {
    outline: 2px solid var(--opsx-red);
    outline-offset: 3px;
}

.opsx-card:hover::after,
.opsx-card:focus-visible::after {
    transform: scaleX(1);
}

.opsx-card__idx {
    position: absolute;
    top: 0.85rem;
    inset-inline-end: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #c3ced5;
}

.opsx-card__icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(223, 17, 34, 0.1);
    color: var(--opsx-red);
    font-size: 1.4rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.opsx-card:hover .opsx-card__icon {
    background: var(--opsx-red);
    color: #fff;
}

.opsx-card__title {
    margin: 0;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--opsx-ink);
}

.opsx-card__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.58;
    color: var(--opsx-body);
}

/* Vurgulu kart (Is Ortakligi) */
.opsx-card--accent {
    border-color: transparent;
    background: var(--opsx-navy);
}

.opsx-card--accent .opsx-card__title {
    color: #fff;
}

.opsx-card--accent .opsx-card__text {
    color: rgba(226, 238, 244, 0.75);
}

.opsx-card--accent .opsx-card__icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.opsx-card--accent:hover .opsx-card__icon {
    background: var(--opsx-red);
}

/* ---------- Hakkimizda blogu ---------- */

.opsx-about {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: center;
}

@media (min-width: 992px) {
    .opsx-about {
        grid-template-columns: 1fr 1fr;
    }
}

.opsx-about__media {
    position: relative;
    border-radius: var(--opsx-radius);
    overflow: hidden;
}

.opsx-about__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

@media (min-width: 992px) {
    .opsx-about__media img {
        aspect-ratio: 4 / 3.4;
    }
}

.opsx-about__badge {
    position: absolute;
    inset-inline-start: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.1rem;
    border-radius: 0.85rem;
    background: rgba(3, 18, 26, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 650;
    font-size: 0.9375rem;
}

.opsx-about__badge i {
    color: #ff5d6b;
    font-size: 1.5rem;
}

.opsx-feats {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.opsx-feat {
    display: flex;
    gap: 1rem;
}

.opsx-feat__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 0.8rem;
    background: rgba(223, 17, 34, 0.1);
    color: var(--opsx-red);
    font-size: 1.45rem;
}

.opsx-feat h3 {
    margin: 0 0 0.35rem;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--opsx-ink);
}

.opsx-feat p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--opsx-body);
}

.opsx-about__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--opsx-line);
}

.opsx-phone {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.opsx-phone__icon {
    display: grid;
    place-items: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    background: var(--opsx-red);
    color: #fff;
    font-size: 1.35rem;
    transition: background-color 0.28s ease, transform 0.28s var(--opsx-ease);
}

.opsx-phone:hover .opsx-phone__icon {
    background: var(--opsx-navy);
    transform: scale(1.06);
}

.opsx-phone__label {
    display: block;
    font-size: 0.8125rem;
    color: #7b8b95;
}

.opsx-phone__num {
    display: block;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--opsx-ink);
}

/* ---------- Entegrasyon seridi ---------- */

.opsx-marq-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7b8b95;
}

.opsx-marq + .opsx-marq-label {
    margin-top: 1.5rem;
}

.opsx-marq-label i {
    color: var(--opsx-red);
    font-size: 1.15em;
}

.opsx-marq-foot {
    margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
    text-align: center;
}

.opsx-marq {
    position: relative;
    overflow: hidden;
    /* Kart genisligi seridin kendi genisligine gore hesaplanir (100cqw) */
    container-type: inline-size;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.opsx-marq + .opsx-marq {
    margin-top: 0.75rem;
}

.opsx-marq__track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    /* Sure PHP'den gelir; kopya sayisi degisince hiz sabit kalir */
    animation: opsxMarq var(--opsx-marq-dur, 34s) linear infinite;
}

.opsx-marq--rev .opsx-marq__track {
    animation-direction: reverse;
}

.opsx-marq:hover .opsx-marq__track,
.opsx-marq:focus-within .opsx-marq__track {
    animation-play-state: paused;
}

@keyframes opsxMarq {
    to {
        transform: translateX(-50%);
    }
}

.opsx-chip {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: clamp(8.5rem, 24vw, 11.5rem);
    height: clamp(4.5rem, 11vw, 5.75rem);
    padding: 1rem 1.35rem;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.9rem;
    background: var(--opsx-navy);
    transition: background-color 0.3s ease, transform 0.3s var(--opsx-ease);
}

.opsx-chip:hover {
    background: var(--opsx-red);
    transform: translateY(-3px);
}

.opsx-chip img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.opsx-chip__soon {
    position: absolute;
    top: 0.4rem;
    inset-inline-end: 0.5rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--opsx-navy);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.opsx-chip__fallback {
    color: #fff;
    font-size: 1.75rem;
}

/* Masaustunde seritte tek seferde 6 kart: 6 kart + 5 x 0.75rem bosluk = serit genisligi.
   Bu blok .opsx-chip temel kuralindan sonra gelmeli, yoksa ayni ozgullukte ezilir. */
@media (min-width: 992px) {
    .opsx-chip {
        width: calc((100cqw - 3.75rem) / 6);
        height: auto;
        min-height: 5.75rem;
        aspect-ratio: 2 / 1;
        padding: 1.15rem 1.65rem;
    }
}

/* ---------- Yatay kaydirma rayi (mobil) ---------- */

.opsx-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(76%, 1fr);
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* Ray sonuna gelince kaydirma tarayicinin geri-git jestini tetiklemesin */
    overscroll-behavior-x: contain;
    /* .container yatay padding'i --bs-gutter-x'in yarisi; ray tam kenara tasar */
    scroll-padding-inline: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-inline: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    margin-inline: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    padding-bottom: 0.35rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.opsx-rail::-webkit-scrollbar {
    display: none;
}

.opsx-rail > * {
    scroll-snap-align: start;
}

@media (min-width: 992px) {
    .opsx-rail {
        grid-auto-flow: row;
        grid-template-columns: repeat(var(--opsx-rail-cols, 3), 1fr);
        gap: 1.15rem;
        overflow: visible;
        padding-inline: 0;
        margin-inline: 0;
    }
}

.opsx-dots {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 0.35rem;
}

@media (min-width: 992px) {
    .opsx-dots {
        display: none;
    }
}

/* Gorsel nokta kucuk kalir, dokunma alani 44px yuksekliginde seffaf padding ile buyur */
.opsx-dots button {
    display: grid;
    place-items: center;
    width: 1.6rem;
    height: 2.75rem;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.opsx-dots button::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #c3ced5;
    transition: width 0.32s var(--opsx-ease), background-color 0.32s ease;
}

.opsx-dots button[aria-current="true"]::before {
    width: 1.35rem;
    background: var(--opsx-red);
}

.opsx-dots button:focus-visible {
    outline: 2px solid var(--opsx-red);
    outline-offset: 2px;
    border-radius: 0.4rem;
}

/* ---------- Adimlar ---------- */

.opsx-steps {
    position: relative;
}

@media (min-width: 992px) {
    .opsx-steps::before {
        content: "";
        position: absolute;
        top: 1.6rem;
        inset-inline: 10%;
        height: 2px;
        background: repeating-linear-gradient(90deg, var(--opsx-line) 0 6px, transparent 6px 12px);
    }
}

.opsx-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 1px solid var(--opsx-line);
    border-radius: var(--opsx-radius);
    background: #fff;
    transition: transform 0.32s var(--opsx-ease), box-shadow 0.32s ease, border-color 0.3s ease;
}

@media (min-width: 992px) {
    .opsx-step {
        padding: 0;
        border: 0;
        background: transparent;
        text-align: center;
        align-items: center;
    }

    .opsx-step:hover {
        transform: translateY(-4px);
    }
}

.opsx-step__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

@media (min-width: 992px) {
    .opsx-step__head {
        flex-direction: column;
        gap: 0.6rem;
    }
}

.opsx-step__idx {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #9fb0ba;
}

.opsx-step__num {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--opsx-navy);
    color: #fff;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 992px) {
    .opsx-step__num {
        box-shadow: 0 0 0 8px var(--opsx-surface);
    }
}

.opsx-step:hover .opsx-step__num {
    background: var(--opsx-red);
}

.opsx-step h3 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--opsx-ink);
}

.opsx-step p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--opsx-body);
}

/* ---------- Yorumlar ---------- */

.opsx-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 2.5vw, 1.85rem);
    border: 1px solid var(--opsx-line);
    border-radius: var(--opsx-radius);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    box-shadow: 0 1px 2px rgba(11, 26, 34, 0.04);
    height: 100%;
    overflow: hidden;
}

.opsx-quote::before {
    content: "\201D";
    position: absolute;
    top: -1.4rem;
    inset-inline-end: 0.75rem;
    font-size: 7rem;
    line-height: 1;
    color: var(--opsx-red);
    opacity: 0.08;
    pointer-events: none;
}

.opsx-quote__stars {
    display: flex;
    gap: 0.15rem;
    color: #f5a524;
    font-size: 1rem;
}

.opsx-quote__text {
    margin: 0;
    flex: 1 1 auto;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--opsx-ink);
}

.opsx-quote__by {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--opsx-line);
}

.opsx-quote__by img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.opsx-quote__name {
    display: block;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--opsx-ink);
}

.opsx-quote__meta {
    display: block;
    font-size: 0.8125rem;
    color: #7b8b95;
}

/* ---------- SSS + destek ---------- */

.opsx-faq {
    display: grid;
    gap: clamp(1.75rem, 3.5vw, 3rem);
    align-items: start;
}

@media (min-width: 992px) {
    .opsx-faq {
        grid-template-columns: 1.35fr 1fr;
    }
}

.opsx-acc {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.opsx-acc__item {
    border: 1px solid var(--opsx-line);
    border-radius: 0.9rem;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.opsx-acc__item:has(.opsx-acc__btn[aria-expanded="true"]) {
    border-color: #c9d5dc;
    box-shadow: 0 14px 30px -24px rgba(11, 26, 34, 0.6);
}

.opsx-acc__h {
    margin: 0;
}

.opsx-acc__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.15rem;
    border: 0;
    background: transparent;
    text-align: start;
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.4;
    color: var(--opsx-ink);
    cursor: pointer;
}

.opsx-acc__btn i {
    flex: 0 0 auto;
    color: var(--opsx-red);
    font-size: 1.15rem;
    transition: transform 0.35s var(--opsx-ease);
}

.opsx-acc__btn[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.opsx-acc__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s var(--opsx-ease);
}

.opsx-acc__panel[data-open="true"] {
    grid-template-rows: 1fr;
}

.opsx-acc__panel > div {
    overflow: hidden;
}

.opsx-acc__panel p {
    margin: 0;
    padding: 0 1.15rem 1.15rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--opsx-body);
}

.opsx-support {
    padding: clamp(1.25rem, 2.5vw, 1.85rem);
    border: 1px solid var(--opsx-line);
    border-radius: var(--opsx-radius);
    background: #fff;
}

@media (min-width: 992px) {
    .opsx-support {
        position: sticky;
        top: 6rem;
    }
}

.opsx-support__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--opsx-ink);
}

.opsx-support__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.opsx-support__row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--opsx-line);
    border-radius: 0.8rem;
    background: var(--opsx-surface);
    text-decoration: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s var(--opsx-ease);
}

a.opsx-support__row:hover {
    transform: translateX(3px);
    border-color: #c9d5dc;
    background: #fff;
}

.opsx-support__row--plain {
    cursor: default;
}

.opsx-support__row i {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    background: rgba(223, 17, 34, 0.1);
    color: var(--opsx-red);
    font-size: 1.2rem;
}

.opsx-support__body {
    min-width: 0;
}

.opsx-support__k {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7b8b95;
}

.opsx-support__v {
    display: block;
    margin-top: 0.15rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--opsx-ink);
    overflow-wrap: anywhere;
}

/* E-posta dar ekranda kelime ortasindan bolunmesin */
.opsx-support__v--mail {
    font-size: 0.9375rem;
}

.opsx-support__note {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.875rem;
    color: var(--opsx-body);
}

/* ---------- Kapanis CTA ---------- */

.opsx-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--opsx-radius);
    padding: clamp(2rem, 4.5vw, 3.75rem);
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(135deg, hsl(197, 89%, 12%) 0%, hsl(197, 89%, 8%) 58%, hsl(358, 42%, 15%) 100%);
    text-align: center;
}

/* Kirmizi kure yerine olculu muhendislik izgarasi */
.opsx-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(85% 75% at 50% 0%, #000 0%, transparent 78%);
    mask-image: radial-gradient(85% 75% at 50% 0%, #000 0%, transparent 78%);
}

.opsx-cta::after {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 22%;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--opsx-red), transparent);
}

.opsx-cta > * {
    position: relative;
}

.opsx-cta__title {
    color: #fff;
}

.opsx-cta__lede {
    margin-inline: auto;
    color: rgba(226, 238, 244, 0.78);
}

.opsx-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

/* Kisa masaustu/dizustu ekranlar (1280x720, 1366x768): hero tek ekrana sigsin.
   Bu blok hero temel kurallarindan SONRA gelmeli; ayni ozgullukte oldugu icin
   daha yukari tasinirsa temel kurallar tarafindan eziliyor. */
@media (min-width: 992px) and (max-height: 840px) {
    .opsx-hero {
        padding-bottom: 1.25rem;
    }

    .opsx-hero__inner {
        gap: 1.35rem;
    }

    .opsx-hero__title {
        font-size: clamp(1.95rem, 2.5vw, 3.05rem);
    }

    .opsx-hero__eyebrow {
        margin-bottom: 0.7rem;
    }

    .opsx-seg {
        margin-top: 1.15rem;
    }

    .opsx-hero__proof {
        margin-top: 0.9rem;
    }

    .opsx-hero__caps li {
        padding-block: 0.7rem;
    }
}

/* ---------- Hero giris koreografisi ---------- */

/* Arka planda cok yavas kadraj kaymasi: sahne canli kalir, dikkat dagitmaz */
.opsx-hero__bg {
    transform-origin: 62% 55%;
    animation: opsxKenBurns 34s ease-in-out infinite alternate;
}

@keyframes opsxKenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.075);
    }
}

/* Baslangic gizliligi yalnizca JS varken; script calismazsa hero olagan sekilde gorunur */
.opsx-js .opsx-hero__eyebrow,
.opsx-js .opsx-hero__title span,
.opsx-js .opsx-hero .opsx-seg,
.opsx-js .opsx-hero .opsx-role__text,
.opsx-js .opsx-hero .opsx-role__cta,
.opsx-js .opsx-hero__proof,
.opsx-js .opsx-hero__panel,
.opsx-js .opsx-stats {
    opacity: 0;
}

.opsx-hero.is-ready .opsx-hero__eyebrow {
    animation: opsxHeroUp 0.65s var(--opsx-ease) 0.05s both;
}

.opsx-hero.is-ready .opsx-hero__title span:nth-child(1) {
    animation: opsxHeroLine 0.85s var(--opsx-ease) 0.14s both;
}

/* Ikinci satir once acilir, ardindan altindaki kirmizi cizgi soldan saga cizilir */
.opsx-hero.is-ready .opsx-hero__title span:nth-child(2) {
    animation:
        opsxHeroLine 0.85s var(--opsx-ease) 0.26s both,
        opsxHeroRule 0.65s var(--opsx-ease) 0.9s both;
}

.opsx-hero.is-ready .opsx-seg {
    animation: opsxHeroUp 0.65s var(--opsx-ease) 0.46s both;
}

.opsx-hero.is-ready .opsx-role__text {
    animation: opsxHeroUp 0.65s var(--opsx-ease) 0.56s both;
}

.opsx-hero.is-ready .opsx-role__cta {
    animation: opsxHeroUp 0.65s var(--opsx-ease) 0.66s both;
}

.opsx-hero.is-ready .opsx-hero__proof {
    animation: opsxHeroUp 0.65s var(--opsx-ease) 0.76s both;
}

/* Panel metinle es zamanli girer; sag taraf gec kalip bos gorunmesin */
.opsx-hero.is-ready .opsx-hero__panel {
    animation: opsxHeroUp 0.8s var(--opsx-ease) 0.54s both;
}

.opsx-hero.is-ready .opsx-stats {
    animation: opsxHeroUp 0.75s var(--opsx-ease) 0.88s both;
}

/* Koreografi bitti: gizli panel yeniden gosterildiginde animasyon bastan oynamasin */
.opsx-hero.is-done .opsx-role__text,
.opsx-hero.is-done .opsx-role__cta {
    animation: none;
    opacity: 1;
}

@keyframes opsxHeroUp {
    from {
        opacity: 0;
        transform: translateY(1.1rem);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes opsxHeroLine {
    from {
        opacity: 0;
        transform: translateY(0.5em);
        clip-path: inset(0 0 108% 0);
    }

    to {
        opacity: 1;
        transform: none;
        clip-path: inset(-50% -30% -50% -30%);
    }
}

@keyframes opsxHeroRule {
    from {
        background-size: 0% 3px;
    }

    to {
        background-size: 100% 3px;
    }
}

/* ---------- Dokunmatik cihaz uyarlamalari ---------- */

/* iOS'un varsayilan mavi tap kutusu yerine markaya uygun kisa geri bildirim */
.opsx-btn,
.opsx-seg__btn,
.opsx-acc__btn,
.opsx-card,
.opsx-chip,
.opsx-support__row,
.opsx-phone {
    -webkit-tap-highlight-color: rgba(223, 17, 34, 0.12);
}

/* Dokunmatikte hover diye bir sey yok; tap sonrasi durum "yapisip" kalmasin */
@media (hover: none) {

    .opsx-card:hover,
    .opsx-chip:hover,
    .opsx-step:hover {
        transform: none;
    }

    .opsx-chip:hover {
        background: var(--opsx-navy);
    }

    .opsx-btn--ghost:hover {
        border-color: rgba(255, 255, 255, 0.38);
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
    }

    a.opsx-support__row:hover {
        transform: none;
        border-color: var(--opsx-line);
        background: var(--opsx-surface);
    }
}

/* ---------- Erisilebilirlik ---------- */

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

    .opsx-hero__bg {
        animation: none !important;
    }

    .opsx-marq__track,
    .opsx-pulse::after {
        animation: none !important;
    }

    .opsx-seg__thumb,
    .opsx-acc__panel,
    .opsx-card,
    .opsx-btn,
    .opsx-chip,
    .opsx-step {
        transition-duration: 0.01ms !important;
    }

    .opsx-anim .opsx-role:not([hidden]) {
        animation: none !important;
    }
}

