/* =========================================================
   TRINKPAY - ANA STİL DOSYASI
   ========================================================= */

/* ---------- KÖK DEĞİŞKENLER (RENK / FONT) ---------- */
:root {
    --primary: #072e28;       /* Ana yeşil - baskın renk (%80) */
    --primary-hover: #0a3f37; /* Yeşilin biraz daha açık/koyu hover tonu */
    --accent: #2b7aa1;        /* Mavi - aksan/vurgu rengi (%20) */
    --accent-hover: #1f6b90;  /* Mavinin hover tonu */
    --secondary: #3D3D3F;
    --background: #FFFFFF;
    --section: #F5F7FA;
    --heading: #1E1E1E;
    --text: #6C757D;
    --border: #E5E7EB;

    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    --header-height: 76px;
    --container-width: 1200px;
    --radius: 8px;
    --transition: 0.2s ease-in-out;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
}

/* Header/footer partial'ları yüklenip sayfa hazır olduğunda main.js
   tarafından eklenir. Bu sayede header geç gelirse içerik header'sız
   görünmez; her şey birlikte, tek seferde belirir. */
body.tp-ready {
    opacity: 1;
    transition: opacity 0.25s ease-in-out;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
}

/* ---------- TİPOGRAFİ ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    font-family: var(--font-body);
    color: var(--text);
}

/* ---------- GENEL YARDIMCI SINIFLAR ---------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

main {
    min-height: 40vh;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color var(--transition), color var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent);
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* =========================================================
   TOP HEADER (üst bilgi çubuğu - yeşil)
   ========================================================= */
.top-header {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.9);
}

.top-header-inner {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.top-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    margin-right: auto;
    transition: color var(--transition);
}

.top-header-phone:hover {
    color: var(--accent);
}

.top-header-phone svg {
    width: 16px;
    height: 16px;
}

.top-header-links {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.top-header-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    white-space: nowrap;
}

.top-header-links a:hover {
    color: var(--accent);
}

/* =========================================================
   HEADER (ana menü - marka yeşili)
   ========================================================= */
.site-header {
    background-color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header .logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.site-header .logo img {
    height: 54px;
    width: auto;
}

/* ---------- HEADER SAĞ TARAF BUTONLARI ---------- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.header-btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.header-btn-outline:hover {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.header-btn-solid {
    background-color: var(--primary);
    color: #fff;
    border: 1.5px solid var(--primary);
}

.header-btn-solid:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Header (yeşil zemin) üzerindeki butonlar - kontrast için beyaz/mavi */
.header-actions .header-btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.header-actions .header-btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
    border-color: #fff;
}

.header-actions .header-btn-solid {
    background-color: var(--accent);
    border-color: var(--accent);
}

.header-actions .header-btn-solid:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* ---------- MOBİL MENÜ EK BLOK (masaüstünde gizli) ---------- */
.mobile-nav-extra {
    display: none;
}

/* ---------- MENÜ YANI DİL SEÇİCİ (Google Translate) ---------- */
.nav-lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.nav-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    transition: background-color var(--transition);
}

.nav-lang-toggle:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.nav-lang-toggle svg {
    width: 16px;
    height: 16px;
}

.nav-lang-toggle .chevron {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.nav-lang-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.nav-lang-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background-color: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(7, 46, 40, 0.15);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 1100;
}

.nav-lang-panel.is-open {
    display: flex;
}

.nav-lang-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--heading);
    font-size: 0.9rem;
    transition: background-color var(--transition), color var(--transition);
}

.nav-lang-option:hover {
    background-color: var(--section);
    color: var(--accent);
}

.nav-lang-option.is-active {
    color: var(--accent);
    font-weight: 600;
}

/* ---------- GOOGLE TRANSLATE - görsel widget'ı tamamen gizle ---------- */
/* Google'ın kendi seçim kutusunu (select) ekrandan görünmez şekilde saklıyoruz;
   dil değişimi bu gizli elemanın "change" olayı tetiklenerek yapılıyor (bkz. js/main.js). */
.gt-hidden-widget,
#google_translate_element {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Google Translate sayfayı çevirince body'ye eklediği üst boşluğu iptal et */
body {
    top: 0 !important;
}

/* Üstte çıkan "Google Çeviri ile çevrildi" banner'ı ve ilgili tüm arayüz parçaları */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
#goog-gt-tt {
    display: none !important;
    background: none !important;
    box-shadow: none !important;
}

.skiptranslate {
    display: none !important;
}

iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

/* ---------- NAV ---------- */
.main-nav {
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
}

.main-nav > ul > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav > ul > li > a,
.main-nav > ul > li > button.nav-link-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: color var(--transition), background-color var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > button.nav-link-toggle:hover {
    color: #fff;
    background-color: transparent;
}

.main-nav > ul > li.active > a,
.main-nav > ul > li.active > button.nav-link-toggle {
    position: relative;
    color: #fff;
    background-color: transparent;
}

.nav-link-toggle .chevron {
    width: 20px;
    height: 20px;
    padding: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    transition: transform var(--transition);
}

.nav-item.has-dropdown.open .nav-link-toggle .chevron {
    transform: rotate(180deg);
}

/* ---------- DROPDOWN / MEGA MENU ---------- */
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(7, 46, 40, 0.15);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.nav-item.has-dropdown.open .dropdown-panel {
    display: flex;
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color var(--transition), color var(--transition);
}

.dropdown-panel a:hover {
    background-color: transparent;
    color: var(--accent);
}

.dropdown-panel a.active-sublink {
    color: var(--accent);
    font-weight: 600;
}

.dropdown-panel a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
}

/* ---------- ÜRÜNLER MEGA MENÜ ---------- */
.mega-menu {
    width: 700px;
    left: 50%;
    transform: translateX(-50%);
    padding: 24px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 28px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    border-radius: 10px;
    transition: background-color var(--transition);
}

.mega-menu-item:hover {
    background-color: transparent;
}

.mega-menu-item:hover .mega-menu-title {
    color: var(--accent);
}

.mega-menu-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-menu-icon svg {
    width: 26px;
    height: 26px;
}

.mega-menu-icon.icon-blue {
    background-color: #E3F0FA;
    color: var(--accent);
}

.mega-menu-icon.icon-green {
    background-color: #E1F3EC;
    color: var(--primary-hover);
}

