/**
 * Hero: Sol 1/3 hızlı paket seçici + sağ 2/3 banner.
 * Mobil: alt alta (banner üstte, seçici altta).
 */
.orvix-hero {
    background: var(--orvix-ab-bg, #131324);
    padding: clamp(2.85rem, 2.8vw, 1.85rem) 0 clamp(3.15rem, 2.8vw, 1.85rem);
    position: relative;
}

/* Path deseni: --orvix-hero-pattern-url blade’den (inline style blok yerine) */
.orvix-hero.orvix-hero--has-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: var(--orvix-hero-pattern-url);
    background-repeat: repeat;
    background-size: 30rem;
    background-position: center top;
    opacity: 0.4;
}
.orvix-hero.orvix-hero--has-pattern .orvix-hero-picker-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    background-image: var(--orvix-hero-pattern-url);
    background-repeat: repeat;
    background-size: 30rem;
    background-position: center top;
    filter: brightness(0);
    opacity: 0.4;
}
.orvix-hero.orvix-hero--has-pattern .orvix-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    background-image: var(--orvix-hero-pattern-url);
    background-repeat: repeat;
    background-size: 30rem;
    background-position: center top;
    opacity: 0.8;
}

/* Alt kenar: popüler paketler / oyunlar ile aynı zigzag karo (--orvix-next-section-bg empty.blade.js ile dolar) */
.orvix-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 32px;
    z-index: 2; /* ::before desen 0; içerik .fdh-shell 3 */
    pointer-events: none;
    /* FOUC: hero rengiyle aynı fallback kullanma; PHP --orvix-next-section-bg + JS ince ayar */
    background-color: var(--orvix-next-section-bg, #f4f6f8);
    -webkit-mask-image: var(--orvix-zigzag-mask, url("../img/orvix-popular-games-zigzag-tile-light.svg"));
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-position: left top;
    -webkit-mask-size: 150px 32px;
    mask-image: var(--orvix-zigzag-mask, url("../img/orvix-popular-games-zigzag-tile-light.svg"));
    mask-repeat: repeat-x;
    mask-position: left top;
    mask-size: 150px 32px;
    transform: scaleY(-1);
}

/* Koyu tema: hero altı zigzag yok (platformlar / body ile düz geçiş) */
html[data-bs-theme="dark"] .orvix-hero::after {
    display: none !important;
    content: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
}

.orvix-hero .fdh-shell {
    position: relative;
    z-index: 3;
}
@media (min-width: 992px) {
    .orvix-hero {
        padding-top: 3.65rem;
        padding-bottom: 3.65rem;
    }
}
@media (max-width: 575.98px) {
    .orvix-hero {
        padding: 1.5rem 0;
    }
}

.orvix-hero__grid {
    display: grid;
    gap: 1rem;
    align-items: stretch;
    overflow: visible;
}

@media (min-width: 992px) {
    .orvix-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        gap: 1.25rem;
        align-items: stretch;
    }
    /* Sol kart içeriğe göre; sağ banner satır yüksekliğini doldurur */
    .orvix-hero__picker {
        align-self: start;
    }
    .orvix-hero__banner {
        display: flex;
        flex-direction: column;
        align-self: stretch;
        min-height: 100%;
    }
}

@media (max-width: 991.98px) {
    .orvix-hero__picker {
        order: 2;
    }
    .orvix-hero__banner {
        order: 1;
    }
    .orvix-hero-picker-card {
        border: 1px solid rgba(15, 23, 42, 0.16) !important;
    }
    .orvix-hero-picker-btn {
        -webkit-appearance: none;
        appearance: none;
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }
    .orvix-hero-picker-btn:focus,
    .orvix-hero-picker-btn:focus-visible,
    .orvix-hero-picker-btn:active {
        outline: none !important;
        box-shadow: var(--orvix-picker-shadow, 0 12px 24px -14px rgba(15, 23, 42, 0.2));
    }
    .orvix-hero-picker-btn.is-outline:not(.is-primary) {
        border: 1px solid var(--orvix-picker-outline-border, rgba(55, 98, 234, 0.55)) !important;
        -webkit-box-shadow: inset 0 0 0 1px var(--orvix-picker-outline-border, rgba(55, 98, 234, 0.55)) !important;
        box-shadow: inset 0 0 0 1px var(--orvix-picker-outline-border, rgba(55, 98, 234, 0.55)) !important;
        background: #fff !important;
    }
    html[data-bs-theme="dark"] .orvix-hero-picker-btn.is-outline:not(.is-primary) {
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
        -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22) !important;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22) !important;
    }
}

/* dropdown taşması: picker üstte kalsın */
.orvix-hero__picker {
    position: relative;
    z-index: 6;
}
.orvix-hero__banner {
    position: relative;
    z-index: 1;
}

