$color-purple: #9b3dff;
$color-purple-deep: #611ada;
$color-section-title: #9b3dff;
$color-section-desc: #738596;
$color-body: #f7fbfc;
$color-pink: #fbe8ff;
$color-nav-inactive: #c2cde7;
$color-icon-inactive: #738596;

$font:
    "Manrope",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
$radius-pill: 999px;
$header-height: 5.5rem;

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: $font;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1f36;
    background-color: $color-body;
    -webkit-font-smoothing: antialiased;

    &.nav-open {
        overflow: hidden;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1350px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.scroll-anchor {
    scroll-margin-top: calc(#{$header-height} + 0.5rem);
    height: 1px;
    pointer-events: none;
}

// ——— Header ———
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding-block: 1.1rem;
    background: transparent;
    transition:
        background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

    &__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
        position: relative;
        @media (max-width: 992px) {
            grid-template-columns: auto 1fr;
        }
    }

    &__logo {
        display: inline-flex;
        align-items: center;
        z-index: 2;
    }

    &__logo-img {
        display: block;
        width: 100%;
        object-fit: contain;
        max-width: 180px;
    }

    &__nav {
        justify-self: center;

        @media (max-width: 992px) {
            display: none;
        }
    }

    &__nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: clamp(1.25rem, 2.5vw, 2.25rem);
    }

    &__link {
        font-size: 0.9375rem;
        font-weight: 500;
        color: $color-nav-inactive;
        transition: color 0.25s ease;

        &:hover,
        &:focus-visible {
            color: #fff;
        }

        &--active {
            color: #fff;
            font-weight: 600;
        }
    }

    &__menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 0.5rem;
        z-index: 2;
        color: #fff;

        @media (max-width: 992px) {
            display: flex;
            justify-self: end;
        }
    }

    &__menu-bar {
        width: 22px;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    &__mobile {
        display: none;
        position: fixed;
        inset: 0;
        top: $header-height;
        z-index: 1001;
        background: rgba(247, 251, 252, 0.98);
        padding: 1.5rem;
        border-top: 1px solid rgba(155, 61, 255, 0.12);
        overflow: auto;

        @media (max-width: 992px) {
            body.nav-open & {
                display: block;
            }
        }
    }

    &__mobile-list {
        list-style: none;
        margin: 0 0 1.5rem;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    &__mobile-link {
        display: block;
        padding: 0.85rem 0;
        font-weight: 600;
        font-size: 1.05rem;
        color: #2d3748;
        border-bottom: 1px solid rgba(115, 133, 150, 0.15);
    }

    // Scrolled state (solid bar, nav okunur)
    &.is-scrolled {
        background-color: rgba(247, 251, 252, 0.97);
        box-shadow: 0 10px 40px rgba(97, 26, 218, 0.08);

        // transform animasyonu yalnızca satırda: aksi halde fixed .site-header__mobile viewport yerine header'a sıkışır
        .site-header__inner,
        .dash-header__inner {
            animation: header-slide-down 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            will-change: transform;
        }

        .site-header__logo-img {
            filter: brightness(0) saturate(100%) invert(14%) sepia(86%) saturate(4100%) hue-rotate(258deg)
                brightness(0.75) contrast(102%);
        }

        .site-header__link {
            color: #5c6578;

            &:hover,
            &:focus-visible {
                color: $color-purple;
            }

            &--active {
                color: $color-purple-deep;
            }
        }

        .site-header__menu-toggle {
            color: $color-purple-deep;
        }

        .btn--nav {
            color: $color-purple-deep;
            background: rgba(97, 26, 218, 0.05);
            border-color: rgba(97, 26, 218, 0.1);

            &:hover,
            &:focus-visible {
                border-color: rgba(97, 26, 218, 0.22);
                background: rgba(97, 26, 218, 0.08);
            }
        }

        .dash-logo {
            color: $color-purple-deep;

            .dash-logo__mark,
            .dash-logo__text {
                color: $color-purple-deep;
            }
        }

        .dash-topnav__link {
            color: #5c6578;

            &:hover,
            &:focus-visible {
                color: $color-purple;
                background: rgba(97, 26, 218, 0.06);
            }

            &--active {
                color: $color-purple-deep;
                background: rgba(97, 26, 218, 0.08);
            }
        }

        .dash-topnav__icon:not(.dash-topnav__icon--home) {
            filter: none;
        }

        .dash-topnav__icon--home {
            filter: brightness(0) saturate(100%) invert(14%) sepia(86%) saturate(4100%) hue-rotate(258deg)
                brightness(0.75) contrast(102%);
        }

        .dash-user__name {
            color: #1a1f36;
        }

        .dash-user__balance {
            color: #64748b;
        }

        .dash-user__avatar {
            border-color: rgba(97, 26, 218, 0.2);
        }

        .dash-header__menu-toggle {
            color: $color-purple-deep;
        }
    }
}

@keyframes header-slide-down {
    from {
        transform: translateY(-18px);
        opacity: 0.92;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

// Buttons
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: $radius-pill;
    padding: 0.65rem 1.35rem;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
    white-space: nowrap;

    &--nav {
        color: #fff;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        justify-self: end;
        z-index: 2;

        @media (max-width: 992px) {
            display: none;
        }

        &:hover,
        &:focus-visible {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.18);
        }
    }

    &--block {
        display: flex;
        width: 100%;
        margin-top: 0.5rem;
        color: $color-purple-deep;
        border-color: rgba(97, 26, 218, 0.35);
    }

    &--hero {
        color: #fff;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        padding: 0.85rem 1.75rem;
        font-size: 1rem;

        &:hover,
        &:focus-visible {
            background: rgba(255, 255, 255, 0.16);
            transform: translateY(-1px);
        }
    }

    &--cta {
        margin-top: clamp(1.5rem, 3vw, 2.25rem);
        padding: 1rem 2.5rem;
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        background: $color-purple;
        border: none;
        border-radius: 12px;

        &:hover,
        &:focus-visible {
            background: #a855ff;
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(155, 61, 255, 0.42);
        }

        &:active {
            transform: translateY(0);
        }
    }
}

// ——— Hero ———
.hero {
    position: relative;
    isolation: isolate;
    padding-top: calc(#{$header-height} + clamp(2rem, 6vw, 4rem));
    padding-bottom: clamp(2.5rem, 5vw, 0rem);
    z-index: 2;
    &__gradient {
        position: absolute;
        inset: 0;
        z-index: -2;
        background: linear-gradient(180deg, $color-purple 0%, $color-purple-deep 100%);
    }

    &__shape {
        position: absolute;
        inset: 0;
        z-index: -1;
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: 80%;
        opacity: 0.9;
        mix-blend-mode: lighten;
        pointer-events: none;

        @media (max-width: 768px) {
        }
    }

    &__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: clamp(1.5rem, 4vw, 3.5rem);

        @media (max-width: 992px) {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    &__content {
        color: #fff;
        max-width: 34rem;

        @media (max-width: 992px) {
            max-width: none;
            margin-inline: auto;
        }
    }

    &__eyebrow {
        margin: 0 0 0.75rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.72);
        letter-spacing: 0.02em;
    }

    &__title {
        margin: 0 0 1rem;
        font-size: clamp(2.15rem, 4.5vw, 3.25rem);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

    &__desc {
        margin: 0 0 2rem;
        font-size: 1rem;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.88);
        max-width: 32rem;

        @media (max-width: 992px) {
            margin-inline: auto;
        }
    }

    &__cta-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.25rem 1.75rem;

        @media (max-width: 992px) {
            justify-content: center;
        }
    }

    &__proof {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    &__avatars {
        width: auto;
        height: 48px;
        object-fit: contain;
    }

    &__proof-text {
        font-size: 0.9375rem;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
    }

    &__visual {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        min-height: 320px;
        margin-bottom: -110px;

        @media (max-width: 992px) {
            min-height: 260px;
            justify-content: center;
            align-items: center;
            margin-left: 8%;
        }
    }

    &__visual-card {
        position: absolute;
        width: min(72%, 340px);
        aspect-ratio: 3 / 5.2;
        bottom: 8%;
        border-radius: 2.25rem;

        transform: rotate(-4deg);

        &::before {
            content: "";
            position: absolute;
            inset: 18% 12%;
            border-radius: 999px;
            background: linear-gradient(125deg, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
            pointer-events: none;
        }

        @media (max-width: 992px) {
            width: min(55%, 280px);
            bottom: 12%;
        }
    }

    &__phone {
        position: relative;
        z-index: 1;
        width: min(100%, 420px);

        @media (max-width: 992px) {
            width: min(85%, 320px);
        }
    }
}

// ——— Features ———
.features {
    position: relative;
    background: #fbe8ff;
    padding-block: clamp(3.5rem, 8vw, 5.5rem);
    text-align: center;

    @media (max-width: 992px) {
        padding-top: 5rem;
    }

    &__inner {
        margin-inline: auto;
    }

    &__strip-area {
        margin-top: 0.25rem;
    }
}

.section-label {
    margin: 0 0 0.65rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: $color-section-title;
}

.section-title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #1a1f36;
}

.section-desc {
    margin: 0 auto 2.75rem;
    max-width: 38rem;
    font-size: 1rem;
    color: $color-section-desc;
    line-height: 1.65;
}

// ——— Icon strip (services) ———
.icon-strip {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    align-items: center;
    justify-content: center;
    &__cell {
        list-style: none;
        margin: 0;
        padding: 0;
        min-height: 85px;
    }

    &__item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        width: 100%;
        aspect-ratio: 1;
        min-height: 100px;
        padding: 25px 20px;
        border-radius: 20px;
        background: #fff;

        color: $color-icon-inactive;
        transition:
            transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.35s ease,
            background 0.3s ease,
            color 0.3s ease;

        .icon-strip__icon {
            font-size: 1.75rem;
            color: $color-icon-inactive;
            transition:
                font-size 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.3s ease;
        }

        .icon-strip__label {
            color: $color-icon-inactive;
            transition: color 0.3s ease;
            font-size: 12px;
        }

        &:focus-visible {
            outline: 2px solid $color-purple;
            outline-offset: 3px;
        }

        @media (hover: hover) and (pointer: fine) {
            &:hover {
                z-index: 1;
                transform: translateY(-4px) scale(1.1);
                background: $color-purple;
                color: #fff;
                box-shadow:
                    0 18px 40px rgba(155, 61, 255, 0.45),
                    0 8px 16px rgba(97, 26, 218, 0.18);

                .icon-strip__icon {
                    font-size: 1.55rem;
                    color: #fff;
                }

                .icon-strip__label {
                    color: #fff;
                }
            }
        }
    }

    &__icon {
        font-size: 1.15rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    &__label {
        font-size: 0.6875rem;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        max-width: 100%;
        word-break: break-word;
    }
}

// ——— Home: kirala / hakkında (beyaz blok, ince pembe çizgi) ———
.home-about {
    position: relative;
    background: #fff;
    padding-bottom: clamp(3.25rem, 8vw, 5.75rem);

    &__grid {
        display: grid;
        grid-template-columns: 0.75fr 1.25fr;
        align-items: center;
        gap: clamp(2rem, 5vw, 4.25rem);
        padding-top: clamp(2.75rem, 6vw, 4.5rem);

        @media (max-width: 992px) {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
    }

    &__media {
        @media (max-width: 992px) {
            max-width: 28rem;
            margin-inline: auto;
        }
    }

    &__media-frame {
        position: relative;
        border-radius: clamp(28px, 4.5vw, 48px);
        overflow: hidden;
        background: linear-gradient(155deg, #8b2cf5 0%, #611ada 45%, #9b3dff 100%);
        box-shadow:
            0 28px 70px rgba(97, 26, 218, 0.18),
            0 8px 24px rgba(97, 26, 218, 0.08);

        &::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            background: linear-gradient(
                125deg,
                rgba(255, 255, 255, 0.12) 0%,
                transparent 42%,
                rgba(0, 0, 0, 0.06) 100%
            );
        }
    }

    &__media-img {
        position: relative;
        z-index: 0;
        display: block;
        width: 100%;
        height: auto;
        vertical-align: bottom;
    }

    &__content {
        text-align: left;

        @media (max-width: 992px) {
            max-width: 36rem;
            margin-inline: auto;
            text-align: center;
        }
    }

    &__title-mark {
        margin-bottom: 1.15rem;

        @media (max-width: 992px) {
            display: flex;
            justify-content: center;
        }
    }

    &__title-icon {
        display: block;
        width: 2rem;
        height: auto;
        max-height: 2.25rem;
        object-fit: contain;

        @media (min-width: 993px) {
            width: 2.25rem;
            max-height: 2.5rem;
        }
    }

    &__heading {
        margin: 0 0 1.35rem;
        font-size: clamp(1.85rem, 3.4vw, 2.65rem);
        font-weight: 800;
        line-height: 1.18;
        letter-spacing: -0.03em;
    }

    &__heading-brand {
        color: $color-purple;
    }

    &__heading-rest {
        color: #12172a;
    }

    &__lead {
        margin: 0;
        font-size: 1.0625rem;
        line-height: 1.72;
        color: $color-section-desc;

        &--follow {
            margin-top: 1.1rem;
        }
    }

    .btn--cta {
        @media (max-width: 992px) {
            margin-inline: auto;
        }
    }

    // Metin solda, görsel sağda (Section 4)
    &--media-end {
        .home-about__grid {
            grid-template-columns: 1.25fr 0.75fr;

            @media (max-width: 992px) {
                grid-template-columns: 1fr;
            }
        }

        .home-about__media {
            @media (max-width: 992px) {
                order: -1;
            }
        }

        .home-about__heading-brand {
            background: linear-gradient(105deg, #9b3dff 0%, #6366f1 52%, #2563eb 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        @supports not ((-webkit-background-clip: text) or (background-clip: text)) {
            .home-about__heading-brand {
                background: none;
                color: $color-purple;
            }
        }
    }
}

// ——— Bulut özellik kartları (Güçlü Özellikler + 4 kart) ———
.feature-cloud {
    background: $color-pink;
    padding-block: clamp(15rem, 8vw, 6rem);

    &__inner {
        text-align: center;
    }

    &__label {
        margin-bottom: 0.65rem;
    }

    &__title {
        margin: 0 auto 1rem;
        max-width: 52rem;
        font-size: clamp(1.65rem, 3.2vw, 2.35rem);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.025em;
        color: #1a1f36;
    }

    &__title-accent {
        color: $color-purple;
    }

    &__desc.section-desc {
        margin: 0 auto 0;
    }

    &__grid {
        margin-top: 2.75rem;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(1rem, 2vw, 1.35rem);
        text-align: left;

        @media (max-width: 1100px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        @media (max-width: 560px) {
            grid-template-columns: 1fr;
        }
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1.45rem, 3vw, 1.85rem);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 36px rgba(97, 26, 218, 0.06);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        box-shadow 0.35s ease;

    &__icon-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.25rem;
        height: 3.25rem;
        margin-bottom: 1.2rem;
        border-radius: 50%;
        background: $color-purple;
        flex-shrink: 0;
        transition: background 0.3s ease;
    }

    &__cloud {
        display: block;
        width: 1.75rem;
        height: 1.75rem;
        background-color: #fff;
        mask-image: url("../images/cloud.svg");
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        -webkit-mask-image: url("../images/cloud.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        transition: background-color 0.3s ease;
    }

    &__heading {
        margin: 0 0 0.65rem;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.3;
        color: #1a1f36;
        letter-spacing: -0.02em;
        transition: color 0.3s ease;
    }

    &__text {
        margin: 0;
        font-size: 0.9375rem;
        line-height: 1.65;
        color: $color-section-desc;
        transition: color 0.3s ease;
    }

    &:focus-visible {
        outline: 2px solid $color-purple;
        outline-offset: 3px;
    }

    @media (hover: hover) and (pointer: fine) {
        &:hover {
            transform: translateY(-8px) scale(1.02);
            background: $color-purple;
            box-shadow:
                0 22px 50px rgba(155, 61, 255, 0.42),
                0 10px 24px rgba(97, 26, 218, 0.2);

            .feature-card__heading {
                color: #fff;
            }

            .feature-card__text {
                color: rgba(255, 255, 255, 0.88);
            }

            .feature-card__icon-wrap {
                background: #fff;
            }

            .feature-card__cloud {
                background-color: $color-purple;
            }
        }
    }
}

// ——— Sıkça sorulan sorular (akordeon + sağ görsel) ———
.faq-section {
    padding-block: clamp(3.25rem, 7vw, 5.75rem);
    background: $color-body;

    &__grid {
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
        gap: clamp(1.5rem, 4vw, 3.25rem);
        align-items: center;

        @media (max-width: 992px) {
            grid-template-columns: 1fr;
        }
    }

    &__accordions {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    &__aside {
        position: sticky;
        top: calc(#{$header-height} + 1rem);

        @media (max-width: 992px) {
            position: relative;
            top: auto;
            max-width: 22rem;
            margin-inline: auto;
        }
    }

    &__visual-img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: clamp(18px, 2.5vw, 28px);
        object-fit: contain;
    }
}

.faq-item {
    border-radius: clamp(18px, 2.5vw, 26px);
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;

    @media (hover: hover) and (pointer: fine) {
        &:hover {
            transform: translateY(-2px);
        }
    }

    &__trigger {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.2rem 1.35rem;
        margin: 0;
        border: none;
        background: transparent;
        font: inherit;
        text-align: left;
        cursor: pointer;
        color: #1a1f36;
        transition: background 0.2s ease;

        &:focus-visible {
            outline: 2px solid $color-purple;
            outline-offset: -2px;
        }
    }

    &__question {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: -0.02em;
    }

    &__icons {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 2.25rem;
        height: 2.25rem;
    }

    &__icon {
        font-size: 1rem;
        color: #1a1f36;
        line-height: 1;

        &--close {
            display: none;
        }
    }

    &.is-open &__icon--plus {
        display: none;
    }

    &.is-open &__icon--close {
        display: inline-block;
    }

    &__panel {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }

    &.is-open &__panel {
        grid-template-rows: 1fr;
    }

    &__panel-inner {
        min-height: 0;
        overflow: hidden;
    }

    &__answer {
        margin: 0;
        padding: 0 1.35rem 1.25rem;
        padding-top: 0.15rem;
        font-size: 0.9375rem;
        line-height: 1.7;
        color: $color-section-desc;
    }
}

// ——— Testimonial slider (Swiper, tam genişlik) ———
$color-testimonial-tint: #faf5ff;

.testimonials {
    --testimonial-gap: 20px;
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
    background: $color-body;
    overflow: hidden;

    &__header {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 1rem clamp(1.5rem, 3vw, 2.5rem);
        padding: clamp(1rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.75rem);
        padding-bottom: 0px;

        &::after {
            content: "";
            position: absolute;
            z-index: -1;
            background: $color-testimonial-tint;
            border-radius: clamp(18px, 2.5vw, 26px);
            pointer-events: none;
            bottom: -40%;
            left: 0;
            width: 100%;
            height: 100%;
        }

        > * {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            grid-template-columns: 1fr;
            justify-items: center;
            text-align: center;
        }
    }

    &__intro {
        justify-self: start;
        padding: 0.25rem 0.35rem 0 0;

        @media (max-width: 768px) {
            justify-self: center;
            padding: 0.25rem 0.5rem 0;
        }
    }

    &__title {
        position: relative;
        margin: 0 0 1rem;
        font-size: clamp(1.65rem, 3vw, 3.25rem);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.025em;
        color: #1a1f36;
    }

    &__subtitle {
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
        color: $color-section-desc;
    }

    &__header-img {
        flex-shrink: 0;
        line-height: 0;
        margin-bottom: -103px;

        img {
            display: block;
            width: auto;
            max-width: min(100%, 240px);
            height: auto;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            margin-top: 0.35rem;
            margin-bottom: clamp(-1.75rem, -3vw, -1.25rem);
        }
    }

    &__slider-outer {
        position: relative;
        z-index: 2;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
        overflow: hidden;
    }
}

.testimonial-swiper {
    width: 100%;
    padding-block: 0.35rem 0.75rem;
    overflow: hidden;
    position: relative;
    z-index: 2;

    .swiper-slide {
        width: calc((100vw - 3.5rem) / 2.38);
        max-width: 460px;
        min-width: 260px;
        height: auto;
        box-sizing: border-box;
    }

    @media (max-width: 900px) {
        .swiper-slide {
            width: calc((100vw - 2.5rem) / 2.05);
            min-width: 240px;
        }
    }

    @media (max-width: 520px) {
        .swiper-slide {
            width: calc((100vw - 1.75rem) / 1.12);
            min-width: 220px;
        }
    }
}

.testimonial-card {
    height: 100%;
    padding: 30px 30px 20px;
    border-radius: 18px;
    background: #fff;
    text-align: left;

    &__head {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 1rem;
    }

    &__avatar {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
    }

    &__meta {
        min-width: 0;
    }

    &__name {
        margin: 0 0 0.35rem;
        font-size: 1rem;
        font-weight: 700;
        color: #1a1f36;
        letter-spacing: -0.02em;
    }

    &__rating {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem 0.5rem;
    }

    &__stars {
        display: inline-flex;
        align-items: center;
        gap: 0.15rem;

        img {
            display: block;
            width: 15px;
            height: 15px;
            object-fit: contain;
        }
    }

    &__score {
        font-size: 0.875rem;
        font-weight: 600;
        color: $color-section-desc;
    }

    &__quote {
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.65;
        color: $color-section-desc;
    }
}

// ——— Footer ———
$footer-bg: #0c1322;
$footer-bottom-bg: #141d32;
$footer-wa: #21d475;
$footer-phone-icon: #9b3dff;
$footer-card-bg: #121a28;
$footer-muted: #9aa4b8;
$footer-btn-secondary: #2a3345;

.site-footer {
    background: $footer-bg;
    color: #e8ecf4;

    &__bar {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    &__bar-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem 1.5rem;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    &__brand {
        display: inline-flex;
        align-items: center;
        line-height: 0;
    }

    &__brand-logo {
        display: block;
        max-width: 180px;
        height: auto;
        width: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    &__bar-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem 0.85rem;
    }

    &__main {
        position: relative;
        overflow: hidden;

        &::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 0;
            width: min(58vw, 680px);
            height: min(48vw, 440px);
            max-height: 100%;
            background: url("../images/footer-bg.png") no-repeat right bottom / contain;
            pointer-events: none;
        }
    }

    &__main-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 0.8fr) repeat(3, minmax(0, 0.82fr));
        gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
        align-items: center;
        padding-block: clamp(2rem, 5vw, 3.25rem);
        padding-bottom: 0px;
        padding-top: 16px;

        @media (max-width: 1100px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            padding-bottom: 50px;
        }

        @media (max-width: 640px) {
            grid-template-columns: 1fr;
        }
    }

    &__bottom {
        background: $footer-bottom-bg;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    &__bottom-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem 1.5rem;
        padding-block: 1.1rem 1.2rem;
        font-size: 0.875rem;
        color: $footer-muted;
    }

    &__copy {
        margin: 0;
    }

    &__legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem 0.65rem;

        a {
            color: #dce2ee;
            text-decoration: none;
            transition: color 0.2s ease;

            &:hover,
            &:focus-visible {
                color: #fff;
            }
        }
    }

    &__sep {
        color: rgba(255, 255, 255, 0.25);
        user-select: none;
    }
}

.btn--footer-secondary {
    border-radius: 12px;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #fff;
    background: $footer-btn-secondary;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        background 0.2s ease,
        border-color 0.2s ease;

    &:hover,
    &:focus-visible {
        background: #354256;
        border-color: rgba(255, 255, 255, 0.14);
    }
}

.btn--footer-primary {
    border-radius: 12px;
    padding: 17px 30px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #fff;
    background: $footer-phone-icon;
    border: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;

    &:hover,
    &:focus-visible {
        background: #a855ff;
        transform: translateY(-1px);
    }
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;

    &::before {
        content: "";
        flex-shrink: 0;
        width: 3px;
        height: 1.1em;
        border-radius: 2px;
        background: $footer-phone-icon;
    }
}

.footer-card {
    padding: 24px 20px;
    border-radius: 16px;
    background: $footer-card-bg;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-right: 16px;
    @media (max-width: 1100px) {
        margin-right: 0px;
    }

    .footer-heading {
        margin-bottom: 0.85rem;
    }

    &__lead {
        margin: 0 0 1.35rem;
        font-size: 0.875rem;
        line-height: 1.65;
        color: $footer-muted;
    }
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    &__row {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
    }

    &__icon {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 6px;
        font-size: 1rem;
        color: #fff;

        &--phone {
            background: $footer-phone-icon;
        }

        &--wa,
        &--mail {
            background: $footer-wa;
        }
    }

    &__body {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        min-width: 0;
    }

    &__label {
        font-size: 0.75rem;
        font-weight: 500;
        color: $footer-muted;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    &__value {
        font-size: 0.9375rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        word-break: break-word;

        &:hover,
        &:focus-visible {
            text-decoration: underline;
        }
    }
}

.footer-links {
    &__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
    }

    a {
        font-size: 0.9rem;
        color: $footer-muted;
        text-decoration: none;
        transition: color 0.2s ease;

        &:hover,
        &:focus-visible {
            color: #fff;
        }
    }
}

// ——— Utilities ———
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

// ——— Blog page ———
.blog-page {
    position: relative;
}

.blog-banner {
    position: relative;
    z-index: 1;
    isolation: isolate;
    padding-top: calc(#{$header-height} + clamp(1.5rem, 4vw, 2.75rem));
    padding-bottom: clamp(5.75rem, 15vw, 10rem);
    min-height: 400px;

    &__gradient {
        position: absolute;
        inset: 0;
        z-index: -2;
        background: linear-gradient(180deg, $color-purple 0%, $color-purple-deep 100%);
    }

    &__shape {
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image: url("../images/banner-bg-shape.png");
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: 85%;
        opacity: 0.88;
        mix-blend-mode: lighten;
        pointer-events: none;
    }

    &__inner {
        position: relative;
        z-index: 0;
        min-height: clamp(2.5rem, 6vw, 4rem);
    }
}

.blog-feed {
    position: relative;
    z-index: 2;
    margin-top: -280px;
    padding-bottom: 0px;
}

.blog-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2.2vw, 1.65rem);

    @media (max-width: 1280px) {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    @media (max-width: 1024px) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    @media (max-width: 720px) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    @media (max-width: 460px) {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    height: 100%;
    background: #fff;
    border-radius: 1.375rem;

    overflow: visible;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;

    &:hover {
        transform: translateY(-4px);
        border-color: rgba(226, 232, 240, 1);
        box-shadow:
            0 16px 48px rgba(15, 23, 42, 0.07),
            0 4px 12px rgba(15, 23, 42, 0.045);
    }

    &__link {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: clamp(1.15rem, 2.8vw, 1.4rem);
        gap: 1rem;
        color: inherit;
        text-decoration: none;
        border-radius: inherit;

        &:focus-visible {
            outline: 2px solid $color-purple;
            outline-offset: 2px;
        }
    }

    &__media {
        position: relative;
        flex-shrink: 0;
        aspect-ratio: 1 / 1;
        width: 100%;
        overflow: hidden;
        border-radius: 1rem;
        background: linear-gradient(160deg, #e8f0fc 0%, #dce6f2 45%, #cfd9e8 100%);

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    &__body {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0;
        flex: 1;
        min-width: 0;
    }

    &__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem 0.45rem;
    }

    &__tag {
        display: inline-flex;
        align-items: center;
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
        font-weight: 500;
        line-height: 1.25;
        color: #4a5568;
        background: #f0f4f8;
        border-radius: $radius-pill;
        text-transform: lowercase;
        letter-spacing: 0.01em;
    }

    &__title {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.38;
        letter-spacing: -0.02em;
        color: #0f172a;
    }

    &__excerpt {
        margin: 0;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.55;
        color: $color-section-desc;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }
}

// ——— Blog detail page ———
.blog-banner.blog-banner--detail {
    min-height: clamp(12.5rem, 28vw, 19rem);
    padding-bottom: clamp(7.5rem, 18vw, 12rem);

    .blog-banner__shape {
        background-position: bottom;
        background-size: 90%;
    }

    &.blog-banner--with-heading {
        padding-bottom: 0px;
        padding-top: 100px;
        min-height: 310px;
    }
}

.blog-banner__inner--heading {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    min-height: clamp(4.25rem, 11vw, 7rem);
    padding-bottom: 50px;
}

.blog-banner__page-title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
}

.blog-banner__breadcrumbs {
    margin: 0;
    font-size: clamp(0.75rem, 1.35vw, 0.8125rem);
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);

    a {
        color: inherit;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.38);
        transition:
            color 0.2s ease,
            border-color 0.2s ease;

        &:hover,
        &:focus-visible {
            color: #fff;
            border-bottom-color: rgba(255, 255, 255, 0.88);
        }
    }

    span[aria-hidden="true"] {
        opacity: 0.55;
        padding: 0 0.15em;
    }

    > span:last-of-type {
        opacity: 0.95;
        font-weight: 600;
    }
}

.blog-detail {
    position: relative;
    z-index: 2;
    margin-top: -289px;
    padding-bottom: clamp(2rem, 4vw, 3.25rem);
    &.blog-detail--with-heading {
        margin-top: -100px;
    }
    @media (max-width: 992px) {
        margin-top: -100px;
    }

    @media (max-width: 768px) {
        margin-top: -150px;
    }
}

.blog-detail__wrap {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.blog-detail__sheet {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;

    @media (max-width: 900px) {
        padding: 20px;
    }
}

.blog-detail__figure {
    margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 1.25rem;
    overflow: hidden;
    line-height: 0;
    background: linear-gradient(160deg, #e8f0fc 0%, #dce6f2 100%);

    img {
        display: block;
        width: 100%;
        height: auto;
    }
}

.blog-detail__header {
    margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.blog-detail__title {
    margin: 0;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.blog-detail__prose {
    max-width: 70ch;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: $color-section-desc;

    & > p {
        margin: 0 0 clamp(1rem, 2vw, 1.35rem);
    }

    & > p:last-child {
        margin-bottom: 0;
    }

    .blog-detail__h2 {
        margin: clamp(1.6rem, 2.8vw, 2.25rem) 0 clamp(0.8rem, 1.4vw, 1rem);
        font-size: clamp(1.15rem, 2vw, 1.4rem);
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.02em;
        color: #1a1f36;
    }

    a {
        color: $color-purple-deep;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 0.12em;

        &:hover,
        &:focus-visible {
            color: $color-purple;
        }
    }
}

// ——— Auth (giriş / kayıt) ———
.page-auth {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
    color: #0f172a;
}

.auth-split {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    min-height: 100vh;
    min-height: 100dvh;

    @media (max-width: 960px) {
        grid-template-columns: 1fr;

        .auth-panel--visual {
            order: -1;
            min-height: min(42vh, 320px);
            max-height: 360px;
        }
    }
}

.auth-panel--form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.75rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
    @media (max-width: 992px) {
       order: -1;
    }
}

.auth-form-shell {
    width: 100%;
    max-width: 420px;

    &--register {
        max-width: 440px;
    }
}

.auth-brand {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);

    img {
        display: block;
        width: auto;
        height: auto;
        max-height: 44px;
    }
}

.auth-title {
    margin: 0 0 clamp(1.35rem, 2.8vw, 1.85rem);
    font-size: clamp(1.65rem, 3.2vw, 2.125rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: center;
    color: #0f172a;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    margin-bottom: 1.05rem;
}

.auth-field__label {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
}

.auth-field__input {
    width: 100%;
    padding: 0.78rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
    color: #0f172a;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    &::placeholder {
        color: #94a3b8;
        font-weight: 400;
    }

    &:hover {
        border-color: #cbd5e1;
    }

    &:focus {
        outline: none;
        border-color: rgba(155, 61, 255, 0.55);
        box-shadow: 0 0 0 3px rgba(155, 61, 255, 0.14);
    }
}

.auth-extras {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin: 0.05rem 0 1.2rem;
    flex-wrap: wrap;
}

.auth-forgot-link {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    text-decoration: none;
    white-space: nowrap;

    &:hover,
    &:focus-visible {
        text-decoration: underline;
        text-underline-offset: 0.12em;
    }
}

.auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.15rem 0 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: #0f172a;
    cursor: pointer;
    user-select: none;

    &--inline {
        margin: 0;
    }
}

.auth-remember__input {
    width: 1rem;
    height: 1rem;
    margin: 0;
    flex-shrink: 0;
    accent-color: #0f172a;
    border-radius: 3px;
}

.auth-btn-submit {
    width: 100%;
    padding: 0.88rem 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    color: #fff;
    background: $color-purple;
    border: none;
    border-radius: 12px;
    transition:
        background 0.2s ease,
        transform 0.15s ease;

    &:hover,
    &:focus-visible {
        background: #a855ff;
    }

    &:active {
        transform: translateY(1px);
    }

    &:focus-visible {
        outline: 2px solid $color-purple-deep;
        outline-offset: 2px;
    }
}

.auth-footer-line {
    margin: clamp(1.35rem, 2.8vw, 1.75rem) 0 0;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    color: #64748b;
}

.auth-footer-line__link {
    margin-left: 0.2rem;
    font-weight: 700;
    color: $color-purple-deep;
    text-decoration: none;

    &:hover,
    &:focus-visible {
        color: $color-purple;
        text-decoration: underline;
        text-underline-offset: 0.12em;
    }
}

.auth-panel--visual {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: $color-purple-deep;
    padding: 20px 20px 0px 20px;

    @media (max-width: 960px) {
        min-height: unset;
        max-height: unset !important;
    }
}

.auth-visual__bg {
    position: absolute;
    inset: 0;
    background: url("../images/login-bg.png") center / cover no-repeat;
    pointer-events: none;
}

.auth-visual__photo {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: 50%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    pointer-events: none;

    @media (max-width: 960px) {
        max-height: 100%;
        max-width: min(70%, 280px);
        object-position: center center;
    }
}

// ——— Dashboard panel ———
.page-dashboard {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    background: $color-body;
    color: #0f172a;
}

.dash-page {
    position: relative;
}

.site-header.dash-header {
    .dash-header__inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: clamp(1rem, 2.5vw, 2rem);
    }
}

.dash-header__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    justify-self: end;
}

.dash-header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem;
    z-index: 2;
    color: #fff;
    flex-shrink: 0;

    @media (max-width: 1100px) {
        display: flex;
    }
}

