﻿:root {
    --primary: #F36A2F;
    --primary-hover: #E45B22;
    --primary-dark: #C84A16;
    --primary-light: #FDE6DB;
    --primary-light-plus: #FFF1EA;
    --text: #1F1F1F;
    --muted: #6F6F6F;
    --slogan: #656363;
    --disabled: #C7C7C7;
    --bg: #F7F7F7;
    --body: #FDFDFD;
    --border: #E0E0E0;
    --surface: #FFFFFF;
    --r12: 12px;
    --r16: 16px;
    --shadow: 0 12px 30px rgba(0,0,0,.06);
    --h1: 32px;
    --h2: 24px;
    --h3: 18px;
    --bodySize: 16px;
    --small: 14px;
    --caption: 12px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: var(--bodySize);
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}
button {
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page .main {
    background-color: #FDFDFD;
    padding: 28px 0 28px; /* ✅ alt padding ekle */
    display: flow-root;
}

.h1 {
    font-size: var(--h1);
    line-height: 40px;
    margin: 0 0 6px;
    text-align: center;
}

.h2 {
    font-size: var(--h2);
    line-height: 32px;
    margin: 0 0 18px;
}

.h3 {
    font-size: var(--h3);
    line-height: 26px;
    margin: 0 0 8px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
    font-weight: 600;
}

/* Topbar */
.topbar {
    background: var(--primary-light-plus);
    border-bottom: 1px solid rgba(0,0,0,.03);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 12px;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: var(--small);
}

.topbar__icon {
    width: 16px;
    height: 16px;
    opacity: .6;
}

.topbar__phone {
    color: var(--muted);
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Social icons (img) */
.social {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    transition: opacity .15s ease, transform .15s ease;
}

    .social img {
        width: 18px;
        height: 18px;
        transition: filter .15s ease;
    }

    /* HOVER */
    .social:hover {
        opacity: 1;
        transform: translateY(-1px);
    }

        .social:hover img {
            filter: brightness(0) saturate(100%) invert(52%) sepia(77%) saturate(3800%) hue-rotate(350deg);
        }


/* Header */
.header {
    background: var(--surface);
    border-bottom: 1px solid rgba(0,0,0,.03);
}

.header__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0 10px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand__logo {
    height: 44px;
    width: auto;
    margin-top: 20px;
}

/* Nav */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav__link {
    color: var(--muted);
    font-size: var(--small);
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

    .nav__link:hover {
        color: var(--text);
    }

    .nav__link.is-active {
        color: var(--text);
        border-bottom-color: var(--primary);
    }

.nav__link--btn {
    background: transparent;
    border: 0;
    cursor: pointer;
}

.has-dropdown {
    position: relative;
}

    .has-dropdown::after {
        content: "";
        position: absolute;
        left: -10px;
        right: -10px;
        top: 100%;
        height: 12px; /* köprü yüksekliği */
    }

.dropdown {
    position: absolute;
    top: 36px;
    left: -10px;
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: none;
    z-index: 50;
}

    .dropdown a {
        display: block;
        padding: 10px 10px;
        border-radius: 10px;
        font-size: var(--small);
        color: var(--text);
    }

        .dropdown a:hover {
            background: var(--primary-light-plus);
            color: var(--primary-dark);
        }

/* show dropdown on hover desktop */
@media (hover:hover) {
    .has-dropdown:hover > .dropdown,
    .has-dropdown.is-open > .dropdown {
        display: block;
    }
}

/* Right actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

/* Lang */
.lang {
    position: relative;
}

.lang__btn {
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 10px;
    color: var(--muted);
    font-size: var(--small);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .lang__btn:hover {
        border-color: rgba(243,106,47,.35);
    }

.lang__menu {
    position: absolute;
    right: 0;
    top: 46px;
    width: 170px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: none;
    z-index: 60;
}

.lang__item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: var(--small);
}

    .lang__item:hover {
        background: var(--primary-light-plus);
        color: var(--primary-dark);
    }

.lang.is-open .lang__menu {
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: var(--bodySize);
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
    cursor: pointer;
}

.btn__icon {
    width: 18px;
    height: 18px;
    opacity: .95;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 22px rgba(243,106,47,.25);
}

    .btn--primary:hover {
        background: var(--primary-hover);
        transform: translateY(-1px);
    }

.btn--secondary {
    background: transparent;
    border-color: rgba(243,106,47,.55);
    color: var(--primary-dark);
}

    .btn--secondary:hover {
        background: var(--primary-light-plus);
        border-color: var(--primary);
    }

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    display: none;
    height: 44px;
    width: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
}

    .hamburger img {
        width: 18px;
        height: 18px;
        margin: auto;
    }

/* Divider */
.header__divider {
    height: 1px;
    background: rgba(0,0,0,.06);
}

/* Mobile menu */
.mobile {
    display: none;
    background: var(--surface);
    border-top: 1px solid rgba(0,0,0,.06);
}

    .mobile.is-open {
        display: block;
    }

.mobile__inner {
    padding: 14px 0 18px;
}

.mobile__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .mobile__list a, .mobile__toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 12px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: var(--surface);
        color: var(--text);
        font-size: var(--small);
    }

.mobile__toggle {
    cursor: pointer;
}

.mobile__panel {
    display: none;
    padding: 8px 0 0;
}

    .mobile__panel a {
        border: 0;
        background: var(--body);
        color: var(--muted);
    }

.mobile__group.is-open .mobile__panel {
    display: block;
}

.mobile__cta {
    margin-top: 8px;
}

/* Mobil menü içindeki CTA butonu */
.mobile__cta {
    padding: 12px;
}

.mobile__ctaBtn {
    height: 44px; /* menüyle aynı ritim */
    border-radius: 12px;
    box-shadow: none; /* menü içinde daha temiz */
    justify-content: center;
    font-size: var(--small);
}

    /* ikon + yazı biraz daha dengeli */
    .mobile__ctaBtn .btn__icon {
        width: 16px;
        height: 16px;
    }

    .mobile__ctaBtn span {
        white-space: nowrap; /* tek satır */
    }


/* HERO */
.hero {
    padding: 26px 0 8px;
}

.hero__sub {
    margin: 0 0 18px;
    text-align: center;
    color: var(--slogan);
    font-size: var(--small);
}
/* HERO BANNER */
.heroBanner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    background: var(--surface);
}

.heroBanner__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}


.heroBanner__caption {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-70%);
    pointer-events: none;
    background: rgba(255, 122, 46, 0.4);
    /* mevcut kahverengi tonuna yakın */
    padding: 16px 26px;
    border-radius: 16px;
    color: #ffffff;
    font-size: var(--h3);
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
    /* küçük iyileştirme */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    max-width: min(92%, 680px); /* devleşmesini engeller */
    white-space: nowrap; /* tek satır */
    overflow: hidden; /* taşanı kes */
    text-overflow: ellipsis; /* ... */
}
/* TABLET (<= 992px) */
@media (max-width: 992px) {
    .heroBanner__caption {
        bottom: 16px;
        transform: translateX(-50%); /* mobil/tablet ortalama */
        padding: 12px 18px;
        font-size: var(--h4); /* h3 yerine bir tık küçük */
        border-radius: 14px;
        max-width: min(92%, 520px);
    }
}

/* GSM (<= 576px) */
@media (max-width: 576px) {
    .heroBanner__caption {
        bottom: 12px;
        padding: 10px 14px;
        font-size: 16px; /* garanti sabit; istersen var(--base) */
        border-radius: 12px;
        max-width: 92%;
    }
}
/* Intro */
.intro {
    margin-top: 18px;
    text-align: center;
}

.intro__text {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: var(--small);
}

/* USP */
.usp {
    padding: 18px 0 10px;
}