/* --- Sol kart: hızlı paket seçici --- */
.orvix-hero-picker-card {
    height: auto;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: var(--orvix-ui-radius, 0.75rem);
    box-shadow: 0 18px 35px -18px rgba(15, 23, 42, 0.28);
    overflow: visible; /* dropdown dışarı taşabilsin */
    position: relative;
    --orvix-picker-accent: var(--orvix-hero-primary, var(--bs-primary, #dc143c));
}
.orvix-hero-picker-card__head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.05rem 0.65rem;
    /* buton içindeki ikon kutusu başlangıcı ile hizala: card padding (1.05) + btn padding-left (0.85) */
    padding-left: calc(1.05rem + 0.85rem);
    position: relative;
    z-index: 1;
}
.orvix-hero-picker-card__pin {
    width: 32px;
    height: 32px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orvix-hero-primary, var(--bs-primary, #dc143c));
    background: var(--orvix-accent-soft, var(--orvix-primary-on-white-14, var(--orvix-primary-soft)));
    flex-shrink: 0;
}
.orvix-hero-picker-card__pin i {
    font-size: 1.05rem;
    line-height: 1;
}
.orvix-hero-picker-card__title {
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    color: var(--orvix-hero-primary, var(--bs-primary, #dc143c));
}
.orvix-hero-picker-card__body {
    display: grid;
    gap: 0.65rem;
    padding: 0.6rem 1.05rem 0.9rem;
    position: relative;
    z-index: 1;
}
.orvix-hero-picker-card__body .dropdown {
    width: 100%;
    position: relative;
    flex: 0 0 auto;
}
.orvix-hero-picker-card__body .dropdown-menu {
    width: 100%;
}
.orvix-hero-picker-btn {
    width: 100%;
    padding: 0.78rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    min-height: 3.05rem;
    border-radius: var(--orvix-ui-radius-sm, 0.5rem);
    background: var(--orvix-picker-accent);
    color: #fff;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--orvix-picker-shadow, 0 12px 24px -14px rgba(15, 23, 42, 0.2));
}
.orvix-hero-picker-btn__text {
    font-weight: 700;
    display: block;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.orvix-hero-picker-btn.is-primary {
    background: var(--orvix-picker-accent);
    color: #fff;
    border: 0;
    box-shadow: var(--orvix-picker-shadow, 0 12px 24px -14px rgba(15, 23, 42, 0.2));
}
.orvix-hero-picker-btn.is-outline:not(.is-primary) {
    background: #fff;
    color: var(--orvix-picker-accent, var(--bs-primary, #3762ea));
    border: 1px solid var(--orvix-picker-outline-border, rgba(55, 98, 234, 0.55));
    -webkit-box-shadow: inset 0 0 0 1px var(--orvix-picker-outline-border, rgba(55, 98, 234, 0.55));
    box-shadow: inset 0 0 0 1px var(--orvix-picker-outline-border, rgba(55, 98, 234, 0.55));
}
.orvix-hero-dd-menu {
    width: 100%;
    min-width: 0;
    padding: 0.35rem;
    box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.35);
    z-index: 1190;
    max-height: 18.5rem;
    overflow: auto;
    margin-top: 0 !important;
}
.orvix-hero-dd-menu::before,
.orvix-hero-dd-menu::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 1.15rem;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
}
.orvix-hero-dd-menu::before {
    border-bottom: 9px solid rgba(15, 23, 42, 0.14);
}
.orvix-hero-dd-menu::after {
    top: -7px;
    border-bottom: 8px solid var(--bs-body-bg, #fff);
}
html[data-bs-theme="dark"] .orvix-hero-dd-menu::before {
    border-bottom-color: rgba(255, 255, 255, 0.14);
}
html[data-bs-theme="dark"] .orvix-hero-dd-menu::after {
    border-bottom-color: #131324;
}
.orvix-hero-dd-menu .dropdown-item {
    border-radius: var(--orvix-ui-radius-sm, 0.5rem);
    padding: 0.6rem 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.orvix-hero-dd-menu .dropdown-item:hover,
.orvix-hero-dd-menu .dropdown-item:focus,
.orvix-hero-dd-menu .dropdown-item:active,
.orvix-hero-dd-menu .dropdown-item.active {
    background-color: var(--orvix-picker-accent);
    background-color: var(--orvix-primary-tint-12, rgba(15, 23, 42, 0.06)) !important;
    color: inherit !important;
}
html[data-bs-theme="dark"] .orvix-hero-dd-menu .dropdown-item:hover,
html[data-bs-theme="dark"] .orvix-hero-dd-menu .dropdown-item:focus,
html[data-bs-theme="dark"] .orvix-hero-dd-menu .dropdown-item:active,
html[data-bs-theme="dark"] .orvix-hero-dd-menu .dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.12) !important;
}
.orvix-hero-dd-menu li + li {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
}
html[data-bs-theme="dark"] .orvix-hero-dd-menu li + li {
    border-top-color: rgba(255, 255, 255, 0.12);
}
.orvix-hero-dd-menu .dropdown-item > span:last-child {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.orvix-hero-dd-item-ic {
    width: 28px;
    height: 28px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.06);
    color: rgba(15, 23, 42, 0.7);
    flex-shrink: 0;
}
/* Platform dropdown: ikon kutusu item rengine göre */
.orvix-hero-dd-menu .dropdown-item[style*="--orvix-dd-item-accent"] .orvix-hero-dd-item-ic {
    background: var(--orvix-accent-soft, var(--orvix-primary-soft));
    color: var(--orvix-dd-item-accent);
    box-shadow: inset 0 0 0 1px var(--orvix-accent-soft-border, var(--orvix-primary-tint-32));
}
html[data-bs-theme="dark"] .orvix-hero-dd-item-ic {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
}
html[data-bs-theme="dark"] .orvix-hero-dd-menu .dropdown-item[style*="--orvix-dd-item-accent"] .orvix-hero-dd-item-ic {
    background: var(--orvix-accent-soft, rgba(255, 255, 255, 0.14));
    color: #fff;
    box-shadow: inset 0 0 0 1px var(--orvix-accent-soft-border, var(--orvix-primary-tint-55));
}
.orvix-hero-picker-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}
.orvix-hero-picker-btn__icon {
    width: 32px;
    height: 32px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}
.orvix-hero-picker-btn.is-outline .orvix-hero-picker-btn__icon {
    background: var(--orvix-accent-soft, var(--orvix-primary-on-white-10, var(--orvix-primary-soft)));
    color: var(--orvix-picker-accent, var(--bs-primary));
}
.orvix-hero-picker-btn.is-primary .orvix-hero-picker-btn__icon {
    background: rgba(255, 255, 255, 0.16);
}
.orvix-hero-picker-btn__chev {
    margin-left: auto;
    flex-shrink: 0;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    border: 1.5px solid var(--orvix-picker-accent, var(--bs-primary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    opacity: 1;
    box-sizing: border-box;
}

.orvix-hero-picker-btn__chev i {
    font-size: 0.88rem;
    line-height: 1;
    color: var(--orvix-picker-accent, var(--bs-primary));
}
.orvix-hero-picker-card__cta {
    padding: 0 1.05rem 1.05rem;
    position: relative;
}
.orvix-hero-picker-cta {
    width: 100%;
    border: 0;
    padding: 0.9rem 0.85rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.45rem;
    min-height: 3.15rem;
    border-radius: var(--orvix-ui-radius-sm, 0.5rem);
    background: var(--orvix-picker-accent);
    color: #fff;
    font-weight: 700;
    box-shadow: var(--orvix-picker-accent);
    box-shadow: var(--orvix-picker-shadow, 0 18px 35px -22px rgba(15, 23, 42, 0.25));
    cursor: pointer;
}
.orvix-hero-picker-cta__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    order: 0;
}
.orvix-hero-picker-cta__iconbox {
    width: 32px;
    height: 32px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
}
.orvix-hero-picker-cta__iconbox i {
    color: var(--orvix-picker-accent);
    font-size: 1.05rem;
    line-height: 1;
}
.orvix-hero-picker-cta.is-disabled {
    font-weight: 700;
    opacity: 0.55;
    pointer-events: none;
    filter: grayscale(0.1);
}
.orvix-hero-picker-cta__price {
    margin-left: auto;
    font-weight: 800;
    opacity: 0.95;
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
}
.orvix-hero-picker-cta__old {
    margin-left: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 0.82;
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
}
.orvix-hero-picker-cta__old:empty,
.orvix-hero-picker-cta__disc:empty {
    display: none;
}
.orvix-hero-picker-cta__old + .orvix-hero-picker-cta__price {
    margin-left: 0.35rem;
}
.orvix-hero-picker-cta__badge {
    margin-left: 0.55rem;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    white-space: nowrap;
}
.orvix-hero-picker-cta__disc {
    margin-left: 0.35rem;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: rgb(194 248 213);
    color: #16a34a;
    white-space: nowrap;
    flex: 0 0 auto;
}

.orvix-hero-picker-cta__prices {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
    flex: 0 0 auto;
    min-width: 8.25rem;
    justify-content: flex-end;
}
.orvix-hero-picker-cta__prices .orvix-hero-picker-cta__old,
.orvix-hero-picker-cta__prices .orvix-hero-picker-cta__price,
.orvix-hero-picker-cta__prices .orvix-hero-picker-cta__disc {
    margin-left: 0;
}

/* --- Sağ banner --- */
.orvix-hero__banner {
    --orvix-hero-primary: var(--bs-primary, #dc143c);
}

.orvix-hero-banner {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: var(--orvix-ui-radius, 0.75rem);
    background: var(--orvix-hero-primary);
    box-shadow: 0 20px 48px -22px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 992px) {
    .orvix-hero-banner {
        min-height: clamp(18rem, 28vw, 22.5rem);
    }
}
.orvix-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.14));
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}
.orvix-hero-banner__content {
    position: relative;
    z-index: 2;
    padding: clamp(1.05rem, 3vw, 1.75rem);
    padding-right: clamp(1.05rem, 3vw, 14.5rem);
    color: #fff;
}
.orvix-hero-banner__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 0.75rem;
}
.orvix-hero-banner__title {
    margin: 0 0 0.18rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-size: clamp(1.25rem, 2.7vw, 1.8rem);
    color: #fff;
}
html[data-bs-theme="dark"] .orvix-hero-banner__title {
    color: #fff !important;
}
.orvix-hero-banner__highlight {
    font-weight: 400; /* ince */
    opacity: 0.95;
    font-size: clamp(1.25rem, 2.7vw, 1.8rem); /* title ile aynı boyutta */
    margin-bottom: 0.45rem;
}
.orvix-hero-banner__desc {
    margin: 0;
    opacity: 0.92;
    max-width: 34rem;
    font-size: 0.92rem;
    line-height: 1.55;
}
.orvix-hero-banner__rating {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 1.1rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--orvix-ui-radius, 0.75rem);
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 22px -16px rgba(15, 23, 42, 0.35);
}
.orvix-hero-banner__rating-ic {
    width: 34px;
    height: 34px;
    border-radius: 0.85rem;
    background: var(--orvix-hero-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 20px -16px rgba(15, 23, 42, 0.35);
}
.orvix-hero-banner__rating-ic i {
    color: #fff;
    font-size: 1.15rem;
}
.orvix-hero-banner__rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    min-width: 0;
}
.orvix-hero-banner__rating-line {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.orvix-hero-banner__rating-line strong {
    font-weight: 900;
    color: var(--orvix-hero-primary);
    flex-shrink: 0;
}
.orvix-hero-banner__rating-line > span {
    opacity: 0.95;
    font-weight: 900;
    margin-left: 0;
    color: var(--orvix-hero-primary);
    white-space: nowrap;
}
.orvix-hero-banner__rating-stars {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.08rem;
    margin-top: 0;
    margin-left: 0;
    flex-shrink: 0;
}
.orvix-hero-banner__rating-stars i {
    font-size: 0.82rem;
    color: var(--orvix-hero-primary);
    opacity: 0.95;
}

.orvix-hero-banner__visual {
    position: absolute;
    right: -0.25rem;
    top: 0;
    bottom: 0;
    width: min(50%, 360px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
}
/* Dekor ikonlar: karakterin arkasında, hafif “uçuş” animasyonu */
.orvix-hero-banner__floats {
    position: absolute;
    /* Banner içinde kontrollü kalsın, tüm ikonlar görünsün */
    inset: 2% 2% 8% 2%;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}
.orvix-hero-banner__float {
    position: absolute;
    width: var(--orvix-hero-float-size, 2rem);
    height: auto;
    object-fit: contain;
    opacity: 0.78;
    filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.22));
    transform-origin: 50% 50%;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    will-change: transform;
}
.orvix-hero-banner__float--1 {
    --orvix-hero-float-size: 1.65rem;
    left: 2%;
    top: 10%;
    animation-name: orvix-hero-float-a;
    animation-duration: 4.8s;
    animation-delay: -0.4s;
}
.orvix-hero-banner__float--2 {
    --orvix-hero-float-size: 2.35rem;
    left: 38%;
    top: 4%;
    animation-name: orvix-hero-float-b;
    animation-duration: 6.1s;
    animation-delay: -1.1s;
}
.orvix-hero-banner__float--3 {
    --orvix-hero-float-size: 1.85rem;
    right: 1%;
    top: 14%;
    animation-name: orvix-hero-float-c;
    animation-duration: 5.4s;
    animation-delay: -2s;
}
.orvix-hero-banner__float--4 {
    --orvix-hero-float-size: 2.1rem;
    left: 0;
    bottom: 26%;
    animation-name: orvix-hero-float-d;
    animation-duration: 6.6s;
    animation-delay: -0.8s;
}
.orvix-hero-banner__float--5 {
    --orvix-hero-float-size: 1.5rem;
    right: 2%;
    bottom: 20%;
    animation-name: orvix-hero-float-e;
    animation-duration: 5.2s;
    animation-delay: -1.6s;
}
@keyframes orvix-hero-float-a {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
    }
    50% {
        transform: translate3d(12px, -16px, 0) rotate(10deg) scale(1.06);
    }
}
@keyframes orvix-hero-float-b {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(6deg) scale(1);
    }
    40% {
        transform: translate3d(-14px, 10px, 0) rotate(-8deg) scale(0.96);
    }
    70% {
        transform: translate3d(8px, -12px, 0) rotate(4deg) scale(1.05);
    }
}
@keyframes orvix-hero-float-c {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate3d(10px, -18px, 0) rotate(-12deg) scale(1.08);
    }
    66% {
        transform: translate3d(14px, 6px, 0) rotate(9deg) scale(0.94);
    }
}
@keyframes orvix-hero-float-d {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
    }
    45% {
        transform: translate3d(16px, -10px, 0) rotate(14deg) scale(1.04);
    }
    80% {
        transform: translate3d(-8px, 14px, 0) rotate(-10deg) scale(0.98);
    }
}
@keyframes orvix-hero-float-e {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(5deg) scale(1);
    }
    50% {
        transform: translate3d(8px, -14px, 0) rotate(-6deg) scale(1.1);
    }
}
@media (prefers-reduced-motion: reduce) {
    .orvix-hero-banner__float {
        animation: none !important;
        transform: none !important;
        will-change: auto;
    }
}
.orvix-hero-banner__img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 96%;
    object-fit: contain;
    object-position: right bottom;
    display: block;
    filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.22));
}
.orvix-hero-banner__img-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    z-index: 3;
    background: linear-gradient(to top, var(--orvix-hero-primary) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

/* --- Platformlar bölümü (hero altı) --- */
.orvix-platforms {
    position: relative;
    isolation: isolate;
    padding: clamp(0.9rem, 2.6vw, 1.6rem) 0 clamp(1.1rem, 2.8vw, 2.1rem);
    overflow: hidden;
    /* Gündüz: body ile aynı (#f4f6f8); zigzag geçişi için */
    background: #f4f6f8;
    background: var(--bs-body-bg, #f4f6f8);
}
html[data-bs-theme="dark"] .orvix-platforms {
    /* Body kabuğu #131324; Bootstrap --bs-body-bg farklı olabiliyor — şerit patlaması */
    background: #131324;
}
.orvix-platforms > .fdh-shell {
    position: relative;
    z-index: 1;
}
.orvix-platforms--directory {
    padding: 0 !important;
}
.orvix-platforms__head {
    text-align: center;
    margin-bottom: 0.85rem;
}
.orvix-platforms__kicker {
    display: inline-flex;
    align-items: baseline;
    gap: 0.1rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    padding: 0;
    color: #4c5473 !important;
}
.orvix-platforms__hash {
    font-weight: 900;
    margin-right: 0.08rem;
    color: #4c5473 !important;
}
.orvix-platforms__kicker-text {
    display: inline-block;
    color: #4c5473 !important;
}
.orvix-platforms__rule {
    position: relative;
    height: 6px; /* ortadaki kalın parça kırpılmasın */
    width: min(560px, 92%);
    margin: 0.55rem auto 0;
    background: transparent;
    border-radius: 999px;
    overflow: visible;
}
.orvix-platforms__rule::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px; /* ana çizgi */
    transform: translateY(-50%);
    background: linear-gradient(
        to right,
        rgba(76, 84, 115, 0),
        rgba(76, 84, 115, 0.85),
        rgba(76, 84, 115, 0)
    ) !important;
    border-radius: 999px;
}
.orvix-platforms__rule::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 42%;
    height: 4px;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(
        to right,
        rgba(76, 84, 115, 0),
        rgba(76, 84, 115, 0.95),
        rgba(76, 84, 115, 0)
    ) !important;
    border-radius: 999px;
}