.mega-menu-icon.icon-orange {
    background-color: #FCEEE0;
    color: #C9791F;
}

.mega-menu-icon.icon-purple {
    background-color: #EEE7FB;
    color: #7952B3;
}

.mega-menu-text {
    display: flex;
    flex-direction: column;
    padding-top: 2px;
}

.mega-menu-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--heading);
}

.mega-menu-subtitle {
    font-size: 0.8rem;
    color: var(--text);
    margin-top: 2px;
}

.mega-menu-item.active-sublink {
    background-color: var(--section);
}

.mega-menu-item.active-sublink .mega-menu-title {
    color: var(--accent);
}

/* ---------- MOBİL MENÜ TOGGLE ---------- */
.mobile-nav-toggle {
    display: none;
    color: #fff;
}

@media (max-width: 900px) {
    .top-header {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    /* Menü açıkken hamburger ikonu X'e döner (bkz. js/partials.js) */
    .mobile-nav-toggle[aria-expanded="true"] {
        color: #fff;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #F3F5F7;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        height: calc(100vh - var(--header-height));
        display: block;
    }

    .main-nav.mobile-open {
        transform: translateX(0);
    }

    /* ---- Ana menü kartı (beyaz, yuvarlak köşeli) ---- */
    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        margin: 16px;
        padding: 4px 16px;
        gap: 0;
        background-color: #fff;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(7, 46, 40, 0.06);
    }

    .main-nav > ul > li {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid var(--border);
    }

    .main-nav > ul > li:last-child {
        border-bottom: none;
    }

    .main-nav > ul > li > a,
    .main-nav > ul > li > button.nav-link-toggle {
        color: var(--heading);
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1rem;
        justify-content: space-between;
        padding: 18px 4px;
        border-radius: 0;
        background-color: transparent;
    }

    .main-nav > ul > li > a:hover,
    .main-nav > ul > li > button.nav-link-toggle:hover {
        color: var(--accent);
        background-color: transparent;
    }

    .main-nav > ul > li.active > a,
    .main-nav > ul > li.active > button.nav-link-toggle {
        color: var(--accent);
        background-color: transparent;
    }

    .main-nav > ul > li.active > a::after,
    .main-nav > ul > li.active > button.nav-link-toggle::after {
        content: none;
    }

    /* Chevron ikonunu marka rengi (primary) tonunda bir daire içine al */
    .nav-link-toggle .chevron {
        width: 26px;
        height: 26px;
        padding: 5px;
        border-radius: 50%;
        background-color: rgba(7, 46, 40, 0.08);
        color: var(--primary);
    }

    .main-nav > ul > li.has-dropdown.open > .nav-link-toggle {
        position: sticky;
        top: 0;
        z-index: 3;
        background-color: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 10px rgba(7, 46, 40, 0.06);
    }

    .header-actions {
        display: none;
    }

    /* Masaüstü dil seçici mobilde gizlenir, yerine mobil menü içindeki
       .mobile-lang-switcher (aşağıda) kullanılır. */
    .nav-lang-switcher {
        display: none;
    }

    .dropdown-panel {
        position: static;
        box-shadow: none;
        border: none;
        background-color: var(--section);
        border-radius: 10px;
        display: none;
        min-width: 0;
        margin: 0 0 12px;
    }

    .nav-item.has-dropdown.open .dropdown-panel {
        display: flex;
    }

    .dropdown-panel a {
        color: var(--primary);
    }

    .dropdown-panel a:hover,
    .dropdown-panel a.active-sublink {
        background-color: rgba(0, 82, 204, 0.08);
        color: var(--accent);
    }

    .mega-menu {
        width: auto;
        left: 0;
        transform: none;
        padding: 4px 0 12px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mega-menu-item:hover {
        background-color: var(--section);
    }

    .mega-menu-title {
        color: var(--heading);
    }

    .mega-menu-subtitle {
        color: var(--text);
    }

    /* ---- Mobil ek blok: iletişim / dil / aksiyon butonları ---- */
    .mobile-nav-extra {
        display: flex;
        flex-direction: column;
        margin: 0 16px 24px;
        padding-top: 4px;
    }

    .mobile-nav-phone {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--accent);
        font-weight: 700;
        font-size: 1rem;
        padding: 12px 4px;
    }

    .mobile-nav-phone svg {
        width: 20px;
        height: 20px;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 8px;
    }

    .mobile-nav-links a {
        color: var(--primary);
        font-weight: 500;
        font-size: 0.95rem;
        padding: 10px 4px;
    }

    .mobile-lang-switcher {
        align-self: stretch;
        margin-bottom: 4px;
    }

    .mobile-nav-lang {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        color: var(--heading);
        font-weight: 500;
        font-size: 0.9rem;
        padding: 12px 4px;
    }

    .mobile-nav-lang svg {
        width: 18px;
        height: 18px;
        color: var(--accent);
    }

    .mobile-nav-lang .chevron {
        width: 16px;
        height: 16px;
        margin-left: auto;
        transition: transform var(--transition);
    }

    .mobile-nav-lang[aria-expanded="true"] .chevron {
        transform: rotate(180deg);
    }

    .mobile-lang-panel {
        display: none;
        flex-direction: column;
        gap: 2px;
        background-color: var(--section);
        border-radius: 10px;
        padding: 4px;
        margin: 0 0 8px;
    }

    .mobile-lang-panel.is-open {
        display: flex;
    }

    .mobile-lang-option {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 12px;
        border-radius: 6px;
        color: var(--heading);
        font-size: 0.9rem;
    }

    .mobile-lang-option:hover,
    .mobile-lang-option.is-active {
        background-color: rgba(0, 82, 204, 0.08);
        color: var(--accent);
    }

    .mobile-nav-actions {
        display: flex;
        gap: 12px;
        margin-top: 12px;
    }

    .mobile-nav-actions .header-btn {
        flex: 1;
    }
}

/* =========================================================
   ANASAYFA - HERO
   ========================================================= */
