:root {
    --mx-primary: #fd7800;
    --mx-primary-dark: #e56a00;
    --mx-secondary: #5c51e0;
    --mx-heading: #1a1a2e;
    --mx-body: #4b5563;
    --mx-border: #e5e7eb;
    --mx-gray-2: #f3f4f6;
    --mx-container: 1140px;
    --mx-radius-lg: 1rem;
    --mx-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    --mx-font-heading: "Jost", "Roboto", system-ui, sans-serif;
    --mx-font-body: "Roboto", system-ui, sans-serif;
}

body {
    font-family: var(--mx-font-body);
    color: var(--mx-body);
}

h1, h2, h3, h4 {
    font-family: var(--mx-font-heading);
    color: var(--mx-heading);
}

.mx-container {
    width: min(100% - 2rem, var(--mx-container));
    margin-inline: auto;
}

/* Top bar */
.mx-topbar {
    background: #fff;
    border-bottom: 1px solid var(--mx-border);
    font-size: 0.8125rem;
    font-weight: 600;
}

.mx-topbar-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.5rem;
}

/* Logo hizasi — header-box icindeki mx-logo ile ayni baslangic */
.mx-topbar-align {
    flex: 0 0 calc(157px + 1.25rem);
    width: calc(157px + 1.25rem);
    min-width: 0;
}

.mx-topbar-ticker {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.mx-topbar-ticker__track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 2rem;
    animation: mx-topbar-ticker-scroll 32s linear infinite;
}

.mx-topbar-ticker__track:hover {
    animation-play-state: paused;
}