/* Dark mode: sol kart ve platformlar beyaz kalmasın */
html[data-bs-theme="dark"] .orvix-hero-picker-card {
    background: rgba(19, 19, 36, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
}
html[data-bs-theme="dark"] .orvix-hero-picker-card__title {
    color: rgba(255, 255, 255, 0.92);
}
html[data-bs-theme="dark"] .orvix-hero-picker-card__pin {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}
html[data-bs-theme="dark"] .orvix-platforms__kicker {
    color: rgba(255, 255, 255, 0.92) !important;
}
html[data-bs-theme="dark"] .orvix-platforms__hash {
    color: rgba(255, 255, 255, 0.92) !important;
}
html[data-bs-theme="dark"] .orvix-platforms__desc {
    color: rgba(255, 255, 255, 0.74) !important;
}
html[data-bs-theme="dark"] .orvix-platforms__rule {
    background: transparent;
}
html[data-bs-theme="dark"] .orvix-platforms__rule::before {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.42),
        rgba(255, 255, 255, 0)
    ) !important;
}
html[data-bs-theme="dark"] .orvix-platforms__rule::after {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.92),
        rgba(255, 255, 255, 0)
    ) !important;
}

/* En sonda: platform başlıkları dark modda kesin beyaz kalsın */
html[data-bs-theme="dark"] .orvix-platforms__kicker,
html[data-bs-theme="dark"] .orvix-platforms__hash,
html[data-bs-theme="dark"] .orvix-platforms__kicker-text,
html[data-bs-theme="dark"] .orvix-platforms__desc {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Dark mode: outline picker buton beyaz kalmasın */
html[data-bs-theme="dark"] .orvix-hero-picker-btn.is-outline:not(.is-primary) {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.14);
}
html[data-bs-theme="dark"] .orvix-hero-picker-btn.is-outline:not(.is-primary) .orvix-hero-picker-btn__icon {
    background: rgba(255, 255, 255, 0.14);
}