.hero {
    padding: 64px 0 88px;
    overflow: hidden;
    background-color: #F5F7FA;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* ---------- HERO SLIDER (mekanik) ---------- */
.hero-slider {
    position: relative;
}

.hero-slider-viewport {
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    width: 100%;
    cursor: grab;
    user-select: none;
    transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slider-track.is-dragging {
    cursor: grabbing;
}

.hero-slider-track img {
    pointer-events: none;
    -webkit-user-drag: none;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

.hero-media {
    height: 380px;
}

.hero-media img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: contain;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.hero-slider-dot {
    width: 28px;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 2px;
    background-color: var(--border);
    cursor: pointer;
    transition: background-color var(--transition), width var(--transition);
}

.hero-slider-dot:hover {
    background-color: var(--accent-hover);
}

.hero-slider-dot.is-active {
    width: 40px;
    background-color: var(--accent);
}

.hero-content {
    max-width: 540px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
}

.hero-title-line--accent {
    color: var(--accent);
    font-weight: 600;
}

.hero-title-line--primary {
    color: var(--primary);
    font-weight: 800;
}

.hero-desc {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.hero-callback {
    font-size: 1rem;
    color: var(--heading);
    margin-bottom: 36px;
}

.hero-callback a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero-callback a:hover {
    color: var(--accent-hover);
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-cta-buttons .btn {
    padding: 14px 28px;
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .hero {
        padding: 40px 0 56px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-media {
        order: -1;
        height: 260px;
    }

    .hero-media img {
        max-height: 260px;
    }

    .hero-content {
        max-width: none;
    }

    .hero-title {
        font-size: 2.25rem;
    }
}

/* =========================================================
   ANASAYFA - İSTATİSTİKLER (stats)
   ========================================================= */
.stats {
    padding: 24px 0 96px;
}

.stats-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.stats-header h2 {
    margin-bottom: 14px;
}

.stats-header p {
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
}

.stat-card {
    background-color: var(--section);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(7, 46, 40, 0.08);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(7, 46, 40, 0.08);
    color: var(--primary);
}

.stat-icon svg {
    width: 26px;
    height: 26px;
}

.stat-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.1;
    color: var(--heading);
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.stat-value span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

/* ---------- RENKLİ VARYANTLAR (primary / accent zeminli kartlar) ---------- */
.stat-card--primary,
.stat-card--accent {
    border: none;
}

.stat-card--primary {
    background-color: var(--primary);
}

.stat-card--accent {
    background-color: var(--accent);
}

.stat-card--primary .stat-icon,
.stat-card--accent .stat-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.stat-card--primary .stat-value,
.stat-card--accent .stat-value {
    color: #fff;
}

.stat-card--primary .stat-value span,
.stat-card--accent .stat-value span {
    color: rgba(255, 255, 255, 0.75);
}

.stat-card--primary .stat-label,
.stat-card--accent .stat-label {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    .stats {
        padding: 16px 0 64px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-header {
        margin-bottom: 32px;
    }
}

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

    .stat-card {
        align-items: center;
        text-align: center;
    }

    .stat-value {
        justify-content: center;
    }
}

/* =========================================================
   ANASAYFA - ÜRÜN / ÇÖZÜM SEKMELERİ (solutions)
   ========================================================= */
.solutions {
    padding: 0 0 96px;
}

.solutions-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.solutions-header h2 {
    margin-bottom: 14px;
}

.solutions-header p {
    font-size: 1rem;
}

/* ---------- SEKME BAŞLIKLARI ---------- */
.solutions-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.solutions-tab {
    position: relative;
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    white-space: nowrap;
    transition: color var(--transition);
}

.solutions-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.solutions-tab:hover {
    color: var(--heading);
}

.solutions-tab.is-active {
    color: var(--accent);
}

.solutions-tab.is-active::after {
    transform: scaleX(1);
}

/* ---------- SEKME PANELLERİ ---------- */
.solutions-panel {
    display: none;
}

.solutions-panel.is-active {
    display: block;
    animation: solutionsFadeIn 0.35s ease-in-out;
}

@keyframes solutionsFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ---------- ÇÖZÜM KARTI ---------- */
.solution-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.solution-card:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 32px rgba(7, 46, 40, 0.08);
    transform: translateY(-3px);
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.solution-icon svg {
    width: 24px;
    height: 24px;
}

.solution-icon.icon-blue {
    background-color: #E3F0FA;
    color: var(--accent);
}

.solution-icon.icon-green {
    background-color: #E1F3EC;
    color: var(--primary-hover);
}

.solution-icon.icon-orange {
    background-color: #FCEEE0;
    color: #C9791F;
}

.solution-icon.icon-purple {
    background-color: #EEE7FB;
    color: #7952B3;
}

.solution-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--heading);
    margin-bottom: 8px;
}

.solution-desc {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 20px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    transition: gap var(--transition);
}

.solution-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.solution-card:hover .solution-link svg {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .solutions {
        padding: 0 0 64px;
    }

    .solutions-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .solutions-tabs::-webkit-scrollbar {
        display: none;
    }

    .solutions-tab {
        flex-shrink: 0;
        padding: 14px 16px;
    }

    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .solution-card {
        align-items: center;
        text-align: center;
    }

    .solution-link {
        margin-top: 4px;
    }
}

/* =========================================================
   ANASAYFA - "DOĞRU ÜRÜNÜ SEÇEMEDİM" CTA BANDI
   ========================================================= */
.cta-banner {
    padding: 0 0 96px;
}

.cta-banner-card {
    position: relative;
    background-color: var(--primary);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
    gap: 24px;
    min-height: 500px;
}

.cta-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 0 56px 64px;
}

.cta-banner-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 460px;
    margin-bottom: 28px;
}

.cta-banner-btn {
    padding: 14px 30px;
    align-self: flex-start;
}

/* ---------- SAĞ TARAF GÖRSEL ALANI ---------- */
.cta-banner-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-banner-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    object-position: bottom;
}

@media (max-width: 900px) {
    .cta-banner {
        padding: 0 0 64px;
    }

    .cta-banner-card {
        grid-template-columns: 1fr;
        min-height: 0;
        text-align: center;
    }

    .cta-banner-content {
        padding: 40px 28px 24px;
        align-items: center;
    }

    .cta-banner-content p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner-btn {
        display: inline-flex;
        align-self: center;
    }

    .cta-banner-visual {
        justify-content: center;
    }

    .cta-banner-visual img {
        max-width: 380px;
        max-height: 340px;
    }
}

/* =========================================================
   ANASAYFA - ANINDA PEŞİN ÖDEME (instant-payment / Trink)
   ========================================================= */
.instant-payment {
    padding: 48px 0 96px;
}

.instant-payment-card {
    position: relative;
    background-color: var(--background);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 24px;
    min-height: 420px;
}

.instant-payment-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 24px 56px 64px;
}

