/* =========================================================
   LANDING — GENEL
========================================================= */

:root {
    --landing-primary: #1768e5;
    --landing-primary-dark: #2859da;
    --landing-heading: #14213a;
    --landing-text: #687386;
    --landing-border: rgba(20, 33, 58, 0.09);
}

.landing-page {
    overflow: hidden;
    background-color: #ffffff;
}

.landing-page,
.landing-page * {
    box-sizing: border-box;
}

.pagecontent.landing-page__content {
    margin: 0;
    padding: 0;
}

.landing-container {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1240px);
    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   HERO + FORM
========================================================= */

.landing-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 820px;
    padding: 220px 0 90px;
    overflow: hidden;
    background-color: #0c172a;
}

.landing-hero__background,
.landing-hero__overlay {
    position: absolute;
    inset: 0;
}

.landing-hero__background {
    z-index: 0;
}

.landing-hero__background-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 38, 0.94) 0%,
            rgba(7, 18, 38, 0.83) 46%,
            rgba(7, 18, 38, 0.50) 100%
        );
}

.landing-hero__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(430px, 0.95fr);
    gap: 64px;
    align-items: center;
}

.landing-hero__content {
    max-width: 650px;
    color: #ffffff;
}

.landing-hero__title {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.landing-hero__spot {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
}

.landing-hero__spot > *:first-child {
    margin-top: 0;
}

.landing-hero__spot > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FORM KARTI
========================================================= */

.landing-form-card {
    width: 100%;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.landing-form-card__title {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #15223a;
}

.landing-form-card__spot {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #687386;
}

.landing-form-card__spot > *:first-child {
    margin-top: 0;
}

.landing-form-card__spot > *:last-child {
    margin-bottom: 0;
}

.landing-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
}

.landing-form__field {
    min-width: 0;
}

.landing-form__field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #344158;
}

.landing-form__field input,
.landing-form__field select {
    display: block;
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border: 1px solid #d9dee8;
    border-radius: 11px;
    outline: none;
    background-color: #ffffff;
    font: inherit;
    font-size: 14px;
    color: #172033;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.landing-form__field select {
    cursor: pointer;
}

.landing-form__field input::placeholder {
    color: #9aa3b2;
}

.landing-form__field input:hover,
.landing-form__field select:hover {
    border-color: #b7c0ce;
}

.landing-form__field input:focus,
.landing-form__field select:focus {
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 4px rgba(23, 104, 229, 0.12);
}

.landing-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    padding: 13px 24px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        var(--landing-primary),
        var(--landing-primary-dark)
    );
    box-shadow: 0 12px 25px rgba(23, 104, 229, 0.25);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.landing-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(23, 104, 229, 0.32);
}

.landing-form__submit:active {
    transform: translateY(0);
}


/* =========================================================
   ÜRÜN / HİZMET TANITIM
========================================================= */

.landing-product {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(29, 103, 218, 0.08),
            transparent 28%
        ),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.landing-product__header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.landing-product__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--landing-heading);
}

.landing-product__spot {
    font-size: 18px;
    line-height: 1.75;
    color: var(--landing-text);
}

.landing-product__spot > *:first-child {
    margin-top: 0;
}

.landing-product__spot > *:last-child {
    margin-bottom: 0;
}

.landing-product__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}


/* =========================================================
   ÜRÜN GALERİ
========================================================= */

.landing-product-gallery {
    min-width: 0;
}

.landing-product-gallery__main {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--landing-border);
    border-radius: 28px;
    background-color: #ffffff;
    box-shadow: 0 24px 65px rgba(23, 43, 77, 0.14);
}

.landing-product-gallery__main-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.83;
    border-radius: 20px;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.landing-product-gallery__caption {
    position: absolute;
    right: 34px;
    bottom: 32px;
    left: 34px;
    padding: 13px 17px;
    border-radius: 12px;
    background-color: rgba(8, 24, 50, 0.84);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.landing-product-gallery__caption[hidden] {
    display: none;
}

.landing-product-gallery__thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.landing-product-gallery__thumbnail {
    display: block;
    width: 100%;
    padding: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 14px;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 8px 22px rgba(23, 43, 77, 0.08);
    cursor: pointer;
    opacity: 0.62;
    transition:
        border-color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.landing-product-gallery__thumbnail:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.landing-product-gallery__thumbnail:focus-visible {
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 4px rgba(23, 104, 229, 0.14);
}

.landing-product-gallery__thumbnail.is-active {
    border-color: var(--landing-primary);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(23, 104, 229, 0.20);
}

.landing-product-gallery__thumbnail img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 9px;
    object-fit: cover;
}


/* =========================================================
   ÜRÜN İÇERİK VE ÖZELLİKLER
========================================================= */

.landing-product-content {
    min-width: 0;
}

.landing-product-content__title {
    margin: 0 0 18px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--landing-heading);
}

.landing-product-content__spot {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--landing-text);
}

.landing-product-content__spot > *:first-child {
    margin-top: 0;
}

.landing-product-content__spot > *:last-child {
    margin-bottom: 0;
}

.landing-product-features {
    display: grid;
    gap: 14px;
}

.landing-product-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 66px;
    padding: 14px 17px;
    border: 1px solid var(--landing-border);
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(23, 43, 77, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.landing-product-feature:hover {
    transform: translateX(4px);
    border-color: rgba(23, 104, 229, 0.24);
    box-shadow: 0 13px 30px rgba(23, 43, 77, 0.11);
}

.landing-product-feature__icon {
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--landing-primary),
        var(--landing-primary-dark)
    );
    box-shadow: 0 8px 17px rgba(23, 104, 229, 0.24);
    font-size: 17px;
    color: #ffffff;
}

.landing-product-feature__icon i {
    display: block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}

.landing-product-feature__text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #344158;
}

.landing-product-cta {
    margin-top: 30px;
}

.landing-product-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 30px;
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        var(--landing-primary),
        var(--landing-primary-dark)
    );
    box-shadow: 0 13px 26px rgba(23, 104, 229, 0.24);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.landing-product-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(23, 104, 229, 0.32);
    color: #ffffff;
    text-decoration: none;
}


/* =========================================================
   ÖNE ÇIKANLAR
========================================================= */

.landing-highlights {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #101f42 0%,
            #183a82 52%,
            #432581 100%
        );
}