/* Dark mode: hızlı paket seçicide path deseni kapat (sırıtmasın) */
html[data-bs-theme="dark"] .orvix-hero-picker-card::before {
    opacity: 0 !important;
}
.orvix-platforms__desc {
    color: rgba(15, 23, 42, 0.62);
    font-weight: 600;
    font-size: 0.9rem;
}
.orvix-platforms__grid {
    display: none;
}
.orvix-platforms__footer {
    margin-top: 0.9rem;
    text-align: center;
}
.orvix-platforms__all.btn {
    padding: 0.65rem 1.15rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.9rem;
    min-width: min(18rem, 92vw);
}

/* Header mega menüdeki platform kartları ile birebir görünüm (hero altı kullanım) */
.orvix-platforms .fmh-platform-strip .fmh-package-cards--platform-grid {
    --fdh-pg-gap: 0.28rem;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-content: flex-start !important;
    align-items: flex-start !important;
    gap: var(--fdh-pg-gap) !important;
    width: 100% !important;
}
/* Platform / araçlar dizin sayfaları — kartlar soldan başlasın */
.orvix-platforms.orvix-platforms--directory .fmh-platform-strip .fmh-package-cards--platform-grid,
.orvix-ft-dir--nexa .orvix-ft-dir__tools-grid.fmh-package-cards--platform-grid {
    justify-content: flex-start !important;
}
.orvix-platforms .fmh-platform-strip .fmh-package-cards--platform-grid > .fmh-package-item {
    flex: 0 0 auto !important;
    --orvix-pl-n: var(--orvix-platforms-cols-xs, 4);
    width: calc((100% - (var(--orvix-pl-n) - 1) * var(--fdh-pg-gap)) / var(--orvix-pl-n)) !important;
    max-width: calc((100% - (var(--orvix-pl-n) - 1) * var(--fdh-pg-gap)) / var(--orvix-pl-n)) !important;
    box-sizing: border-box !important;
    align-self: center;
    aspect-ratio: 1 / 1;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0.16rem 0.1rem !important;
    border-radius: 0.68rem !important;
    gap: 0.14rem !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.34, 1.45, 0.56, 1);
    will-change: transform;
}
@media (min-width: 576px) {
    .orvix-platforms .fmh-platform-strip .fmh-package-cards--platform-grid > .fmh-package-item {
        --orvix-pl-n: var(--orvix-platforms-cols-sm, 6);
    }
}
@media (min-width: 992px) {
    .orvix-platforms .fmh-platform-strip .fmh-package-cards--platform-grid > .fmh-package-item {
        --orvix-pl-n: var(--orvix-platforms-cols-lg, 12);
    }
}
.orvix-platforms .fmh-platform-strip .fmh-package-cards--platform-grid > .fmh-package-item:hover {
    transform: translateY(-5px) scale(1.045);
    box-shadow: none !important;
    z-index: 2;
}
.orvix-platforms .fmh-package-cards--platform-grid .fmh-package-icon {
    width: var(--orvix-platforms-icon-sm, 1.9rem) !important;
    height: var(--orvix-platforms-icon-sm, 1.9rem) !important;
    min-width: var(--orvix-platforms-icon-sm, 1.9rem) !important;
    min-height: var(--orvix-platforms-icon-sm, 1.9rem) !important;
    font-size: var(--orvix-platforms-icon-sm, 1.9rem) !important;
    line-height: 1 !important;
    border-radius: 0.52rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}