.instant-payment-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.instant-payment-content h2 {
    color: var(--heading);
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 16px;
}

.instant-payment-highlight {
    color: var(--accent);
}

.instant-payment-content p {
    color: var(--text);
    font-size: 1.05rem;
    max-width: 460px;
    margin-bottom: 28px;
}

.instant-payment-content .btn {
    align-self: flex-start;
    padding: 14px 30px;
    margin-bottom: 40px;
}

/* ---------- SAĞ TARAF GÖRSEL ---------- */
.instant-payment-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 380px;
    padding: 24px 32px 24px 0;
}

.instant-payment-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 440px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 30px rgba(7, 46, 40, 0.15));
}

/* ---------- ARKA PLAN HALKALARI (dashed rings) ---------- */
.instant-payment-rings {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.instant-payment-rings .ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(43, 122, 161, 0.28);
}

.instant-payment-rings .ring-1 {
    width: 300px;
    height: 300px;
}

.instant-payment-rings .ring-2 {
    width: 420px;
    height: 420px;
    border-color: rgba(7, 46, 40, 0.12);
}

@media (max-width: 900px) {
    .instant-payment {
        padding: 32px 0 64px;
    }

    .instant-payment-card {
        grid-template-columns: 1fr;
        min-height: 0;
        text-align: center;
    }

    .instant-payment-content {
        padding: 40px 28px 24px;
        align-items: center;
        order: 2;
    }

    .instant-payment-content p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .instant-payment-content .btn {
        align-self: center;
    }

    .instant-payment-visual {
        order: 1;
        justify-content: center;
        padding: 40px 24px 0;
        min-height: 300px;
    }

    .instant-payment-visual img {
        max-width: 300px;
        max-height: 320px;
    }

    .instant-payment-rings .ring-1 {
        width: 220px;
        height: 220px;
    }

    .instant-payment-rings .ring-2 {
        width: 300px;
        height: 300px;
    }
}

/* =========================================================
   ANASAYFA - PANEL / DASHBOARD ÖZELLİKLERİ
   ========================================================= */
.panel-features {
    padding: 48px 0 96px;
    background-color: var(--section);
}

.panel-features-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 48px;
}

.panel-features-content {
    display: flex;
    flex-direction: column;
}

.panel-features-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.panel-features-content h2 {
    color: var(--heading);
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 16px;
}

.panel-features-content > p {
    color: var(--text);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 32px;
}

.panel-features-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.panel-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.panel-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(43, 122, 161, 0.12);
    color: var(--accent);
}

.panel-feature-icon svg {
    width: 22px;
    height: 22px;
}

.panel-feature-text h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--heading);
    margin-bottom: 4px;
}

.panel-feature-text p {
    font-size: 0.92rem;
    color: var(--text);
}

.panel-features-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-features-visual img {
    width: 100%;
    max-width: 640px;
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(7, 46, 40, 0.12));
}

@media (max-width: 900px) {
    .panel-features {
        padding: 32px 0 64px;
    }

    .panel-features-card {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .panel-features-content {
        align-items: center;
        order: 2;
    }

    .panel-features-content > p {
        max-width: none;
    }

    .panel-feature-item {
        text-align: left;
    }

    .panel-features-visual {
        order: 1;
    }

    .panel-features-visual img {
        max-width: 320px;
    }
}

/* =========================================================
   ANASAYFA - KART PROGRAMLARI
   ========================================================= */
.card-programs {
    padding: 0 0 96px;
}

.card-programs--spaced {
    padding-top: 48px;
}

.card-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.card-program-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card-program-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(7, 46, 40, 0.08);
}

.card-program-item img {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 640px) {
    .card-programs--spaced {
        padding-top: 24px;
    }

    .card-programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   ANASAYFA - MİNİ SSS
   ========================================================= */
.home-faq {
    padding: 72px 0 96px;
}

@media (max-width: 640px) {
    .home-faq {
        padding: 48px 0 64px;
    }
}

.home-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 780px;
    margin: 0 auto;
}

.home-faq-more {
    text-align: center;
    margin-top: 40px;
}

/* =========================================================
   ANASAYFA - İŞ ORTAĞI OLMA CTA BANDI
   ========================================================= */
.partner-cta {
    padding: 0 0 48px;
}

.partner-cta-card {
    background-color: var(--primary);
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
}

.partner-cta-card h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 14px;
}

.partner-cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 28px;
}

.partner-cta-btn {
    background-color: #fff;
    color: var(--primary);
}

.partner-cta-btn:hover {
    background-color: var(--accent);
    color: #fff;
}