.usp__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.usp .card {
    background: var(--surface);
    border-radius: 14px;
    padding: 22px 16px;
    border: 1px solid var(--border);
    transition: border-color .15s ease, transform .15s ease;
    /* tasarımdaki gibi ortalı */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.usp .card--outline {
    border: 1px solid rgba(243,106,47,.25);
}

    .usp .card--outline:hover {
        border-color: rgba(243,106,47,.6);
        transform: translateY(-2px);
    }

.usp .card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .usp .card__icon img {
        width: 44px;
        height: 44px;
    }

.usp .card__title {
    margin-top: 0; /* artık gap var, margin’e gerek yok */
    font-weight: 700;
    font-size: var(--small);
}

/* Advantages */
.advantages {
    padding: 10px 0 26px;
}

.advantages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    background: var(--surface);
    color: var(--muted);
}

    .pill.is-alt {
        background: var(--body);
    }

    .pill img {
        width: 26px;
        height: 26px;
    }

/* Mid banner section */
.midBanner {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 18px;
    margin: 8px 0 16px;
    overflow: hidden;
}

/* GRID'i tamamen kaldır -> FLEX */
.midBanner__inner {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.midBanner__logo {
    width: 150px;
    flex: 0 0 auto;
}

.midBanner__text {
    width: 250px;
    flex: 0 0 auto; /* text gereksiz büyümesin */
}

.midBanner__title {
    font-weight: 800;
    color: var(--muted);
}

.midBanner__desc {
    font-size: var(--small);
    color: var(--muted);
}

.midBanner__img {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    height: 150px;
    width: auto;
    flex: 0 0 auto;
    margin-left: 24px; /* text ile görsel arası mesafe */
}

.midBanner__tag {
    flex: 0 0 250px;
    margin-left: 250px; /* görsel ile tag arası mesafe */

    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    padding: 10px 12px;
    border-radius: 14px;
    font-size: var(--caption);
    color: var(--muted);
    max-width: 320px;
}



/* ============ FEATURES (TURUNCU ZEMİNLİ 2 KART) ============ */
.featureCards {
    margin: 0 0 16px;
}

/* GRID yerine FLEX */
.featureCards__grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}

/* Kartlar daha ufak görünmesi için */
.softCard {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.2);
    border-radius: 16px;
    padding: 12px 14px; /* biraz küçülttüm */
    flex: 0 1 420px; /* büyümesin, 520px hedef */
    max-width: 420px; /* desktop'ta devleşmesin */
    width: 100%;
}


/* radio-button-on.svg ikonlu liste */
.bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: var(--small);
}

    .bullets li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 10px 0;
        line-height: 1.35;
    }

        .bullets li::before {
            content: "";
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
            margin-top: 1px;
            background: url("/asset/icon/radio-button-on.svg") no-repeat center / 18px 18px;
        }

/* ============ DEMO CTA (AYRI SATIR) ============ */
.demoCta {
    margin: 0 0 22px;
}

.demoCta__inner {
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.demoCta__title {
    text-align: center;
    font-weight: 800;
    color: var(--muted);
}

.demoCta__desc {
    margin-top: 6px;
    font-size: var(--small);
    color: var(--muted);
}


/* Accessoires */
.accessoires {
    padding: 8px 0 14px;
}

.accessoires__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 16px;
}

.productCard {
    background: var(--surface);
    border: 1px solid rgba(243,106,47,.35);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform .15s ease, border-color .15s ease;
}

    .productCard:hover {
        transform: translateY(-2px);
        border-color: rgba(243,106,47,.75);
    }

.productCard__imgWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
}

    .productCard__imgWrap img {
        max-height: 210px;
        object-fit: contain;
    }

.productCard__btn {
    width: 70%;
    text-align: center;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
}

.priceTeaser {
    margin-top: 18px;
    text-align: center;
}

.priceTeaser__price {
    font-weight: 900;
    font-size: 18px;
}

.priceTeaser__note {
    color: var(--muted);
    font-size: var(--caption);
    margin: 6px 0 10px;
}

/* Video */
.temoignage {
    padding: 14px 0 24px;
}

.quoteTop {
    text-align: center;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.videoCard {
    background: var(--primary-light);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0 auto;
    padding: 15px;
    max-width: 1050px;
}

/* Responsive iframe tekniği */
.videoWrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 oran */
}

    .videoWrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.videoCard video {
    width: 100%;
    height: auto;
    display: block;
}

/* Sectors */
.secteurs {
    padding: 10px 0 40px;
}

.sectorGrid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sectorCard {
    position:relative;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    overflow: hidden;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .15s ease, transform .15s ease;
}

    .sectorCard:hover {
        transform: translateY(-2px);
        border-color: rgba(243,106,47,.45);
    }

.sectorCard__img {
    border-radius: 14px;
    height: 210px;
    object-fit: cover;
    width: 100%;
}

.sectorCard__title {
    margin: 6px 0 0;
    font-size: var(--h3);
    font-weight: 800;
    text-align: center;
}

.sectorCard__lead {
    margin: 0;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: var(--caption);
}

.sectorCard__text {
    margin: 0;
    color: var(--muted);
    font-size: var(--small);
    min-height:170px;
}
.sectorCard .btn{
    position:absolute;
    bottom:10px;
    width:90%;
    justify-content:center;
}
/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 26px 0 18px;
}

.footerCta {
    text-align: center;
    padding-bottom: 18px;
}

.footerCta__title {
    font-weight: 900;
    color: var(--muted);
    margin-bottom: 12px;
}

.footerMain {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
}

.footerBrand__logo {
    height: 46px;
    width: auto;
}

.footerBrand__text {
    color: var(--muted);
    font-size: var(--small);
    margin-top: 10px;
}

.footerBrand__meta {
    color: var(--muted);
    font-size: var(--caption);
    margin-top: 6px;
}