.landing-highlights__decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.landing-highlights__glow {
    position: absolute;
    display: block;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.28;
}

.landing-highlights__glow--one {
    top: -160px;
    left: -100px;
    background-color: #1688ff;
}

.landing-highlights__glow--two {
    right: -130px;
    bottom: -180px;
    background-color: #d33dff;
}

.landing-highlights__header {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 58px;
    text-align: center;
}

.landing-highlights__intro {
    display: inline-block;
    max-width: 760px;
    margin-bottom: 17px;
    padding: 9px 18px;
    border: 1px solid rgba(125, 190, 255, 0.26);
    border-radius: 999px;
    background-color: rgba(65, 145, 255, 0.12);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #a9d4ff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.landing-highlights__title {
    margin: 0 0 18px;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.landing-highlights__spot {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(225, 234, 250, 0.78);
}

.landing-highlights__spot > *:first-child {
    margin-top: 0;
}

.landing-highlights__spot > *:last-child {
    margin-bottom: 0;
}

.landing-highlights__grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.landing-highlight-card {
    position: relative;
    flex: 1 1 300px;
    max-width: calc((100% - 48px) / 3);
    min-height: 330px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.07)
        );
    box-shadow: 0 22px 55px rgba(3, 11, 31, 0.20);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.landing-highlight-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, 0.32);
    background-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 70px rgba(3, 11, 31, 0.32);
}

.landing-highlight-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    border-radius: 17px;
    background: linear-gradient(135deg, #1ea7ff, #4467f2);
    box-shadow: 0 13px 28px rgba(24, 132, 255, 0.28);
    font-size: 28px;
    color: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.landing-highlight-card:nth-child(3n + 1)
.landing-highlight-card__icon {
    background: linear-gradient(135deg, #ffb000, #ff6a00);
    box-shadow: 0 13px 28px rgba(255, 132, 0, 0.28);
}

.landing-highlight-card:nth-child(3n + 2)
.landing-highlight-card__icon {
    background: linear-gradient(135deg, #22b8ff, #04b6d7);
    box-shadow: 0 13px 28px rgba(4, 182, 215, 0.28);
}

.landing-highlight-card:nth-child(3n)
.landing-highlight-card__icon {
    background: linear-gradient(135deg, #b35cff, #ef3ca6);
    box-shadow: 0 13px 28px rgba(211, 61, 204, 0.28);
}

.landing-highlight-card:hover
.landing-highlight-card__icon {
    transform: scale(1.08) rotate(-3deg);
}

.landing-highlight-card__icon i {
    display: block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}

.landing-highlight-card__title {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
}

.landing-highlight-card__spot {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(225, 234, 250, 0.78);
}

.landing-highlight-card__spot > *:first-child {
    margin-top: 0;
}

.landing-highlight-card__spot > *:last-child {
    margin-bottom: 0;
}

.landing-highlight-card__line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #1e9fff,
        #9b57ff,
        #ed45ad
    );
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

.landing-highlight-card:hover
.landing-highlight-card__line {
    transform: scaleX(1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .landing-hero {
        min-height: auto;
        padding: 190px 0 75px;
    }

    .landing-hero__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.9fr);
        gap: 42px;
    }

    .landing-form-card {
        padding: 30px;
    }

    .landing-product {
        padding: 90px 0;
    }

    .landing-product__grid {
        gap: 45px;
    }

    .landing-highlights {
        padding: 90px 0;
    }

    .landing-highlight-card {
        padding: 28px;
    }
}


/* =========================================================
   TABLET / DAR EKRAN
========================================================= */

@media (max-width: 900px) {

    .landing-hero {
        padding: 155px 0 65px;
    }

    .landing-hero__overlay {
        background: rgba(7, 18, 38, 0.84);
    }

    .landing-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .landing-hero__content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .landing-hero__spot {
        margin-right: auto;
        margin-left: auto;
    }

    .landing-form-card {
        max-width: 680px;
        margin: 0 auto;
    }

    .landing-product {
        padding: 80px 0;
    }

    .landing-product__header {
        margin-bottom: 45px;
    }

    .landing-product__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .landing-product-gallery,
    .landing-product-content {
        width: 100%;
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .landing-highlights {
        padding: 80px 0;
    }

    .landing-highlights__header {
        margin-bottom: 44px;
    }

    .landing-highlight-card {
        flex-basis: calc(50% - 12px);
        max-width: calc(50% - 12px);
        min-height: 310px;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 600px) {

    .landing-container {
        width: min(100% - 28px, 1240px);
    }

    .landing-hero {
        padding: 125px 0 48px;
    }

    .landing-hero__title {
        margin-bottom: 18px;
        font-size: 36px;
    }

    .landing-hero__spot {
        font-size: 16px;
        line-height: 1.65;
    }

    .landing-form-card {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .landing-form-card__title {
        font-size: 24px;
    }

    .landing-form__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .landing-form__field input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
    .landing-form__field select {
        height: 50px;
    }

    .landing-product {
        padding: 65px 0;
    }

    .landing-product__header {
        margin-bottom: 34px;
    }

    .landing-product__title {
        font-size: 32px;
    }

    .landing-product__spot {
        font-size: 16px;
    }

    .landing-product__grid {
        gap: 38px;
    }

    .landing-product-gallery__main {
        padding: 10px;
        border-radius: 20px;
    }

    .landing-product-gallery__main-image {
        border-radius: 14px;
    }

    .landing-product-gallery__caption {
        right: 20px;
        bottom: 20px;
        left: 20px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .landing-product-gallery__thumbnails {
        gap: 7px;
        margin-top: 12px;
    }

    .landing-product-gallery__thumbnail {
        padding: 2px;
        border-radius: 10px;
    }

    .landing-product-gallery__thumbnail img {
        border-radius: 6px;
    }

    .landing-product-content__title {
        font-size: 28px;
    }

    .landing-product-feature {
        align-items: flex-start;
        min-height: auto;
    }

    .landing-product-cta__button {
        width: 100%;
    }

    .landing-highlights {
        padding: 65px 0;
    }

    .landing-highlights__header {
        margin-bottom: 34px;
    }

    .landing-highlights__intro {
        display: block;
        width: fit-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: 13px;
    }

    .landing-highlights__title {
        font-size: 32px;
    }

    .landing-highlights__spot {
        font-size: 16px;
        line-height: 1.7;
    }

    .landing-highlights__grid {
        gap: 16px;
    }

    .landing-highlight-card {
        flex-basis: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 25px;
    }

    .landing-highlight-card__icon {
        width: 54px;
        height: 54px;
        margin-bottom: 20px;
        font-size: 25px;
    }

    .landing-highlight-card__title {
        font-size: 21px;
    }
}


/* =========================================================
   HAREKET AZALTMA TERCİHİ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .landing-page *,
    .landing-page *::before,
    .landing-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   MARKALAR VE SAYAÇLAR
========================================================= */

.landing-brands {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(23, 104, 229, 0.07),
            transparent 32%
        ),
        #ffffff;
}


/* =========================================================
   MARKALAR — BAŞLIK
========================================================= */

.landing-brands__header {
    max-width: 850px;
    margin: 0 auto 58px;
    text-align: center;
}

.landing-brands__intro {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 8px 17px;
    border: 1px solid rgba(23, 104, 229, 0.12);
    border-radius: 999px;
    background-color: rgba(23, 104, 229, 0.08);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--landing-primary);
}

.landing-brands__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--landing-heading);
}

.landing-brands__spot {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
    line-height: 1.75;
    color: var(--landing-text);
}

.landing-brands__spot > *:first-child {
    margin-top: 0;
}

.landing-brands__spot > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MARKA KAYAN BANT
========================================================= */

.landing-brands-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0 25px;
}

.landing-brands-slider__track {
    display: flex;
    width: max-content;
    animation: landingBrandScroll 38s linear infinite;
    will-change: transform;
}

.landing-brands-slider__group {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 22px;
    padding-right: 22px;
}

.landing-brands-slider:hover
.landing-brands-slider__track {
    animation-play-state: paused;
}

.landing-brands-slider__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 130px;
    pointer-events: none;
}