@media (max-width: 640px) {
    .partner-cta {
        padding: 0 0 32px;
    }

    .partner-cta-card {
        padding: 40px 24px;
    }

    .partner-cta-card h2 {
        font-size: 1.5rem;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background-color: var(--section);
    color: rgba(7, 46, 40, 0.65);
    padding: 56px 0 24px;
    margin-top: 0;
    border-top: 1px solid var(--border);
}

/* ---------- ANA GRID: Marka / Ürünlerimiz+Yasal / Diğer+Kaynaklar / Sertifika+Sosyal ---------- */
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.site-footer h4 {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ---------- MARKA SÜTUNU ---------- */
.footer-logo {
    display: inline-flex;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.site-footer .footer-brand p {
    color: rgba(7, 46, 40, 0.6);
    font-size: 0.9rem;
    margin-top: 14px;
    max-width: 260px;
}

/* ---------- ALT ALTA İKİLİ NAV GRUPLARI (Ürünlerimiz+Yasal / Diğer Çözümler+Kaynaklar) ---------- */
.footer-col-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(7, 46, 40, 0.75);
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(7, 46, 40, 0.75);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/* ---------- SERTİFİKA / SOSYAL MEDYA SÜTUNU ---------- */
.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer-certs {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-cert-logo {
    height: 88px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(7, 46, 40, 0.08);
    border-radius: 50%;
    color: var(--primary);
    transition: background-color var(--transition), color var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent);
    color: #fff;
}

.footer-social i {
    font-size: 16px;
    line-height: 1;
}

/* ---------- ÖDEME / GÜVENLİK ROZETLERİ ---------- */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.footer-badges img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* ---------- İŞTİRAK LOGOLARI ---------- */
.footer-partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.footer-partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ---------- ALT BİLGİ ÇUBUĞU ---------- */
.footer-bottom {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(7, 46, 40, 0.55);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    font-size: 0.8rem;
}

.footer-bottom-links a,
.footer-bottom-links span {
    color: rgba(7, 46, 40, 0.55);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-meta {
        align-items: flex-start;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* =========================================================
   İÇ SAYFALAR - ORTAK SAYFA HERO (page-hero)
   Hakkımızda, Vizyon & Misyon, SSS, Blog vb. tüm iç sayfalarda
   bu şablon kullanılacak; sadece başlık ve breadcrumb metni değişir.
   ========================================================= */
.page-hero {
    position: relative;
    padding: 72px 0 60px;
    background: linear-gradient(180deg, var(--section) 0%, var(--background) 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--heading);
    line-height: 1.2;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--background);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    box-shadow: 0 12px 24px -16px rgba(7, 46, 40, 0.25);
}

.breadcrumb a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    color: var(--border);
}

.breadcrumb-current {
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 640px) {
    .page-hero {
        padding: 56px 0 44px;
    }

    .page-hero-title {
        font-size: 1.9rem;
    }

    .breadcrumb {
        font-size: 0.82rem;
        padding: 8px 16px;
    }
}

/* =========================================================
   HAKKIMIZDA SAYFASI - TANITIM METNİ (about-intro)
   ========================================================= */
.about-intro {
    padding: 80px 0 32px;
}

.about-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-intro-inner h2 {
    font-size: 2rem;
    color: var(--heading);
    margin-bottom: 20px;
}

.about-intro-inner p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 16px;
}

.about-intro-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .about-intro {
        padding: 56px 0 24px;
    }

    .about-intro-inner h2 {
        font-size: 1.6rem;
    }
}

/* =========================================================
   ANASAYFA - İŞ ORTAKLARIMIZ (kayan logo şeridi)
   ========================================================= */
.is-ortaklari-section {
    padding: 32px 0 96px;
}

.is-ortaklari-marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}

.is-ortaklari-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 24px;
    animation: isOrtaklariScroll 28s linear infinite;
}

.is-ortaklari-marquee:hover .is-ortaklari-track {
    animation-play-state: paused;
}

.is-ortaklari-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 110px;
    background-color: var(--section);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 28px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.is-ortaklari-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(7, 46, 40, 0.08);
}

.is-ortaklari-item img {
    max-height: 48px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes isOrtaklariScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .is-ortaklari-section {
        padding: 24px 0 64px;
    }

    .is-ortaklari-item {
        width: 152px;
        height: 88px;
        padding: 14px 20px;
        gap: 16px;
    }

    .is-ortaklari-item img {
        max-height: 36px;
    }

    .is-ortaklari-track {
        gap: 16px;
        animation-duration: 20s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .is-ortaklari-track {
        animation: none;
    }
}

/* =========================================================
   HAKKIMIZDA SAYFASI - ORTAKLIKLARIMIZ (partners)
   ========================================================= */
.partners-section {
    padding: 32px 0 96px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 120px;
    background-color: var(--section);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 32px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(7, 46, 40, 0.08);
}

.partner-card img {
    max-height: 40px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-card img.partner-card-img--lg {
    max-height: 64px;
}

@media (max-width: 640px) {
    .partners-section {
        padding: 24px 0 64px;
    }

    .partner-card {
        width: 168px;
        height: 96px;
        padding: 16px 24px;
    }

    .partner-card img {
        max-height: 32px;
    }

    .partner-card img.partner-card-img--lg {
        max-height: 48px;
    }
}

/* =========================================================
   HAKKIMIZDA / VİZYON & MİSYON / SSS / KVKK / İLETİŞİM SAYFALARI
   - SADE / KURUMSAL HERO VARYANTI (page-hero--about)
   Yeşil-mavi "blob" yerine; ince nokta ızgarası + çerçeveli halka
   (ring) motifleriyle açık temalı, ciddi ve kurumsal bir görünüm.
   ========================================================= */
.page-hero--about {
    padding: 100px 0 84px;
    background:
        radial-gradient(120% 140% at 12% -10%, rgba(43, 122, 161, 0.16) 0%, rgba(43, 122, 161, 0) 52%),
        radial-gradient(120% 140% at 88% 110%, rgba(7, 46, 40, 0.14) 0%, rgba(7, 46, 40, 0) 52%),
        linear-gradient(180deg, var(--section) 0%, var(--background) 100%);
}

@media (max-width: 640px) {
    .page-hero--about {
        padding: 68px 0 52px;
    }
}

/* =========================================================
   VİZYON & MİSYON SAYFASI - VİZYON / MİSYON KARTLARI
   ========================================================= */
.vm-section {
    background-color: var(--section);
    padding: 80px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.vm-card {
    background-color: var(--background);
    border-radius: 18px;
    padding: 40px 40px 44px;
    box-shadow: 0 20px 40px -28px rgba(7, 46, 40, 0.18);
}

.vm-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.vm-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E1F3EC;
    color: var(--primary-hover);
}

.vm-card:nth-child(2) .vm-icon {
    background-color: #E3F0FA;
    color: var(--accent);
}

.vm-icon svg {
    width: 24px;
    height: 24px;
}

.vm-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--heading);
    line-height: 1.2;
}

.vm-card p {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.8;
}

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

@media (max-width: 640px) {
    .vm-section {
        padding: 56px 0;
    }

    .vm-card {
        padding: 30px 26px 34px;
    }

    .vm-title {
        font-size: 1.35rem;
    }
}

/* =========================================================
   VİZYON & MİSYON SAYFASI - DEĞERLERİMİZ
   ========================================================= */
.values-section {
    padding: 88px 0 96px;
}

.values-header {
    text-align: center;
    margin-bottom: 48px;
}

.values-title {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--heading);
    padding-bottom: 16px;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-hover), var(--accent));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--section);
    border-radius: 14px;
    padding: 32px 28px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
    box-shadow: 0 16px 32px rgba(7, 46, 40, 0.08);
    transform: translateY(-3px);
}

.value-card .value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card .value-icon svg {
    width: 22px;
    height: 22px;
}

.value-card .value-icon.icon-blue {
    background-color: #E3F0FA;
    color: var(--accent);
}

.value-card .value-icon.icon-green {
    background-color: #E1F3EC;
    color: var(--primary-hover);
}