.dash-header__menu-bar {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.dash-header__mobile {
    display: none;
    position: fixed;
    inset: 0;
    top: $header-height;
    z-index: 999;
    background: rgba(247, 251, 252, 0.98);
    padding: 1rem clamp(1.25rem, 4vw, 2rem) 2rem;
    border-top: 1px solid rgba(155, 61, 255, 0.12);
    overflow: auto;
    -webkit-overflow-scrolling: touch;

    @media (max-width: 1100px) {
        body.nav-open & {
            display: block;
        }
    }
}

.dash-header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    max-width: 1350px;
    margin-inline: auto;

    .dash-topnav__link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.85rem 0.75rem;
        font-size: 0.9375rem;
        border-radius: 12px;
        color: #334155;
        background: transparent;

        &:hover,
        &:focus-visible {
            color: $color-purple-deep;
            background: rgba(97, 26, 218, 0.06);
        }

        &--active {
            color: $color-purple-deep;
            background: rgba(97, 26, 218, 0.08);
        }
    }

    .dash-topnav__icon:not(.dash-topnav__icon--home) {
        filter: none;
        opacity: 0.9;
    }

    .dash-topnav__icon--home {
        filter: brightness(0) saturate(100%) invert(14%) sepia(86%) saturate(4100%) hue-rotate(258deg) brightness(0.75)
            contrast(102%);
    }
}