.landing-brands-slider__fade--left {
    left: 0;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.92) 30%,
        rgba(255, 255, 255, 0) 100%
    );
}

.landing-brands-slider__fade--right {
    right: 0;
    background: linear-gradient(
        270deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.92) 30%,
        rgba(255, 255, 255, 0) 100%
    );
}

@keyframes landingBrandScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}


/* =========================================================
   MARKA KARTI
========================================================= */

.landing-brand-card {
    display: flex;
    flex: 0 0 230px;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 138px;
    padding: 24px;
    border: 1px solid rgba(20, 33, 58, 0.08);
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 12px 32px rgba(23, 43, 77, 0.09);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.landing-brand-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 104, 229, 0.20);
    box-shadow: 0 19px 42px rgba(23, 43, 77, 0.15);
}

.landing-brand-card__image {
    display: block;
    width: 100%;
    max-width: 170px;
    height: 82px;
    object-fit: contain;
    filter: grayscale(20%);
    transition:
        filter 0.25s ease,
        transform 0.25s ease;
}

.landing-brand-card:hover
.landing-brand-card__image {
    filter: grayscale(0%);
    transform: scale(1.04);
}


/* =========================================================
   SAYAÇLAR
========================================================= */

.landing-counters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 62px;
}

.landing-counter-card {
    position: relative;
    min-width: 0;
    padding: 27px 20px;
    overflow: hidden;
    border: 1px solid rgba(23, 104, 229, 0.08);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(232, 241, 255, 0.82),
            rgba(245, 239, 255, 0.86)
        );
    text-align: center;
    box-shadow: 0 12px 30px rgba(23, 43, 77, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.landing-counter-card::before {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: rgba(89, 76, 255, 0.08);
    content: "";
}

.landing-counter-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 104, 229, 0.18);
    box-shadow: 0 19px 42px rgba(23, 43, 77, 0.12);
}

.landing-counter-card__value {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    min-height: 48px;
    margin-bottom: 8px;
    font-size: clamp(30px, 3.2vw, 43px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--landing-primary);
}

.landing-counter-card__number {
    display: inline-block;
    min-width: 1ch;
    font-variant-numeric: tabular-nums;
}

.landing-counter-card__prefix,
.landing-counter-card__suffix {
    font-size: 0.72em;
    font-weight: 700;
    line-height: 1;
}

.landing-counter-card__title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #596579;
}


/* =========================================================
   MARKALAR — TABLET
========================================================= */

@media (max-width: 1100px) {

    .landing-brands {
        padding: 90px 0;
    }

    .landing-brands-slider__fade {
        width: 90px;
    }

    .landing-brand-card {
        flex-basis: 210px;
        width: 210px;
        height: 130px;
    }

    .landing-counters {
        gap: 16px;
    }
}


/* =========================================================
   MARKALAR — DAR TABLET
========================================================= */

@media (max-width: 900px) {

    .landing-brands {
        padding: 80px 0;
    }

    .landing-brands__header {
        margin-bottom: 44px;
    }

    .landing-brands-slider__track {
        animation-duration: 32s;
    }

    .landing-brands-slider__fade {
        width: 65px;
    }

    .landing-brand-card {
        flex-basis: 190px;
        width: 190px;
        height: 120px;
        padding: 20px;
    }

    .landing-brand-card__image {
        max-width: 145px;
        height: 72px;
    }

    .landing-counters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 48px;
    }
}


/* =========================================================
   MARKALAR — MOBİL
========================================================= */

@media (max-width: 600px) {

    .landing-brands {
        padding: 65px 0;
    }

    .landing-brands__header {
        margin-bottom: 34px;
    }

    .landing-brands__intro {
        font-size: 13px;
    }

    .landing-brands__title {
        font-size: 32px;
    }

    .landing-brands__spot {
        font-size: 16px;
        line-height: 1.7;
    }

    .landing-brands-slider {
        padding-bottom: 15px;
    }

    .landing-brands-slider__track {
        animation-duration: 27s;
    }

    .landing-brands-slider__group {
        gap: 13px;
        padding-right: 13px;
    }

    .landing-brands-slider__fade {
        width: 28px;
    }

    .landing-brand-card {
        flex-basis: 160px;
        width: 160px;
        height: 105px;
        padding: 16px;
        border-radius: 14px;
    }

    .landing-brand-card__image {
        max-width: 125px;
        height: 62px;
    }

    .landing-counters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 38px;
    }

    .landing-counter-card {
        padding: 22px 12px;
        border-radius: 15px;
    }

    .landing-counter-card__value {
        min-height: 38px;
        font-size: 30px;
    }

    .landing-counter-card__title {
        font-size: 13px;
    }
}