.footerCol__title {
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.footerCol a {
    display: block;
    color: var(--muted);
    font-size: var(--small);
    padding: 6px 0;
}

    .footerCol a:hover {
        color: var(--primary-dark);
    }

.footerCol__text {
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.6;
}

.teamviewer {
    margin-top: 14px;
}

.teamviewer__label {
    font-size: var(--caption);
    color: var(--muted);
    margin-bottom: 6px;
}

.teamviewer__link {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 12px;
}

    .teamviewer__link:hover {
        border-color: rgba(243,106,47,.45);
    }

.teamviewer img {
    height: 26px;
    width: auto;
}

.footerBottom {
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: 10px;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footerBottom__social {
    display: flex;
    gap: 14px;
}

.footerBottom__legal {
    color: var(--muted);
    font-size: var(--caption);
}

    .footerBottom__legal a {
        color: var(--muted);
    }

        .footerBottom__legal a:hover {
            color: var(--primary-dark);
        }

.btn__icon--white {
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1040px) {
    .header__inner {
        gap: 10;
        padding: 0;
    }

    .brand__logo {
        height: 38px;
        margin-top: 30px;
        margin-left: 10px;
    }

    .header__actions {
        margin-top: 0; /* 6px boşluk tablet’te sıkıştırıyor */
        gap: 8px;
    }

    .header__actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .lang {
        margin: 10px;
    }


    /* Demo butonu tablet’te biraz daralsın */
    .btn {
        height: 40px;
        padding: 0 12px;
        font-size: var(--small);
        margin: 5px;
    }

    .btn__icon {
        width: 16px;
        height: 16px;
    }

    .hamburger {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 980px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .usp__grid {
        grid-template-columns: 1fr;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
    }

    .accessoires__grid {
        grid-template-columns: 1fr;
    }

    .sectorGrid {
        grid-template-columns: 1fr;
    }

    .featureCards__grid {
        flex-direction: column;
        align-items: center;
    }

    .brand__logo {
        margin-top: 20px;
    }

    .softCard {
        max-width: 560px;
        max-height: 150px;
    }

    .midBanner__inner {
        gap: 14px;
        max-width: none;
    }

    .midBanner__img {
        position: static;
        transform: none;
        left: auto;
        margin-left: 0;
        height: 130px;
        order: 3;
    }

    .midBanner__text {
        max-width: 180px;
    }

    .midBanner__tag {
        margin-left: 0;
        flex: 1 1 40%;
        order: 4;
    }

    .mobile__list a, .mobile__toggle {
        border: 0;
        background: transparent;
        border-radius: 0;
        padding: 14px 12px;
    }

    .mobile__list {
        border: 1px solid var(--border);
        border-radius: 14px;
        overflow: hidden;
        background: var(--surface);
        gap: 0;
    }

        .mobile__list li + li a,
        .mobile__list li + li .mobile__toggle {
            border-top: 1px solid rgba(0,0,0,.06);
        }

    .mobile__cta {
        margin-top: 12px;
    }

    .footerMain {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .heroBanner__img {
        height: 220px;
    }

    .btn {
        height: 42px;
        padding: 0 14px;
    }

    .brand__logo {
        height: 40px;
    }

    .midBanner {
        padding: 14px;
    }

    .midBanner__inner {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .midBanner__logo {
        width: 100px;
    }

    .midBanner__img {
        height: 110px;
    }

    .midBanner__tag {
        border-radius: 12px;
        flex: 1 1 40%;
    }

    .demoCta__inner {
        padding: 14px;
    }

    .mobile__list a, .mobile__toggle {
        border: 0;
        background: transparent;
        border-radius: 0;
        padding: 14px 12px;
    }

    .mobile__list {
        border: 1px solid var(--border);
        border-radius: 14px;
        overflow: hidden;
        background: var(--surface);
        gap: 0;
    }

        .mobile__list li + li a,
        .mobile__list li + li .mobile__toggle {
            border-top: 1px solid rgba(0,0,0,.06);
        }

    .mobile__cta {
        margin-top: 12px;
    }
}


/* =========================================================
   SOLUTION PAGE 1 — CAISSE & FACTURATION (FLEX ONLY)
   Prefix: sol1-
   ========================================================= */

.sol1Hero {
    padding: 26px 0 10px;
    text-align: center;
}

.sol1Hero__title {
    font-size: var(--h2);
    line-height: 32px;
    margin: 0 0 6px;
}

.sol1Hero__sub {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: var(--small);
}

.sol1Hero__media {
    display: flex;
    justify-content: center;
    margin: 8px 0 10px;
}

.sol1Hero__img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.sol1Hero__note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: var(--caption);
}

/* 3 tiles row */
.sol1Tiles {
    margin: 14px 0 8px;
    display: flex;
    gap: 16px;
    align-items: stretch;
    flex-wrap: wrap;
}

.sol1Tile {
    flex: 1 1 280px;
    border-radius: 18px;
    padding: 0 16px 14px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* WHITE header "pill" inside tile */
.sol1Tile__head {
    margin: 14px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 10px 0;
}

.sol1Tile__icon {
    width: 45px;
    height: 45px;
}

.sol1Tile__title {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 800;
    color: var(--text);
}

/* body stays orange */
.sol1Tile__body {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.25);
    border-radius: 14px;
    padding: 14px 12px;
}

/* list with radio icon */
.sol1List {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: var(--small);
}

    .sol1List li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 9px 0;
        line-height: 1.35;
    }

        .sol1List li::before {
            content: "";
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
            margin-top: 1px;
            background: url("/asset/icon/radio-button-on.svg") no-repeat center / 18px 18px;
        }

/* small line */
.sol1Line {
    margin: 30px 0 18px;
    text-align: center;
    color: var(--muted);
    font-size: var(--small);
}

/* CTA */
.sol1Cta {
    margin: 0 0 14px;
    text-align: center;
    padding: 10px 0 6px;
}

.sol1Cta__title {
    margin: 0 0 6px;
    font-weight: 900;
    color: var(--muted);
}

.sol1Cta__sub {
    margin: 0 0 12px;
    font-size: var(--small);
    color: var(--muted);
}

/* Mid strip: flex like your midBanner idea but isolated */
.sol1Strip {
    margin: 10px 0 14px;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 18px;
    overflow: hidden;
}

.sol1Strip__inner {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.sol1Strip__logo {
    width: 150px;
    flex: 0 0 auto;
}

.sol1Strip__text {
    width: 250px;
    flex: 0 0 auto;
}

.sol1Strip__kicker {
    font-weight: 800;
    color: var(--muted);
}

.sol1Strip__desc {
    font-size: var(--small);
    color: var(--muted);
}

.sol1Strip__img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 150px;
    width: auto;
    flex: 0 0 auto;
}

.sol1Strip__tag {
    flex: 0 0 250px;
    margin-left: 250px;
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    padding: 10px 12px;
    border-radius: 14px;
    font-size: var(--caption);
    color: var(--muted);
    max-width: 320px;
}

/* 4 mini cards row */
.sol1Mini {
    margin: 0 0 16px;
}

.sol1Mini__row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sol1MiniCard {
    flex: 1 1 440px;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 20px 20px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .sol1MiniCard img {
        width: 34px;
        height: 34px;
    }

.sol1MiniCard__title {
    font-weight: 800;
    color: var(--text);
    font-size: var(--small);
    line-height: 1.2;
}

.sol1MiniCard__text {
    color: var(--muted);
    font-size: var(--caption);
    margin-top: 2px;
}

/* FAQ box */
.sol1Faq {
    margin: 30px 0 18px;
}

.sol1Faq__title {
    text-align: center;
    color: var(--muted);
    font-weight: 900;
    margin: 0 0 12px;
}

.sol1Faq__box {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 14px 14px;
}

.sol1Qa + .sol1Qa {
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: 10px;
    padding-top: 10px;
}

.sol1Qa__q {
    font-weight: 900;
    color: var(--text);
    font-size: var(--small);
}

.sol1Qa__a {
    margin-top: 6px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px) {

    .sol1Strip__inner {
        gap: 14px;
        max-width: none;
    }

    .sol1Strip__img {
        position: static;
        transform: none;
        left: auto;
        height: 130px;
        order: 3;
    }

    .sol1Strip__text {
        max-width: 180px;
    }

    .sol1Strip__tag {
        margin-left: 0;
        flex: 1 1 40%;
        order: 4;
    }

    .footerBrand__logo {
        margin: auto;
    }
}

@media (max-width: 520px) {
    .sol1Tiles {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .sol1Tile {
        flex: 0 0 auto;
        width: 100%;
        padding: 0 12px 12px;
    }

    .sol1Tile__head {
        margin: 12px;
    }

    .sol1Strip {
        padding: 14px;
    }

    .sol1Strip__inner {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .sol1Strip__logo {
        width: 100px;
    }

    .sol1Strip__img {
        height: 110px;
    }

    .sol1Strip__tag {
        border-radius: 12px;
        flex: 1 1 40%;
    }
}
/* =========================================================
   TARIF PAGE (Prefix: tarif-)
   ========================================================= */

.tarifHero {
    padding: 26px 0 12px;
    text-align: center;
}

.tarifHero__title {
    font-size: var(--h2);
    line-height: 32px;
    margin: 0 0 6px;
    font-weight: 900;
}

.tarifHero__sub {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: var(--small);
    line-height: 1.35;
}

.tarifHero__media {
    display: flex;
    justify-content: center;
    margin: 10px 0 8px;
}

.tarifHero__img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.tarifHero__note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: var(--caption);
}

/* Pricing grid */
.tarifPricing {
    padding: 18px 0 12px;
}

.tarifPricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.tarifCol__head {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tarifCol__kicker {
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    font-size: 20px;
}

.tarifCol__price {
    font-weight: 900;
    color: var(--primary);
    font-size: 60px;
    line-height: 1;
    margin: 0 0 8px;
}

.tarifCol__price--small {
    font-size: 18px;
    font-weight: 900;
    margin-top: 2px;
    font-size: 40px;
}

.tarifCol__meta {
    color: var(--muted);
    font-size: var(--caption);
}

.tarifList {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Left items (icon + card) */
.tarifItem {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 65px;
}

.tarifItem__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tarifItem__icon img {
        width: 30px;
        height: 30px;
    }

.tarifItem__text {
    color: var(--muted);
    font-size: var(--small);
}

/* Right items (soft background) */
.tarifList--soft {
    gap: 16px;
}

.tarifItem--soft {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    justify-content: flex-start;
    margin-top: 2px;
}

    .tarifItem--soft .tarifItem__text {
        position: relative;
        padding-left: 22px;
    }

        .tarifItem--soft .tarifItem__text::before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            width: 14px;
            height: 14px;
            background: url("/asset/icon/radio-button-on.svg") no-repeat center / 14px 14px;
        }

/* Value box */
.tarifValue {
    padding: 14px 0 10px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.tarifValue__box {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px 18px;
    text-align: center;
}

.tarifValue__title {
    margin: 0 0 10px;
    font-size: var(--h3);
    font-weight: 900;
    color: var(--muted);
}

.tarifValue__rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.tarifValueRow__icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px;
    color: var(--primary);
    font-weight: 900;
    font-size: 22px;
}

.tarifValueRow__kicker {
    font-weight: 900;
    color: var(--primary);
    font-size: var(--caption);
    margin-bottom: 4px;
}

.tarifValueRow__text {
    color: var(--muted);
    font-size: var(--small);
}

/* Included */
.tarifIncluded {
    padding: 14px 0 22px;
    text-align: center;
}

.tarifIncluded__title {
    margin: 0 0 12px;
    font-size: var(--small);
    color: var(--muted);
    font-weight: 900;
}

.tarifIncluded__box {
    max-width: 720px;
    margin: 0 auto;
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 14px;
    padding: 12px 12px;
}

.tarifIncluded__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    text-align: left;
    padding: 6px 10px;
}

.tarifIncluded__item {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: var(--small);
}

    .tarifIncluded__item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 14px;
        height: 14px;
        background: url("/asset/icon/radio-button-on.svg") no-repeat center / 14px 14px;
    }

.tarifIncluded__note {
    margin: 30px 0;
    color: var(--muted);
    font-size: var(--small);
}

.tarifIncluded__hl {
    color: var(--primary);
    font-weight: 800;
}

/* CTA inside included */
.tarifCta {
    margin-top: 16px;
    text-align: center;
}

.tarifCta__title {
    font-weight: 900;
    color: var(--muted);
    margin-bottom: 4px;
}

.tarifCta__desc {
    color: var(--muted);
    font-size: var(--small);
    margin-bottom: 12px;
}

/* Mid strip (tarif) */
.tarifStrip {
    margin: 18px 0 10px;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 18px;
    overflow: hidden;
}

.tarifStrip__inner {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.tarifStrip__logo {
    width: 150px;
    flex: 0 0 auto;
}

.tarifStrip__text {
    width: 250px;
    flex: 0 0 auto;
}

.tarifStrip__title {
    font-weight: 800;
    color: var(--muted);
}

.tarifStrip__desc {
    font-size: var(--small);
    color: var(--muted);
}

.tarifStrip__img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 150px;
    width: auto;
}

.tarifStrip__tag {
    flex: 0 0 250px;
    margin-left: 250px;
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    padding: 10px 12px;
    border-radius: 14px;
    font-size: var(--caption);
    color: var(--muted);
    max-width: 320px;
}

/* FAQ (tarif) */
.tarifFaq {
    margin: 14px 0 18px;
}

.tarifFaq__title {
    text-align: center;
    color: var(--muted);
    font-weight: 900;
    margin: 0 0 12px;
}

.tarifFaq__box {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 14px 14px;
}

.tarifQa + .tarifQa {
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: 10px;
    padding-top: 10px;
}

.tarifQa__q {
    font-weight: 900;
    color: var(--text);
    font-size: var(--small);
}

.tarifQa__a {
    margin-top: 6px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px) {
    .tarifPricing__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tarifCol__price {
        font-size: 38px;
    }

    .tarifStrip__inner {
        gap: 14px;
        max-width: none;
    }

    .tarifStrip__img {
        position: static;
        transform: none;
        left: auto;
        height: 130px;
        order: 3;
    }

    .tarifStrip__text {
        max-width: 180px;
    }

    .tarifStrip__tag {
        margin-left: 0;
        flex: 1 1 40%;
        order: 4;
    }

    .tarifIncluded__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .tarifHero__img {
        max-width: 360px;
    }

    .tarifCol__price {
        font-size: 34px;
    }

    .tarifValue__box {
        padding: 14px;
    }

    .tarifStrip {
        padding: 14px;
    }

    .tarifStrip__inner {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tarifStrip__logo {
        width: 100px;
    }

    .tarifStrip__img {
        height: 110px;
    }

    .tarifStrip__tag {
        border-radius: 12px;
        flex: 1 1 40%;
    }
}
/* =========================================================
   SMART DISPLAY PAGE (Prefix: sd-)
   ========================================================= */

.sdHero {
    padding: 26px 0 10px;
    text-align: center;
}

.sdHero__title {
    margin: 0 0 4px;
    font-size: var(--h2);
    line-height: 32px;
    font-weight: 900;
}

.sdHero__kicker {
    color: var(--primary);
    font-weight: 900;
    font-size: var(--small);
    margin-bottom: 10px;
}

.sdHero__sub {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* 2 eşit kart */
.sdCards {
    padding: 14px 0 18px;
}

.sdCards__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: stretch;
}

/* Kart yapısı: içerik az/çok olsa da eşit yükseklik */
.sdCard {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px 18px 14px;
    display: flex;
    flex-direction: column;
    min-height: 610px; /* desktop'ta iki kartı aynı boyda tutar */
}

.sdCard__head {
    text-align: center;
    padding-bottom: 8px;
}

.sdCard__name {
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
    font-size: var(--small);
}

.sdCard__price {
    font-weight: 900;
    color: var(--primary);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 6px;
}

    .sdCard__price span {
        font-size: 16px;
        font-weight: 800;
        color: var(--primary);
    }

.sdCard__meta {
    color: var(--muted);
    font-size: var(--caption);
}

.sdCard__media {
    margin: 12px auto 8px;
    width: 100%;
    max-width: 340px;
    display: flex;
    justify-content: center;
}

    .sdCard__media img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.sdCard__caption {
    margin: 10px 0 10px;
    text-align: center;
    color: var(--muted);
    font-size: var(--caption);
    font-weight: 800;
}

/* turuncu liste kutusu */
.sdCard__listWrap {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 14px;
    padding: 12px 12px;
    margin-top: 2px;
    /* EŞİTLİK İÇİN: kart içindeki “esneyen bölüm” */
    flex: 1;
    display: flex;
    align-items: flex-start;
}

/* radio icon bullet list (senin stilinle aynı) */
.sdBullets {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: var(--small);
    width: 100%;
}

    .sdBullets li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0;
        line-height: 1.35;
    }

        .sdBullets li::before {
            content: "";
            width: 14px;
            height: 14px;
            flex: 0 0 14px;
            margin-top: 3px;
            background: url("/asset/icon/radio-button-on.svg") no-repeat center / 14px 14px;
        }

.sdCard__foot {
    margin-top: 10px;
    text-align: center;
    font-size: var(--caption);
    color: var(--muted);
}

    .sdCard__foot b {
        color: var(--primary);
    }

/* Complement section */
.sdComplement {
    padding: 8px 0 18px;
}

.sdComplement__title {
    text-align: center;
    color: var(--muted);
    font-weight: 900;
    font-size: var(--small);
    margin: 0 0 10px;
}

.sdAddon {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 18px;
    align-items: start;
}

.sdAddon__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sdAddon__name {
    font-weight: 900;
    color: var(--text);
    font-size: var(--small);
}

.sdAddon__price {
    font-weight: 900;
    color: var(--primary);
    font-size: 22px;
    margin-top: 4px;
}

.sdAddon__meta {
    color: var(--muted);
    font-size: var(--caption);
    margin-top: 4px;
}

.sdAddon__img {
    width: 100%;
    max-width: 280px;
    display: flex;
    justify-content: center;
}

    .sdAddon__img img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.sdAddon__right {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 14px;
    padding: 12px 12px;
    margin-top: 80px;
}

.sdAddon__desc {
    text-align: center;
    font-size: var(--caption);
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 8px;
}

/* Compatible section */
.sdCompatible {
    padding: 10px 0 18px;
    text-align: center;
}

.sdCompatible__title {
    margin: 0 0 12px;
    font-size: var(--h3);
    font-weight: 900;
    color: var(--muted);
}

.sdCompatible__box {
    max-width: 720px;
    margin: 0 auto;
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 14px;
    padding: 12px 12px;
}

.sdCompatible__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    text-align: left;
    padding: 6px 10px;
}

.sdCompatible__item {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: var(--small);
}

    .sdCompatible__item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 14px;
        height: 14px;
        background: url("/asset/icon/radio-button-on.svg") no-repeat center / 14px 14px;
    }

.sdCompatible__note {
    margin: 30px 0 14px;
    color: var(--muted);
    font-size: var(--small);
}

.sdCompatible__hl {
    color: var(--primary);
    font-weight: 800;
}

/* CTA */
.sdCta {
    margin-top: 6px;
    text-align: center;
}

.sdCta__title {
    font-weight: 900;
    color: var(--muted);
    margin-bottom: 4px;
}

.sdCta__desc {
    color: var(--muted);
    font-size: var(--small);
    margin-bottom: 12px;
}

/* FAQ */
.sdFaq {
    margin: 14px 0 18px;
}

.sdFaq__title {
    text-align: center;
    color: var(--muted);
    font-weight: 900;
    margin: 0 0 12px;
}

.sdFaq__box {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 14px 14px;
}

.sdQa + .sdQa {
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: 10px;
    padding-top: 10px;
}

.sdQa__q {
    font-weight: 900;
    color: var(--text);
    font-size: var(--small);
}

.sdQa__a {
    margin-top: 6px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px) {
    .sdCards__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sdCard {
        min-height: auto; /* mobil/tablet'te doğal akış daha iyi */
    }

    .sdAddon {
        grid-template-columns: 1fr;
    }

    .sdCompatible__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .sdCard__price {
        font-size: 36px;
    }
}
/* =========================================================
   X-SCAN PAGE (Prefix: xs-)
   ========================================================= */

.xsHero {
    padding: 26px 0 10px;
    text-align: center;
}

.xsHero__title {
    margin: 0 0 4px;
    font-size: var(--h2);
    line-height: 32px;
    font-weight: 900;
}

.xsHero__kicker {
    color: var(--primary);
    font-weight: 900;
    font-size: var(--small);
    margin-bottom: 10px;
}

.xsHero__sub {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* Offer card */
.xsOffer {
    padding: 10px 0 12px;
}

.xsOffer__card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px;
}

.xsOffer__grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 18px;
    align-items: center;
}

.xsOffer__media {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
}

    .xsOffer__media img {
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: contain;
    }

.xsOffer__priceBox {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 16px;
    padding: 18px 18px;
    text-align: center;
}

.xsOffer__priceTitle {
    font-weight: 900;
    color: var(--text);
    font-size: var(--small);
    margin-bottom: 6px;
}

.xsOffer__price {
    font-weight: 900;
    color: var(--primary);
    font-size: 46px;
    line-height: 1;
    margin: 0 0 8px;
}

.xsOffer__price--small {
    font-size: 34px;
}

.xsOffer__meta {
    color: var(--muted);
    font-size: var(--caption);
}

.xsOffer__divider {
    height: 1px;
    background: rgba(0,0,0,.08);
    margin: 14px 0;
}

/* Two blocks */
.xsBlocks {
    padding: 14px 0 6px;
}

.xsBlocks__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.xsBlock {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 16px;
    padding: 14px 14px;
}

.xsBlock--outline {
    background: var(--surface);
    border: 2px solid rgba(243,106,47,.35);
}

.xsBlock__title {
    text-align: center;
    font-weight: 900;
    color: var(--muted);
    margin-bottom: 10px;
    font-size: var(--small);
}

/* radio icon list */
.xsList {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: var(--small);
}

    .xsList li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 9px 0;
        line-height: 1.35;
    }

        .xsList li::before {
            content: "";
            width: 14px;
            height: 14px;
            flex: 0 0 14px;
            margin-top: 3px;
            background: url("/asset/icon/radio-button-on.svg") no-repeat center / 14px 14px;
        }

