/* ==========================================================================
   QR Menü SaaS – Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand */
    --primary:         #4F46E5;
    --primary-dark:    #3730A3;
    --primary-light:   #EEF2FF;
    --primary-rgb:     79, 70, 229;

    /* Text */
    --text-900:  #0F172A;
    --text-700:  #374151;
    --text-500:  #6B7280;
    --text-300:  #9CA3AF;

    /* UI */
    --border:       #E5E7EB;
    --border-focus: #A5B4FC;
    --bg-white:     #FFFFFF;
    --bg-surface:   #F9FAFB;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 24px -4px rgba(0,0,0,.1), 0 4px 8px -2px rgba(0,0,0,.05);

    /* Layout */
    --container-width: 1140px;
    --header-height:   72px;
    --radius-sm:  6px;
    --radius:     8px;
    --radius-lg: 12px;

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --transition: .18s var(--ease);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-700);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   2. Container
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 24px;
}

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    height: var(--header-height);
    gap: 32px;
}

/* --- Logo --- */
.header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    outline-offset: 4px;
}

.header__logo img {
    height: 36px;
    width: auto;
    display: block;
    /* Görsel olarak logo gelene kadar placeholder alanı */
    min-width: 120px;
}

/* --- Nav --- */
.header__nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
}

.header__menu a {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-500);
    text-decoration: none;
    border-radius: var(--radius-sm);
    letter-spacing: -.01em;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
    position: relative;
}

.header__menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.header__menu a:hover {
    color: var(--text-900);
    background: var(--bg-surface);
}

.header__menu a.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.header__menu a.active::after {
    transform: scaleX(1);
}

/* --- Actions (lang + cta) --- */
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. Language Switcher
   -------------------------------------------------------------------------- */
.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-500);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
    white-space: nowrap;
    outline: none;
}

.lang-switcher__btn:hover {
    border-color: var(--border-focus);
    color: var(--text-900);
    background: var(--bg-surface);
}

.lang-switcher__btn:focus-visible {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .15);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-code {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}

.lang-chevron {
    width: 14px;
    height: 14px;
    color: var(--text-300);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 148px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(.97);
    transform-origin: top right;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 200;
}

.lang-switcher.open .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-switcher__dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-700);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.lang-switcher__dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.lang-switcher__dropdown a.selected {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.lang-switcher__dropdown a span {
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   5. Button
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 38px;
    padding: 0 18px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.01em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    white-space: nowrap;
    outline: none;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), .35);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn--primary:focus-visible {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .35);
}

/* --------------------------------------------------------------------------
   6. Hamburger
   -------------------------------------------------------------------------- */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    flex-shrink: 0;
}

.header__hamburger:hover {
    background: var(--bg-surface);
    border-color: var(--border);
}

.header__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-700);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
    transform-origin: center;
}

.header__hamburger span:nth-child(2) {
    width: 14px;
}

.header__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 20px;
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 20px;
}

/* --------------------------------------------------------------------------
   7. Mobile Navigation
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {

    .header__inner {
        gap: 0;
    }

    /* Hamburger görünür */
    .header__hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Nav gizli – mutlak konumda */
    .header__nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 12px 16px 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .header__nav.open {
        display: flex;
    }

    .header__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
    }

    .header__menu a {
        padding: 11px 14px;
        font-size: 15px;
        justify-content: flex-start;
    }

    .header__menu a::after {
        display: none;
    }

    /* Actions mobile – dil seçeneği, nav içinde */
    .header__actions .lang-switcher {
        display: none; /* desktop'ta göster, mobile'da nav içinde göster */
    }

    /* Mobil dil seçeneği nav içine eklenir JS ile veya ayrı section olarak */
    .mobile-lang {
        display: flex;
        gap: 8px;
        padding: 12px 4px 4px;
        border-top: 1px solid var(--border);
        margin-top: 8px;
    }

    .mobile-lang a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 12px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-500);
        text-decoration: none;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        transition: background var(--transition), color var(--transition), border-color var(--transition);
    }

    .mobile-lang a:hover,
    .mobile-lang a.selected {
        color: var(--primary);
        border-color: var(--border-focus);
        background: var(--primary-light);
    }

    /* CTA button'u actions'ta saklama (hamburger yanında kalabilir) */
    .header__actions .btn {
        font-size: 12.5px;
        padding: 0 13px;
        height: 34px;
    }
}

/* ==========================================================================
   8. Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #fafafa 60%, #eef2ff 100%);
    padding: 88px 0 80px;
    overflow: hidden;
    position: relative;
}

/* Dekoratif arka plan dairesi */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

/* --- Badge --- */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: var(--primary-light);
    border: 1px solid rgba(var(--primary-rgb), .2);
    color: var(--primary);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 24px;
}

/* --- Title --- */
.hero__title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--text-900);
    margin-bottom: 20px;
}

.hero__title--accent {
    color: var(--primary);
    position: relative;
    white-space: nowrap;
}

.hero__title--accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #818CF8);
    border-radius: 999px;
    opacity: .35;
}