/* =========================================================
   MARKALAR — ÇOK DAR EKRAN
========================================================= */

@media (max-width: 380px) {

    .landing-counters {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   VİDEO MODÜLÜ
========================================================= */

.landing-video {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(115, 75, 255, 0.10),
            transparent 27%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(23, 104, 229, 0.09),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f8faff 0%,
            #eef4ff 100%
        );
}

.landing-video__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);
    gap: 70px;
    align-items: center;
}


/* =========================================================
   VİDEO — SOL İÇERİK
========================================================= */

.landing-video__content {
    min-width: 0;
}

.landing-video__intro {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 17px;
    padding: 8px 17px;
    border: 1px solid rgba(23, 104, 229, 0.12);
    border-radius: 999px;
    background-color: rgba(23, 104, 229, 0.08);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--landing-primary);
}

.landing-video__title {
    margin: 0 0 22px;
    font-size: clamp(35px, 4vw, 53px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.025em;
    color: var(--landing-heading);
}

.landing-video__spot {
    max-width: 610px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--landing-text);
}

.landing-video__spot > *:first-child {
    margin-top: 0;
}

.landing-video__spot > *:last-child {
    margin-bottom: 0;
}

.landing-video__cta {
    margin-top: 30px;
}

.landing-video__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 31px;
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        var(--landing-primary),
        var(--landing-primary-dark)
    );
    box-shadow: 0 13px 27px rgba(23, 104, 229, 0.25);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.landing-video__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(23, 104, 229, 0.34);
    text-decoration: none;
    color: #ffffff;
}

.landing-video__cta-button:focus-visible {
    outline: 0;
    box-shadow:
        0 0 0 4px rgba(23, 104, 229, 0.18),
        0 18px 34px rgba(23, 104, 229, 0.28);
}


/* =========================================================
   VİDEO KARTI
========================================================= */

.landing-video-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(20, 33, 58, 0.08);
    border-radius: 28px;
    background-color: #ffffff;
    box-shadow: 0 28px 70px rgba(23, 43, 77, 0.17);
}

.landing-video-card::before,
.landing-video-card::after {
    position: absolute;
    z-index: -1;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(55px);
    content: "";
    pointer-events: none;
}

.landing-video-card::before {
    top: -65px;
    right: -65px;
    background-color: rgba(32, 135, 255, 0.23);
}

.landing-video-card::after {
    bottom: -65px;
    left: -65px;
    background-color: rgba(170, 67, 255, 0.21);
}


/* =========================================================
   VİDEO MEDYA ALANI
========================================================= */

.landing-video-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #081326;
}

.landing-video-card__poster,
.landing-video-card__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.landing-video-card__poster {
    object-fit: cover;
    transition: transform 0.45s ease;
}

.landing-video-card:hover
.landing-video-card__poster {
    transform: scale(1.025);
}

.landing-video-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 14, 35, 0.04) 0%,
            rgba(4, 14, 35, 0.17) 45%,
            rgba(4, 14, 35, 0.58) 100%
        );
    pointer-events: none;
}

.landing-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding: 0;
    border: 7px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    outline: none;
    background: linear-gradient(
        135deg,
        var(--landing-primary),
        #7b43e8
    );
    box-shadow:
        0 18px 42px rgba(8, 24, 50, 0.32),
        0 0 0 0 rgba(255, 255, 255, 0.34);
    cursor: pointer;
    color: #ffffff;
    transform: translate(-50%, -50%);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    animation: landingVideoPulse 2.2s infinite;
}

.landing-video-card__play:hover {
    transform: translate(-50%, -50%) scale(1.09);
    box-shadow:
        0 22px 48px rgba(8, 24, 50, 0.38),
        0 0 0 12px rgba(255, 255, 255, 0.11);
}

.landing-video-card__play:focus-visible {
    box-shadow:
        0 0 0 5px rgba(23, 104, 229, 0.24),
        0 22px 48px rgba(8, 24, 50, 0.35);
}

.landing-video-card__play i {
    display: block;
    margin-left: 4px;
    font-size: 36px;
    line-height: 1;
    color: inherit;
}

@keyframes landingVideoPulse {
    0% {
        box-shadow:
            0 18px 42px rgba(8, 24, 50, 0.32),
            0 0 0 0 rgba(255, 255, 255, 0.30);
    }

    70% {
        box-shadow:
            0 18px 42px rgba(8, 24, 50, 0.32),
            0 0 0 16px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow:
            0 18px 42px rgba(8, 24, 50, 0.32),
            0 0 0 0 rgba(255, 255, 255, 0);
    }
}


/* =========================================================
   VİDEO KARTI ALT BİLGİ
========================================================= */

.landing-video-card__footer {
    padding: 25px 28px 27px;
    background: linear-gradient(
        135deg,
        #1768e5 0%,
        #6045d9 100%
    );
    color: #ffffff;
}

.landing-video-card__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.landing-video-card__spot {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.79);
}

.landing-video-card__spot > *:first-child {
    margin-top: 0;
}

.landing-video-card__spot > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   VİDEO — TABLET
========================================================= */

@media (max-width: 1100px) {

    .landing-video {
        padding: 90px 0;
    }

    .landing-video__grid {
        gap: 45px;
    }

    .landing-video-card__play {
        width: 74px;
        height: 74px;
        border-width: 6px;
    }

    .landing-video-card__play i {
        font-size: 32px;
    }
}


/* =========================================================
   VİDEO — DAR TABLET
========================================================= */