/* Line + note */
.xsLine {
    margin: 18px 0 10px;
    text-align: center;
    color: var(--muted);
    font-size: var(--small);
}

.xsNote {
    margin: 0 0 18px;
    text-align: center;
    color: var(--muted);
    font-size: var(--small);
}

.xsNote__hl {
    color: var(--primary);
    font-weight: 800;
}

/* CTA */
.xsCta {
    margin: 0 0 18px;
    text-align: center;
    padding: 8px 0 6px;
}

.xsCta__title {
    margin: 0 0 6px;
    font-weight: 900;
    color: var(--muted);
}

.xsCta__desc {
    margin: 0 0 12px;
    font-size: var(--small);
    color: var(--muted);
}

.xsCta--bottom {
    margin-top: 10px;
}

/* FAQ */
.xsFaq {
    margin: 18px 0 18px;
}

.xsFaq__title {
    text-align: center;
    color: var(--muted);
    font-weight: 900;
    margin: 0 0 12px;
}

.xsFaq__box {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 14px 14px;
}

.xsQa + .xsQa {
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: 10px;
    padding-top: 10px;
}

.xsQa__q {
    font-weight: 900;
    color: var(--text);
    font-size: var(--small);
}

.xsQa__a {
    margin-top: 6px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* Teaser */
.xsTeaser {
    padding: 12px 0 18px;
    text-align: center;
}

.xsTeaser__price {
    font-weight: 900;
    font-size: 22px;
    color: var(--text);
}

.xsTeaser__note {
    margin-top: 6px;
    color: var(--muted);
    font-size: var(--small);
}

.xsTeaser__btn {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 980px) {
    .xsOffer__grid {
        grid-template-columns: 1fr;
    }

    .xsBlocks__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .xsOffer__media {
        min-height: auto;
    }
}

@media (max-width: 520px) {
    .xsOffer__price {
        font-size: 40px;
    }

    .xsOffer__price--small {
        font-size: 30px;
    }
}

/* =========================================================
   SUPPORT PAGE (Prefix: sup-)
   ========================================================= */

.supHero {
    padding: 26px 0 16px;
    text-align: center;
}

.supHero__title {
    margin: 0 0 6px;
    font-size: var(--h2);
    line-height: 32px;
    font-weight: 900;
}

.supHero__sub {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

.supHero__meta {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.supMeta {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 14px;
    padding: 10px 12px;
    min-width: 230px;
    text-align: left;
}

.supMeta__label {
    display: block;
    font-size: var(--caption);
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 2px;
}

.supMeta__value {
    display: block;
    color: var(--text);
    font-weight: 900;
    font-size: var(--small);
}

/* Quick cards */
.supQuick {
    padding: 10px 0 18px;
}

.supQuick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}

.supCard {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.supCard--primary {
    border-color: rgba(243,106,47,.35);
}

.supCard__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 12px;
}

    .supCard__icon img {
        width: 22px;
        height: 22px;
    }

.supCard__title {
    margin: 4px 0 0;
    font-size: var(--small);
    font-weight: 900;
    color: var(--text);
}

.supCard__text {
    margin: 0;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.45;
    flex: 1;
}

/* Contact box */
.supContact {
    padding: 8px 0 18px;
    margin-top: 20px;
}

.supContact__box {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 18px;
}

.supContact__head {
    text-align: center;
    margin-bottom: 14px;
}

.supContact__title {
    margin: 0 0 6px;
    font-size: var(--h3);
    font-weight: 900;
    color: var(--muted);
}

.supContact__sub {
    margin: 0 auto;
    max-width: 820px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

.supContact__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: stretch;
}

.supContactItem {
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.supContactItem__title {
    font-weight: 900;
    color: var(--text);
    font-size: var(--small);
}

.supContactItem__text {
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
    flex: 1;
}

.supLink {
    color: var(--primary-dark);
    font-weight: 900;
}

.supMuted {
    color: var(--muted);
    font-size: var(--caption);
}

/* Remote */
.supRemote {
    padding: 8px 0 18px;
}

.supRemote__grid {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 14px;
    align-items: center;
}

.supRemote__title {
    margin: 0 0 6px;
    font-size: var(--h3);
    font-weight: 900;
    color: var(--muted);
}

.supRemote__text {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

.supRemote__right {
    display: flex;
    justify-content: center;
}

.supRemote__img {
    max-width: 260px;
    height: auto;
}

/* FAQ */
.supFaq {
    padding: 6px 0 18px;
}

.supFaq__title {
    text-align: center;
    color: var(--muted);
    font-weight: 900;
    margin: 0 0 12px;
}

.supFaq__box {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 14px;
}

.supQa + .supQa {
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: 10px;
    padding-top: 10px;
}

.supQa__q {
    font-weight: 900;
    color: var(--text);
    font-size: var(--small);
}

.supQa__a {
    margin-top: 6px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

.supFaq__more {
    margin-top: 12px;
    text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
    .supQuick__grid {
        grid-template-columns: 1fr 1fr;
    }

    .supContact__grid {
        grid-template-columns: 1fr;
    }

    .supRemote__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .supRemote__left .btn {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .supQuick__grid {
        grid-template-columns: 1fr;
    }

    .supMeta {
        width: 100%;
    }
}

/* =========================================================
   TEMOIGNAGES LIST (Prefix: tm-)
   ========================================================= */

.tmHero {
    padding: 22px 0 10px;
    text-align: center;
}

.tmHero__title {
    margin: 0 0 6px;
    font-size: var(--h2);
    font-weight: 900;
    line-height: 32px;
}

.tmHero__kicker {
    color: var(--primary);
    font-weight: 900;
    font-size: var(--small);
    margin-bottom: 10px;
}

.tmHero__sub {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* Filter buttons row */
.tmFilter {
    padding: 10px 0 14px;
}

.tmFilter__row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tmFilter__btn {
    height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid rgba(243,106,47,.45);
    background: transparent;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: var(--small);
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

    .tmFilter__btn:hover {
        background: var(--primary-light-plus);
        border-color: var(--primary);
        transform: translateY(-1px);
    }

    .tmFilter__btn.is-active {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
        box-shadow: 0 10px 22px rgba(243,106,47,.20);
    }

/* Grid cards */
.tmGrid {
    padding: 10px 0 10px;
}

.tmGrid__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tmCard {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

    .tmCard.is-hidden {
        display: none;
    }

.tmCard__media {
    display: block;
    height: 210px;
    overflow: hidden;
}

    .tmCard__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .25s ease;
    }

.tmCard:hover .tmCard__media img {
    transform: scale(1.03);
}

.tmCard__body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tmCard__title {
    font-weight: 900;
    font-size: 16px;
    line-height: 22px;
    color: var(--text);
    transition: color .15s ease;
}

    .tmCard__title:hover {
        color: var(--primary);
    }

.tmCard__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: var(--caption);
}

.tmCard__dot {
    opacity: .7;
}

.tmCard__tag {
    color: var(--primary-dark);
    font-weight: 800;
}

.tmCard__text {
    margin: 0;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* Pagination UI */
.tmPager {
    margin: 18px 0 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tmPager__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.10);
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    font-size: var(--small);
    transition: border-color .15s ease, background .15s ease, transform .15s ease, color .15s ease;
}

    .tmPager__link:hover {
        border-color: rgba(243,106,47,.55);
        background: var(--primary-light-plus);
        transform: translateY(-1px);
        color: var(--primary-dark);
    }

    .tmPager__link.is-active {
        background: rgba(0,0,0,.06);
        border-color: rgba(0,0,0,.06);
        color: var(--text);
    }

    .tmPager__link.tmPager__link--accent {
        border-color: var(--primary);
        color: var(--primary-dark);
    }

    .tmPager__link.is-disabled {
        opacity: .45;
        pointer-events: none;
    }

.tmPager__dots {
    color: var(--muted);
    font-weight: 900;
    padding: 0 6px;
}

/* Responsive grid */
@media (max-width: 1040px) {
    .tmGrid__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .tmGrid__inner {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   TEMOIGNAGE DETAIL (Prefix: tmd-)
   ========================================================= */

.tmdHeader {
    padding: 22px 0 10px;
}

.tmdBack {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: var(--small);
    margin-bottom: 12px;
}

    .tmdBack:hover {
        color: var(--primary-dark);
    }

.tmdTitle {
    margin: 0 0 8px;
    font-size: var(--h2);
    line-height: 32px;
    font-weight: 900;
}

.tmdMeta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: var(--caption);
}

.tmdDot {
    opacity: .7;
}

.tmdTag {
    color: var(--primary-dark);
    font-weight: 800;
}

.tmdCard {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 26px;
}

.tmdMedia {
    height: 360px;
    overflow: hidden;
}

    .tmdMedia img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.tmdContent {
    padding: 16px 18px 10px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.7;
}

    .tmdContent p {
        margin: 0 0 12px;
    }

.tmdCta {
    padding: 14px 18px 18px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,.06);
}

.tmdCta__title {
    font-weight: 900;
    color: var(--muted);
    margin-bottom: 6px;
}

.tmdCta__sub {
    color: var(--muted);
    font-size: var(--small);
    margin-bottom: 12px;
}

@media (max-width: 520px) {
    .tmdMedia {
        height: 240px;
    }
}

/* =========================================================
   BLOG CATEGORY DROPDOWN (Prefix: bg-)
   ========================================================= */

.bgFilter {
    padding: 6px 0 14px;
}

.bgFilter__row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

/* DDL container */
.bgDdl {
    position: relative;
    width: min(520px, 100%);
}

.bgDdl__label {
    display: block;
    font-size: var(--caption);
    color: var(--muted);
    font-weight: 800;
    margin: 0 0 6px;
}

.bgDdl__btn {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.10);
    background: var(--surface);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    cursor: pointer;
    transition: border-color .15s ease, transform .15s ease;
}

    .bgDdl__btn:hover {
        border-color: rgba(243,106,47,.45);
        transform: translateY(-1px);
    }

.bgDdl__value {
    color: var(--text);
    font-weight: 700;
    font-size: var(--small);
}

.bgDdl__chev {
    color: var(--muted);
    font-size: 18px;
    transition: transform .15s ease;
}

.bgDdl.is-open .bgDdl__chev {
    transform: rotate(180deg);
}

/* menu */
.bgDdl__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none;
    z-index: 80;
}

/* open */
.bgDdl.is-open .bgDdl__menu {
    display: block;
}

/* items */
.bgDdl__item {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--text);
    font-size: var(--small);
}

    .bgDdl__item:hover {
        background: var(--primary-light-plus);
    }

    .bgDdl__item.is-active {
        background: rgba(243,106,47,.10);
        border-left: 3px solid var(--primary);
        padding-left: 11px; /* border-left telafisi */
    }

/* optional hint */
.bgFilter__hint {
    color: var(--muted);
    font-size: var(--caption);
    padding-bottom: 6px;
}
/* BLOG SEARCH (Prefix: bgSearch-) */
.bgSearch {
    width: min(520px, 100%);
}

.bgSearch__label {
    display: block;
    font-size: var(--caption);
    color: var(--muted);
    font-weight: 800;
    margin: 0 0 6px;
}

.bgSearch__wrap {
    position: relative;
}

.bgSearch__input {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.10);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 0 44px 0 14px; /* sağda clear için yer */
    font-size: var(--small);
    color: var(--text);
    outline: none;
    transition: border-color .15s ease, transform .15s ease;
}

    .bgSearch__input:hover {
        border-color: rgba(243,106,47,.45);
        transform: translateY(-1px);
    }

    .bgSearch__input:focus {
        border-color: rgba(243,106,47,.75);
    }

.bgSearch__clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.08);
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    display: none;
}

    .bgSearch__clear:hover {
        background: var(--primary-light-plus);
        color: var(--primary-dark);
        border-color: rgba(243,106,47,.35);
    }
/* =========================================================
   FAQ PAGE (Prefix: fq-)
   ========================================================= */

.fqHero {
    padding: 22px 0 6px;
    text-align: center;
}

.fqHero__title {
    margin: 0 0 6px;
    font-size: var(--h2);
    font-weight: 900;
    line-height: 32px;
}

.fqHero__sub {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.55;
}

/* Filters row */
.fqFilter {
    padding: 10px 0 12px;
}

.fqFilter__row {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}

/* List */
.fqList {
    padding: 8px 0 10px;
    max-width: 980px;
    margin: 0 auto;
}

.fqItem {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

    .fqItem + .fqItem {
        margin-top: 12px;
    }

/* Question button */
.fqQ {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}

.fqQ__text {
    font-weight: 900;
    font-size: var(--small);
    color: var(--text);
}

.fqQ__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.08);
    background: var(--surface);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.fqItem.is-open .fqQ__icon {
    transform: rotate(180deg);
    background: var(--primary-light-plus);
    border-color: rgba(243,106,47,.25);
    color: var(--primary-dark);
}

.fqQ:hover .fqQ__icon {
    border-color: rgba(243,106,47,.35);
}

/* Answer */
.fqA {
    padding: 0 16px 14px;
    color: var(--muted);
    font-size: var(--small);
    line-height: 1.65;
}

@media (max-width: 520px) {
    .fqList {
        padding-top: 4px;
    }
}

/* =========================================================
   INTEGRATIONS & IMPORTS (Prefix: ii-)
   ========================================================= */

.iiHero {
    padding: 22px 0 10px;
    text-align: center;
}

.iiHero__title {
    margin: 0 0 6px;
    font-size: var(--h2);
    font-weight: 900;
    line-height: 32px;
}

.iiHero__kicker {
    color: var(--primary);
    font-weight: 900;
    font-size: var(--small);
    line-height: 1.35;
}

.iiHero__sub {
    margin: 10px auto 0;
    max-width: 760px;
    color: var(--muted);
    font-size: var(--caption);
    line-height: 1.55;
}

/* 6 tiles */
.iiTiles {
    padding: 14px 0 10px;
}

.iiTiles__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    max-width: 860px;
    margin: 0 auto;
}