/* --- Desc --- */
.hero__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-500);
    max-width: 480px;
    margin-bottom: 36px;
}

/* --- Buttons --- */
.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.btn--lg {
    height: 48px;
    padding: 0 26px;
    font-size: 15px;
    border-radius: var(--radius);
}

.btn--ghost {
    background: transparent;
    color: var(--text-700);
    border: 1.5px solid var(--border);
}

.btn--ghost:hover {
    background: var(--bg-surface);
    border-color: var(--border-focus);
    color: var(--primary);
    box-shadow: none;
    transform: translateY(-1px);
}

.btn--ghost:focus-visible {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .2);
}

/* --- Stats --- */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__stat strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-900);
    letter-spacing: -.02em;
    line-height: 1.2;
}

.hero__stat span {
    font-size: 12px;
    color: var(--text-300);
    font-weight: 500;
    white-space: nowrap;
}

.hero__stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

/* --- Visual --- */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__visual-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
}

.hero__img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: var(--radius-lg);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero {
        padding: 64px 0 56px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__badge {
        margin-inline: auto;
    }

    .hero__desc {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__img {
        max-width: 380px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 48px 0 44px;
    }

    .hero__title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .hero__desc {
        font-size: 15.5px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__img {
        max-width: 100%;
    }
}

/* ==========================================================================
   9. Section Label (ortak)
   ========================================================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: var(--primary-light);
    border: 1px solid rgba(var(--primary-rgb), .18);
    color: var(--primary);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 28px;
}

/* ==========================================================================
   10. About / Why Us Section
   ========================================================================== */
.about {
    padding: 96px 0 80px;
    background: var(--bg-white);
}

.about__header {
    max-width: 680px;
    margin-bottom: 60px;
}

.about__title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--text-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.about__title span {
    color: var(--primary);
}

.about__desc {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text-500);
}

/* Feature Cards Grid */
.about__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about__feature {
    padding: 28px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about__feature:hover {
    border-color: rgba(var(--primary-rgb), .28);
    box-shadow: 0 8px 24px -6px rgba(var(--primary-rgb), .1);
    transform: translateY(-3px);
}

.about__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    margin-bottom: 18px;
}

.about__feature h3 {
    font-size: 15px;
    font-weight: 650;
    color: var(--text-900);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.about__feature p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-500);
}

/* Responsive */
@media (max-width: 1024px) {
    .about__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about {
        padding: 64px 0 56px;
    }

    .about__features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   11. CTA Strip
   ========================================================================== */
.cta-strip {
    background: linear-gradient(135deg, var(--primary) 0%, #3730A3 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}

.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-strip__text h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cta-strip__text p {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    font-weight: 400;
}

.btn--white {
    background: #fff;
    color: var(--primary);
    flex-shrink: 0;
}

.btn--white:hover {
    background: #f0f4ff;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    transform: translateY(-1px);
}

.btn--white:focus-visible {
    box-shadow: 0 0 0 3px rgba(255,255,255,.4);
}

@media (max-width: 700px) {
    .cta-strip__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-strip {
        padding: 48px 0;
    }
}

/* ==========================================================================
   12. Article Section
   ========================================================================== */
.article-section {
    padding: 88px 0 80px;
    background: var(--bg-white);
}

.article-block {
    margin: 0 0 72px;
}

.article-block:last-child {
    margin-bottom: 0;
}

.article-h2 {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    color: var(--text-900);
    letter-spacing: -.025em;
    line-height: 1.25;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.article-h2 span {
    color: var(--primary);
}

.article-block p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-500);
    margin-bottom: 18px;
}

.article-block p:last-of-type {
    margin-bottom: 0;
}

/* Mini CTA Banner */
.article-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #f0f4ff 0%, #eef2ff 100%);
    border: 1px solid rgba(var(--primary-rgb), .15);
    border-radius: var(--radius-lg);
}

@media (max-width: 640px) {
    .article-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 20px;
    }

    .article-cta .btn {
        justify-content: center;
    }
}

/* Yan yana görseller */
.article-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
    align-items: stretch;
}

.article-image {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.article-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -8px rgba(var(--primary-rgb), .12);
}

.article-image img {
    display: block;
    width: 100%;
    flex: 1;
    object-fit: cover;
}

/* Promo banner – sağ görselin altı */
.article-image--promo {
    display: flex;
    flex-direction: column;
}

.article-image__promo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 28px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #3730A3 100%);
    color: #fff;
}

.article-image__promo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius);
    color: #fff;
    flex-shrink: 0;
}

.article-image__promo p {
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(255,255,255,.85);
    margin: 0;
}

.article-image__promo p strong {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}

.btn--white-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #fff;
    color: var(--primary);
    font-size: 13.5px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    letter-spacing: -.01em;
    margin-top: 4px;
}