.value-card .value-icon.icon-peach {
    background-color: #FCEEE0;
    color: #C9791F;
}

.value-card .value-icon.icon-purple {
    background-color: #EEE7FB;
    color: #7952B3;
}

.value-card .value-icon.icon-lavender {
    background-color: #E7E9FB;
    color: #4B5FE0;
}

.value-card .value-icon.icon-mint {
    background-color: #DFF5EC;
    color: #1F9C6C;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--heading);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.75;
}

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

@media (max-width: 640px) {
    .values-section {
        padding: 56px 0 64px;
    }

    .values-title {
        font-size: 1.6rem;
    }

    .value-card {
        padding: 26px 22px;
    }
}

/* =========================================================
   SSS SAYFASI
   ========================================================= */
.faq-section {
    padding: 24px 0 96px;
}

/* ---------- ARAMA ---------- */
.faq-search-wrap {
    max-width: 640px;
    margin: 0 auto 40px;
}

.faq-search {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-search svg {
    position: absolute;
    left: 20px;
    width: 18px;
    height: 18px;
    color: var(--text);
    pointer-events: none;
}

.faq-search input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--heading);
    background-color: var(--background);
    box-shadow: 0 16px 32px -22px rgba(7, 46, 40, 0.25);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-search input::placeholder {
    color: var(--text);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--accent);
}

.faq-empty {
    display: none;
    text-align: center;
    color: var(--text);
    margin-bottom: 24px;
}

.faq-empty.is-visible {
    display: block;
}

/* ---------- LAYOUT ---------- */
.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

.faq-layout.is-searching .faq-categories {
    opacity: 0.4;
    pointer-events: none;
}

/* ---------- KATEGORİLER ---------- */
.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: calc(var(--header-height) + 16px);
}

.faq-category {
    text-align: left;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--heading);
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.faq-category:hover {
    border-color: var(--accent);
}

.faq-category.is-active {
    background-color: #E3F0FA;
    border-color: #E3F0FA;
    color: var(--accent-hover);
}

/* ---------- İÇERİK / PANELLER ---------- */
.faq-content {
    min-width: 0;
}

.faq-panel {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.faq-panel.is-active {
    display: flex;
}

/* Arama sırasında tüm eşleşen sorular aynı listede gösterilir */
.faq-content.is-search-mode .faq-panel {
    display: flex;
}

.faq-content.is-search-mode .faq-panel .faq-item {
    display: none;
}

.faq-content.is-search-mode .faq-panel .faq-item.is-match {
    display: block;
}

/* ---------- SORU / CEVAP KARTI ---------- */
.faq-item {
    background-color: var(--section);
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 24px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--heading);
}

.faq-toggle {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E3F0FA;
    color: var(--accent);
    transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
}

.faq-item.is-open .faq-toggle {
    background-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-category {
        flex: 1 1 auto;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 8px 0 64px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.92rem;
    }

    .faq-answer p {
        padding: 0 20px 18px;
    }
}

/* =========================================================
   YASAL METİN SAYFALARI (KVKK, Gizlilik vb.)
   ========================================================= */
.legal-section {
    padding: 64px 0 96px;
}

.legal-inner {
    max-width: 980px;
    margin: 0 auto;
}

.legal-updated {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.legal-inner p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.legal-inner h2 {
    font-size: 1.35rem;
    color: var(--heading);
    margin: 40px 0 16px;
}

.legal-inner h2:first-of-type {
    margin-top: 8px;
}

.legal-list {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.legal-inner a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color var(--transition);
}

.legal-inner a:hover {
    text-decoration-color: var(--accent);
}

@media (max-width: 640px) {
    .legal-section {
        padding: 40px 0 64px;
    }

    .legal-inner h2 {
        font-size: 1.2rem;
        margin: 30px 0 12px;
    }
}

/* =========================================================
   ÇEREZ AYARLARI SAYFASI
   ========================================================= */
.cookie-settings {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.cookie-pref-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    background-color: var(--section);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 24px;
}

.cookie-pref-text h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--heading);
    margin-bottom: 6px;
}

.cookie-pref-text p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0;
}

.cookie-toggle {
    position: relative;
    flex-shrink: 0;
    display: inline-block;
    width: 48px;
    height: 28px;
    margin-top: 2px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background-color: #cfd6d4;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color var(--transition);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: 0 2px 4px rgba(7, 46, 40, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle--disabled .cookie-toggle-slider {
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.cookie-save-msg {
    display: inline-block;
    opacity: 0;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 16px;
    transition: opacity var(--transition);
}

.cookie-save-msg.is-visible {
    opacity: 1;
}

@media (max-width: 640px) {
    .cookie-pref-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-settings-actions {
        flex-direction: column;
    }

    .cookie-settings-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   TEST SAYFASI - BEYAZ HEADER VARYANTI (.site-header--white)
   Not: sadece test.html üzerinde JS ile eklenir, diğer sayfaları etkilemez.
   ========================================================= */
.site-header--white {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
}

.site-header--white .main-nav > ul > li > a,
.site-header--white .main-nav > ul > li > button.nav-link-toggle {
    color: var(--heading);
}

.site-header--white .main-nav > ul > li > a:hover,
.site-header--white .main-nav > ul > li > button.nav-link-toggle:hover {
    color: var(--accent);
}

.site-header--white .main-nav > ul > li.active > a,
.site-header--white .main-nav > ul > li.active > button.nav-link-toggle {
    color: var(--accent);
}

.site-header--white .main-nav > ul > li.active > a::after,
.site-header--white .main-nav > ul > li.active > button.nav-link-toggle::after {
    background-color: var(--accent);
}

.site-header--white .nav-lang-toggle {
    color: var(--heading);
}

.site-header--white .nav-lang-toggle:hover {
    background-color: var(--section);
}

.site-header--white .mobile-nav-toggle {
    color: var(--heading);
}

.site-header--white .header-actions .header-btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.site-header--white .header-actions .header-btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.site-header--white .header-actions .header-btn-solid {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.site-header--white .header-actions .header-btn-solid:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* =========================================================
   TEST SAYFASI - DÜZ YEŞİL HERO VARYANTI (.page-hero--solid)
   ========================================================= */
.page-hero--solid {
    background: var(--primary);
    text-align: center;
}

.page-hero--solid .page-hero-title {
    color: #fff;
}

.page-hero--solid .breadcrumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.page-hero--solid .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.page-hero--solid .breadcrumb a:hover {
    color: #fff;
}

.page-hero--solid .breadcrumb svg {
    color: rgba(255, 255, 255, 0.5);
}

.page-hero--solid .breadcrumb-current {
    color: #fff;
    font-weight: 700;
}

/* =========================================================
   SANAL POS SAYFASI - HERO + BAŞVURU FORMU (Split Layout)
   Sol: başlık + değer önermesi | Sağ: hızlı ön başvuru formu
   ========================================================= */
.product-hero {
    position: relative;
    padding: 64px 0 0;
    background:
        radial-gradient(120% 140% at 10% -10%, rgba(43, 122, 161, 0.10) 0%, rgba(43, 122, 161, 0) 55%),
        radial-gradient(120% 140% at 90% 10%, rgba(7, 46, 40, 0.08) 0%, rgba(7, 46, 40, 0) 55%),
        linear-gradient(180deg, var(--section) 0%, var(--background) 100%);
    overflow: hidden;
}

.product-hero-top {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-bottom: 48px;
}

.product-hero-page-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--heading);
}

.product-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 72px;
}