.iiTile {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.iiTile__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

    .iiTile__icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

.iiTile__text {
    font-size: var(--small);
    color: var(--muted);
    font-weight: 800;
}

/* Partners box */
.iiPartners {
    padding: 16px 0 6px;
    text-align: center;
}

.iiPartners__title {
    margin: 0 0 10px;
    font-size: var(--small);
    font-weight: 900;
    color: var(--muted);
}

.iiPartners__box {
    max-width: 640px;
    margin: 0 auto;
    background: var(--primary-light-plus);
    border: 1px solid rgba(243,106,47,.18);
    border-radius: 14px;
    padding: 12px 12px;
}

.iiPartners__list {
    list-style: none;
    margin: 0;
    padding: 6px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    text-align: left;
    color: var(--muted);
    font-size: var(--small);
}

    .iiPartners__list li {
        position: relative;
        padding-left: 22px;
        font-weight: 700;
    }

        .iiPartners__list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            width: 14px;
            height: 14px;
            background: url("/asset/icon/radio-button-on.svg") no-repeat center / 14px 14px;
        }

/* Process card */
.iiProcess {
    padding: 14px 0 10px;
    text-align: center;
    margin-bottom: 20px;
}

.iiProcess__card {
    max-width: 420px;
    margin: 0 auto;
    margin-bottom: 40px;
    background: var(--surface);
    border: 1px solid rgba(243,106,47,.35);
    border-radius: 14px;
    padding: 14px 16px;
}

.iiStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.iiStep__text {
    color: var(--text);
    font-size: var(--small);
    font-weight: 700;
}

.iiStep__arrow {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: .9;
}

.iiStep--last {
    padding-bottom: 4px;
}

.iiProcess__note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: var(--caption);
}

.iiProcess__hl {
    color: var(--primary);
    font-weight: 900;
}

/* CTA */
.iiCta {
    padding: 10px 0 18px;
    text-align: center;
}

.iiCta__title {
    font-weight: 900;
    color: var(--muted);
    margin-bottom: 4px;
}

.iiCta__sub {
    color: var(--muted);
    font-size: var(--small);
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 980px) {
    .iiTiles__grid {
        grid-template-columns: 1fr;
    }

    .iiPartners__list {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ABOUT / CONTENT PAGES
   ========================= */

.contentPage {
    padding: 40px 0 64px;
}

.contentHero {
    text-align: center;
    margin: 8px 0 22px;
}

.contentHero__title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--title, #0f172a);
    letter-spacing: -0.02em;
}

.contentHero__subtitle {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted, #64748b);
    font-size: 14px;
    line-height: 1.6;
}

/* Single readable card */
.contentCard {
    max-width: 980px;
    margin: 0 auto;
    background: var(--surface, #ffffff);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(2, 6, 23, .06);
    overflow: hidden;
}

.contentProse {
    padding: 26px 26px;
    color: var(--text, #0f172a);
    font-size: 14px;
    line-height: 1.85;
}

    .contentProse p {
        margin: 0 0 14px;
        color: var(--text, #0f172a);
    }

    .contentProse h2 {
        margin: 18px 0 10px;
        font-size: 18px;
        line-height: 1.35;
        font-weight: 800;
        color: var(--title, #0f172a);
    }

    .contentProse h3 {
        margin: 16px 0 8px;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 800;
        color: var(--title, #0f172a);
    }

.contentDivider {
    border: 0;
    height: 1px;
    background: rgba(15, 23, 42, .08);
    margin: 18px 0;
}

.contentProse ul {
    margin: 8px 0 14px 18px;
    padding: 0;
}

.contentProse li {
    margin: 6px 0;
    color: var(--text, #0f172a);
}

/* Highlight line (C’est le temps.) */
.contentEmphasis {
    margin: 10px 0 12px;
    font-weight: 900;
    font-size: 18px;
    color: var(--accent, #f36b2a);
}

/* Responsive padding */
@media (max-width: 640px) {
    .contentPage {
        padding: 26px 0 48px;
    }

    .contentHero__title {
        font-size: 28px;
    }

    .contentCard {
        border-radius: 14px;
    }

    .contentProse {
        padding: 18px 16px;
    }
}

/* JOBS */
.jobs {
    padding: 26px 0 46px;
}

/* HERO */
.jobsHero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: center;
    margin: 8px 0 26px;
}

.jobsHero__media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    background: var(--surface);
}

    .jobsHero__media img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        display: block;
    }

.jobsHero__content {
    padding: 6px 0;
}

.jobsHero__title {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text);
}

.jobsHero__lead {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.55;
}

.jobsHero__bullets {
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--text);
}

    .jobsHero__bullets li {
        margin: 6px 0;
    }

/* SECTIONS */
.jobsSection {
    margin: 28px 0;
}

.sectionHead {
    text-align: center;
    margin: 0 0 18px;
}

.sectionHead__title {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
}

.sectionHead__sub {
    margin: 0;
    color: var(--muted);
}

/* GRID */
.jobsGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

/* CARD */
.jobCard {
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.jobCard--muted {
    background: #fff;
}

.jobCard__top {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.jobCard__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.jobCard__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,120,60,.12);
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.jobCard__text {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.55;
}

.jobCard__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

    .jobCard__meta span {
        font-size: 12px;
        color: var(--text);
        background: rgba(0,0,0,.05);
        border: 1px solid rgba(0,0,0,.06);
        border-radius: 999px;
        padding: 6px 10px;
    }

.jobCard__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
}

    .jobCard__cta:hover {
        text-decoration: underline;
    }

/* APPLY FORM */
.applyCard {
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.applyGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
}

.field--full {
    grid-column: 1 / -1;
}

.field__label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 6px;
}

.field__control {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    padding: 0 12px;
    outline: none;
    color: var(--text);
}

    .field__control:focus {
        border-color: rgba(255,120,60,.55);
        box-shadow: 0 0 0 4px rgba(255,120,60,.12);
    }

.field__control--area {
    height: 130px;
    padding: 12px;
    resize: vertical;
}

.field__control--file {
    padding: 9px 12px;
    height: auto;
}

.field__hint {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.applyActions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 44px;
    align-items: center;
}

.applyNote {
    margin: 20px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .jobsHero {
        grid-template-columns: 1fr;
    }

    .jobsGrid {
        grid-template-columns: 1fr;
    }

    .applyGrid {
        grid-template-columns: 1fr;
    }

    .jobsHero__media img {
        height: 260px;
    }
}

.file_uploads {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .file-upload input[type="file"] {
        display: none;
    }

.file-upload__btn {
    padding: 10px 16px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
    transition: all .2s ease;
}

    .file-upload__btn:hover {
        background: var(--primary);
        color: #fff;
    }

.file-upload__name {
    font-size: 14px;
    color: #666;
}

/* =========================
   NOTRE EQUIPE (REFRESH)
   ========================= */

/* grids: leaders için de ortalı ve daha geniş nefes */
.teamHero{
    text-align:center;
}
.teamSection__title {
    text-align: center;
}
.teamGrid {
    display: grid;
    gap: 16px;
    align-items: stretch;
}

.teamGrid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1100px;
    margin: 0 auto;
}

.teamGrid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 980px) {
    .teamGrid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .teamGrid--2, .teamGrid--3 {
        grid-template-columns: 1fr;
    }
}
/* person card - vertical, centered */
.personCard {
    border: 1px solid rgba(0,0,0,.06);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,.06);
    text-align: center;
    padding: 18px 16px 16px;
}