@media (max-width: 900px) {

    .landing-video {
        padding: 80px 0;
    }

    .landing-video__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .landing-video__content,
    .landing-video-card {
        width: 100%;
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .landing-video__content {
        text-align: center;
    }

    .landing-video__spot {
        margin-right: auto;
        margin-left: auto;
    }
}


/* =========================================================
   VİDEO — MOBİL
========================================================= */

@media (max-width: 600px) {

    .landing-video {
        padding: 65px 0;
    }

    .landing-video__grid {
        gap: 36px;
    }

    .landing-video__intro {
        font-size: 13px;
    }

    .landing-video__title {
        font-size: 32px;
    }

    .landing-video__spot {
        font-size: 16px;
        line-height: 1.7;
    }

    .landing-video__cta-button {
        width: 100%;
    }

    .landing-video-card {
        border-radius: 19px;
    }

    .landing-video-card__play {
        width: 64px;
        height: 64px;
        border-width: 5px;
    }

    .landing-video-card__play i {
        font-size: 28px;
    }

    .landing-video-card__footer {
        padding: 21px 20px 23px;
    }

    .landing-video-card__title {
        font-size: 18px;
    }

    .landing-video-card__spot {
        font-size: 13px;
    }
}

/* =========================================================
   ÇALIŞMA SÜRECİ
========================================================= */

.landing-process {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(23, 104, 229, 0.06),
            transparent 30%
        ),
        #ffffff;
}


/* =========================================================
   ÇALIŞMA SÜRECİ — BAŞLIK
========================================================= */

.landing-process__header {
    max-width: 880px;
    margin: 0 auto 58px;
    text-align: center;
}

.landing-process__intro {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 8px 17px;
    border: 1px solid rgba(23, 104, 229, 0.12);
    border-radius: 999px;
    background-color: rgba(23, 104, 229, 0.08);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--landing-primary);
}

.landing-process__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--landing-heading);
}

.landing-process__spot {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
    line-height: 1.75;
    color: var(--landing-text);
}

.landing-process__spot > *:first-child {
    margin-top: 0;
}

.landing-process__spot > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ÇALIŞMA SÜRECİ — SEKME BUTONLARI
========================================================= */

.landing-process-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 55px;
}

.landing-process-tab {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 225px;
    padding: 16px 20px;
    border: 0;
    border-radius: 18px;
    outline: none;
    background-color: #f2f5fa;
    cursor: pointer;
    color: #344158;
    text-align: left;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.landing-process-tab:hover {
    transform: translateY(-3px);
    background-color: #e9eef7;
}

.landing-process-tab:focus-visible {
    box-shadow: 0 0 0 4px rgba(23, 104, 229, 0.16);
}

.landing-process-tab.is-active {
    background:
        linear-gradient(
            135deg,
            var(--step-start),
            var(--step-end)
        );
    box-shadow: 0 15px 32px rgba(23, 43, 77, 0.18);
    color: #ffffff;
    transform: translateY(-3px);
}

.landing-process-tab__icon {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    font-size: 20px;
    color: #44546a;
    box-shadow: 0 8px 18px rgba(23, 43, 77, 0.08);
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.landing-process-tab.is-active
.landing-process-tab__icon {
    background-color: rgba(255, 255, 255, 0.20);
    color: #ffffff;
    box-shadow: none;
}

.landing-process-tab__icon i {
    display: block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}

.landing-process-tab__text {
    display: block;
    min-width: 0;
}

.landing-process-tab__label {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.72;
}

.landing-process-tab__title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}


/* =========================================================
   ÇALIŞMA SÜRECİ — PANEL
========================================================= */

.landing-process-panels {
    position: relative;
}

.landing-process-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);
    gap: 70px;
    align-items: center;
}

.landing-process-panel[hidden] {
    display: none;
}

.landing-process-panel.is-active {
    animation: landingProcessFade 0.32s ease both;
}

@keyframes landingProcessFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-process-panel__content {
    min-width: 0;
}

.landing-process-panel__heading {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 24px;
}

.landing-process-panel__icon {
    display: inline-flex;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            var(--step-start),
            var(--step-end)
        );
    box-shadow: 0 13px 28px color-mix(in srgb, var(--step-start) 28%, transparent);
    font-size: 30px;
    color: #ffffff;
}

.landing-process-panel__icon i {
    display: block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}

.landing-process-panel__label {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #7a8799;
}

.landing-process-panel__title {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--landing-heading);
}

.landing-process-panel__spot {
    margin-bottom: 16px;
    font-size: 19px;
    line-height: 1.65;
    color: #344158;
}

.landing-process-panel__description {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--landing-text);
}

.landing-process-panel__spot > *:first-child,
.landing-process-panel__description > *:first-child {
    margin-top: 0;
}

.landing-process-panel__spot > *:last-child,
.landing-process-panel__description > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ÇALIŞMA SÜRECİ — MADDELER
========================================================= */

.landing-process-panel__items {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-process-panel__items li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #42506a;
}

.landing-process-panel__item-icon {
    display: inline-flex;
    flex: 0 0 26px;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--step-start),
            var(--step-end)
        );
    font-size: 14px;
    color: #ffffff;
}

.landing-process-panel__item-icon i {
    display: block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}


/* =========================================================
   ÇALIŞMA SÜRECİ — CTA
========================================================= */

.landing-process-panel__cta {
    margin-top: 30px;
}

.landing-process-panel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 30px;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            var(--step-start),
            var(--step-end)
        );
    box-shadow: 0 13px 27px rgba(23, 43, 77, 0.18);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.landing-process-panel__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(23, 43, 77, 0.26);
    text-decoration: none;
    color: #ffffff;
}


/* =========================================================
   ÇALIŞMA SÜRECİ — GÖRSEL
========================================================= */

.landing-process-panel__visual {
    min-width: 0;
}

.landing-process-panel__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background-color: #e9eef6;
    box-shadow: 0 28px 70px rgba(23, 43, 77, 0.16);
}

.landing-process-panel__image {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.landing-process-panel__image-wrap::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(8, 24, 50, 0.02) 0%,
            rgba(8, 24, 50, 0.12) 48%,
            rgba(8, 24, 50, 0.45) 100%
        );
    content: "";
    pointer-events: none;
}

.landing-process-panel__number {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            var(--step-start),
            var(--step-end)
        );
    box-shadow: 0 16px 34px rgba(8, 24, 50, 0.24);
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

.landing-process-panel__progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.28);
}

.landing-process-panel__progress span {
    display: block;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            var(--step-start),
            var(--step-end)
        );
    transition: width 0.3s ease;
}


/* =========================================================
   ÇALIŞMA SÜRECİ — TABLET
========================================================= */

@media (max-width: 1100px) {

    .landing-process {
        padding: 90px 0;
    }

    .landing-process-tab {
        min-width: 210px;
    }

    .landing-process-panel {
        gap: 45px;
    }

    .landing-process-panel__image {
        height: 440px;
    }
}