.mx-topbar-ticker__item {
    flex: 0 0 auto;
    color: var(--mx-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mx-topbar-ticker__item:hover {
    color: var(--mx-primary);
}

@keyframes mx-topbar-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.mx-topbar-links {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin-left: auto;
}

.mx-topbar-link {
    color: var(--mx-heading);
    text-decoration: none;
    white-space: nowrap;
}

.mx-topbar-link:hover {
    color: var(--mx-primary);
}

.mx-topbar-sep {
    width: 1px;
    height: 1rem;
    background: var(--mx-border);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .mx-topbar-align {
        flex-basis: 0;
        width: 0;
        overflow: hidden;
    }

    .mx-topbar-ticker {
        mask-image: linear-gradient(to right, #000 0%, #000 92%, transparent);
    }
}

@media (max-width: 767px) {
    .mx-topbar-inner {
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        padding-block: 0.35rem;
    }

    .mx-topbar-ticker {
        order: 2;
        flex: 1 1 100%;
    }

    .mx-topbar-links {
        order: 1;
        margin-left: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mx-topbar-ticker__track {
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 100%;
        animation: none;
        gap: 0.5rem 1rem;
    }
}

/* Header */
.mx-shell-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.mx-header {
    padding: 0.75rem 0 1rem;
}

.mx-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 1px solid var(--mx-border);
    border-radius: var(--mx-radius-lg);
    box-shadow: var(--mx-shadow);
    position: relative;
}

.mx-logo img {
    display: block;
    height: 35px;
    width: auto;
}

.mx-header-divider {
    display: none;
    width: 1px;
    align-self: stretch;
    margin: 0 0.25rem;
    background: var(--mx-border);
}

@media (min-width: 992px) {
    .mx-header-divider {
        display: block;
    }
}

.mx-nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mx-nav-toggle-btn {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--mx-border);
    border-radius: 0.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mx-nav-toggle-btn span,
.mx-nav-toggle-btn span::before,
.mx-nav-toggle-btn span::after {
    display: block;
    width: 1.125rem;
    height: 2px;
    background: var(--mx-heading);
    position: relative;
    transition: transform 0.2s;
}

.mx-nav-toggle-btn span::before,
.mx-nav-toggle-btn span::after {
    content: "";
    position: absolute;
    left: 0;
}

.mx-nav-toggle-btn span::before {
    top: -6px;
}

.mx-nav-toggle-btn span::after {
    top: 6px;
}

.mx-nav-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.625rem 0.875rem;
    border: 0;
    background: transparent;
    color: var(--mx-heading);
    font: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0.5rem;
    white-space: nowrap;
    transition: color 0.2s;
}

.mx-nav-link:hover,
.mx-nav-item.is-active > .mx-nav-link,
.mx-nav-item.is-active > .mx-nav-item__trigger > .mx-nav-link {
    color: var(--mx-primary);
}

.mx-nav-item {
    position: relative;
}

.mx-nav-item__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.mx-nav-item__trigger > .mx-nav-link:not(.mx-nav-link--dropdown) {
    padding-right: 0.35rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.mx-nav-link--caret {
    padding: 0.625rem 0.55rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.mx-nav-caret {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.35rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mx-nav-item--dropdown:hover .mx-nav-caret,
.mx-nav-item--mega:hover .mx-nav-caret,
.mx-nav-item.is-open .mx-nav-caret,
.mx-nav-item.is-nav-open .mx-nav-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.mx-dropdown-panel,
.mx-mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    padding-top: 0.625rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 0.28s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.28s cubic-bezier(0.165, 0.84, 0.44, 1),
        visibility 0.28s;
    z-index: 120;
}

@media (min-width: 992px) {
    .mx-nav-item--mega {
        position: static;
    }

    .mx-nav-item--mega .mx-mega-panel {
        left: 0;
        right: 0;
        width: auto;
        min-width: 0;
        max-width: none;
        transform: translateY(10px);
    }

    .mx-nav-item--mega:hover .mx-mega-panel,
    .mx-nav-item--mega:focus-within .mx-mega-panel,
    .mx-nav-item--mega.is-open .mx-mega-panel,
    .mx-nav-item--mega.is-nav-open .mx-mega-panel {
        transform: translateY(0);
    }

    /* Mega panel header ile arasındaki boşluğu hover köprüsüyle kapat */
    .mx-nav-item--mega .mx-mega-panel::before {
        top: -1.5rem;
        height: calc(1.5rem + 0.625rem);
    }

    /*
     * Açık mega/dropdown varken diğer menü öğelerinin hover'ını kapat.
     * Aksi halde panel köprüsüne inerken "Servis Bölgeleri" gibi komşu
     * menüler tetiklenir.
     */
    .mx-header-box:has(.mx-nav-item--mega:hover) .mx-nav-item--mega:not(:hover),
    .mx-header-box:has(.mx-nav-item--mega.is-nav-open) .mx-nav-item--mega:not(.is-nav-open),
    .mx-header-box:has(.mx-nav-item--dropdown:hover) .mx-nav-item--dropdown:not(:hover),
    .mx-header-box:has(.mx-nav-item--dropdown.is-nav-open) .mx-nav-item--dropdown:not(.is-nav-open) {
        pointer-events: none;
    }

    .mx-nav-item--mega:hover,
    .mx-nav-item--mega.is-nav-open,
    .mx-nav-item--dropdown:hover,
    .mx-nav-item--dropdown.is-nav-open {
        z-index: 130;
    }
}

@media (min-width: 992px) {
    .mx-dropdown-panel::before,
    .mx-mega-panel::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 0.625rem;
    }

    .mx-nav-item--mega::after,
    .mx-nav-item--dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0.625rem;
    }

    .mx-nav-item--mega::after {
        height: 1rem;
    }
}

.mx-nav-item--dropdown .mx-dropdown-panel {
    left: 0;
    transform: translateY(12px);
}

.mx-nav-item--dropdown:hover .mx-dropdown-panel,
.mx-nav-item--dropdown:focus-within .mx-dropdown-panel,
.mx-nav-item.is-open .mx-dropdown-panel,
.mx-nav-item.is-nav-open .mx-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mx-nav-item--mega:hover .mx-mega-panel,
.mx-nav-item--mega:focus-within .mx-mega-panel,
.mx-nav-item--mega.is-open .mx-mega-panel,
.mx-nav-item--mega.is-nav-open .mx-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mx-nav-item--dropdown:hover .mx-dropdown-panel:not(.mx-dropdown-panel--premium),
.mx-nav-item--dropdown:focus-within .mx-dropdown-panel:not(.mx-dropdown-panel--premium),
.mx-nav-item--dropdown.is-open .mx-dropdown-panel:not(.mx-dropdown-panel--premium) {
    transform: translateY(0);
}

.mx-dropdown-inner {
    min-width: 15rem;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid var(--mx-border);
    border-radius: 0.85rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.mx-dropdown-links,
.mx-mega-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-dropdown-link,
.mx-mega-link {
    display: block;
    padding: 0.55rem 0.75rem;
    color: var(--mx-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s, transform 0.2s;
}

.mx-dropdown-link:hover,
.mx-mega-link:hover,
.mx-dropdown-link.is-active,
.mx-mega-link.is-active {
    color: var(--mx-primary);
    background: rgba(253, 120, 0, 0.08);
    transform: translateX(3px);
}

.mx-mega-inner--regions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mx-mega-panel {
    left: 50%;
}

.mx-mega-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: var(--mx-nav-panel-border, 1px solid var(--mx-border));
    border-radius: var(--mx-nav-panel-radius, 1rem);
    box-shadow: var(--mx-nav-panel-shadow, 0 22px 60px rgba(15, 23, 42, 0.14));
}

.mx-mega-col {
    min-width: 0;
}

.mx-mega-title {
    margin: 0 0 0.65rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid rgba(253, 120, 0, 0.2);
    color: var(--mx-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mx-mega-links {
    display: grid;
    gap: 0.05rem;
    max-height: none;
    overflow: visible;
}

.mx-mega-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.35;
}

.mx-mega-link__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: rgba(253, 120, 0, 0.08);
    color: #64748b;
    transition: color 0.2s ease, background 0.2s ease;
}

.mx-mega-link__icon-svg {
    width: 1rem;
    height: 1rem;
}

.mx-mega-link__text {
    min-width: 0;
}

.mx-mega-link:hover .mx-mega-link__icon,
.mx-mega-link.is-active .mx-mega-link__icon {
    color: var(--mx-primary);
    background: rgba(253, 120, 0, 0.14);
}

.mx-mega-col--media {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mx-mega-media {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mx-mega-media:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.mx-mega-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mx-mega-col--media .mx-mega-media img {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
}

.mx-mega-media-label {
    padding: 0.65rem 0.75rem;
    background: linear-gradient(135deg, var(--mx-primary), #ff9a3d);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
    :root {
        --mx-nav-mega-min-height: 20rem;
    }

    .mx-mega-inner--regions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mx-mega-inner {
        gap: 1rem;
        padding: 1rem 1.15rem;
    }

    .mx-mega-link {
        font-size: 0.78rem;
        padding: 0.32rem 0.35rem;
    }
}

@media (max-width: 991px) {
    .mx-nav-toggle-btn {
        display: inline-flex;
    }

    .mx-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        display: none;
        background: #fff;
        border: 1px solid var(--mx-border);
        border-radius: var(--mx-radius-lg);
        box-shadow: var(--mx-shadow);
        padding: 0.75rem;
    }

    .mx-nav-toggle:checked ~ .mx-nav {
        display: block;
    }

    .mx-header-box {
        position: relative;
        flex-wrap: wrap;
    }

    .mx-nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .mx-dropdown-panel,
    .mx-mega-panel {
        position: static;
        width: 100%;
        padding-top: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
        margin-top: 0.35rem;
    }

    .mx-nav-item--mega::after,
    .mx-nav-item--dropdown::after {
        display: none;
    }

    .mx-nav-item.is-open .mx-dropdown-panel,
    .mx-nav-item.is-open .mx-mega-panel {
        display: block;
    }

    .mx-mega-inner {
        grid-template-columns: 1fr;
        box-shadow: none;
        border: 0;
        padding: 0.5rem 0 0.5rem 0.75rem;
    }

    .mx-mega-links {
        max-height: none;
        overflow: visible;
    }

    .mx-mega-col--media {
        margin-top: 0.5rem;
    }

    .mx-mega-media img {
        aspect-ratio: 16 / 9;
    }

    .mx-dropdown-inner {
        box-shadow: none;
        border: 0;
        padding: 0.5rem 0 0.5rem 0.75rem;
    }
}

/* Buttons */
.btn,
.mx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border: 0;
    border-radius: 999px;
    font-family: var(--mx-font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.btn-primary,
.btn-secondary,
.mx-btn-primary {
    background: var(--mx-primary);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(253, 120, 0, 0.25);
}

.btn-primary:hover,
.btn-secondary:hover,
.mx-btn-primary:hover {
    background: var(--mx-primary-dark);
    transform: translateY(-1px);
}

.btn-outline,
.mx-btn-outline {
    background: #fff;
    color: var(--mx-heading) !important;
    border: 2px solid var(--mx-border);
}

.btn-outline:hover,
.mx-btn-outline:hover {
    border-color: var(--mx-primary);
    color: var(--mx-primary) !important;
}

.btn-dark {
    background: #1a1a2e;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.2);
}

.btn-dark:hover {
    background: #2d2d44;
    transform: translateY(-1px);
}

.btn-white {
    background: #fff;
    color: var(--mx-heading) !important;
    border: 2px solid var(--mx-border);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.btn-white:hover {
    border-color: var(--mx-heading);
}

.btn-primary-light {
    background: rgba(253, 120, 0, 0.12);
    color: var(--mx-primary) !important;
    box-shadow: none;
}

.btn-primary-light:hover {
    background: rgba(253, 120, 0, 0.2);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.95rem 1.85rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.1rem 2.25rem;
    font-size: 1.0625rem;
}

/* Footer — premium */
.mx-footer {
    position: relative;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(165deg, #12131a 0%, #1a1a2e 45%, #141824 100%);
    color: rgba(255, 255, 255, 0.78);
}

.mx-footer.mx-footer--pro {
    background: linear-gradient(180deg, #0b1220 0%, #0f172a 48%, #0c1424 100%);
    color: #cbd5e1;
}

.mx-footer-glow {
    position: absolute;
    top: -8rem;
    right: -6rem;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 120, 0, 0.22) 0%, transparent 68%);
    pointer-events: none;
}

.mx-footer-glow::after {
    content: "";
    position: absolute;
    bottom: -18rem;
    left: -22rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 81, 224, 0.14) 0%, transparent 70%);
}

/* Footer blog — rastgele yazılar */
.mx-footer-blog {
    position: relative;
    z-index: 1;
    padding: 3rem 0 2.5rem;
    background: #fff;
    border-bottom: 1px solid var(--mx-border, #e5e7eb);
}

.mx-footer-blog__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mx-footer-blog__title {
    margin: 0;
    font-family: var(--mx-font-heading);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--mx-heading, #111827);
}

.mx-footer-blog__sub {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--mx-body, #6b7280);
}

.mx-footer-blog__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    min-height: 3.25rem;
    padding: 0.85rem 1.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mx-primary), #ff9a3d);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(253, 120, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mx-footer-blog__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(253, 120, 0, 0.38);
}

.mx-footer-blog__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .mx-footer-blog__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.mx-footer-blog-card {
    position: relative;
    display: block;
    min-height: 22rem;
    overflow: hidden;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mx-footer-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.mx-footer-blog-card__img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    transition: transform 0.45s ease;
}

.mx-footer-blog-card:hover .mx-footer-blog-card__img {
    transform: scale(1.05);
}

.mx-footer-blog-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(135deg, rgba(253, 120, 0, 0.72), rgba(255, 154, 61, 0.55));
}

.mx-footer-blog-card__overlay--2 {
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(135deg, rgba(92, 81, 224, 0.72), rgba(139, 131, 240, 0.55));
}

.mx-footer-blog-card__overlay--3 {
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(135deg, rgba(26, 26, 46, 0.78), rgba(75, 85, 99, 0.62));
}

.mx-footer-blog-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 22rem;
    padding: 1.25rem;
}

.mx-footer-blog-card__badge {
    display: inline-block;
    width: fit-content;
    margin-bottom: auto;
    padding: 0.35rem 0.65rem;
    border-radius: 0.35rem;
    background: rgba(0, 0, 0, 0.28);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.mx-footer-blog-card__post-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: #fff;
    font-family: var(--mx-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
}

.mx-footer-blog-card__date {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.mx-footer-cta {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, rgba(253, 120, 0, 0.12), rgba(253, 120, 0, 0.04));
}

/* Footer top — markalar + iletişim */
.mx-footer-top {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 28%),
        linear-gradient(135deg, rgba(253, 120, 0, 0.1) 0%, transparent 42%);
}

.mx-footer-brands {
    margin-bottom: 2.75rem;
}

.mx-footer-brands-label {
    margin: 0 0 1.15rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
}

.mx-footer-brands-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.mx-footer-brands-track {
    display: flex;
    width: max-content;
    gap: 0.85rem;
    animation: mx-brand-scroll 50s linear infinite;
}

.mx-footer-brands-track:hover {
    animation-play-state: paused;
}

.mx-footer-brand-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9rem;
    height: 5rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.875rem;
    text-decoration: none;
    transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.mx-footer-brand-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(253, 120, 0, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.mx-footer-brand-card img {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    max-height: 2.5rem !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: contain;
    filter: brightness(1.05);
}

.mx-footer-hero {
    max-width: 52rem;
    margin: 0 auto;
}

.mx-footer-hero-card {
    padding: clamp(1.15rem, 2.5vw, 1.65rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.mx-footer-hero-card__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 768px) {
    .mx-footer-hero-card__inner {
        grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
        gap: 1.35rem;
    }
}

.mx-footer-hero-visual {
    position: relative;
    margin: 0;
    min-height: 9.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mx-footer-hero-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: min(92%, 9.5rem);
    height: 78%;
    border-radius: 1rem;
    background: linear-gradient(145deg, #ffd23f 0%, #ffb800 100%);
    transform: translateX(-50%);
    box-shadow: 0 12px 28px rgba(255, 184, 0, 0.2);
}

.mx-footer-hero-accent::before {
    content: "";
    position: absolute;
    top: -1.35rem;
    right: -0.85rem;
    width: 3.25rem;
    height: 3.25rem;
    border: 2px dashed rgba(92, 81, 224, 0.55);
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(-20deg);
}

.mx-footer-hero-dots {
    position: absolute;
    right: 8%;
    bottom: 10%;
    width: 2.75rem;
    height: 2.75rem;
    background-image: radial-gradient(circle, #e63946 1.5px, transparent 1.5px);
    background-size: 9px 9px;
    opacity: 0.85;
    z-index: 1;
}

.mx-footer-hero-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto !important;
    max-width: min(100%, 9.5rem) !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain;
}

.mx-footer-hero-card__content {
    min-width: 0;
}

.mx-footer-hero-title {
    margin: 0 0 0.65rem;
    font-family: var(--mx-font-heading);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.mx-footer-hero-text {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.mx-footer-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mx-footer-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 0;
}

.mx-footer-cta-label {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mx-primary);
}

.mx-footer-cta-title {
    margin: 0;
    max-width: 36rem;
    font-family: var(--mx-font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.mx-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mx-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-family: var(--mx-font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.mx-footer-btn--primary {
    background: linear-gradient(135deg, var(--mx-primary), #ff9a3d);
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(253, 120, 0, 0.35);
}

.mx-footer-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(253, 120, 0, 0.45);
}

.mx-footer-btn--ghost {
    background: rgba(37, 211, 102, 0.15);
    color: #6ee7a0 !important;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.mx-footer-btn--ghost:hover {
    background: rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.mx-footer-btn--outline {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mx-footer-btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.mx-footer-main {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 2rem;
}

.mx-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .mx-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .mx-footer-grid {
        grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
        gap: 2rem;
    }
}

.mx-footer-brand {
    min-width: 0;
}

.mx-footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.mx-footer-logo img {
    display: block;
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.mx-footer-tagline {
    margin: 0 0 1.25rem;
    max-width: 22rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.mx-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-footer-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(253, 120, 0, 0.35);
    border-radius: 999px;
    background: rgba(253, 120, 0, 0.1);
    color: #ffb366;
    font-size: 0.75rem;
    font-weight: 700;
}

.mx-footer-title {
    position: relative;
    margin: 0 0 1.25rem;
    padding-bottom: 0.65rem;
    font-family: var(--mx-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.mx-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mx-primary), transparent);
}

.mx-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-footer-links li + li {
    margin-top: 0.35rem;
}

.mx-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.mx-footer-links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--mx-primary);
    transition: width 0.2s;
}

.mx-footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.mx-footer-links a:hover::before {
    width: 0.65rem;
}

.mx-footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

.mx-footer-contact-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.55;
}

.mx-footer-contact-icon {
    flex: 0 0 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--mx-primary);
}

.mx-footer-contact-item strong {
    display: block;
    margin-bottom: 0.15rem;
    color: #fff;
    font-size: 0.8125rem;
}

.mx-footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.mx-footer-contact-item a:hover {
    color: var(--mx-primary);
}

.mx-footer-about {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
}

.mx-footer-about p {
    margin: 0;
    max-width: 56rem;
}

.mx-footer-about strong {
    color: rgba(255, 255, 255, 0.85);
}

.mx-footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.22);
}

.mx-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.25rem 0;
}

.mx-footer-copy,
.mx-footer-meta {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

.mx-footer-copy {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.mx-footer-utility-wrap {
    padding: 0 0 1.1rem;
}

.mx-footer-utility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem 0.65rem;
    margin: 0;
    padding-top: 0.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
}

.mx-footer-utility a {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.mx-footer-utility a:hover {
    color: var(--mx-primary-light, #ffb366);
}

.mx-footer-utility__sep {
    color: rgba(255, 255, 255, 0.22);
    user-select: none;
}

.mx-footer-utility__count {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    font-weight: 500;
}

@media (max-width: 639px) {
    .mx-footer-blog {
        padding-top: 1.5rem;
    }

    .mx-footer-top {
        padding: 2rem 0 2.5rem;
    }

    .mx-footer-brands {
        margin-bottom: 2rem;
    }

    .mx-footer-hero-visual {
        min-height: 8rem;
    }

    .mx-footer-hero-actions {
        width: 100%;
    }

    .mx-footer-hero-actions .mx-footer-btn {
        flex: 1 1 calc(50% - 0.35rem);
        justify-content: center;
    }

    .mx-footer-hero-actions .mx-footer-btn--primary {
        flex: 1 1 100%;
    }

    .mx-footer-cta-inner {
        padding: 1.5rem 0;
    }

    .mx-footer-cta-actions {
        width: 100%;
    }

    .mx-footer-btn {
        flex: 1 1 calc(50% - 0.35rem);
        justify-content: center;
    }

    .mx-footer-btn--outline {
        flex: 1 1 100%;
    }

    .mx-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .mx-footer-utility {
        justify-content: center;
        text-align: center;
    }
}

/* Footer — professional card layout */
.mx-footer-pro {
    position: relative;
    z-index: 1;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
}

.mx-footer-pro__inner {
    display: grid;
    gap: 1rem;
}

.mx-footer-pro__row {
    display: grid;
    gap: 1rem;
}

.mx-footer-pro__row--hero {
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .mx-footer-pro__row--hero {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    }
}

.mx-footer-pro__row--services,
.mx-footer-pro__row--info {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .mx-footer-pro__row--services,
    .mx-footer-pro__row--info {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.mx-footer-pro__card {
    padding: clamp(1.25rem, 2.5vw, 1.65rem);
    background: rgba(19, 29, 51, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 1.125rem;
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mx-footer-pro__logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.mx-footer-pro__logo img {
    display: block;
    height: 2.25rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.mx-footer-pro__lead {
    margin: 0 0 1.35rem;
    max-width: 34rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #94a3b8;
}

.mx-footer-pro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mx-footer-pro__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.7rem 1.25rem;
    border-radius: 0.75rem;
    font-family: var(--mx-font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mx-footer-pro__btn--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.mx-footer-pro__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.36);
}

.mx-footer-pro__btn--outline {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.45);
    color: #e2e8f0 !important;
}

.mx-footer-pro__btn--outline:hover {
    border-color: rgba(96, 165, 250, 0.45);
    background: rgba(30, 41, 59, 0.65);
    transform: translateY(-2px);
}

.mx-footer-pro__stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    height: 100%;
}

.mx-footer-pro__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    min-height: 5.5rem;
    padding: 1rem 1.1rem;
    border-radius: 0.875rem;
    background: rgba(11, 18, 32, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.mx-footer-pro__stat strong {
    font-family: var(--mx-font-heading);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.15;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.mx-footer-pro__stat span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
}

.mx-footer-pro__heading {
    margin: 0 0 1rem;
    font-family: var(--mx-font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f1f5f9;
}

.mx-footer-pro__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.mx-footer-pro__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mx-footer-pro__links a:hover {
    color: #e2e8f0;
    transform: translateX(3px);
}

.mx-footer-pro__chev {
    flex-shrink: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 1.5px solid #60a5fa;
    border-bottom: 1.5px solid #60a5fa;
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0.85;
}

.mx-footer-pro__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.mx-footer-pro__contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #94a3b8;
}

.mx-footer-pro__contact-icon {
    flex: 0 0 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.1rem;
    border-radius: 0.65rem;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.mx-footer-pro__contact-item strong {
    display: block;
    margin-bottom: 0.15rem;
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mx-footer-pro__contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mx-footer-pro__contact-item a:hover {
    color: #60a5fa;
}

.mx-footer-pro__wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.65rem 1rem;
    border-radius: 0.65rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.22);
    color: #86efac !important;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mx-footer-pro__wa:hover {
    background: rgba(37, 211, 102, 0.16);
    transform: translateY(-1px);
}

.mx-footer-pro__socket {
    margin-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(4, 8, 18, 0.72);
}

.mx-footer-pro__socket-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding: 1.1rem 0 1.35rem;
}

.mx-footer-pro__socket-copy p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: #64748b;
}

.mx-footer-pro__socket-copy p:first-child {
    color: #94a3b8;
    font-weight: 600;
}

.mx-footer-pro__socket-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 1rem;
}

.mx-footer-pro__socket-nav a {
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mx-footer-pro__socket-nav a:hover {
    color: #dbeafe;
}

.mx-footer-pro__socket-meta {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: #93c5fd;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .mx-footer-pro__socket-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .mx-footer-pro__actions .mx-footer-pro__btn {
        flex: 1 1 calc(50% - 0.35rem);
    }

    .mx-footer-pro__btn--primary {
        flex: 1 1 100%;
    }
}

/* Legacy overrides */
.site-header,
.site-footer {
    display: none;
}

.site-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.page-content:not(.home-content):not(.wp-content) a[data-anim-type] {
    border-radius: 999px;
    background: var(--mx-primary);
}

.cta {
    display: none;
}

/* Animations — Pixfort/Elementor benzeri */
@keyframes mx-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mx-fade-in-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes mx-slide-in-up {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes mx-highlight-grow {
    from { background-size: 0 100%; }
    to { background-size: 100% 100%; }
}

@keyframes mx-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes mx-brand-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.animate-fade,
[data-animate="fade"] {
    opacity: 0;
}

.animate-fade.is-visible,
[data-animate="fade"].is-visible {
    animation: mx-fade-in 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

[data-animate="fade-up"] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
}

[data-animate="fade-up"].is-visible {
    animation: mx-fade-in-up 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

[data-animate-delay="100"] { animation-delay: 0.1s; }
[data-animate-delay="200"] { animation-delay: 0.2s; }
[data-animate-delay="300"] { animation-delay: 0.3s; }
[data-animate-delay="400"] { animation-delay: 0.4s; }
[data-animate-delay="500"] { animation-delay: 0.5s; }
[data-animate-delay="600"] { animation-delay: 0.6s; }
[data-animate-delay="700"] { animation-delay: 0.7s; }
[data-animate-delay="800"] { animation-delay: 0.8s; }

@media (prefers-reduced-motion: reduce) {
    .animate-fade,
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Trust band — hero / slider üzerine bindirilmiş kartlar */
.sr-trust--overlap {
    position: relative;
    z-index: 12;
    padding: 0;
    margin-top: clamp(-4.75rem, -8.5vw, -3.25rem);
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.sr-trust__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 640px) {
    .sr-trust__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 992px) {
    .sr-trust__list { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.sr-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.85rem 0.65rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.sr-trust__item i {
    color: var(--mx-primary, #fd7800);
    font-size: 1.1rem;
}

.sr-trust__value {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--mx-heading, #1a1a2e);
}

.sr-trust__label {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.3;
}

/* ── Layout fix: main ve hero tam genişlik (site.css 72rem çakışması) ── */
html,
body.site-body {
    width: 100%;
    max-width: none;
    margin: 0;
}

main.site-page {
    display: block;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Eski 100vw breakout kurallarını iptal et */
main.site-page .home-hero,
main.site-page .mx-hero-slider,
main.site-page .cs-hero,
main.site-page .sh-hero,
main.site-page .faq-hero {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