@media (min-width: 992px) {
    .orvix-platforms .fmh-package-cards--platform-grid .fmh-package-icon {
        width: var(--orvix-platforms-icon-lg, 1.72rem) !important;
        height: var(--orvix-platforms-icon-lg, 1.72rem) !important;
        min-width: var(--orvix-platforms-icon-lg, 1.72rem) !important;
        min-height: var(--orvix-platforms-icon-lg, 1.72rem) !important;
        font-size: var(--orvix-platforms-icon-lg, 1.72rem) !important;
    }
}
.orvix-platforms .fmh-package-cards--platform-grid .fmh-package-icon i {
    font-size: 1em !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}
.orvix-platforms .fmh-package-text-stack--platform-svc {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.1rem !important;
    width: 100% !important;
    min-width: 0 !important;
}
.orvix-platforms .fmh-package-line--platform-name {
    font-size: 0.58rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
    text-align: center !important;
    color: #fff !important;
}
.orvix-platforms .fmh-package-line--services-suffix {
    font-size: 0.56rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.15 !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

@media (max-width: 991.98px) {
    .orvix-hero-banner__content {
        padding-right: clamp(1.05rem, 3vw, 1.75rem);
        text-align: center;
        padding-bottom: 12.25rem; /* karakter için alan */
    }
    .orvix-hero-banner__visual {
        width: 100%;
        left: 0;
        right: 0;
        justify-content: center;
        opacity: 1;
        align-items: flex-end;
        transform: translateY(150px);
        z-index: 1;
    }
    .orvix-hero-banner__img {
        width: min(78%, 360px);
        max-height: 92%;
        object-position: center bottom;
    }
    /* Değerlendirme: akışta değil, kartın altında görsel üzerinde yüzer — yüzü kapatmaz */
    .orvix-hero-banner__rating {
        position: absolute;
        left: clamp(0.65rem, 3vw, 1rem);
        right: auto;
        transform: none;
        bottom: clamp(0.55rem, 2.8vw, 1rem);
        margin: 0;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        z-index: 4;
        padding: 0.32rem 0.55rem;
        gap: 0.4rem;
        width: max-content;
        max-width: min(calc(100% - 1.25rem), 92vw);
        font-size: 0.8rem;
        box-shadow:
            0 10px 22px -16px rgba(15, 23, 42, 0.35),
            0 14px 34px -18px rgba(15, 23, 42, 0.28);
    }
    .orvix-hero-banner__rating-text {
        text-align: left;
        gap: 0.22rem;
        align-items: flex-start;
    }
    .orvix-hero-banner__rating-line {
        justify-content: flex-start;
    }
    .orvix-hero-banner__rating-stars {
        justify-content: flex-start;
    }
    .orvix-hero-banner__rating-ic {
        width: 28px;
        height: 28px;
        border-radius: 0.85rem;
    }
    .orvix-hero-banner__rating-ic i {
        font-size: 0.96rem;
    }
    .orvix-hero-banner__rating-stars i {
        font-size: 0.72rem;
    }
    .orvix-hero-banner__floats {
        inset: 6% 6% 12% 6%;
    }
    .orvix-hero-banner__float--1 {
        --orvix-hero-float-size: 1.45rem;
        left: 3%;
        top: 14%;
    }
    .orvix-hero-banner__float--2 {
        --orvix-hero-float-size: 1.8rem;
        left: 42%;
        top: 8%;
    }
    .orvix-hero-banner__float--3 {
        --orvix-hero-float-size: 1.5rem;
        right: 4%;
        top: 20%;
    }
    .orvix-hero-banner__float--4 {
        --orvix-hero-float-size: 1.7rem;
        left: 5%;
        bottom: 30%;
    }
    .orvix-hero-banner__float--5 {
        --orvix-hero-float-size: 1.35rem;
        right: 6%;
        bottom: 28%;
    }
}

/* —— Glass hero (anasayfa yeni düzen) —— */
.orvix-hero.orvix-hero--glass {
    background: transparent !important;
    padding: 0.5rem 0 0;
    position: relative;
    z-index: 1;
}

.orvix-hero--glass::after,
.orvix-hero--glass::before,
.orvix-hero--glass.orvix-hero--has-pattern::before {
    display: none !important;
    content: none !important;
}

/* Mobil — hero alt zigzag/glow kapalı (bridge bindirme) */
@media (max-width: 991.98px) {
    .orvix-front-hero-shell .orvix-hero.orvix-hero--glass::after,
    .orvix-front-hero-shell .orvix-hero::after {
        display: none !important;
        content: none !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }
}

.orvix-hero--glass .fdh-shell {
    position: relative;
    z-index: 2;
}

.orvix-hero--glass .orvix-hero__stage {
    position: relative;
    min-height: 0;
    overflow: visible;
}

.orvix-hero--glass .orvix-hero__grid {
    display: block;
    position: relative;
    z-index: 6;
    max-width: 52%;
    padding-right: 1rem;
}

.orvix-hero--glass .orvix-hero__content {
    position: relative;
    z-index: 7;
}

@media (min-width: 992px) {
    .orvix-hero--glass .orvix-hero__grid {
        padding-top: 1.65rem;
    }
}

.orvix-hero--glass .orvix-hero__title,
.orvix-hero--glass .orvix-hero__highlight {
    font-size: 2.35rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.orvix-hero__kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.65rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--orvix-hero-primary, #3762ea);
    background: var(--orvix-primary-tint-16, rgba(55, 98, 234, 0.16));
}

@media (max-width: 991.98px) {
    .orvix-hero__kicker {
        display: none !important;
    }
}

.orvix-hero--glass .orvix-hero__title {
    margin: 0 0 0.28rem;
    color: #fff;
}

.orvix-hero--glass .orvix-hero__highlight {
    margin: 0 0 0.85rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.92);
}