/* =========================================================
   ÇALIŞMA SÜRECİ — DAR TABLET
========================================================= */

@media (max-width: 900px) {

    .landing-process {
        padding: 80px 0;
    }

    .landing-process__header {
        margin-bottom: 44px;
    }

    .landing-process-tabs {
        margin-bottom: 42px;
    }

    .landing-process-tab {
        flex: 1 1 calc(50% - 14px);
        min-width: 0;
    }

    .landing-process-panel {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .landing-process-panel__content,
    .landing-process-panel__visual {
        width: 100%;
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .landing-process-panel__image {
        height: 420px;
    }
}


/* =========================================================
   ÇALIŞMA SÜRECİ — MOBİL
========================================================= */

@media (max-width: 600px) {

    .landing-process {
        padding: 65px 0;
    }

    .landing-process__header {
        margin-bottom: 34px;
    }

    .landing-process__intro {
        font-size: 13px;
    }

    .landing-process__title {
        font-size: 32px;
    }

    .landing-process__spot {
        font-size: 16px;
        line-height: 1.7;
    }

    .landing-process-tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        margin-bottom: 34px;
    }

    .landing-process-tab {
        width: 100%;
        padding: 14px 15px;
        border-radius: 15px;
    }

    .landing-process-tab__icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .landing-process-panel__heading {
        align-items: flex-start;
        gap: 14px;
    }

    .landing-process-panel__icon {
        flex-basis: 54px;
        width: 54px;
        height: 54px;
        border-radius: 15px;
        font-size: 25px;
    }

    .landing-process-panel__title {
        font-size: 27px;
    }

    .landing-process-panel__spot {
        font-size: 17px;
    }

    .landing-process-panel__description {
        font-size: 15px;
        line-height: 1.7;
    }

    .landing-process-panel__button {
        width: 100%;
    }

    .landing-process-panel__image-wrap {
        border-radius: 20px;
    }

    .landing-process-panel__image {
        height: 300px;
    }

    .landing-process-panel__number {
        top: 18px;
        right: 18px;
        width: 58px;
        height: 58px;
        border-radius: 15px;
        font-size: 26px;
    }

    .landing-process-panel__progress {
        height: 6px;
    }
}


/* =========================================================
   SIKÇA SORULAN SORULAR
========================================================= */

.landing-faq {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(23, 104, 229, 0.08),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eef5ff 100%
        );
}


/* =========================================================
   FAQ — BAŞLIK
========================================================= */

.landing-faq__header {
    max-width: 850px;
    margin: 0 auto 58px;
    text-align: center;
}

.landing-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            var(--landing-primary),
            #7b43e8
        );
    box-shadow: 0 18px 38px rgba(23, 104, 229, 0.24);
    font-size: 32px;
    color: #ffffff;
}

.landing-faq__icon i {
    display: block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}

.landing-faq__intro {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 17px;
    padding: 8px 18px;
    border: 1px solid rgba(123, 67, 232, 0.13);
    border-radius: 999px;
    background-color: rgba(123, 67, 232, 0.09);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #7b43e8;
}

.landing-faq__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--landing-heading);
}

.landing-faq__spot {
    max-width: 730px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
    line-height: 1.75;
    color: var(--landing-text);
}

.landing-faq__spot > *:first-child {
    margin-top: 0;
}

.landing-faq__spot > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FAQ — LİSTE
========================================================= */

.landing-faq-list {
    display: grid;
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    gap: 16px;
}

.landing-faq-item {
    overflow: hidden;
    border: 1px solid rgba(20, 33, 58, 0.08);
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 10px 24px rgba(23, 43, 77, 0.08);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.landing-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(23, 43, 77, 0.12);
}

.landing-faq-item.is-open {
    border-color: rgba(23, 104, 229, 0.15);
    box-shadow: 0 20px 42px rgba(23, 43, 77, 0.13);
}


/* =========================================================
   FAQ — SORU BUTONU
========================================================= */

.landing-faq-item__button {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    padding: 24px 27px;
    border: 0;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    text-align: left;
    color: var(--landing-heading);
    transition: background-color 0.25s ease;
}

.landing-faq-item__button:hover {
    background-color: rgba(23, 104, 229, 0.025);
}

.landing-faq-item__button:focus-visible {
    box-shadow: inset 0 0 0 4px rgba(23, 104, 229, 0.13);
}

.landing-faq-item__icon {
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: -2px;
    border-radius: 10px;
    background-color: #edf1f7;
    font-size: 18px;
    color: #5e6b7f;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.landing-faq-item.is-open
.landing-faq-item__icon {
    background:
        linear-gradient(
            135deg,
            var(--landing-primary),
            #7b43e8
        );
    box-shadow: 0 10px 22px rgba(23, 104, 229, 0.22);
    color: #ffffff;
}

.landing-faq-item__icon i {
    display: block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}

.landing-faq-item__title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 1px 0 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--landing-heading);
    transition: color 0.25s ease;
}

.landing-faq-item.is-open
.landing-faq-item__title {
    color: var(--landing-primary);
}


/* =========================================================
   FAQ — CEVAP
========================================================= */

.landing-faq-item__answer {
    padding: 0 27px 27px 77px;
}

.landing-faq-item__answer-inner {
    max-width: 100%;
    border-top: 1px solid rgba(20, 33, 58, 0.07);
    padding-top: 18px;
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--landing-text);
}

.landing-faq-item__answer-inner > *:first-child {
    margin-top: 0;
}

.landing-faq-item__answer-inner > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FAQ — TABLET
========================================================= */

@media (max-width: 900px) {

    .landing-faq {
        padding: 85px 0;
    }

    .landing-faq__header {
        margin-bottom: 44px;
    }

    .landing-faq-list {
        max-width: 760px;
    }
}


/* =========================================================
   FAQ — MOBİL
========================================================= */

