/* ═══════════════════════════════════════════════════════════
   Mx Store — Premium Homepage Redesign
   12-col grid · 1400px max · distinct section identities
   ═══════════════════════════════════════════════════════════ */

body.category-home {
    --home-max: 1400px;
    --home-pad: clamp(20px, 3vw, 32px);
    --home-gap: clamp(16px, 2vw, 24px);
    --home-section-y: clamp(72px, 10vw, 128px);
    --home-orange: #fd7800;
    --home-orange-soft: rgba(253, 120, 0, 0.12);
    --home-orange-glow: rgba(253, 120, 0, 0.4);
    --home-ink: #0a0f1a;
    --home-ink-soft: #1a2236;
    --home-text: #5a6478;
    --home-text-light: rgba(255, 255, 255, 0.65);
    --home-radius: 20px;
    --home-radius-lg: 28px;
    --mx-container: 1400px;
    background: #fff;
}

.home-page {
    width: 100%;
    max-width: none;
}

.home-page.site-page {
    width: 100%;
    max-width: none !important;
    margin: 0;
    padding: 0;
}

.home-wrap {
    width: min(100%, var(--home-max));
    margin-inline: auto;
    padding-inline: var(--home-pad);
}

.home-section {
    padding-block: var(--home-section-y);
}

/* ── Shared label ── */
.home-label {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--home-orange);
}

.home-label--light {
    color: rgba(255, 179, 102, 0.9);
}

/* ── Buttons ── */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    font-family: var(--mx-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.25s ease,
                background 0.25s ease,
                border-color 0.25s ease;
}

.home-btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 14px;
}

.home-btn--primary {
    color: #fff !important;
    background: var(--home-orange);
    box-shadow: 0 4px 20px var(--home-orange-glow);
}

.home-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--home-orange-glow);
    color: #fff !important;
}

.home-btn--glass {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.home-btn--glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #fff !important;
}

.home-btn--outline-light {
    color: #fff !important;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    margin-top: 0.5rem;
}

.home-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
}


/* ═══════════════════════════════════════
   HERO — Full viewport, floating devices
   ═══════════════════════════════════════ */
.home-hero {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding-block: clamp(5rem, 10vh, 7rem);
    overflow: hidden;
    background: var(--home-ink);
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.home-hero__layout {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .home-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        gap: clamp(2rem, 4vw, 4rem);
    }
}

.home-hero__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: home-orb-drift 18s ease-in-out infinite alternate;
}

.home-hero__orb--1 {
    top: -20%;
    right: 5%;
    width: min(60vw, 36rem);
    height: min(60vw, 36rem);
    background: radial-gradient(circle, rgba(253, 120, 0, 0.35) 0%, transparent 70%);
}

.home-hero__orb--2 {
    bottom: -25%;
    left: -10%;
    width: min(50vw, 30rem);
    height: min(50vw, 30rem);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    animation-delay: -6s;
}

.home-hero__orb--3 {
    top: 40%;
    left: 30%;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, rgba(253, 120, 0, 0.12) 0%, transparent 70%);
    animation-delay: -12s;
}

.home-hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 65% 45%, #000 20%, transparent 80%);
}

@keyframes home-orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.08); }
}

.home-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
}

.home-hero__kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--home-orange);
    box-shadow: 0 0 12px var(--home-orange-glow);
    animation: home-pulse 2s ease-in-out infinite;
}