.btn--white-sm:hover {
    background: #eef2ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

@media (max-width: 640px) {
    .article-images {
        grid-template-columns: 1fr;
    }

    .article-section {
        padding: 60px 0 56px;
    }

    .article-block {
        margin-bottom: 52px;
    }
}

/* ==========================================================================
   14. Article Section Alt (bg farkı)
   ========================================================================== */
.article-section--alt {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

/* H3 başlık */
.article-h3 {
    font-size: clamp(16px, 1.8vw, 21px);
    font-weight: 650;
    color: var(--text-900);
    letter-spacing: -.02em;
    line-height: 1.3;
    margin: 32px 0 12px;
    padding-left: 14px;
    border-left: 3px solid var(--primary);
}

.article-h3 span {
    color: var(--primary);
}

/* İç link */
.article-inline-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--transition);
}

.article-inline-link:hover {
    opacity: .75;
}

/* ==========================================================================
   15. Features Grid (8'li widget)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.feature-widget {
    padding: 22px 20px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-widget:hover {
    border-color: rgba(var(--primary-rgb), .28);
    box-shadow: 0 8px 24px -6px rgba(var(--primary-rgb), .1);
    transform: translateY(-3px);
}

.feature-widget__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    margin-bottom: 14px;
    flex-shrink: 0;
}

.feature-widget h4 {
    font-size: 13.5px;
    font-weight: 650;
    color: var(--text-900);
    letter-spacing: -.01em;
    margin-bottom: 7px;
    line-height: 1.35;
}

.feature-widget p {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--text-500);
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feature-widget {
        padding: 16px 14px;
    }
}

@media (max-width: 400px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   13. Blog Section
   ========================================================================== */
.blog {
    padding: 88px 0 92px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.blog__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
}

.blog__title {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 700;
    color: var(--text-900);
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-top: 12px;
}

.blog__title span {
    color: var(--primary);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- Blog Card --- */
.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.blog-card:hover {
    border-color: rgba(var(--primary-rgb), .25);
    box-shadow: 0 12px 36px -8px rgba(var(--primary-rgb), .1);
    transform: translateY(-4px);
}

/* Görsel alan */
.blog-card__img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--primary-light);
    flex-shrink: 0;
}

.blog-card__img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}

.blog-card:hover .blog-card__img-wrap img {
    transform: scale(1.04);
}

/* Kategori etiketi */
.blog-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--primary);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .03em;
    border-radius: 999px;
    text-transform: uppercase;
    pointer-events: none;
}

/* İçerik */
.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 20px;
    gap: 0;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-300);
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 15.5px;
    font-weight: 650;
    line-height: 1.45;
    letter-spacing: -.01em;
    margin-bottom: 10px;
}

.blog-card__title a {
    color: var(--text-900);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card__title a:hover {
    color: var(--primary);
}

.blog-card__excerpt {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-500);
    flex: 1;
    margin-bottom: 18px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 650;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -.01em;
    transition: gap var(--transition), opacity var(--transition);
    gap: 4px;
    margin-top: auto;
}

.blog-card__link:hover {
    opacity: .75;
    gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 580px) {
    .blog {
        padding: 60px 0 64px;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   16. Contact Banner
   ========================================================================== */
.contact-banner {
    padding: 56px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.contact-banner__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 48px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* Dekoratif blob'lar */
.contact-banner__blob {
    position: absolute;
    width: 110px;
    height: 110px;
    background: var(--primary-dark);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    pointer-events: none;
    flex-shrink: 0;
}

.contact-banner__blob--left {
    left: -38px;
    bottom: -28px;
}

.contact-banner__blob--right {
    right: -28px;
    top: -32px;
    width: 90px;
    height: 90px;
    border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
    opacity: .85;
}

.contact-banner__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
    padding-left: 56px;
}

.contact-banner__text strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-900);
    letter-spacing: -.01em;
}

.contact-banner__text p {
    font-size: 14px;
    color: var(--text-500);
    margin: 0;
}

.contact-banner__card .btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .contact-banner__card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 28px 28px 32px;
        gap: 18px;
    }

    .contact-banner__card .btn {
        align-self: flex-start;
    }
}

/* ==========================================================================
   17. Footer CTA Strip
   ========================================================================== */
.footer-cta {
    background: var(--bg-white);
    padding: 0;
    position: relative;
}

.footer-cta__inner {
    background: linear-gradient(110deg, #0f1e4a 0%, #1e3a8a 55%, #312e81 100%);
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
    padding: 80px 0 110px;
    position: relative;
    overflow: hidden;
}

/* Subtle arka plan dairesi */
.footer-cta__inner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(99,102,241,.12);
    pointer-events: none;
}

.footer-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.footer-cta__label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 10px;
}

.footer-cta__text h2 {
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-cta__text p {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    max-width: 480px;
    margin: 0;
}

.footer-cta__text p strong {
    color: rgba(255,255,255,.9);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,.3);
    text-underline-offset: 3px;
}

.footer-cta__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.75);
    box-shadow: none;
    transform: translateY(-1px);
}

@media (max-width: 780px) {
    .footer-cta__inner {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        padding: 64px 0 96px;
    }

    .footer-cta__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
}