.orvix-hero--glass .orvix-hero__desc {
    margin: 0 0 1.35rem;
    max-width: 34rem;
    font-size: clamp(0.95rem, 1.35vw, 1.08rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.orvix-hero-order {
    position: relative;
    z-index: 8;
    max-width: 32rem;
    margin-bottom: 2.5rem;
    pointer-events: auto;
}

.orvix-hero-order * {
    pointer-events: auto;
}

.orvix-hero-order__field {
    display: flex;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(8, 12, 10, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.orvix-hero-order__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.92rem;
    padding: 0.72rem 0.95rem;
    outline: none;
}

.orvix-hero-order__input::placeholder {
    color: #fff;
    opacity: 0.88;
}

.orvix-hero-order__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 1.5rem 0.65rem 1.15rem;
    min-width: 8.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    background: var(--orvix-cta-btn-gradient, linear-gradient(135deg, #2dd4bf 0%, #3b82f6 100%));
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.orvix-hero-order__btn i {
    font-size: 1.05rem;
    line-height: 1;
    color: inherit;
    background: transparent;
}

.orvix-hero-order__btn:hover {
    filter: brightness(1.06);
}

.orvix-hero-order__btn:active {
    transform: translateY(1px);
}

.orvix-hero--glass .orvix-hero__visual {
    position: absolute;
    right: -2%;
    top: auto;
    bottom: 7.5rem;
    width: min(68%, 52rem);
    height: auto;
    max-height: calc(100% - 2rem);
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    overflow: visible;
}

@media (min-width: 992px) {
    .orvix-hero--glass .orvix-hero__visual {
        top: 0.35rem;
        bottom: auto;
        right: -1%;
        width: min(48%, 38rem);
        max-height: none;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .orvix-hero-order {
        margin-bottom: 2.75rem;
    }
}

@media (min-width: 1200px) {
    .orvix-hero--glass .orvix-hero__visual {
        top: 0.15rem;
        right: 0;
        width: min(46%, 36rem);
    }

    .orvix-hero--glass .orvix-hero__img {
        max-height: none;
    }
}

.orvix-hero--glass .orvix-hero__visual::before {
    display: none !important;
    content: none !important;
}

.orvix-hero--glass .orvix-hero__visual::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 6%;
    width: clamp(14rem, 42vw, 28rem);
    height: clamp(14rem, 42vw, 28rem);
    border-radius: 50%;
    transform: translate(-50%, 10%);
    pointer-events: none;
    background: var(
        --orvix-neo-hero-glow-bg,
        radial-gradient(circle, rgb(var(--bs-primary-rgb, 55, 98, 234) / 0.34) 0%, rgb(var(--bs-primary-rgb, 55, 98, 234) / 0.16) 42%, rgb(var(--bs-primary-rgb, 55, 98, 234) / 0.04) 62%, transparent 76%)
    );
}

.orvix-hero--glass.orvix-hero--neo .orvix-hero__visual::after,
.orvix-hero--glass .orvix-hero__visual:has(.orvix-neo-hero-glow)::after {
    display: none !important;
    content: none !important;
}

.orvix-hero--glass .orvix-hero__img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: bottom right;
    transform: none;
    filter: none;
}

@media (min-width: 992px) {
    .orvix-hero--glass .orvix-hero__img {
        max-height: none;
        object-position: bottom right;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .orvix-hero--glass .orvix-hero__visual {
        width: min(48%, 38rem);
        top: 0.65rem;
    }

    .orvix-hero--glass .orvix-hero__img {
        max-height: none;
    }
}

.orvix-hero--glass .orvix-hero__img-fade {
    display: none !important;
}

.orvix-hero--glass .orvix-hero-banner__floats {
    display: none !important;
}

.orvix-hero-carousel {
    position: relative;
    z-index: 9;
    margin-top: 0.35rem;
    padding-top: 0.25rem;
    padding-bottom: 0.35rem;
}

@media (min-width: 992px) {
    .orvix-hero-carousel {
        margin-top: 0.25rem;
        margin-bottom: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.35rem;
    }
}

.orvix-hero-carousel__pattern {
    display: none;
}

.orvix-hero-carousel__viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    pointer-events: none;
    padding: 0.65rem 0 0.35rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.orvix-hero-carousel__viewport:active {
    cursor: grabbing;
}

.orvix-hero-carousel__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
    pointer-events: auto;
}

.orvix-hero-plat-card {
    flex: 0 0 auto;
    width: clamp(7.25rem, 16.5vw, 9.25rem);
    aspect-ratio: 1;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 0.65rem 0.85rem;
    border-radius: 1.35rem;
    text-decoration: none;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    background-color: var(--orvix-plat-tone, var(--bs-primary));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.18s ease, filter 0.18s ease;
}

/* Platform kartı path döşemesi kapalı */
.orvix-hero--has-plat-path .orvix-hero-plat-card::before {
    display: none !important;
    content: none !important;
}

.orvix-hero-plat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.04);
}

.orvix-hero--has-plat-path .orvix-hero-plat-card::after {
    background: rgba(0, 0, 0, 0.02);
}

.orvix-hero-plat-card:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.orvix-hero-plat-card__icon {
    position: relative;
    z-index: 3;
    width: auto;
    height: auto;
    min-height: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.35rem, 4vw, 2.85rem);
    line-height: 1;
    color: #fff;
    background: transparent;
    border: none;
    box-shadow: none;
}

.orvix-hero-plat-card__name {
    position: relative;
    z-index: 3;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* —— Glass hero mobil —— */
@media (max-width: 991.98px) {
    .orvix-hero--glass {
        overflow: visible;
    }

    .orvix-hero--glass .orvix-hero__stage {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: visible;
        min-height: 0;
        padding-bottom: 0;
    }

    .orvix-hero--glass .orvix-hero__visual {
        order: 1;
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: 26rem;
        min-height: 0;
        margin: 0 auto -1.25rem;
        padding: 0 0.65rem;
        justify-content: center;
        overflow: visible;
        /* Görsel alanı formun üstüne bindiğinde dokunuşları engellemesin */
        pointer-events: none;
    }

    .orvix-hero--glass .orvix-hero__img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto;
        max-width: min(100%, 23rem);
        height: auto;
        max-height: 19rem;
        min-height: 0;
        margin: 0 auto;
        object-fit: contain;
        object-position: bottom center;
    }

    .orvix-hero--glass .orvix-hero__grid {
        order: 2;
        max-width: 100%;
        width: 100%;
        padding: 0.35rem 1rem 0;
        text-align: center;
    }

    .orvix-hero--glass .orvix-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .orvix-hero--glass .orvix-hero__title,
    .orvix-hero--glass .orvix-hero__highlight,
    .orvix-hero--glass .orvix-hero__desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .orvix-hero--glass .orvix-hero__title,
    .orvix-hero--glass .orvix-hero__highlight {
        font-size: clamp(1.55rem, 6.5vw, 2rem);
        line-height: 1.12;
    }

    .orvix-hero--glass .orvix-hero__title {
        margin-bottom: 0.05rem;
    }

    .orvix-hero--glass .orvix-hero__highlight {
        margin-bottom: 0.35rem;
    }

    .orvix-hero--glass .orvix-hero__desc {
        margin-bottom: 0.5rem;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .orvix-hero-order {
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.25rem;
        z-index: 12;
    }

    .orvix-hero-order__field {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.35rem;
        padding: 0.35rem 0.35rem 0.35rem 0.55rem;
        position: relative;
        z-index: 1;
    }

    .orvix-hero-order__input {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0.65rem 0.75rem;
        font-size: 16px;
        -webkit-text-fill-color: #fff;
    }

    .orvix-hero-order__btn {
        width: auto;
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.65rem 0.95rem;
        font-size: 0.82rem;
        min-width: 0;
    }

    .orvix-hero-order__btn span {
        display: inline;
    }

    .orvix-hero-carousel {
        order: 3;
        width: 100%;
        margin-top: 0.1rem;
        margin-bottom: 0;
        padding-top: 0.15rem;
        padding-bottom: 0;
        z-index: 1;
        position: relative;
        overflow: hidden;
    }

    .orvix-hero-carousel__viewport {
        -webkit-mask-image: none;
        mask-image: none;
        padding: 0.15rem 0.65rem 0;
        overflow: hidden;
    }

    .orvix-hero-plat-card {
        width: clamp(5.5rem, 36vw, 6.75rem);
        flex: 0 0 auto;
    }

    .orvix-hero--has-plat-path .orvix-hero-plat-card::before {
        display: none !important;
        content: none !important;
    }
}

@media (max-width: 575.98px) {
    .orvix-hero-order {
        max-width: 100%;
        padding: 0 0.25rem;
    }

    .orvix-hero-order__btn span {
        font-size: 0.78rem;
    }

    .orvix-hero--glass .orvix-hero__img {
        max-width: min(100%, 20rem);
        max-height: 17rem;
    }
}