@media (max-width: 600px) {

    .landing-faq {
        padding: 65px 0;
    }

    .landing-faq__header {
        margin-bottom: 34px;
    }

    .landing-faq__icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        font-size: 28px;
    }

    .landing-faq__intro {
        font-size: 13px;
    }

    .landing-faq__title {
        font-size: 32px;
    }

    .landing-faq__spot {
        font-size: 16px;
        line-height: 1.7;
    }

    .landing-faq-list {
        gap: 13px;
    }

    .landing-faq-item {
        border-radius: 16px;
    }

    .landing-faq-item__button {
        gap: 13px;
        padding: 20px 18px;
    }

    .landing-faq-item__icon {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
        border-radius: 9px;
        font-size: 16px;
    }

    .landing-faq-item__title {
        font-size: 16px;
        line-height: 1.45;
    }

    .landing-faq-item__answer {
        padding: 0 18px 22px 62px;
    }

    .landing-faq-item__answer-inner {
        padding-top: 15px;
        font-size: 14.5px;
        line-height: 1.75;
    }
}

/* =========================================================
   FAQ — AÇILIR/KAPANIR ANİMASYON
========================================================= */

.landing-faq-item__answer {
    overflow: hidden;
    max-height: 0;
    padding: 0 27px 0 77px;
    opacity: 0;
    transition:
        max-height 0.38s ease,
        opacity 0.25s ease,
        padding-bottom 0.38s ease;
}

.landing-faq-item.is-open
.landing-faq-item__answer {
    padding-bottom: 27px;
    opacity: 1;
}

@media (max-width: 600px) {

    .landing-faq-item__answer {
        padding: 0 18px 0 62px;
    }

    .landing-faq-item.is-open
    .landing-faq-item__answer {
        padding-bottom: 22px;
    }
}

/* =========================================================
   LANDING FORM — KVKK / İZİN CHECKBOX ALANI
========================================================= */

.landing-form__field--full {
    grid-column: 1 / -1;
}

.landing-form__field--checks {
    margin-top: 6px;
}

.landing-form__field--checks .col-12 {
    padding: 0;
    margin-top: 0 !important;
}

.landing-form__field--checks .form-switch,
.landing-form__field--checks .form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: auto;
    margin: 0 0 15px;
    padding-left: 0 !important;
}

.landing-form__field--checks .form-check-input {
    flex: 0 0 auto;
    float: none !important;
    width: 2.55em !important;
    height: 1.35em !important;
    min-height: 0 !important;
    margin: 3px 0 0 !important;
    padding: 0 !important;
    border: 1px solid #cfd8e6 !important;
    border-radius: 2em !important;
    box-shadow: none !important;
    cursor: pointer;
}

.landing-form__field--checks .form-check-input:checked {
    border-color: var(--landing-primary) !important;
    background-color: var(--landing-primary) !important;
}

.landing-form__field--checks .form-check-label {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #2d3954;
    cursor: pointer;
}

.landing-form__field--checks .ps-4.ms-3 {
    margin-top: -8px;
    margin-bottom: 20px;
    margin-left: 0 !important;
    padding-left: 50px !important;
    font-size: 14px;
    line-height: 1.55;
}

.landing-form__field--checks .ps-4.ms-3 a {
    font-weight: 600;
    color: var(--landing-primary);
}

.landing-form__field--checks .mb-2 {
    margin-bottom: 10px !important;
}

.landing-form__field--checks #dvConnectCheck {
    margin-top: 10px;
}

@media (max-width: 600px) {

    .landing-form__field--checks .form-switch,
    .landing-form__field--checks .form-check {
        gap: 10px;
    }

    .landing-form__field--checks .form-check-label {
        font-size: 13.5px;
    }

    .landing-form__field--checks .ps-4.ms-3 {
        padding-left: 48px !important;
        font-size: 13.5px;
    }
}



/* =========================================================
   LANDING FORM — SUBMIT STATE
========================================================= */

.landing-form__submit:disabled,
.landing-form__submit.is-loading {
    cursor: wait;
    opacity: 0.72;
}

#dvCaptchaSonuc.is-success {
    color: #15803d;
}

#dvCaptchaSonuc.is-error {
    color: #dc2626;
}

/* =========================================================
   LANDING FORM — CHECKBOX BOŞLUK SIKILAŞTIRMA
========================================================= */

.landing-form__field--checks .form-switch,
.landing-form__field--checks .form-check {
    margin-bottom: 8px;
}

.landing-form__field--checks .ps-4.ms-3 {
    margin-top: -4px;
    margin-bottom: 12px;
}

.landing-form__field--checks .mb-2 {
    height: 8px;
    margin: 0 !important;
    line-height: 8px;
    font-size: 0;
}

.landing-form__field--checks .mb-2:empty,
.landing-form__field--checks .mb-2 {
    padding: 0 !important;
}




/* =========================================================
   LANDING FORM — COMPACT FIELD LABELS
========================================================= */

.landing-form__field--compact label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.landing-form__field--compact input,
.landing-form__field--compact select {
    min-height: 58px;
}

.landing-form__grid {
    row-gap: 16px;
}


/* =========================================================
   LANDING FORM — KVKK / İZİN / CAPTCHA KOMPAKT DÜZEN
========================================================= */

/* Form kartını biraz sıkılaştırır */
.landing-form-card {
    padding-top: 42px;
    padding-bottom: 42px;
}

.landing-form__grid {
    row-gap: 14px;
}

/* Input / select yüksekliği */
.landing-form__field--compact input,
.landing-form__field--compact select,
.landing-form__select {
    min-height: 54px;
}


/* =========================================================
   KVKK / İZİN ALANI
========================================================= */

.landing-form__field--checks {
    margin-top: 0;
}

.landing-form__field--checks .col-12 {
    padding: 0;
    margin-top: 0 !important;
}

.landing-form__field--checks .form-switch,
.landing-form__field--checks .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: auto;
    margin: 0 0 8px;
    padding-left: 0 !important;
}

/* Switch boyutu */
.landing-form__field--checks .form-check-input {
    flex: 0 0 auto;
    float: none !important;
    width: 2.15em !important;
    height: 1.15em !important;
    min-height: 0 !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;
    border: 1px solid #cfd8e6 !important;
    border-radius: 2em !important;
    box-shadow: none !important;
    cursor: pointer;
}

.landing-form__field--checks .form-check-input:checked {
    border-color: var(--landing-primary) !important;
    background-color: var(--landing-primary) !important;
}

/* Onay metinleri */
.landing-form__field--checks .form-check-label {
    display: block;
    margin: 0;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.45;
    color: #24314a;
    cursor: pointer;
}