.product-hero-content {
    padding-top: 12px;
}

.product-hero-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1.22;
    margin-bottom: 22px;
}

.product-hero-title-line {
    display: block;
    color: var(--heading);
    font-weight: 500;
}

.product-hero-title-line--accent {
    color: var(--accent);
    font-weight: 700;
}

.product-hero-title-line--primary {
    color: var(--primary);
    font-weight: 800;
}

.product-hero-desc {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 480px;
    margin-bottom: 28px;
}

.product-hero-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.product-hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--heading);
    font-size: 0.98rem;
}

.product-hero-points li svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* --- BAŞVURU FORMU KARTI --- */
.product-hero-form-card {
    background: var(--background);
    border-radius: 16px;
    box-shadow: 0 30px 60px -30px rgba(7, 46, 40, 0.28);
    border: 1px solid var(--border);
    padding: 32px;
    transform: translateY(-24px);
}

.product-hero-form-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 20px;
}

.product-hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--heading);
    background-color: var(--background);
    transition: border-color var(--transition);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.form-select:invalid {
    color: #9CA3AF;
}

.form-group--select .form-select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text);
    pointer-events: none;
}

.form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    cursor: pointer;
}

.form-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox-row span {
    font-size: 0.86rem;
    color: var(--text);
    line-height: 1.5;
}

.form-checkbox-row a {
    color: var(--heading);
    font-weight: 700;
    text-decoration: none;
}

.form-checkbox-row a:hover {
    color: var(--accent);
}

.product-hero-form-submit {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 1rem;
    margin-top: 4px;
}

.product-hero-form-submit:disabled {
    opacity: 0.75;
    cursor: default;
}

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

@media (max-width: 900px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-hero-form-card {
        transform: none;
    }

    .product-hero-title {
        font-size: 2rem;
    }

    .product-hero-desc {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .product-hero-top {
        padding-bottom: 32px;
    }

    .product-hero-page-title {
        font-size: 1.9rem;
    }

    .form-row--split {
        grid-template-columns: 1fr;
    }

    .product-hero-form-card {
        padding: 24px 20px;
    }
}

/* =========================================================
   SANAL POS SAYFASI - KOMİSYON / ÖNE ÇIKAN AVANTAJ BANDI
   Koyu (primary) zeminde büyük başlık + 3 farklılaştırıcı madde
   ========================================================= */
.advantage-band {
    padding: 0 0 72px;
}

.advantage-band-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.advantage-band-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    max-width: 780px;
}

.advantage-band-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 40px;
    list-style: none;
}

.advantage-band-list li {
    position: relative;
    padding-left: 18px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.advantage-band-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

@media (max-width: 640px) {
    .advantage-band-card {
        padding: 32px 28px;
        border-radius: 16px;
    }

    .advantage-band-title {
        font-size: 1.35rem;
    }

    .advantage-band-list {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================================
   SANAL POS SAYFASI - "SANAL POS NEDİR?" TANITIM BÖLÜMÜ
   Sol: açıklama metni (marka + genel tanım) | Sağ: görsel
   ========================================================= */
.product-explainer {
    padding: 24px 0 96px;
}

.product-explainer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.product-explainer-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 20px;
}

.product-explainer-content p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
}

.product-explainer-content p:last-child {
    margin-bottom: 0;
}

.product-explainer-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-explainer-media img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .product-explainer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-explainer-media {
        order: -1;
    }
}

/* =========================================================
   SANAL POS SAYFASI - "NEDEN TRINKPAY SANAL POS?"
   Sol: özellik/güven checklist | Sağ: panel mockup görseli
   ========================================================= */
.product-features {
    padding: 0 0 96px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.product-features-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 28px;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-checklist-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(43, 122, 161, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-checklist-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.feature-checklist-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
    color: var(--text);
    padding-top: 4px;
}

.feature-checklist-text strong {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--heading);
}

.product-features-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-features-media img {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px -30px rgba(7, 46, 40, 0.28);
}

@media (max-width: 900px) {
    .product-features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =========================================================
   SANAL POS SAYFASI - AVANTAJ KARTLARI (6'lı Grid)
   ========================================================= */
.advantage-cards {
    padding: 0 0 100px;
}

.advantage-cards-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.advantage-cards-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 12px;
}

.advantage-cards-header p {
    font-size: 1rem;
    color: var(--text);
}

.advantage-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.advantage-card:hover {
    box-shadow: 0 20px 40px -24px rgba(7, 46, 40, 0.25);
    transform: translateY(-4px);
}

.advantage-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    margin-bottom: 18px;
}

.advantage-card-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.advantage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .advantage-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .advantage-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SANAL POS SAYFASI - BAŞVURU ADIMLARI (Numaralı, Görselli)
   ========================================================= */
.apply-steps {
    padding: 0 0 100px;
}

.apply-steps-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.apply-steps-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 12px;
}

.apply-steps-header p {
    font-size: 1rem;
    color: var(--text);
}

.apply-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.apply-step {
    text-align: center;
}

.apply-step-media {
    position: relative;
    max-width: 220px;
    margin: 0 auto 22px;
}

.apply-step-media img {
    display: block;
    width: 100%;
    height: auto;
}

.apply-step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -8px rgba(43, 122, 161, 0.55);
}