.dash-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;

    &__mark {
        color: rgba(255, 255, 255, 0.92);
        font-weight: 800;
    }

    &__text {
        color: #fff;
    }

    &:hover,
    &:focus-visible {
        opacity: 0.92;
    }
}

.dash-topnav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 1.15rem;

    @media (max-width: 1100px) {
        display: none;
    }
}

.dash-topnav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-radius: 10px;
    transition:
        color 0.2s ease,
        background 0.2s ease;

    &:hover,
    &:focus-visible {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }

    &--active {
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
    }
}

.dash-topnav__icon {
    display: block;
    flex-shrink: 0;
    opacity: 0.95;

    &:not(.dash-topnav__icon--home) {
        filter: brightness(0) invert(1);
    }
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.dash-user__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.dash-user__meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.25;
    text-align: left;
}

.dash-user__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
}

.dash-user__balance {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.dash-workspace {
    position: relative;
    z-index: 2;
    margin-top: -280px;
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.dash-workspace__inner {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(1.15rem, 2.5vw, 1.75rem);

    @media (max-width: 1100px) {
        grid-template-columns: 1fr;
    }
}

.dash-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dash-sidebar__hero {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    line-height: 0;
    background: $color-purple-deep;
    box-shadow: 0 14px 40px rgba(97, 26, 218, 0.18);
}

.dash-sidebar__hero-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.dash-sidebar__welcome {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    padding: clamp(1rem, 3vw, 1.35rem) clamp(0.85rem, 2vw, 1.1rem) 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    color: #fff;
    text-transform: lowercase;
    text-shadow:
        0 1px 2px rgba(15, 23, 42, 0.45),
        0 4px 24px rgba(97, 26, 218, 0.35);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 32px;
    padding-right: 32px;
    span {
        display: block;
        font-size: 32px;
        font-weight: 800;
    }
}

.dash-sidebar__cta {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    padding: clamp(1.1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    color: #fff;
    text-shadow:
        0 1px 2px rgba(15, 23, 42, 0.4),
        0 4px 20px rgba(97, 26, 218, 0.35);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;

    span {
        display: block;
        font-size: clamp(1.45rem, 3.2vw, 1.85rem);
        font-weight: 800;
        letter-spacing: -0.02em;
    }
}

.dash-sidebar__cta--rent span {
    font-size: clamp(1.28rem, 2.9vw, 1.7rem);
}

.dash-side-nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 20px;
    background: #fff;
    border-radius: 1.15rem;
}

.dash-side-nav__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 27px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    border-radius: 0.75rem;
    transition:
        background 0.2s ease,
        color 0.2s ease;

    &:hover,
    &:focus-visible {
        color: $color-purple-deep;
        background: rgba(155, 61, 255, 0.06);
    }

    &--active {
        color: #fff;
        background: $color-purple;
        box-shadow: 0 8px 22px rgba(155, 61, 255, 0.35);

        .dash-side-nav__icon:not(.dash-side-nav__icon--home) {
            filter: brightness(0) invert(1);
        }
    }
}

.dash-side-nav__icon {
    display: block;
    flex-shrink: 0;
}

.dash-side-nav__link:not(.dash-side-nav__link--active) .dash-side-nav__icon--home {
    filter: brightness(0) saturate(100%) invert(52%) sepia(12%) saturate(420%) hue-rotate(185deg);
}

.dash-main {
    min-width: 0;
}

.dash-main--rent {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.2vw, 1.35rem);
}