/* ==========================================================================
   19. Page Hero (iç sayfa başlık bandı)
   ========================================================================== */
.page-hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #fafafa 60%, #eef2ff 100%);
    border-bottom: 1px solid var(--border);
    padding: 52px 0 48px;
}

.page-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-300);
}

.breadcrumb a {
    color: var(--text-500);
    text-decoration: none;
    transition: color var(--transition);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb svg {
    color: var(--text-300);
    flex-shrink: 0;
}

.page-hero__inner h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-900);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin: 0;
}

.page-hero__inner > p {
    font-size: 16.5px;
    color: var(--text-500);
    margin: 0;
    max-width: 560px;
    line-height: 1.6;
}

/* ==========================================================================
   20. Hakkımızda Article
   ========================================================================== */
.about-page {
    padding: 80px 0 72px;
    background: var(--bg-white);
}

.about-page__grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    align-items: start;
}

.about-page__article h2 {
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 700;
    color: var(--text-900);
    letter-spacing: -.025em;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.about-page__article h3 {
    font-size: 18px;
    font-weight: 650;
    color: var(--text-900);
    letter-spacing: -.015em;
    margin: 32px 0 12px;
    padding-left: 14px;
    border-left: 3px solid var(--primary);
}

.about-page__article p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-500);
    margin-bottom: 16px;
}

.about-page__article p:last-child {
    margin-bottom: 0;
}

/* Yan bilgi kartları */
.about-page__aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.about-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.about-info-card:hover {
    border-color: rgba(var(--primary-rgb), .25);
    box-shadow: 0 4px 16px -4px rgba(var(--primary-rgb), .1);
}

.about-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    flex-shrink: 0;
}

.about-info-card h4 {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-300);
    margin-bottom: 2px;
}

.about-info-card p {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-900);
    margin: 0;
}

@media (max-width: 860px) {
    .about-page__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page__aside {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-page__aside {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   21. Ekibimiz Section
   ========================================================================== */
.team {
    padding: 88px 0 92px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.team__head {
    max-width: 520px;
    margin-bottom: 52px;
}

.team__title {
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 700;
    color: var(--text-900);
    letter-spacing: -.03em;
    line-height: 1.2;
    margin: 12px 0 10px;
}

.team__title span {
    color: var(--primary);
}

.team__sub {
    font-size: 15.5px;
    color: var(--text-500);
    line-height: 1.65;
    margin: 0;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Ekip kartı */
.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    text-align: center;
}

.team-card:hover {
    border-color: rgba(var(--primary-rgb), .25);
    box-shadow: 0 12px 32px -8px rgba(var(--primary-rgb), .12);
    transform: translateY(-4px);
}

.team-card__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--primary-light);
}

.team-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .4s var(--ease);
}

.team-card:hover .team-card__photo img {
    transform: scale(1.04);
}

.team-card__body {
    padding: 18px 16px 20px;
}

.team-card__body h3 {
    font-size: 15px;
    font-weight: 650;
    color: var(--text-900);
    letter-spacing: -.01em;
    margin-bottom: 5px;
    line-height: 1.3;
}

.team-card__role {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 999px;
}

@media (max-width: 900px) {
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team {
        padding: 60px 0 64px;
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ==========================================================================
   27. QR Menü Oluştur – Başvuru Formu Sayfası
   ========================================================================== */

/* Page hero variant */
.page-hero--cta h1 span {
    color: var(--primary);
}

/* Layout */
.apply-page {
    padding: 72px 0 100px;
    background: var(--surface);
}

.apply-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* ——— Form wrap ——— */
.apply-form-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

/* Success */
.apply-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 24px 22px;
    color: #15803d;
}

.apply-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #dcfce7;
    border-radius: 50%;
    flex-shrink: 0;
}

.apply-success strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.apply-success p {
    font-size: .92rem;
    line-height: 1.6;
    opacity: .85;
    margin: 0;
}

/* Errors */
.apply-errors {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
    color: #c53030;
}

.apply-errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.apply-errors li {
    font-size: .88rem;
    line-height: 1.6;
}

/* Fieldset */
.apply-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 36px;
}

.apply-fieldset__legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.apply-fieldset__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.apply-fieldset__optional {
    font-weight: 400;
    font-size: .8rem;
    color: var(--text-muted);
    margin-left: 2px;
}

/* Rows & groups */
.apply-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.apply-row--narrow {
    grid-template-columns: 180px 1fr;
}

.apply-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}

.apply-row .apply-group,
.apply-row--narrow .apply-group {
    margin-bottom: 0;
}

.apply-group label {
    font-size: .83rem;
    font-weight: 600;
    color: var(--text);
}

.apply-group label span {
    color: var(--primary);
}

.apply-group input,
.apply-group select,
.apply-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: .93rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.apply-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px;
    cursor: pointer;
}

.apply-group input::placeholder,
.apply-group textarea::placeholder {
    color: #b0b8c9;
}

.apply-group input:focus,
.apply-group select:focus,
.apply-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,.12);
    background: #fff;
}