@keyframes home-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.home-hero__title {
    margin: 0 0 1.5rem;
    font-family: var(--mx-font-heading);
    font-size: clamp(2.25rem, 5.2vw, 3.75rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: #fff;
}

.home-hero__title em {
    display: block;
    font-style: normal;
    background: linear-gradient(135deg, #fff 20%, #ffb366 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-hero__lead {
    margin: 0 0 2rem;
    max-width: 32rem;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.75;
    color: var(--home-text-light);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.home-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-hero__trust li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.home-hero__trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--home-orange);
}

/* Hero device stage — floating mosaic, tam kolon genişliği */
.home-hero__stage {
    position: relative;
    width: 100%;
    min-height: clamp(24rem, 38vw, 34rem);
    perspective: 1200px;
}

.home-hero__glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90%, 32rem);
    height: min(90%, 32rem);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 120, 0, 0.15) 0%, transparent 65%);
    filter: blur(40px);
    animation: home-glow-pulse 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes home-glow-pulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.home-hero__device {
    position: absolute;
    display: block;
    overflow: hidden;
    border-radius: var(--home-radius-lg);
    text-decoration: none !important;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.4s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.home-hero__device--main {
    top: 0;
    left: 0;
    width: 58%;
    height: 100%;
    z-index: 2;
    animation: home-float-main 6s ease-in-out infinite;
}

.home-hero__device--float-a {
    top: 0;
    right: 0;
    width: 40%;
    height: 48%;
    z-index: 3;
    animation: home-float-a 5s ease-in-out infinite;
}

.home-hero__device--float-b {
    bottom: 0;
    right: 0;
    width: 40%;
    height: 48%;
    z-index: 4;
    animation: home-float-b 7s ease-in-out infinite;
}

@keyframes home-float-main {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
}

@keyframes home-float-a {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes home-float-b {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

.home-hero__device-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
}

.home-hero__device img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover;
    margin: 0 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__device-tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 3;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(10, 15, 26, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
}

.home-hero__device:hover {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(253, 120, 0, 0.3),
        0 0 60px rgba(253, 120, 0, 0.15);
}

.home-hero__device:hover img {
    transform: scale(1.04);
}

@media (max-width: 1023px) {
    .home-hero__stage {
        min-height: 20rem;
        max-width: 28rem;
        margin-inline: auto;
    }

    .home-hero__device--main {
        width: 68%;
        height: 88%;
        top: 6%;
        left: 0;
    }

    .home-hero__device--float-a {
        width: 44%;
        height: 42%;
        top: 0;
        right: 0;
    }

    .home-hero__device--float-b {
        width: 44%;
        height: 42%;
        bottom: 0;
        right: 0;
    }
}


/* ═══════════════════════════════════════
   SERVICES — 4×2 grid, unique hovers
   ═══════════════════════════════════════ */
.home-services {
    background: #fafbfc;
    border-top: 1px solid rgba(10, 15, 26, 0.04);
}

.home-services__header {
    display: grid;
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 768px) {
    .home-services__header {
        grid-template-columns: 1fr 1fr;
        align-items: end;
        gap: 2rem;
    }
}

.home-services__title {
    margin: 0;
    font-family: var(--mx-font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--home-ink);
}

.home-services__desc {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--home-text);
}

.home-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--home-gap);
}

@media (min-width: 640px) {
    .home-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .home-services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Service tile — horizontal row layout, NOT card boxes */
.home-svc {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 14rem;
    padding: 1.75rem;
    border-radius: var(--home-radius);
    background: #fff;
    text-decoration: none !important;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                background 0.35s ease;
}

.home-svc__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 16px;
    background: var(--home-orange-soft);
    color: var(--home-orange);
    transition: transform 0.35s ease, background 0.35s ease;
}

.home-svc__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.home-svc__title {
    font-family: var(--mx-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--home-ink);
}

.home-svc__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--home-text);
}

.home-svc__arrow {
    display: flex;
    align-items: center;
    color: var(--home-orange);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 8 unique hover animations */
.home-svc--lift:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10, 15, 26, 0.1); }
.home-svc--lift:hover .home-svc__arrow { opacity: 1; transform: translateX(0); }

.home-svc--glow:hover { box-shadow: 0 0 0 1px rgba(253, 120, 0, 0.3), 0 0 40px rgba(253, 120, 0, 0.15); }
.home-svc--glow:hover .home-svc__icon { background: var(--home-orange); color: #fff; }
.home-svc--glow:hover .home-svc__arrow { opacity: 1; transform: translateX(0); }

.home-svc--slide:hover .home-svc__body { transform: translateY(-4px); }
.home-svc--slide .home-svc__body { transition: transform 0.35s ease; }
.home-svc--slide:hover .home-svc__arrow { opacity: 1; transform: translateX(0); }

.home-svc--tilt { transform-style: preserve-3d; }
.home-svc--tilt:hover { transform: perspective(800px) rotateX(4deg) rotateY(-3deg) translateY(-4px); box-shadow: 0 24px 48px rgba(10, 15, 26, 0.12); }
.home-svc--tilt:hover .home-svc__arrow { opacity: 1; transform: translateX(0); }

.home-svc--scale:hover { transform: scale(1.03); box-shadow: 0 16px 40px rgba(10, 15, 26, 0.1); }
.home-svc--scale:hover .home-svc__icon { transform: scale(1.1); }
.home-svc--scale:hover .home-svc__arrow { opacity: 1; transform: translateX(0); }

.home-svc--border { border: 2px solid transparent; background-clip: padding-box; }
.home-svc--border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    transition: background 0.4s ease;
    pointer-events: none;
}
.home-svc--border:hover::before { background: linear-gradient(135deg, var(--home-orange), #ff9a3d); }
.home-svc--border:hover .home-svc__arrow { opacity: 1; transform: translateX(0); }

.home-svc--bounce:hover .home-svc__icon { animation: home-icon-bounce 0.5s ease; }
.home-svc--bounce:hover .home-svc__arrow { opacity: 1; transform: translateX(0); }

@keyframes home-icon-bounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-4px); }
}