.dash-rent-info {
    padding: clamp(1.1rem, 2.5vw, 1.45rem) clamp(1.1rem, 2.5vw, 1.5rem);
    background: rgba(155, 61, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(97, 26, 218, 0.12);
    backdrop-filter: blur(6px);

    @media (max-width: 900px) {
        background: $color-purple;
    }
}

.dash-rent-info__list {
    margin: 0;
    padding-left: 1.35rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;

    li {
        margin-bottom: 0.55rem;
        padding-left: 0.25rem;

        &:last-child {
            margin-bottom: 0;
        }
    }

    strong {
        font-weight: 800;
        color: #fff;
    }
}

.dash-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) 5.5rem 6.5rem minmax(0, 1fr);
    gap: 0.65rem;
    align-items: stretch;

    @media (max-width: 1100px) {
        grid-template-columns: 1fr 1fr;
    }

    @media (max-width: 560px) {
        grid-template-columns: 1fr;
    }
}

.dash-filter-search-wrap {
    min-width: 0;

    @media (max-width: 1100px) {
        grid-column: 1 / -1;
    }
}

.dash-search--filter {
    max-width: none;
    width: 100%;
}

.dash-dd {
    position: relative;
    min-width: 0;
}

.dash-dd__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    height: 100%;
    min-height: 2.85rem;
    padding: 0.65rem 2.1rem 0.65rem 0.75rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    &:hover,
    &:focus-visible {
        border-color: #cbd5e1;
        outline: none;
    }

    &:focus-visible {
        box-shadow: 0 0 0 3px rgba(155, 61, 255, 0.12);
    }

    &[aria-expanded="true"] {
        border-color: rgba(155, 61, 255, 0.45);

        .dash-dd__chevron {
            transform: translateY(-50%) rotate(225deg);
        }
    }
}