/* avatar container */
.personCard__media {
    width: 170px;
    height: 170px;
    margin: 0 auto 12px;
    border-radius: 999px; /* daire */
    overflow: hidden;
    background: #f4f4f4;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

/* image: cover but centered */
.personCard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* body */
.personCard__body {
    padding: 0;
}

.personCard__name {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
}

.personCard__role {
    margin: 0;
    color: var(--muted);
    font-size: var(--small);
}

/* Leaders kartlarını biraz daha “premium” gösterelim */
.teamSection:first-of-type .personCard__media {
    width: 148px;
    height: 148px;
}

/* responsive */
@media (max-width: 980px) {
    .teamGrid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .teamGrid--2 {
        grid-template-columns: 1fr;
    }

    .teamGrid--3 {
        grid-template-columns: 1fr;
    }

    .personCard__media {
        width: 120px;
        height: 120px;
    }
}

/* =========================
   JOBS FORM VALIDATION
   ========================= */
.field__error {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.25;
    color: #d0342c;
    display: none;
}

.field.is-error .field__control,
.file-upload.is-error .file-upload__btn {
    border-color: #d0342c !important;
    outline: none;
}

    .field.is-error .field__control:focus {
        box-shadow: 0 0 0 3px rgba(208, 52, 44, 0.18);
    }

.field.is-error .field__error,
.file-upload.is-error .field__error {
    display: block;
}

.jmFormError {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(208, 52, 44, 0.35);
    background: rgba(208, 52, 44, 0.08);
    color: #7c1d18;
    margin: 12px 0 16px;
}

/* =========================
   SUCCESS MODAL (CARD)
   ========================= */
.jmModal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

    .jmModal.is-open {
        display: block;
    }

.jmModal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.jmModal__card {
    position: relative;
    max-width: 520px;
    margin: 18vh auto 0;
    background: #fff;
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.jmModal__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.jmModal__text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.92;
    margin-bottom: 14px;
}

.jmModal__btn {
    width: 100%;
}
/* Contact: form + info yan yana */
.contactGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    
}