.home-svc--shine { overflow: hidden; }
.home-svc--shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.home-svc--shine:hover::after { left: 150%; }
.home-svc--shine:hover .home-svc__arrow { opacity: 1; transform: translateX(0); }


/* ═══════════════════════════════════════
   WHY — Giant numbers as focal point
   ═══════════════════════════════════════ */
.home-why {
    background: var(--home-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.home-why::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(253, 120, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.home-why__numbers {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .home-why__numbers {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.home-why__num-block {
    text-align: center;
}

@media (min-width: 768px) {
    .home-why__num-block:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.home-why__num {
    display: block;
    font-family: var(--mx-font-heading);
    font-size: clamp(4rem, 10vw, 7.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #fff 30%, rgba(255, 179, 102, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-why__num-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--home-text-light);
}

.home-why__editorial {
    position: relative;
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .home-why__editorial {
        grid-template-columns: 8fr 4fr;
        align-items: end;
        gap: 3rem;
    }
}

.home-why__headline {
    margin: 0 0 1.25rem;
    font-family: var(--mx-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
}

.home-why__editorial-copy p {
    margin: 0 0 1rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--home-text-light);
}

.home-why__accent {
    display: none;
}

@media (min-width: 1024px) {
    .home-why__accent {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .home-why__accent-line {
        width: 1px;
        height: 6rem;
        background: linear-gradient(180deg, var(--home-orange), transparent);
    }

    .home-why__accent-text {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        writing-mode: vertical-rl;
    }
}


/* ═══════════════════════════════════════
   BRANDS — Logo cloud with hover
   ═══════════════════════════════════════ */
.home-brands {
    background: #fff;
}

.home-brands__header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.home-brands__title {
    margin: 0 0 0.75rem;
    font-family: var(--mx-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--home-ink);
}

.home-brands__header p {
    margin: 0;
    font-size: 1rem;
    color: var(--home-text);
}

.home-brands__cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--home-radius-lg);
    background:
        radial-gradient(circle at 20% 30%, rgba(253, 120, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        #f7f8fa;
}

.home-brands__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(7rem, 12vw, 9rem);
    height: 4rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #fff;
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
}

.home-brands__logo:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 32px rgba(10, 15, 26, 0.1);
}

.home-brands__logo img {
    display: block;
    width: auto !important;
    max-width: 5.5rem !important;
    max-height: 2.25rem !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    filter: grayscale(1) opacity(0.5);
    transition: filter 0.35s ease;
}

.home-brands__logo:hover img {
    filter: grayscale(0) opacity(1);
}


/* ═══════════════════════════════════════
   TIMELINE — Horizontal 1→5 flow
   ═══════════════════════════════════════ */
.home-timeline {
    background: linear-gradient(180deg, #fff 0%, #f4f5f7 100%);
}

.home-timeline__header {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.home-timeline__title {
    margin: 0 0 0.75rem;
    font-family: var(--mx-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--home-ink);
}

.home-timeline__header p {
    margin: 0;
    color: var(--home-text);
}

.home-timeline__track {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 1024px) {
    .home-timeline__track {
        flex-direction: row;
        align-items: flex-start;
        position: relative;
        padding-top: 0.5rem;
    }

    .home-timeline__track::before {
        content: "";
        position: absolute;
        top: 1.5rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background: rgba(10, 15, 26, 0.08);
        z-index: 0;
    }

    .home-timeline__track::after {
        content: "";
        position: absolute;
        top: 1.5rem;
        left: 10%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--home-orange), #ff9a3d);
        z-index: 1;
        transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .home-timeline__track.is-active::after {
        width: 80%;
    }
}

.home-timeline__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.75rem;
}

@media (max-width: 1023px) {
    .home-timeline__step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.25rem;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(10, 15, 26, 0.06);
    }

    .home-timeline__step:last-child {
        border-bottom: none;
    }
}

.home-timeline__marker {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

@media (max-width: 1023px) {
    .home-timeline__marker {
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

.home-timeline__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-family: var(--mx-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    background: var(--home-ink);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.home-timeline__track.is-active .home-timeline__step.is-visible .home-timeline__num {
    background: var(--home-orange);
    box-shadow: 0 8px 24px var(--home-orange-glow);
    animation: home-step-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes home-step-pop {
    0% { transform: scale(0.5); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.home-timeline__connector {
    display: none;
}

@media (min-width: 1024px) {
    .home-timeline__step {
        position: relative;
        z-index: 2;
    }
}

.home-timeline__content h3 {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--home-ink);
}

.home-timeline__content p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--home-text);
}


/* ═══════════════════════════════════════
   REVIEWS — Masonry, varied heights
   ═══════════════════════════════════════ */
.home-reviews {
    background: var(--home-ink);
    color: #fff;
}

.home-reviews__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-reviews__google {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.home-reviews__title {
    margin: 0;
    font-family: var(--mx-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
}

.home-reviews__score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-reviews__score strong {
    font-family: var(--mx-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.home-reviews__score span:last-child {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.home-reviews__stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.home-reviews__masonry {
    columns: 1;
    column-gap: var(--home-gap);
}

@media (min-width: 640px) {
    .home-reviews__masonry {
        columns: 2;
    }
}

@media (min-width: 1100px) {
    .home-reviews__masonry {
        columns: 3;
    }
}

.home-review {
    break-inside: avoid;
    margin-bottom: var(--home-gap);
    padding: 1.5rem;
    border-radius: var(--home-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.home-review:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.home-review--tall {
    padding-block: 2.25rem;
}

.home-review--compact {
    padding-block: 1.125rem;
}

.home-review--compact .home-review__quote {
    font-size: 0.8125rem;
}

.home-review--wide .home-review__quote {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.home-review__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.home-review__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--avatar-color, #4285f4);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.home-review__header strong {
    display: block;
    font-size: 0.875rem;
    color: #fff;
}

.home-review__header .home-review__stars {
    font-size: 0.75rem;
}

.home-review__quote {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}


/* ═══════════════════════════════════════
   CTA — Maximum impact
   ═══════════════════════════════════════ */
.home-cta {
    position: relative;
    padding-block: clamp(5rem, 12vw, 8rem);
    overflow: hidden;
}

.home-cta__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fd7800 0%, #e85d00 35%, #c44a00 70%, #8a3200 100%);
}

.home-cta__beam {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.home-cta__beam--1 {
    top: -40%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.home-cta__beam--2 {
    bottom: -50%;
    left: -5%;
    width: 40%;
    height: 80%;
    background: rgba(255, 200, 100, 0.2);
}

.home-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-cta__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.home-cta__title {
    margin: 0 0 1.25rem;
    font-family: var(--mx-font-heading);
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
}

.home-cta__sub {
    margin: 0 auto 2.5rem;
    max-width: 28rem;
    font-size: clamp(1rem, 1.8vw, 1.1875rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.home-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: min(100%, 18rem);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    text-decoration: none !important;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.25s ease;
}

.home-cta__btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.home-cta__btn small {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.home-cta__btn span :not(small) {
    font-family: var(--mx-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
}

.home-cta__btn--phone {
    background: #fff;
    color: var(--home-ink) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.home-cta__btn--phone:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    color: var(--home-ink) !important;
}

.home-cta__btn--wa {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-cta__btn--wa:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    color: #fff !important;
}

.home-cta__note {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}


/* ═══════════════════════════════════════
   Scroll animations
   ═══════════════════════════════════════ */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(2rem);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0ms);
}

[data-animate="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════
   Global overrides
   ═══════════════════════════════════════ */
.home-page img,
.home-page svg {
    max-width: 100%;
    height: auto;
}

.home-page a.home-btn,
.home-page a.home-svc,
.home-page a.home-hero__device,
.home-page a.home-brands__logo,
.home-page a.home-cta__btn {
    text-decoration: none !important;
}

@media (prefers-reduced-motion: reduce) {
    [data-animate="fade-up"] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-hero__orb,
    .home-hero__device,
    .home-hero__glow-ring,
    .home-hero__kicker-dot {
        animation: none;
    }

    .home-svc,
    .home-brands__logo,
    .home-review,
    .home-cta__btn {
        transition: none;
    }

    .home-timeline__track::after {
        width: 80%;
        transition: none;
    }
}

/* ── Layout fix: eski site.css (72rem) ve 100vw breakout çakışmasını ezer ── */
body.category-home main.home-page.site-page,
body.category-home .home-hero,
body.category-home .mx-hero-slider,
body.category-home .home-section {
    width: 100%;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