.dash-dd__flag {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    &--emoji {
        font-size: 1.05rem;
        background: #f1f5f9;
    }
}

.dash-dd__label {
    flex: 1;
    min-width: 0;
}

.dash-dd__chevron {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    margin-top: -0.2rem;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.dash-dd__list {
    list-style: none;
    margin: 0.2rem 0 0;
    padding: 0.35rem 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 8;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
    max-height: 240px;
    overflow: auto;
}

.dash-dd__item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.15s ease;

    &:hover,
    &:focus-visible {
        outline: none;
        background: #f8fafc;
    }

    &[aria-selected="true"] {
        background: rgba(155, 61, 255, 0.06);
    }
}

.dash-dd--narrow .dash-dd__btn {
    justify-content: center;
    padding-left: 0.65rem;
    font-variant-numeric: tabular-nums;
}

.dash-dd--narrow .dash-dd__label {
    flex: none;
    text-align: center;
}

.dash-dd--unit .dash-dd__btn {
    justify-content: center;
    padding-left: 0.65rem;
}

.dash-dd--unit .dash-dd__label {
    flex: none;
}

.dash-rent-table-scroll {
    margin: 0 -0.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e8ecf1;
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);

    @media (min-width: 901px) {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    @media (max-width: 900px) {
        margin: 0;
        overflow: visible;
        border: none;
        background: transparent;
        box-shadow: none;
    }
}