/* KVKK link alanı */
.landing-form__field--checks .ps-4.ms-3 {
    margin-top: -3px;
    margin-bottom: 10px;
    margin-left: 0 !important;
    padding-left: 47px !important;
    font-size: 13.5px;
    line-height: 1.45;
}

.landing-form__field--checks .ps-4.ms-3 a {
    font-weight: 400;
    color: var(--landing-primary);
}

/* Include dosyasından gelen boşluk divlerini küçültür */
.landing-form__field--checks .mb-2 {
    height: 4px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 4px;
    font-size: 0;
}

.landing-form__field--checks #dvConnectCheck {
    margin-top: 6px;
}

/* =========================================================
   CAPTCHA ALANI
========================================================= */

.landing-form__field--captcha {
    margin-top: 0;
}

.landing-form-captcha {
    display: grid;
    grid-template-columns: 255px 145px 42px;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border: 1px solid rgba(20, 33, 58, 0.09);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.72);
}

/* Captcha görseli */
.landing-form-captcha__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    min-width: 0;
    height: 56px;
    min-height: 56px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(20, 33, 58, 0.08);
    border-radius: 10px;
    background-color: #ffffff;
}

.landing-form-captcha__image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    transform: scale(1.22);
    transform-origin: center center;
}

/* Label erişilebilirlik için kalsın, görselde görünmesin */
.landing-form-captcha__input label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* Captcha input */
.landing-form-captcha__input {
    width: 145px;
}

.landing-form-captcha__input input {
    width: 100%;
    height: 42px;
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid #d2dbea;
    border-radius: 10px;
    outline: none;
    background-color: #ffffff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.04em;
    color: #14213a;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.landing-form-captcha__input input:focus {
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 4px rgba(23, 104, 229, 0.12);
}

/* Yenile butonu */
.landing-form-captcha__refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(23, 104, 229, 0.15);
    border-radius: 10px;
    background-color: rgba(23, 104, 229, 0.08);
    cursor: pointer;
    font-size: 18px;
    color: var(--landing-primary);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.landing-form-captcha__refresh:hover {
    transform: translateY(-1px);
    background-color: var(--landing-primary);
    color: #ffffff;
}

.landing-form-captcha__refresh i {
    display: block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}

#dvCaptchaSonuc {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.5;
}

#dvCaptchaSonuc.is-success {
    color: #15803d;
}

#dvCaptchaSonuc.is-error {
    color: #dc2626;
}


/* Submit butonu */
.landing-form__submit {
    margin-top: 12px;
    min-height: 56px;
}

.landing-form__submit:disabled,
.landing-form__submit.is-loading {
    cursor: wait;
    opacity: 0.72;
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 700px) {

    .landing-form-captcha {
        grid-template-columns: 1fr 42px;
    }

    .landing-form-captcha__image {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
    }

    .landing-form-captcha__image img {
        width: 100%;
        transform: scale(1.12);
    }

    .landing-form-captcha__input {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .landing-form-card {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .landing-form__field--checks .form-check-label {
        font-size: 13px;
        line-height: 1.45;
    }

    .landing-form__field--checks .ps-4.ms-3 {
        padding-left: 44px !important;
        font-size: 13px;
    }
}

/* =========================================================
   LANDING FORM — MOBİL CAPTCHA DÜZENİ
========================================================= */

@media (max-width: 700px) {

    .landing-form-captcha {
        grid-template-columns: 1fr 42px;
        gap: 8px;
        padding: 8px;
    }

    .landing-form-captcha__image {
        grid-column: 1 / -1;
        width: 100%;
        height: 54px;
        min-height: 54px;
        justify-content: center;
    }

    .landing-form-captcha__image img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 50px;
        transform: scale(1.50);
        transform-origin: center center;
    }

    .landing-form-captcha__input {
        width: 100%;
    }

    .landing-form-captcha__input input {
        height: 42px;
        min-height: 42px;
        font-size: 14px;
    }

    .landing-form-captcha__refresh {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   LANDING LIST PAGE
========================================================= */

.landing-list-page {
    background-color: #ffffff;
}


/* =========================================================
   LANDING LIST GRID
========================================================= */

.landing-list-section {
    padding: 90px 0 110px;
    background-color: #ffffff;
}

.landing-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.landing-list-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(20, 33, 58, 0.08);
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(23, 43, 77, 0.10);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.landing-list-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 104, 229, 0.16);
    box-shadow: 0 25px 60px rgba(23, 43, 77, 0.15);
}

.landing-list-card__image-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: #eef4ff;
    text-decoration: none;
}

.landing-list-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.landing-list-card:hover
.landing-list-card__image {
    transform: scale(1.045);
}

.landing-list-card__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 54px;
    color: var(--landing-primary);
}

.landing-list-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 25px 24px 26px;
}

.landing-list-card__title {
    margin: 0 0 13px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--landing-heading);
}

.landing-list-card__title a {
    color: inherit;
    text-decoration: none;
}

.landing-list-card__title a:hover {
    color: var(--landing-primary);
}

.landing-list-card__spot {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--landing-text);
}

.landing-list-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: auto;
    padding: 12px 22px;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            var(--landing-primary),
            var(--landing-primary-dark)
        );
    box-shadow: 0 12px 24px rgba(23, 104, 229, 0.22);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.landing-list-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(23, 104, 229, 0.30);
    text-decoration: none;
    color: #ffffff;
}

.landing-list-empty {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    padding: 55px 35px;
    border: 1px solid rgba(20, 33, 58, 0.08);
    border-radius: 24px;
    background-color: #f8fbff;
    text-align: center;
}

.landing-list-empty h2 {
    margin: 0 0 12px;
    font-size: 28px;
    color: var(--landing-heading);
}

.landing-list-empty p {
    margin: 0;
    font-size: 16px;
    color: var(--landing-text);
}


/* =========================================================
   LANDING LIST RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .landing-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .landing-list-hero {
        padding: 150px 0 70px;
    }

    .landing-list-section {
        padding: 60px 0 80px;
    }

    .landing-list-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .landing-list-card {
        border-radius: 20px;
    }

    .landing-list-card__body {
        padding: 22px 20px 24px;
    }

    .landing-list-card__title {
        font-size: 20px;
    }

    .landing-list-hero__spot {
        font-size: 16px;
        line-height: 1.7;
    }
}