.apply-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Form footer */
.apply-form__footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apply-submit {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
    width: 100%;
}

.apply-form__consent {
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.apply-form__consent a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.apply-form__consent a:hover {
    text-decoration: underline;
}

/* ——— Aside ——— */
.apply-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.apply-aside__card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
}

.apply-aside__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(79,70,229,.08);
    border-radius: 10px;
    color: var(--primary);
    margin-bottom: 14px;
}

.apply-aside__card h3 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -.01em;
}

.apply-aside__card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.apply-aside__contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
}

.apply-aside__contact p {
    font-size: .83rem;
    color: rgba(255,255,255,.8);
    margin: 0 0 12px;
}

.apply-aside__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.15);
    padding: 10px 20px;
    border-radius: 30px;
    transition: background .18s;
}

.apply-aside__phone:hover {
    background: rgba(255,255,255,.25);
}

/* Responsive */
@media (max-width: 860px) {
    .apply-layout {
        grid-template-columns: 1fr;
    }

    .apply-aside {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .apply-aside__card {
        flex: 1 1 calc(50% - 8px);
        min-width: 220px;
    }

    .apply-aside__contact {
        flex: 1 1 100%;
    }
}

@media (max-width: 560px) {
    .apply-form-wrap {
        padding: 30px 20px;
    }

    .apply-row,
    .apply-row--narrow {
        grid-template-columns: 1fr;
    }

    .apply-aside__card {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   26. Demo Sayfası
   ========================================================================== */

/* Standalone mod: header/footer yok, tam ekran ortalı */
body.demo-standalone {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--surface);
    padding: 20px 0 16px;
}

body.demo-standalone .demo-section {
    width: 100%;
}

body.demo-standalone .demo-section {
    padding: 0;
}

.demo-section {
    padding: 72px 0 96px;
    background: var(--surface);
}

/* 2-col layout */
.demo-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: start;
}

/* ——— Sol: Telefon mockup ——— */
.demo-phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.demo-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(79,70,229,.07);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.demo-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.demo-phone__shell {
    width: 440px;
    background: #0d1a3f;
    border-radius: 52px;
    padding: 18px 14px 24px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        0 32px 64px rgba(13,26,63,.35),
        0 8px 24px rgba(0,0,0,.18);
    position: relative;
}

.demo-phone__notch {
    width: 80px;
    height: 22px;
    background: #0d1a3f;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 0 rgba(255,255,255,.06);
}

.demo-phone__screen {
    border-radius: 36px;
    overflow: hidden;
    background: #fff;
    height: 740px;
    position: relative;
}

.demo-phone__screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 28px;
}

.demo-phone__chin {
    width: 72px;
    height: 4px;
    background: rgba(255,255,255,.18);
    border-radius: 4px;
    margin: 12px auto 0;
}

.demo-open-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
}

.demo-open-link:hover {
    color: var(--primary);
}

/* ——— Sağ: Info ——— */
.demo-info {
    padding-top: 8px;
}

.demo-info__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .03em;
}

.demo-live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.75); }
}

.demo-info__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.025em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.demo-info__desc {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 28px;
}

.demo-info__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 36px;
}

.demo-info__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .93rem;
    color: var(--text-light);
}

.demo-info__list li svg {
    flex-shrink: 0;
    color: #22c55e;
}

/* QR kutusu */
.demo-qr {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 32px;
    width: fit-content;
}

.demo-qr__box {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-qr__box img {
    width: 84px;
    height: 84px;
    display: block;
}

.demo-qr__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.demo-qr__text strong {
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
}

.demo-qr__text span {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.demo-info__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 860px) {
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .demo-phone__shell {
        width: 380px;
    }

    .demo-phone__screen {
        height: 640px;
    }
}

@media (max-width: 400px) {
    .demo-phone__shell {
        width: 100%;
        border-radius: 32px;
    }
}

/* ==========================================================================
   25. Yasal Sayfalar (Gizlilik, Çerez, KVKK)
   ========================================================================== */

.legal-page {
    padding: 72px 0 100px;
    background: var(--surface);
}

/* 2-col: TOC (sticky) + Article */
.legal-page__layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
}