.dash-rent-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;

    @media (min-width: 901px) {
        min-width: 640px;
    }
}

.dash-rent-table thead th {
    padding: 0.85rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #475569;
    text-align: left;
    white-space: nowrap;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.dash-rent-table tbody td {
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
}

.dash-rent-table tbody tr:last-child td {
    border-bottom: none;
}

.dash-rent-service {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.dash-rent-service__brand.dash-service__brand {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.55rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.dash-rent-service__name {
    font-weight: 500;
    color: #0f172a;
    line-height: 1.3;
}

.dash-rent-price {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}

.dash-rent-buy {
    padding: 0.5rem 1.1rem;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #287F6E;
    white-space: nowrap;
    background: #EFFEFA;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;

    &:hover,
    &:focus-visible {
        background: #0ab368;
    }

    &:active {
        background: #09a35e;
    }

    &:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(12, 194, 115, 0.35);
    }
}

@media (max-width: 900px) {
    .dash-rent-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .dash-rent-table tbody tr {
        display: block;
        margin-bottom: 0.85rem;
        padding: 0;
        border: 1px solid #e8ecf1;
        border-radius: 0.85rem;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
        background: #fff;
    }

    .dash-rent-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.65rem 1rem;
        text-align: right;
        border-bottom: 1px solid #f1f5f9;
    }

    .dash-rent-table tbody tr td:last-child {
        border-bottom: none;
    }

    .dash-rent-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.72rem;
        color: #64748b;
        text-align: left;
        flex-shrink: 0;
        max-width: 42%;
    }

    .dash-rent-table tbody td .dash-rent-service {
        justify-content: flex-end;
        text-align: right;
        flex-wrap: wrap;
    }
}

.dash-panel {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    padding: 20px 16px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.05);
}

.dash-panel__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    margin-bottom: clamp(1.15rem, 2.2vw, 1.5rem);
}

.dash-panel__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.dash-panel__head--solo {
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.dash-received-table-scroll {
    margin: 0 -0.25rem;
    border-radius: 0.75rem;
    background: #fff;

    @media (min-width: 901px) {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    @media (max-width: 900px) {
        margin: 0;
        overflow: visible;
        border: none;
        background: transparent;
        box-shadow: none;
    }
}

.dash-received-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;

    @media (min-width: 901px) {
        min-width: 880px;
    }
}

.dash-received-table thead th {
    padding: 0.95rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    white-space: nowrap;
    background: $color-purple;
    letter-spacing: 0.02em;
}

.dash-received-table tbody td {
    padding: 1.5rem 0.85rem;
    vertical-align: middle;
    color: #0f172a;
    font-weight: 600;
    border: none;
}

.dash-received-table tbody tr:nth-child(odd) td {
    background: #fff;
}

.dash-received-table tbody tr:nth-child(even) td {
    background: #f8fafc;
}

.dash-received-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    min-width: 0;
}

.dash-received-stack__primary {
    font-weight: 700;
    color: #0f172a;
}

.dash-received-stack__muted {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.dash-received-stack__date {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
}

.dash-received-mono {
    font-variant-numeric: tabular-nums;
}

.dash-received-status {
    font-size: 0.875rem;
    font-weight: 700;
}

.dash-received-status--cancel {
    color: #dc2626;
}

.dash-received-status--ok {
    color: #16a34a;
}

.dash-received-rem--muted {
    font-weight: 600;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .dash-received-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .dash-received-table tbody tr {
        display: block;
        margin-bottom: 0.9rem;
        padding: 0;
        border: 1px solid #e8ecf1;
        border-radius: 0.85rem;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    }

    .dash-received-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.7rem 1rem;
        text-align: right;
        background: #fff !important;
        border-bottom: 1px solid #f1f5f9;
    }

    .dash-received-table tbody tr td:last-child {
        border-bottom: none;
    }

    .dash-received-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.72rem;
        color: #64748b;
        text-align: left;
        flex-shrink: 0;
        max-width: 42%;
        padding-top: 0.12rem;
    }

    .dash-received-table tbody td .dash-received-stack {
        align-items: flex-end;
        text-align: right;
    }
}

.dash-search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    max-width: 320px;
    padding: 0.55rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    &:focus-within {
        border-color: rgba(155, 61, 255, 0.45);
        box-shadow: 0 0 0 3px rgba(155, 61, 255, 0.12);
    }
}

.dash-search__icon {
    font-size: 0.9rem;
    color: #94a3b8;
    flex-shrink: 0;
}

.dash-search__input {
    flex: 1;
    min-width: 0;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
    background: transparent;
    padding-top: 10px;
    padding-bottom: 10px;

    &::placeholder {
        color: #94a3b8;
        font-weight: 400;
    }

    &:focus {
        outline: none;
    }
}

.dash-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.8vw, 1.1rem);

    @media (max-width: 1200px) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    @media (max-width: 900px) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    @media (max-width: 520px) {
        grid-template-columns: 1fr;
    }
}

.dash-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    padding: 16px;
    background: #f8f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 1.125rem;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    &:hover {
        border-color: rgba(155, 61, 255, 0.2);
        box-shadow: 0 10px 28px rgba(97, 26, 218, 0.07);
    }
}

.dash-service__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
    min-width: 0;
}

.dash-service__name {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0f172a;
}

.dash-service__stat {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: $color-section-desc;
}

.dash-service__fav {
    margin-top: 0.35rem;
    padding: 0.4rem 0.8rem;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    color: #9b3dff;
    background: rgba(155, 61, 255, 0.1);
    border: 1px solid #9b3dff;
    border-radius: 0.625rem;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    &:hover,
    &:focus-visible {
        color: #fff;
        background: #9b3dff;
        border-color: #9b3dff;
        box-shadow: 0 6px 18px rgba(155, 61, 255, 0.35);
    }
}