.apply-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.apply-step p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.55;
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .apply-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================================
   SANAL POS SAYFASI - KAPANIŞ CTA BANDI
   Koyu (primary) zeminde ortalanmış başlık + pill (beyaz) buton
   ========================================================= */
.simple-cta-band {
    padding: 0 0 48px;
}

.simple-cta-card {
    background: var(--primary);
    border-radius: 24px;
    padding: 64px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.simple-cta-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 1.3;
    color: #fff;
    max-width: 720px;
    margin-bottom: 32px;
}

.simple-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.simple-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.35);
}

.simple-cta-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

@media (max-width: 640px) {
    .simple-cta-band {
        padding: 0 0 40px;
    }

    .simple-cta-card {
        padding: 44px 24px;
        border-radius: 18px;
    }

    .simple-cta-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .simple-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }
}

/* =========================================================
   LİNKLE ÖDEME SAYFASI - SADE ÖZELLİK SATIRI (3'lü, ikon + metin)
   ========================================================= */
.simple-feature-row {
    padding: 24px 0 64px;
}

.simple-feature-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.simple-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.simple-feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(43, 122, 161, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.simple-feature-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.4;
    color: var(--heading);
    padding-top: 8px;
}

@media (max-width: 900px) {
    .simple-feature-row-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* =========================================================
   İLETİŞİM SAYFASI - İLETİŞİM BİLGİ KARTLARI (contact-info)
   ========================================================= */
.contact-info-section {
    padding: 80px 0 96px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--section);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.contact-info-card:hover {
    box-shadow: 0 16px 32px rgba(7, 46, 40, 0.08);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-icon.icon-blue {
    background-color: #E3F0FA;
    color: var(--accent);
}

.contact-info-icon.icon-green {
    background-color: #E1F3EC;
    color: var(--primary-hover);
}

.contact-info-icon.icon-purple {
    background-color: #EEE7FB;
    color: #7952B3;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent);
    margin-top: auto;
}

.contact-info-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.contact-info-card:hover .contact-info-link svg {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-info-section {
        padding: 56px 0 64px;
    }

    .contact-info-card {
        padding: 32px 24px;
    }
}

/* =========================================================
   İLETİŞİM SAYFASI - BİZE YAZIN (contact-form)
   ========================================================= */
.contact-form-section {
    padding: 0 0 96px;
    background-color: var(--section);
    padding: 88px 0 96px;
}

.contact-form-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--background);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px -30px rgba(7, 46, 40, 0.16);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form textarea.form-input {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.contact-form-submit {
    align-self: flex-start;
    padding: 15px 32px;
}

.contact-form-submit:disabled {
    opacity: 0.75;
    cursor: default;
}

@media (max-width: 640px) {
    .contact-form-section {
        padding: 56px 0 64px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-form-submit {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   ANASAYFA - BLOG / DUYURULAR VİTRİNİ
   ========================================================= */
.blog-showcase {
    background-color: var(--accent);
    padding: 72px 0;
}

.blog-showcase .solutions-header h2 {
    color: #fff;
}

.blog-showcase .solutions-header p {
    color: rgba(255, 255, 255, 0.85);
}

.blog-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 32px rgba(7, 46, 40, 0.08);
    transform: translateY(-3px);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--section);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--background);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(7, 46, 40, 0.12);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 10px;
}

.blog-card-meta svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--heading);
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    transition: gap var(--transition);
}

.blog-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.blog-card:hover .blog-card-link svg {
    transform: translateX(4px);
}

.blog-showcase-more {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .blog-showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .blog-showcase {
        padding: 48px 0;
    }
}

/* =========================================================
   BLOG LİSTELEME SAYFASI (blog.html)
   ========================================================= */
.blog-listing {
    padding: 80px 0 96px;
}

@media (max-width: 640px) {
    .blog-listing {
        padding: 56px 0 64px;
    }
}

/* =========================================================
   BLOG DETAY SAYFASI (blog-article)
   ========================================================= */
.blog-article-header {
    padding: 48px 0 0;
}

.blog-article-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.blog-article-category {
    display: inline-block;
    background-color: #E3F0FA;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    padding: 6px 16px;
    border-radius: 999px;
}

.blog-article-date,
.blog-article-readtime {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text);
}

.blog-article-date svg,
.blog-article-readtime svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.blog-article-cover {
    max-width: 900px;
    margin: 36px auto 0;
    padding: 0 20px;
}

.blog-article-cover img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 48px -24px rgba(7, 46, 40, 0.28);
}

.blog-article-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 20px 0;
}

.blog-article-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 22px;
}

.blog-article-body h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
}

.blog-article-body h3 {
    font-size: 1.2rem;
    margin: 32px 0 14px;
}

.blog-article-body ul {
    margin: 0 0 22px;
    padding-left: 4px;
}

.blog-article-body ul li {
    position: relative;
    padding-left: 26px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 10px;
}

.blog-article-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.blog-article-cta {
    max-width: 860px;
    margin: 8px auto 64px;
    padding: 0 20px;
}

.blog-article-cta-card {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
}

.blog-article-cta-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.blog-article-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    max-width: 480px;
    margin: 0 auto 22px;
}

.blog-article-cta-card .btn-accent {
    display: inline-flex;
}

.blog-related {
    padding: 0 0 96px;
}

@media (max-width: 640px) {
    .blog-article-header {
        padding: 32px 0 0;
    }

    .blog-article-cover {
        margin-top: 24px;
    }

    .blog-article-body {
        padding: 36px 18px 0;
    }

    .blog-article-cta-card {
        padding: 32px 22px;
    }

    .blog-related {
        padding: 0 0 64px;
    }
}

/* =========================================================
   ÇEREZ ONAY BANDI (site geneli - cookie consent)
   ========================================================= */
.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    max-width: 980px;
    margin: 0 auto;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 48px -16px rgba(7, 46, 40, 0.28);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
    pointer-events: none;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #E1F3EC;
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-icon svg {
    width: 20px;
    height: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 0;
}

.cookie-consent-text p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.55;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.86rem;
    padding: 10px 18px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.cookie-consent-btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.cookie-consent-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cookie-consent-btn-accept {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.cookie-consent-btn-accept:hover {
    background-color: var(--primary-hover);
}

@media (max-width: 780px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-consent-icon {
        display: none;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-btn {
        flex: 1;
        text-align: center;
    }
}