.legal-toc__title {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.legal-toc ol {
    margin: 0;
    padding: 0 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-toc li {
    font-size: .84rem;
    line-height: 1.45;
}

.legal-toc a {
    color: var(--text-light);
    text-decoration: none;
    transition: color .15s;
}

.legal-toc a:hover {
    color: var(--primary);
}

/* Article */
.legal-article {
    max-width: 760px;
}

.legal-article section {
    margin-bottom: 52px;
    scroll-margin-top: 100px;
}

.legal-article h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.015em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.legal-article h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 22px 0 8px;
}

.legal-article p {
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-article ul,
.legal-article ol {
    padding-left: 22px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.legal-article li {
    font-size: .93rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-article a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-article a:hover {
    text-decoration: underline;
}

/* Note block */
.legal-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: .88rem;
    color: #92400e;
    line-height: 1.6;
    margin-top: 20px;
}

.legal-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #d97706;
}

.legal-note--info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
    margin-bottom: 36px;
    margin-top: 0;
}

.legal-note--info svg {
    color: #3b82f6;
}

/* Table */
.legal-table-wrap {
    overflow-x: auto;
    margin: 18px 0 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.legal-table thead {
    background: var(--surface);
}

.legal-table th {
    text-align: left;
    padding: 11px 16px;
    font-weight: 600;
    color: var(--text);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.legal-table td {
    padding: 11px 16px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
    vertical-align: top;
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:hover td {
    background: #fafbff;
}

.legal-table code {
    font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
    font-size: .82rem;
    background: rgba(79,70,229,.07);
    color: var(--primary);
    padding: 1px 6px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 860px) {
    .legal-page__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .legal-toc {
        position: static;
    }
}

/* ==========================================================================
   24. İletişim Sayfası
   ========================================================================== */

.contact-page {
    padding: 80px 0 96px;
    background: var(--surface);
}

/* 2-col grid */
.contact-page__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}

/* Left: Info column */
.contact-page__info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.contact-page__info-sub {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
}

/* Info card */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 12px;
}

.contact-info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(79,70,229,.08);
    border-radius: 10px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.contact-info-card__label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-info-card__value {
    font-size: .96rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    word-break: break-all;
}

a.contact-info-card__value:hover {
    color: var(--primary);
}

/* Right: Form wrap */
.contact-page__form-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

/* Success / Error messages */
.contact-form__success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 28px;
    color: #15803d;
}

.contact-form__success svg { flex-shrink: 0; margin-top: 2px; }

.contact-form__success strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-form__success p {
    font-size: .88rem;
    opacity: .85;
    margin: 0;
}

.contact-form__errors {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
    color: #c53030;
}

.contact-form__errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-form__errors li {
    font-size: .88rem;
    line-height: 1.6;
}

.contact-form__errors li + li::before {
    content: '';
    display: block;
    height: 4px;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-form__group label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--text);
}

.contact-form__group label span {
    color: var(--primary);
}

.contact-form__group input,
.contact-form__group textarea {
    width: 100%;
    padding: 11px 15px;
    font-family: inherit;
    font-size: .93rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
    box-sizing: border-box;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
    color: #b0b8c9;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,.12);
    background: #fff;
}

.contact-form__group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form__submit {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 860px) {
    .contact-page__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-page__form-wrap {
        padding: 32px 22px;
    }

    .contact-form__submit {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   23. Özellikler Sayfası
   ========================================================================== */

.feat-page {
    padding: 80px 0 96px;
    background: var(--surface);
}

/* Intro */
.feat-page__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.feat-page__title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.025em;
    margin: 16px 0 14px;
    line-height: 1.25;
}

.feat-page__title span {
    color: var(--primary);
}

.feat-page__sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Grid – 3 kolonu */
.feat-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Feature card */
.feat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: box-shadow .2s, border-color .2s, transform .2s;
}

.feat-card:hover {
    box-shadow: 0 8px 32px rgba(79,70,229,.09);
    border-color: rgba(79,70,229,.25);
    transform: translateY(-3px);
}

.feat-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feat-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(79,70,229,.08);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.feat-card__num {
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(79,70,229,.07);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: .04em;
    font-variant-numeric: tabular-nums;
}

.feat-card__title {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.feat-card__desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.68;
}

/* Bottom CTA strip */
.feat-page__cta-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 72px 0;
}

.feat-page__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.feat-page__cta-text h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}

.feat-page__cta-text p {
    font-size: .97rem;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}

.feat-page__cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .feat-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .feat-page__cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .feat-page__cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .feat-page__cta-actions .btn {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .feat-page__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   22. Fiyatlar Sayfası
   ========================================================================== */

/* Pricing section wrapper */
.pricing {
    padding: 72px 0 96px;
    background: var(--surface);
}

/* Period toggle */
.pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 56px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.pricing__toggle-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: none;
    padding: 9px 22px;
    border-radius: 32px;
    font-size: .93rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: background .18s, color .18s;
    white-space: nowrap;
}

.pricing__toggle-btn.active {
    background: var(--primary);
    color: #fff;
}

.pricing__toggle-badge {
    background: rgba(255,255,255,.22);
    color: inherit;
    font-size: .73rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: .02em;
}

.pricing__toggle-btn:not(.active) .pricing__toggle-badge {
    background: #ede9fe;
    color: var(--primary);
}

/* Main card */
.pricing__wrap {
    max-width: 860px;
    margin: 0 auto;
}

.pricing__card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(79,70,229,.08), 0 2px 8px rgba(0,0,0,.04);
}

/* Left: Info */
.pricing__info {
    padding: 48px 44px;
    border-right: 1px solid var(--border);
}

.pricing__plan-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(79,70,229,.07);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.pricing__plan-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -.02em;
}

.pricing__plan-desc {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 380px;
    margin-bottom: 32px;
}

.pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .93rem;
    color: var(--text-light);
}

.pricing__features li svg {
    flex-shrink: 0;
    color: #22c55e;
}

/* Right: Price box */
.pricing__price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    text-align: center;
    min-width: 240px;
    background: linear-gradient(160deg, #f8f7ff 0%, #fff 100%);
}

.pricing__price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 10px;
    line-height: 1;
}

.pricing__currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 10px;
}

.pricing__amount {
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
}

.pricing__period {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 6px;
    margin-left: 4px;
}

.pricing__period span {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.5;
}

.pricing__note {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.pricing__cta {
    width: 100%;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pricing__guarantee {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .77rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
}

.pricing__guarantee svg {
    flex-shrink: 0;
    color: #22c55e;
}

/* FAQ mini */
.pricing__faq {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 860px;
    margin: 56px auto 0;
    padding-top: 52px;
    border-top: 1px solid var(--border);
}

.pricing__faq-item h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.pricing__faq-item p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 760px) {
    .pricing__card {
        grid-template-columns: 1fr;
    }

    .pricing__info {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 36px 28px;
    }

    .pricing__price-box {
        padding: 36px 28px;
    }

    .pricing__faq {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .pricing__toggle-btn {
        padding: 9px 16px;
        font-size: .85rem;
    }
}

/* ==========================================================================
   18. Footer Main
   ========================================================================== */
.footer {
    background: #0d1a3f;
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 64px;
    padding-bottom: 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Marka sütunu */
.footer__logo {
    display: inline-flex;
    margin-bottom: 18px;
    outline-offset: 4px;
}

.footer__logo img {
    height: 38px;
    width: auto;
    display: block;
}

.footer__brand-desc {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,.5);
    max-width: 340px;
}

/* Sütun başlıkları */
.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* İletişim listesi */
.footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}

.footer__contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
    opacity: .85;
}

.footer__contact-list a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__contact-list a:hover {
    color: #fff;
}

/* Kurumsal nav */
.footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav-list a {
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer__nav-list a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Alt bar */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 12.5px;
    color: rgba(255,255,255,.35);
}

.footer__copy a {
    color: rgba(255,255,255,.5);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.footer__copy a:hover {
    color: #fff;
}

.footer__legal {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__legal a {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

.footer__legal a:hover {
    color: rgba(255,255,255,.75);
}

/* Responsive */
@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__col--brand {
        grid-column: auto;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer__legal {
        gap: 14px;
    }
}


/* ==========================================================================
   (responsive devam)
   ========================================================================== */
@media (max-width: 480px) {
    :root {
        --header-height: 64px;
    }

    .container {
        padding-inline: 16px;
    }

    .header__logo img {
        height: 30px;
        min-width: 100px;
    }

    /* Çok küçük ekranlarda CTA gizlenebilir, sadece hamburger kalır */
    .header__actions .btn--primary {
        display: none;
    }
}


/* ==========================================================================
   28. BLOG LİSTELEME SAYFASI (blog.php)
   ========================================================================== */

/* ─── Sayfa Hero (blog.php başlık alanı) ─────────────────────────────────── */
.blog-page-hero {
    padding: 72px 0 56px;
    background: linear-gradient(135deg, #f8f7ff 0%, #eef2ff 100%);
    text-align: center;
}
.blog-page-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(79,70,229,.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.blog-page-hero__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.blog-page-hero__title span { color: var(--primary); }
.blog-page-hero__sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { color: var(--text-muted); flex-shrink: 0; }

/* ─── Kategori filtreler ─────────────────────────────────────────────────── */
.blog-listing {
    padding: 64px 0 80px;
}
.blog-listing__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}
.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: var(--bg-light, #f8f9fc);
    color: var(--text-dark);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
}
.blog-filter-btn:hover {
    border-color: var(--kat-color, var(--primary));
    color: var(--kat-color, var(--primary));
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.blog-filter-btn.active {
    background: var(--kat-color, var(--primary));
    color: #fff;
    border-color: var(--kat-color, var(--primary));
}
.blog-filter-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(0,0,0,.12);
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
}
.blog-filter-btn.active .blog-filter-btn__count { background: rgba(255,255,255,.3); }

/* ─── Grid ───────────────────────────────────────────────────────────────── */
.blog-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

/* ─── Boş durum ──────────────────────────────────────────────────────────── */
.blog-listing__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.blog-listing__empty svg {
    display: block;
    margin: 0 auto 16px;
    opacity: .35;
}
.blog-listing__empty p { font-size: 1rem; margin: 0; }

/* ─── Sayfalama ──────────────────────────────────────────────────────────── */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.blog-pagination__btn,
.blog-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 10px;
    background: #fff;
    color: var(--text-dark);
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .18s, border-color .18s, color .18s;
}
.blog-pagination__btn:hover,
.blog-pagination__page:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.blog-pagination__page.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    pointer-events: none;
}
.blog-pagination__btn.disabled {
    opacity: .4;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .blog-listing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-listing__grid { grid-template-columns: 1fr; }
    .blog-filter-btn    { font-size: .8rem; padding: 7px 14px; }
}


/* ==========================================================================
   29. BLOG DETAY SAYFASI (blog-detay.php)
   ========================================================================== */

/* ─── Breadcrumb (detay sayfası için üst kısım) ─────────────────────────── */
.blog-detail__breadcrumb {
    padding: 28px 0 0;
    margin-bottom: 32px;
}

/* ─── Makale wrapper ─────────────────────────────────────────────────────── */
.blog-detail {
    padding: 0 0 80px;
}

/* ─── İki sütunlu layout (içerik + sidebar) ─────────────────────────────── */
.blog-detail__layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
    margin-top: 40px;
}

/* ─── Başlık alanı ───────────────────────────────────────────────────────── */
.blog-detail__header {
    margin-bottom: 28px;
}
.blog-detail__cat {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    margin-bottom: 16px;
}
.blog-detail__title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}
.blog-detail__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: .875rem;
    color: var(--text-muted);
}
.blog-detail__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-detail__meta-sep {
    color: var(--border, #e2e8f0);
    font-weight: 700;
}

/* ─── Kapak görseli ──────────────────────────────────────────────────────── */
.blog-detail__cover {
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
    margin-bottom: 0;
    text-align: center;
}
.blog-detail__cover img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    transition: transform .4s ease;
}
.blog-detail__cover:hover img { transform: scale(1.02); }