.dash-service__brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 1.2rem;
    color: #fff;

    &--fb {
        background: #1877f2;
    }

    &--twitch {
        background: #9146ff;
    }

    &--twitter {
        background: #1d9bf0;
    }

    &--ig {
        background: #e4405f;
        font-size: 1.28rem;
    }

    &--wa {
        background: #25d366;
    }

    &--yt {
        background: #ff0000;
    }

    &--tiktok {
        background: #000000;
    }

    &--discord {
        background: #5865f2;
    }

    &--telegram {
        background: #26a5e4;
    }

    &--linkedin {
        background: #0a66c2;
    }

    &--snap {
        background: #fffc00;
        color: #000;
    }

    &--reddit {
        background: #ff4500;
    }

    &--spotify {
        background: #1db954;
    }

    &--netflix {
        background: #e50914;
    }

    &--amazon {
        background: #ff9900;
        color: #111;
    }

    &--paypal {
        background: #003087;
    }

    &--google {
        background: #4285f4;
    }

    &--apple {
        background: #000000;
    }

    &--microsoft {
        background: #00a4ef;
    }

    &--steam {
        background: #171a21;
    }

    &--xbox {
        background: #107c10;
    }

    &--uber {
        background: #000000;
    }

    &--airbnb {
        background: #ff5a5f;
    }

    &--pinterest {
        background: #e60023;
    }

    &--github {
        background: #181717;
    }

    &--slack {
        background: #4a154b;
    }

    &--vimeo {
        background: #1ab7ea;
    }

    &--dropbox {
        background: #0061ff;
    }

    &--shopify {
        background: #96bf48;
    }

    &--line {
        background: #00b900;
    }

    &--viber {
        background: #665cac;
    }

    &--skype {
        background: #00aff0;
    }
}

// ——— Dashboard: servis satın alma modal ———
body.dash-modal-open {
    overflow: hidden;
}

.dash-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 1.5rem);

    &[hidden] {
        display: none !important;
    }
}

.dash-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(2px);
}

.dash-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    max-height: min(92vh, 640px);
    overflow: auto;
    margin: auto;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 1.125rem;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 24px 48px rgba(15, 23, 42, 0.12);
}

.dash-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem 1rem;
    border-bottom: 1px solid #e8ecf1;
}

.dash-modal__title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #0f172a;
}

.dash-modal__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    color: #94a3b8;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;

    &:hover,
    &:focus-visible {
        color: #64748b;
        border-color: #cbd5e1;
        background: #f8fafc;
    }

    .fa-xmark {
        font-size: 0.95rem;
    }
}

.dash-modal__body {
    padding: 1.25rem 1.35rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.dash-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dash-modal__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: $color-section-desc;
    letter-spacing: 0.01em;
}

.dash-modal__country {
    position: relative;
}

.dash-modal__country-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.72rem 2.35rem 0.72rem 0.85rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    &:hover,
    &:focus-visible {
        border-color: #cbd5e1;
        outline: none;
    }

    &:focus-visible {
        box-shadow: 0 0 0 3px rgba(155, 61, 255, 0.15);
    }

    &[aria-expanded="true"] {
        border-color: #cbd5e1;

        .dash-modal__country-chevron {
            transform: translateY(-50%) rotate(225deg);
        }
    }
}

.dash-modal__country-flag {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    &--emoji {
        font-size: 1.05rem;
        background: #f1f5f9;
    }
}

.dash-modal__country-text {
    flex: 1;
    min-width: 0;
}

.dash-modal__country-chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    margin-top: -0.2rem;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.dash-modal__country-list {
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0.35rem 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 6;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
    max-height: 240px;
    overflow: auto;
}

.dash-modal__country-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.15s ease;

    &:hover,
    &:focus-visible {
        outline: none;
        background: #f8fafc;
    }

    &[aria-selected="true"] {
        background: rgba(155, 61, 255, 0.06);
    }
}

.dash-modal__input {
    width: 100%;
    padding: 0.72rem 0.85rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    transition: border-color 0.2s ease;

    &--readonly {
        background: #f1f5f9;
        color: #0f172a;
        cursor: default;
    }

    &:focus-visible {
        outline: none;
        border-color: #cbd5e1;
    }
}

.dash-modal__notice {
    padding: 0.9rem 1rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.75rem;
}

.dash-modal__notice-text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.55;
    color: #334155;
}

.dash-modal__notice-lead {
    display: inline;
    margin: 0;
    font-weight: 800;
    color: #dc2626;
}

.dash-modal__notice-link {
    font-weight: 700;
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 2px;

    &:hover,
    &:focus-visible {
        color: $color-purple-deep;
    }
}

.dash-modal__submit {
    width: 100%;
    margin-top: 0.15rem;
    padding: 0.9rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 0.875rem;
    cursor: pointer;
    background: #0cc273;
    box-shadow: none;
    transition: background-color 0.2s ease;

    &:hover,
    &:focus-visible {
        background: #0ab368;
    }

    &:active {
        background: #09a35e;
    }

    &:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(12, 194, 115, 0.35);
    }
}

// ——— Kiralanan Numaralar ———
.dash-sidebar__cta--leased span {
    font-size: clamp(1.22rem, 2.7vw, 1.65rem);
}

.dash-rent-info__list--compact li {
    margin-bottom: 0.42rem;

    &:last-child {
        margin-bottom: 0;
    }
}

.dash-leased-table-scroll {
    margin: 0 -0.25rem;
    border-radius: 0.75rem;
    background: #fff;

    @media (min-width: 901px) {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    @media (max-width: 900px) {
        margin: 0;
        overflow: visible;
        border: none;
        background: transparent;
        box-shadow: none;
    }
}

.dash-leased-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;

    @media (min-width: 901px) {
        min-width: 920px;
    }
}

.dash-leased-table thead th {
    padding: 0.85rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #64748b;
    text-align: left;
    white-space: nowrap;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.dash-leased-table tbody td {
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
}

.dash-leased-table tbody tr:last-child td {
    border-bottom: none;
}

.dash-leased-country {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.dash-leased-country__flag {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.dash-leased-country__flag--emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.05rem;
    line-height: 1;
    background: #f1f5f9;
    border-radius: 50%;
}

.dash-leased-country__text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
}

.dash-leased-service.dash-service__brand {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    font-size: 1rem;
}

.dash-leased-mono {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}

.dash-leased-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
}

.dash-leased-pill--aktif {
    color: #0cc273;
    background: rgba(12, 194, 115, 0.14);
}

.dash-leased-pill--pasif {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.12);
}

.dash-leased-sms {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
}

.dash-leased-sms--muted {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: normal;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .dash-leased-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .dash-leased-table tbody tr {
        display: block;
        margin-bottom: 0.85rem;
        padding: 0;
        border: 1px solid #e8ecf1;
        border-radius: 0.85rem;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
        background: #fff;
    }

    .dash-leased-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.65rem 1rem;
        text-align: right;
        border-bottom: 1px solid #f1f5f9;
    }

    .dash-leased-table tbody tr td:last-child {
        border-bottom: none;
    }

    .dash-leased-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.72rem;
        color: #64748b;
        text-align: left;
        flex-shrink: 0;
        max-width: 38%;
        padding-top: 0.1rem;
    }

    .dash-leased-table tbody td .dash-leased-country {
        justify-content: flex-end;
        flex-wrap: wrap;
        text-align: right;
    }
}