@media(max-width:900px) {
    .contactGrid {
        grid-template-columns: 1fr
    }
}
.contactInfoCard {
    display: flex;
    flex-direction: column;
    justify-content: center; /* dikey */
    text-align: center; /* yatay */
}
.contactInfoCard__title {
    font-weight: 700;
    margin-bottom: 12px; 
}

.contactInfoCard__line {
    margin: 10px 0;

}

.contactInfoCard__link {
    text-decoration: none
}
/* ===============================
   BLOG TAGS
   =============================== */

.blogTags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.blogTag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1;
    border-radius: 999px;
    background: #f3f4f6; /* açık gri */
    color: #374151; /* koyu gri */
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: background-color .2s ease, color .2s ease, transform .15s ease, box-shadow .15s ease;
}

    .blogTag:hover {
        background: #ffede5; /* Slytio turuncuya yakın soft */
        color: #ea580c; /* turuncu vurgu */
        border-color: #fed7aa;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0,0,0,.06);
    }

    .blogTag:active {
        transform: translateY(0);
        box-shadow: none;
    }
.fqQ__perma {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    opacity: .25;
    text-decoration: none;
    font-size: 14px;
}

    .fqQ__perma:hover,
    .fqQ__perma:focus {
        opacity: .85;
    }
.lang__menu {
    color: var(--text);
}

.lang__item {
    color: var(--text);
    -webkit-text-fill-color: var(--text); /* iOS için ekstra garanti */
}

    /* Dokununca da düzgün görünsün */
    .lang__item:active,
    .lang__item:focus {
        background: var(--primary-light-plus);
        color: var(--primary-dark);
        -webkit-text-fill-color: var(--primary-dark);
    }