/* ─── Makale içeriği (prose) ─────────────────────────────────────────────── */
.blog-detail__content.prose {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #374151;
}
.blog-detail__content.prose h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.4em 0 .8em;
    padding-bottom: .4em;
    border-bottom: 2px solid #eef2ff;
}
.blog-detail__content.prose h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2em 0 .6em;
}
.blog-detail__content.prose p  { margin-bottom: 1.25em; }
.blog-detail__content.prose ul,
.blog-detail__content.prose ol {
    padding-left: 1.6em;
    margin-bottom: 1.25em;
}
.blog-detail__content.prose li { margin-bottom: .4em; }
.blog-detail__content.prose a  {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-detail__content.prose a:hover { opacity: .8; }
.blog-detail__content.prose blockquote {
    border-left: 4px solid var(--primary);
    background: #eef2ff;
    padding: 16px 20px;
    margin: 1.5em 0;
    border-radius: 0 8px 8px 0;
    color: #4338ca;
    font-style: italic;
}
.blog-detail__content.prose img {
    max-width: 100%;
    border-radius: 10px;
    margin: 1.5em 0;
}
.blog-detail__content.prose strong { color: var(--text-dark); }

/* ─── Paylaş butonları ────────────────────────────────────────────────────── */
.blog-detail__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1.5px solid var(--border, #e2e8f0);
}
.blog-detail__share-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-right: 4px;
}
.blog-detail__share-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: opacity .18s, transform .18s;
}
.share-btn:hover       { opacity: .85; transform: translateY(-1px); }
.share-btn--linkedin   { background: #0A66C2; }
.share-btn--twitter    { background: #1DA1F2; }
.share-btn--facebook   { background: #1877F2; }

/* ─── Sidebar ────────────────────────────────────────────────────────────── */
.blog-detail__sidebar {
    position: sticky;
    top: calc(var(--header-height, 72px) + 24px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Sidebar CTA Kutusu */
.blog-sidebar__cta {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}
.blog-sidebar__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.15);
    border-radius: 14px;
    margin: 0 auto 16px;
    color: #fff;
}
.blog-sidebar__cta h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.blog-sidebar__cta p {
    font-size: .875rem;
    opacity: .85;
    margin-bottom: 18px;
}
.btn--block { width: 100%; text-align: center; justify-content: center; }

/* Sidebar Son Yazılar */
.blog-sidebar__recent {
    background: #fff;
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 16px;
    padding: 24px;
}
.blog-sidebar__title {
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.blog-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.blog-sidebar__list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border, #e2e8f0);
}
.blog-sidebar__list li:last-child { padding-bottom: 0; border-bottom: none; }
.blog-sidebar__cat {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    align-self: flex-start;
}
.blog-sidebar__list a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.4;
}
.blog-sidebar__list a:hover { color: var(--primary); }
.blog-sidebar__date {
    font-size: .78rem;
    color: var(--text-muted);
}

/* ─── İlgili yazılar bölümü ──────────────────────────────────────────────── */
.blog-related {
    padding: 64px 0 80px;
    background: linear-gradient(135deg, #f8f7ff 0%, #eef2ff 100%);
}
.blog-related__title {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 36px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .blog-detail__layout {
        grid-template-columns: 1fr;
    }
    .blog-detail__sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .blog-detail__sidebar { grid-template-columns: 1fr; }
    .blog-detail__title   { font-size: 1.75rem; }
}
@media (max-width: 640px) {
    .blog-page-hero       { padding: 48px 0 36px; }
    .blog-detail__share   { flex-direction: column; align-items: flex-start; }
}