.dash-sidebar__cta--support {
    align-items: flex-start;
    text-align: left;
    padding-left: clamp(1.15rem, 3.5vw, 1.85rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
}

.dash-support-notice__title {
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.45;
    color: #fff;
    text-transform: uppercase;
}

.dash-support-notice__list {
    margin: 0;
    padding-left: 1.25rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    list-style: decimal;

    li {
        margin-bottom: 0.55rem;
        padding-left: 0.35rem;
        list-style: decimal;
        display: list-item;

        &:last-child {
            margin-bottom: 0;
        }
    }

    strong {
        font-weight: 800;
        color: #fff;
    }
}

.dash-support-form {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.dash-support-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

.dash-support-submit {
    width: 100%;
    margin-top: 0.2rem;
    padding: 0.9rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    background: $color-purple;
    box-shadow: 0 8px 22px rgba(155, 61, 255, 0.35);
    transition:
        filter 0.2s ease,
        background 0.2s ease;

    &:hover,
    &:focus-visible {
        filter: brightness(1.06);
    }

    &:focus-visible {
        outline: none;
    }

    &:active {
        filter: brightness(0.98);
    }
}

.dash-support-table.dash-received-table {
    @media (min-width: 901px) {
        min-width: 640px;
    }
}

.dash-support-table thead th:last-child,
.dash-support-table tbody td:last-child {
    text-align: right;
}

.dash-support-durum {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.dash-support-view {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;

    &:hover,
    &:focus-visible {
        color: $color-purple-deep;
    }
}

.dash-support-badge {
    display: inline-block;
    padding: 16px 30px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: #111;
    border-radius: 0.35rem;
}

@media (max-width: 900px) {
    .dash-support-table tbody td .dash-support-durum {
        align-items: flex-end;
        text-align: right;
        width: 100%;
    }
}

.dash-sidebar__cta--payment {
    align-items: flex-start;
    text-align: left;
    padding-left: clamp(1.15rem, 3.5vw, 1.85rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
}

.dash-sidebar__cta--sss {
    align-items: flex-start;
    text-align: left;
    padding-left: clamp(1.15rem, 3.5vw, 1.85rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
}

.dash-faq-page {
    min-width: 0;
}

.dash-faq-page__accordions {
    width: 100%;
}

.dash-panel__head--ruled {
    padding-bottom: 0.95rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid #e8ecf1;
}

.dash-dd--pay .dash-dd__flag {
    width: auto;
    min-width: 2.75rem;
    height: 2.15rem;
    padding: 0 0.2rem;
    border-radius: 0.45rem;
    background: #fff;
}

.dash-dd--pay .dash-dd__flag img,
.dash-dd--pay .dash-dd__pay-img {
    display: block;
    width: auto;
    height: auto;
    max-height: 1.65rem;
    max-width: 4.5rem;
    object-fit: contain;
}

.dash-dd--pay .dash-dd__pay-img--cards {
    max-height: 1.65rem;
    max-width: 5.5rem;
}

.dash-dd--pay .dash-dd__pay-img--havale {
    max-height: 1.55rem;
    max-width: 2.75rem;
}

.dash-dd--pay-bank .dash-dd__flag {
    width: 2.35rem;
    height: 2.35rem;
    min-width: 2.35rem;
    padding: 0.2rem;
    border-radius: 0.5rem;
}

.dash-dd--pay-bank .dash-dd__flag img,
.dash-dd--pay-bank .dash-dd__pay-img--bank {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dash-pay-dynamic--havale {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.2vw, 1.35rem);
}

.dash-pay-dynamic[hidden] {
    display: none !important;
}

.dash-pay-banks {
    display: flex;
    flex-direction: column;
}

.dash-pay-bank-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;

    &:not(:last-child) {
        border-bottom: 1px solid #f1f5f9;
    }

    @media (max-width: 640px) {
        flex-wrap: wrap;

        .dash-pay-copy {
            width: 100%;
            justify-content: center;
        }
    }
}

.dash-pay-bank-row__logo {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.dash-pay-bank-row__info {
    flex: 1;
    min-width: 0;
}

.dash-pay-bank-row__name {
    display: block;
    margin: 0 0 0.25rem;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
}

.dash-pay-bank-row__iban {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.45;
    color: #64748b;
    word-break: break-word;
}

.dash-pay-bank-row__holder {
    font-weight: 600;
    color: #475569;
}

.dash-pay-copy {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.55rem;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;

    &:hover,
    &:focus-visible {
        color: $color-purple-deep;
        border-color: rgba(155, 61, 255, 0.35);
        background: rgba(155, 61, 255, 0.06);
    }

    &:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(155, 61, 255, 0.15);
    }
}

.dash-pay-submit-weepay {
    margin-top: 0.35rem;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.95rem 1rem;
    border-radius: 0.875rem;
}

.dash-pay-submit-notify {
    margin-top: 0.35rem;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.95rem 1rem;
    border-radius: 0.875rem;
}

.dash-pay-toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 120;
    padding: 0.65rem 1.15rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: #0f172a;
    border-radius: 0.65rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
    pointer-events: none;
}

.dash-ticket-meta {
    padding: clamp(1.05rem, 2.4vw, 1.4rem) clamp(1.1rem, 2.5vw, 1.5rem);
    background: rgba(155, 61, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 1.15rem;
    box-shadow: 0 12px 40px rgba(97, 26, 218, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    @media (max-width: 900px) {
       background: $color-purple;
    }
}

.dash-ticket-meta__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: clamp(0.85rem, 2vw, 1.05rem);
}

.dash-ticket-meta__title {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.25);
}

.dash-ticket-meta__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    transition:
        background 0.2s ease,
        border-color 0.2s ease;

    &:hover,
    &:focus-visible {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.6);
    }

    &:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }
}

.dash-ticket-meta__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
    }
}

.dash-ticket-meta__cell {
    margin: 0;
    padding: 0.65rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.65rem;

    strong {
        font-weight: 800;
        color: #fff;
    }
}

.dash-panel--support-chat {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.dash-support-chat {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    max-height: min(58vh, 520px);
    margin-bottom: 1rem;
    padding: 0.15rem 0.15rem 0.35rem 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dash-support-msg--staff {
    display: flex;
    align-items: flex-end;
    gap: 0.65rem;
    max-width: 100%;
}

.dash-support-msg__avatar {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: $color-purple;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;

    span {
        transform: translateY(1px);
    }
}

.dash-support-msg__wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
    min-width: 0;
    max-width: min(100%, 560px);
}

.dash-support-msg--user {
    display: flex;
    justify-content: flex-end;
}

.dash-support-msg--user .dash-support-msg__wrap {
    align-items: flex-end;
    max-width: min(100%, 480px);
}

.dash-support-msg__author {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
}

.dash-support-msg__author--user {
    color: #0f172a;
}

.dash-support-msg__bubble {
    padding: 0.75rem 0.95rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.55;
    color: #0f172a;
    background: #f1f5f9;
    border-radius: 1rem 1rem 1rem 0.35rem;
}

.dash-support-msg__bubble--user {
    color: #fff;
    background: $color-purple;
    border-radius: 1rem 1rem 0.35rem 1rem;
}

.dash-support-reply {
    position: relative;
    margin-top: 0.15rem;
    padding: 0.85rem 0.85rem 3.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
}

.dash-support-reply__input {
    display: block;
    width: 100%;
    min-height: 6.5rem;
    padding: 0;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: #0f172a;
    resize: vertical;
    border: none;
    background: transparent;

    &::placeholder {
        color: #94a3b8;
        font-weight: 500;
    }

    &:focus-visible {
        outline: none;
    }
}

.dash-support-reply__send {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.55rem 1.15rem;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: $color-purple;
    transition:
        filter 0.2s ease,
        background 0.2s ease;

    &:hover,
    &:focus-visible {
        filter: brightness(1.06);
    }

    &:focus-visible {
        outline: none;
    }
}

// --- Anasayfa (index): giriş + kaydırarak ortaya çıkma ---
@media (prefers-reduced-motion: no-preference) {
    body.is-home {
        .site-header__inner,
        .dash-header__inner {
            animation: mo-home-header-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
        }

        .hero__content {
            animation: mo-home-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
        }

        .hero__visual {
            animation: mo-home-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
        }

        .reveal-section {
            opacity: 0;
            transform: translate3d(0, 40px, 0);
            transition:
                opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal-section.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    html.is-home-page {
        scroll-behavior: auto;
    }

    body.is-home .reveal-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@keyframes mo-home-header-in {
    from {
        opacity: 0;
        transform: translate3d(0, -16px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes mo-home-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 36px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
