@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root
:root {
    --brand-dark: #0E1337;
    --brand-text: #05081D;
    --brand-text-light: #5B5F7B;
    --brand-bg: #f8f9fa;
    --brand-border: #E2E4F0;
    --brand-accent-blue: #4A47E4;
    --brand-accent-purple: #7209b7;
    --brand-error: #e53e3e;
    --lume-font: 'Inter', sans-serif;
    --lume-black: #000000;
    --lume-white: #FFFFFF;
    --lume-dark: #0E1337;
    --lume-text: #05081D;
    --lume-text-light: #5B5F7B;
    --lume-bg-light: #f9f9f9;
    --lume-border: #E2E4F0;
    --container-width: 1240px;
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'K2D', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #222222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Body'nin en az ekran yüksekliği kadar olmasını sağlar */
}


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

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

::selection {
    background-color: #132175;
    color: #FFFFFF;
    /* Saf beyaz, maksimum kontrast için */
}

::-moz-selection {
    background-color: #132175;
    color: #FFFFFF;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-weight: 600;
    background-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    color: #111111;
    margin-top: 0;
}

sup {
    margin-top: 13px;
    font-size: 11px;
    font-weight: bold;
}



.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links li a {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    display: flex;
    align-items: center;
    position: relative;
    /* Mega menü için */
}

.nav-links li a i.nav-arrow {
    margin-left: 5px;
    font-size: 0.6em;
    transition: transform 0.25s ease-in-out;
}

.nav-links li.has-megamenu:hover>a .nav-arrow {
    transform: rotate(180deg);
}


.nav-links li a:hover {
    color: #000000;
}

.nav-separator {
    color: #dddddd;
    margin-right: 20px;
}

.navbar-right {
    display: flex;
    align-items: center;
}

.logo {
    font-family: 'K2D';
    font-weight: bold;
    padding-right: 40px;
    display: flex;
    font-size: 2em;
    padding-bottom: 8px;
}

.footer-logo {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}


.lang-button {
    background: none;
    border: 1px solid #cccccc;
    padding: 8px 12px;
    margin-right: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #333333;
}

.lang-button:hover {
    background-color: #f0f0f0;
}

.lang-button i {
    margin-right: 5px;
}

.login-button {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    margin-right: 10px;
    background-color: transparent;
    border: 1px solid transparent;
}

.login-button:hover {
    text-decoration: underline;
    color: #333333;
}

.cta-button {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.cta-button:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

.hamburger-menu-button {
    display: none;
    background: none;
    border: none;
    color: #222222;
    font-size: 22px;
    padding: 8px 10px;
    cursor: pointer;
    margin-left: 10px;
    line-height: 1;
    z-index: 1100;
}

.hamburger-menu-button .icon-close {
    display: none;
}

.hamburger-menu-button .icon-hamburger {
    display: inline;
}


.mobile-nav-menu {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.3s ease-out 0.1s,
        visibility 0s linear 0.4s;
}

.mobile-nav-menu.active {
    max-height: calc(100vh - 60px);
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.2s ease-in,
        visibility 0s linear 0s;
}

.mobile-nav-menu ul {
    padding: 10px 0;
}

.mobile-nav-menu ul li a {
    display: block;
    padding: 15px 25px;
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-menu ul li:last-child a {
    border-bottom: none;
}

.mobile-nav-menu ul li a:hover {
    background-color: #f8f8f8;
    color: #000000;
}

.nav-separator-mobile {
    height: 1px;
    background-color: #eeeeee;
    margin: 10px 25px;
}

/* MEGA MENÜ STİLLERİ (KORUNACAK) */
.nav-links li.has-megamenu {
    position: relative;
}

.mega-menu-panel {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    min-width: 550px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease-out, visibility 0s linear 0.25s, transform 0.25s ease-out;
}

.nav-links li.has-megamenu:hover .mega-menu-panel {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.mega-menu-panel .mega-menu-content.container {
    max-width: 1100px;
    padding: 28px 35px;
    display: flex;
    gap: 35px;
}

.mega-menu-panel.small-panel {
    min-width: 480px;
    max-width: 700px;
}

.mega-menu-panel.small-panel .mega-menu-content.container {
    max-width: 100%;
}

.mega-menu-main-links {
    display: flex;
    gap: 35px;
    flex-grow: 1;
}

.mega-menu-main-links .links-column {
    flex: 1;
    min-width: 180px;
}

.mega-menu-main-links .links-column h4 {
    font-size: 11px;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.9px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
}

.mega-menu-main-links .links-column ul li {
    margin-bottom: 3px;
}

.mega-menu-main-links .links-column ul li a {
    display: block;
    padding: 7px 10px;
    margin: 0 -10px 3px -10px;
    color: #2c3e50;
    transition: color 0.15s ease, background-color 0.15s ease, padding-left 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

.mega-menu-main-links .links-column ul li a:hover {
    color: #000000;
    background-color: #f0f2f5;
    padding-left: 15px;
}

.mega-menu-main-links .link-title {
    display: inline;
    font-weight: 500;
}

.mega-menu-main-links .link-arrow {
    font-size: 0.7em;
    margin-left: 4px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-menu-main-links .links-column ul li a:hover .link-arrow {
    opacity: 0.85;
    transform: translateX(0);
}

.mega-menu-main-links .link-description {
    display: block;
    font-size: 12px;
    color: #5f6c7b;
    font-weight: 400;
    line-height: 1.35;
    margin-top: 2px;
}

.mega-menu-featured-column {
    min-width: 410px;
    flex-grow: 1;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid #e5e5e5;
    display: flex;
    /* İçeriği dikey olarak ortalamak için */
    align-items: center;
    /* İçeriği dikey olarak ortalamak için */
}

.featured-block-premium {
    width: 100%;
    background-color: #1a1d24;
    color: #ffffff;
    padding: 50px 50px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-block-premium h3 {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.featured-block-premium p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #ced4da;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cta-button-dark {
    display: inline-block;
    background-color: #495057;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13.5px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-bottom: 20px;
}

.cta-button-dark:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.featured-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #303642;
}

.featured-logos img {
    height: 24px;
    max-width: 65px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.5);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.featured-logos img:hover {
    filter: grayscale(0%) brightness(0) invert(1) opacity(0.9);
}

.hero-section {
    background-color: #f9f9f9;
    padding: 10px 10px;
    min-height: calc(70vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    animation: fadeInText 1s ease-out forwards;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-headline .highlight {
    color: #000000;
}

.hero-subheadline {
    font-size: 18px;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-width: 2px;
    border-style: solid;
}

.cta-primary {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.cta-primary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.cta-secondary i {
    margin-left: 8px;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-microcopy {
    font-size: 13px;
    color: #666666;
    font-weight: 400;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInVisual 1.2s ease-out forwards;
    min-width: 0;
}

@keyframes fadeInVisual {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-solution-section.modern-variant {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.problem-solution-section.modern-variant .container {
    max-width: 1100px;
}

.problem-solution-section.modern-variant .section-title {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.problem-solution-section.modern-variant .section-subtitle {
    font-size: 17px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    color: #555555;
    line-height: 1.7;
}

/* Grid Yapısı (Aynı kalıyor) */
.problem-solution-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
}

.problem-card,
.solution-card {
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.problem-card {
    background-color: #f8f9fa;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.problem-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border-color: #e0e0e0;
    background-color: #fdfdfd;
}

.solution-card {
    background-color: #1e2125;
    background-image: linear-gradient(145deg, #2c3038, #1e2125);
    color: #ffffff;
    border: 1px solid #3a3f47;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.solution-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-color: #495057;
    background-image: none;
    background-color: #2a2e34;
}

.problem-card h3,
.solution-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.problem-card h3 {
    color: #212529;
}

.solution-card h3 {
    color: #ffffff;
}

.problem-card p,
.solution-card p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.problem-card p {
    color: #555555;
}

.solution-card p {
    color: #ced4da;
}

.solution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #cccccc;
    margin: 15px 0;
    transform: rotate(90deg);
}

/* Yeni İnteraktif Hizmetler İçerik Alanı */
.interactive-services-content {
    display: flex;
    gap: 95px;
    /* Butonlar ve içerik arası boşluk artırıldı (40px -> 50px) */
    align-items: flex-start;
    background-color: #ffffff;
    /* DEĞİŞİKLİK: İçeriğin ana gövdesini daha belirgin yapmak için arka planı saf beyaza çevrildi */
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    /* DEĞİŞİKLİK: Gölge daha yumuşak ve yaygın hale getirildi */
    padding: 30px;
    /* İç padding artırıldı (25px -> 30px), yatayda daha geniş */
    border: 1px solid #e9ecef;
    /* DEĞİŞİKLİK: Arka plan beyaz olduğu için daha görünür ama yumuşak bir sınır eklendi */
    min-height: 450px;
    /* Minimum yükseklik biraz daha azaltıldı (480px -> 450px) */
    position: relative;
}

.services-selector {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 200px;
    /* Minimum genişlik biraz daha azaltıldı (220px -> 200px) */
    padding-right: 25px;
    /* Sağ padding artırıldı (20px -> 25px) */
    border-right: 1px solid #f0f0f0;
}

.service-tab {
    background-color: transparent;
    border: none;
    padding: 14px 18px;
    /* Padding ayarlandı (15px 20px -> 14px 18px) */
    margin-bottom: 7px;
    /* Butonlar arası boşluk ayarlandı (8px -> 7px) */
    border-radius: 4px;
    font-size: 16px;
    /* Font boyutu biraz azaltıldı (17px -> 16px) */
    font-weight: 500;
    color: #333333;
    /* DEĞİŞİKLİK: Okunabilirlik için renk biraz koyulaştırıldı */
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    /* EKLENDİ: box-shadow geçişi eklendi */
    display: flex;
    align-items: center;
}

.service-tab:hover {
    background-color: #f0f0f0;
    color: #1a1a1a;
    transform: translateX(5px);
}

.service-tab.active {
    background-color: var(--primary-color, #000000);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    /* DEĞİŞİKLİK: Gölge daha yumuşak hale getirildi */
    transform: translateX(0);
}

.service-tab.active:hover {
    background-color: var(--primary-color-dark, #333333);
    color: #ffffff;
    transform: translateX(0);
    /* GELİŞTİRME: Aktif tab hover durumunda X ekseninde hareket etmemesi için eklendi */
}

.service-details-display {
    flex-grow: 1;
    position: relative;
    min-height: 380px;
    /* Minimum yükseklik daha da azaltıldı (420px -> 380px) */
    transition: min-height 0.3s ease;
}

.service-detail-panel {
    display: none;
    animation: fadeInScale 0.5s ease-out forwards;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 15px;
    /* Padding azaltıldı (20px -> 15px) */
}

.service-detail-panel.active {
    display: block;
    position: static;
    /* DEĞİŞİKLİK: Animasyon bittikten sonra static olması daha iyi, ancak 'absolute' kalması gerekiyorsa eski haline getirin. Genelde static daha öngörülebilir. */
    animation: none;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.98) translateY(10px);
    }

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

.panel-title {
    font-size: 24px;
    /* Font boyutu biraz azaltıldı (32px -> 30px) */
    margin-bottom: 10px;
    /* Boşluk azaltıldı (15px -> 12px) */
    text-align: left;
    color: #222222;
    /* EKLENDİ: Başlık rengi eklendi */
}

.panel-description {
    font-size: 15px;
    /* Font boyutu biraz azaltıldı (16px -> 15px) */
    line-height: 1.6;
    /* Satır yüksekliği biraz azaltıldı (1.7 -> 1.6) */
    margin-bottom: 25px;
    /* Boşluk azaltıldı (30px -> 25px) */
    text-align: left;
    color: #555555;
    /* EKLENDİ: Paragraf rengi eklendi */
}

.diagram-placeholder {
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 8px;
    position: relative;
    padding: 20px 25px;
    /* Yatay padding artırıldı (20px -> 25px), dikeyde azaltıldı (25px -> 20px) */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    /* Boşluk azaltıldı (30px -> 25px) */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e0e0e0;
    background-image:
        linear-gradient(to right, #e9e9e9 1px, transparent 1px),
        /* DEĞİŞİKLİK: Izgara rengi biraz daha yumuşatıldı */
        linear-gradient(to bottom, #e9e9e9 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
}

/* Diyagram Adım Öğesi */
.diagram-step-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 10px 18px;
    /* Padding ayarlandı (12px 20px -> 10px 18px) */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 90%;
    /* Kutuların yatayda daha fazla yayılması için artırıldı (85% -> 90%) */
    width: fit-content;
    /* GELİŞTİRME: İçeriğe göre genişlik alması için bırakıldı, gerekirse %100 yapılabilir. */
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.diagram-step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.step-counter {
    background-color: var(--primary-color, #000000);
    /* DEĞİŞİKLİK: Ana renk değişkeni kullanıldı */
    color: #ffffff;
    width: 26px;
    /* Boyut küçültüldü (28px -> 26px) */
    height: 26px;
    /* Boyut küçültüldü */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    /* Font küçültüldü (14px -> 13px) */
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 10px;
    /* Boşluk ayarlandı (12px -> 10px) */
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-content-box {
    flex-grow: 1;
    text-align: left;
    margin-right: 0px;
    /* Boşluk ayarlandı (15px -> 12px) */
}

.step-content-box .step-title {
    display: flex;
    font-size: 15px;
    /* Font küçültüldü (16px -> 15px) */
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1px;
    /* Boşluk azaltıldı (2px -> 1px) */
    text-align: center;
    justify-content: center;
}

.step-content-box .step-description {
    display: block;
    font-size: 16px;
    /* Font küçültüldü (13px -> 12px) */
    color: #555555;
    line-height: 1.2;
    /* Satır yüksekliği azaltıldı (1.3 -> 1.2) */
}

.step-icon-right {
    font-size: 18px;
    /* Font ayarlandı (20px -> 18px) */
    color: var(--primary-color, #000000);
    flex-shrink: 0;
}

/* Diyagram Okları */
.diagram-arrow {
    font-size: 22px;
    /* Font küçültüldü (24px -> 22px) */
    color: #bbbbbb;
    /* DEĞİŞİKLİK: Ok rengi biraz koyulaştırıldı */
    line-height: 1;
    margin: 8px 0;
    /* Adımlar arası boşluk azaltıldı (10px -> 8px) */
    z-index: 1;
}

.panel-cta {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    /* Diyagram ile buton arasına boşluk azaltıldı (25px -> 20px) */
}

.panel-cta .cta-button {
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    display: inline-block;
    background-color: var(--primary-color, #000000);
    /* EKLENDİ: Buton için ana renk */
    color: #ffffff;
    /* EKLENDİ: Buton yazı rengi */
    border: none;
    /* EKLENDİ: Varsayılan border'ı kaldırmak için */
    cursor: pointer;
    /* EKLENDİ: Kullanıcı deneyimi için */
    text-decoration: none;
    /* EKLENDİ: <a> etiketi ise alt çizgiyi kaldırır */
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    /* EKLENDİ: Geçiş efektleri */
}

.panel-cta .cta-button:hover {
    /* EKLENDİ: Buton hover durumu */
    background-color: var(--primary-color-dark, #333333);
    color: #ffffff;
    /* GELİŞTİRME: Hover durumunda yazı rengi tutarlılığı */
    transform: translateY(-2px);
    /* EKLENDİ: Hafif yukarı kalkma efekti */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    /* GELİŞTİRME: Hover'da daha belirgin gölge */
}

.features-section {
    padding-top: 30px;
    /* Dikey üst padding azaltıldı (60px -> 50px) */
    padding-bottom: 30px;
    /* Dikey alt padding azaltıldı (60px -> 50px) */
    background-color: #f8f9fa;
    text-align: center;
    overflow-x: hidden;
}

.features-container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-section .section-subtitle {
    margin-bottom: 30px;
    font-size: 17px
}

.features-section .section-title {
    font-size: 30px;
}

/* Yeni İnteraktif Hizmetler İçerik Alanı */
.interactive-services-content {
    display: flex;
    gap: 95px;
    /* Butonlar ve içerik arası boşluk artırıldı (40px -> 50px) */
    align-items: flex-start;
    background-color: #ffffff;
    /* DEĞİŞİKLİK: İçeriğin ana gövdesini daha belirgin yapmak için arka planı saf beyaza çevrildi */
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    /* DEĞİŞİKLİK: Gölge daha yumuşak ve yaygın hale getirildi */
    padding: 30px;
    /* İç padding artırıldı (25px -> 30px), yatayda daha geniş */
    border: 1px solid #e9ecef;
    /* DEĞİŞİKLİK: Arka plan beyaz olduğu için daha görünür ama yumuşak bir sınır eklendi */
    min-height: 450px;
    /* Minimum yükseklik biraz daha azaltıldı (480px -> 450px) */
    position: relative;
}

.services-selector {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 200px;
    padding-right: 25px;
    border-right: 1px solid #f0f0f0;
}

.service-tab {
    background-color: transparent;
    border: none;
    padding: 14px 18px;
    margin-bottom: 7px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    /* EKLENDİ: box-shadow geçişi eklendi */
    display: flex;
    align-items: center;
}

.service-tab:hover {
    background-color: #f0f0f0;
    color: #1a1a1a;
    transform: translateX(5px);
}

.service-tab.active {
    background-color: var(--primary-color, #000000);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateX(0);
}

.service-tab.active:hover {
    background-color: var(--primary-color-dark, #333333);
    color: #ffffff;
    transform: translateX(0);
}

.service-details-display {
    flex-grow: 1;
    position: relative;
    min-height: 380px;
    /* Minimum yükseklik daha da azaltıldı (420px->380px) */
    transition: min-height 0.3s ease;
}

.service-detail-panel {
    display: none;
    animation: fadeInScale 0.5s ease-out forwards;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 15px;
    /* Padding azaltıldı (20px -> 15px) */
}

.service-detail-panel.active {
    display: block;
    position: static;
    animation: none;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.98) translateY(10px);
    }

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

.panel-title {
    font-size: 24px;
    /* Font boyutu biraz azaltıldı (32px -> 30px) */
    margin-bottom: 10px;
    /* Boşluk azaltıldı (15px -> 12px) */
    text-align: left;
    color: #222222;
    /* EKLENDİ: Başlık rengi eklendi */
}

.panel-description {
    font-size: 15px;
    /* Font boyutu biraz azaltıldı (16px -> 15px) */
    line-height: 1.6;
    /* Satır yüksekliği biraz azaltıldı (1.7 -> 1.6) */
    margin-bottom: 25px;
    /* Boşluk azaltıldı (30px -> 25px) */
    text-align: left;
    color: #555555;
    /* EKLENDİ: Paragraf rengi eklendi */
}

.diagram-placeholder {
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 8px;
    position: relative;
    padding: 20px 25px;
    /* Yatay padding artırıldı (20px -> 25px), dikeyde azaltıldı (25px -> 20px) */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    /* Boşluk azaltıldı (30px -> 25px) */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e0e0e0;
    background-image:
        linear-gradient(to right, #e9e9e9 1px, transparent 1px),
        /* DEĞİŞİKLİK: Izgara rengi biraz daha yumuşatıldı */
        linear-gradient(to bottom, #e9e9e9 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
}

/* Diyagram Adım Öğesi */
.diagram-step-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 10px 18px;
    /* Padding ayarlandı (12px 20px -> 10px 18px) */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 90%;
    /* Kutuların yatayda daha fazla yayılması için artırıldı (85% -> 90%) */
    width: fit-content;
    /* GELİŞTİRME: İçeriğe göre genişlik alması için bırakıldı, gerekirse %100 yapılabilir. */
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.diagram-step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.step-counter {
    background-color: var(--primary-color, #000000);
    /* DEĞİŞİKLİK: Ana renk değişkeni kullanıldı */
    color: #ffffff;
    width: 26px;
    /* Boyut küçültüldü (28px -> 26px) */
    height: 26px;
    /* Boyut küçültüldü */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    /* Font küçültüldü (14px -> 13px) */
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 10px;
    /* Boşluk ayarlandı (12px -> 10px) */
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-content-box {
    flex-grow: 1;
    text-align: left;
    margin-right: 12px;
    /* Boşluk ayarlandı (15px -> 12px) */
}

.step-content-box .step-title {
    display: flex;
    font-size: 15px;
    /* Font küçültüldü (16px -> 15px) */
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1px;
    /* Boşluk azaltıldı (2px -> 1px) */
    text-align: center;
}

.step-content-box .step-description {
    display: block;
    font-size: 12px;
    /* Font küçültüldü (13px -> 12px) */
    color: #555555;
    line-height: 1.2;
    /* Satır yüksekliği azaltıldı (1.3 -> 1.2) */
}

.step-icon-right {
    font-size: 18px;
    /* Font ayarlandı (20px -> 18px) */
    color: var(--primary-color, #000000);
    flex-shrink: 0;
}

/* Diyagram Okları */
.diagram-arrow {
    font-size: 22px;
    /* Font küçültüldü (24px -> 22px) */
    color: #bbbbbb;
    /* DEĞİŞİKLİK: Ok rengi biraz koyulaştırıldı */
    line-height: 1;
    margin: 8px 0;
    /* Adımlar arası boşluk azaltıldı (10px -> 8px) */
    z-index: 1;
}

.panel-cta {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    /* Diyagram ile buton arasına boşluk azaltıldı (25px -> 20px) */
}

.panel-cta .cta-button {
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    display: inline-block;
    background-color: var(--primary-color, #000000);
    /* EKLENDİ: Buton için ana renk */
    color: #ffffff;
    /* EKLENDİ: Buton yazı rengi */
    border: none;
    /* EKLENDİ: Varsayılan border'ı kaldırmak için */
    cursor: pointer;
    /* EKLENDİ: Kullanıcı deneyimi için */
    text-decoration: none;
    /* EKLENDİ: <a> etiketi ise alt çizgiyi kaldırır */
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    /* EKLENDİ: Geçiş efektleri */
}

.panel-cta .cta-button:hover {
    /* EKLENDİ: Buton hover durumu */
    background-color: var(--primary-color-dark, #333333);
    color: #ffffff;
    /* GELİŞTİRME: Hover durumunda yazı rengi tutarlılığı */
    transform: translateY(-2px);
    /* EKLENDİ: Hafif yukarı kalkma efekti */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    /* GELİŞTİRME: Hover'da daha belirgin gölge */
}

.contact-banner-container {
    width: 100%;
    max-width: 950px;
}

/* Banner'ın ana gövdesi */
.contact-banner-content {
    /* === İSTEDİĞİN GRADIENT KODU BURAYA ENTEGRE EDİLDİ === */
    background: linear-gradient(105deg, #1e2a3d 0%, #4a586e 100%);

    color: #ffffff;
    border-radius: 18px;
    /* Yumuşak kenarlar */
    padding: 45px 55px;
    display: flex;
    justify-content: space-between;
    /* İçerikleri iki uca yaslar */
    align-items: center;
    /* Dikey olarak ortalar */
    gap: 30px;
    /* Esnek boşluk */
    box-shadow: 0 12px 35px rgba(42, 55, 78, 0.35);
    /* Derinlik hissi için gölge */
}

/* Sol taraftaki metin alanı */
.text-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.text-content p {
    font-size: 16px;
    margin: 0;
    color: #ced4da;
    /* Ana beyazdan daha yumuşak bir ton */
    max-width: 450px;
    /* Metnin çok uzamasını engeller */
}

/* Sağdaki Buton */
.contact-cta-button {
    display: inline-block;
    background: transparent;
    /* İçi boş */
    color: #ffffff;
    border: 2px solid #ffffff;
    /* Beyaz çerçeve */
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    /* Buton metninin alt satıra kaymasını engeller */
}

/* Butonun üzerine gelince (hover) efekti */
.contact-cta-button:hover {
    background: #ffffff;
    color: #1e2a3d;
    /* Gradient'in başlangıç rengiyle uyumlu metin rengi */
    transform: translateY(-3px);
    /* Hafif yukarı kalkma efekti */
}

/* Mobil ve Tablet Uyumluluğu */
@media (max-width: 768px) {
    .contact-banner-content {
        flex-direction: column;
        /* Öğeleri alt alta dizer */
        text-align: center;
        /* Metni ortalar */
        padding: 40px 30px;
    }

    .text-content {
        margin-bottom: 30px;
        /* Metin ve buton arasına boşluk koyar */
    }
}

/* === Ana Bölüm Stilleri === */
.how-it-works-section.modern-steps-layout {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.how-it-works-section.modern-steps-layout .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-it-works-section.modern-steps-layout .section-title {
    margin-bottom: 15px;
    font-size: 30px;
    color: #1a1a1a;
}

.how-it-works-section.modern-steps-layout .section-subtitle {
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #555555;
    font-size: 17px;
}

/* === İki Sütunlu Yerleşim === */
.steps-layout-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    text-align: left;
}

.steps-visual-column {
    flex: 1 1 45%;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    transition: height 0.4s ease-out;
    border-radius: 16px;
}

.steps-accordion-column {
    flex: 1 1 55%;
}

.accordion-steps-container {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    background-color: #ffffff;
}

.accordion-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: inherit;
}

.accordion-item.active>.accordion-header,
.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-step-number-container {
    display: flex;
    align-items: center;
    color: var(--primary-color, #132175);
    margin-right: 15px;
    flex-shrink: 0;
    width: 2.2em;
    text-align: left;
}

.accordion-step-number {
    font-size: 16px;
    font-weight: 600;
}

.accordion-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex-grow: 1;
    line-height: 1.45;
}

.accordion-arrow {
    margin-left: 15px;
    font-size: 13px;
    color: #444444;
    transition: transform 0.3s ease-in-out;
    padding-left: 10px;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--primary-color, #0d6efd);
}

.accordion-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    background-color: #ffffff;
    padding-left: 25px;
    padding-right: 25px;
}

.accordion-item.active .accordion-content {
    padding-top: 15px;
    padding-bottom: 20px;
}

.step-description {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    margin-left: calc(2.2em + 15px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-visual-mobile {
    display: none;
    /* Mobilde gösterilecek */
}

/* === GSAP ANİMASYON ALANI STİLLERİ === */
#gsap-animation-container,
.accordion-visual-mobile {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#gsap-animation-container .anim-element,
.accordion-visual-mobile .anim-element {
    position: absolute;
    opacity: 0;
    transform-origin: center center;
    color: #212529;
    z-index: 1;
}

.icon-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 8;
}

.icon-wrapper svg {
    width: 65%;
    height: 65%;
    stroke: #495057;
    stroke-width: 1.5;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

/* === IDLE (BOŞTA KALMA) ANİMASYON STİLLERİ === */
#idle-animation-wrapper,
.accordion-visual-mobile #idle-animation-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
}

.idle-background-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(13, 110, 253, 0) 70%);
    border-radius: 50%;
}

.idle-number-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.idle-number {
    position: absolute;
    font-size: 48px;
    font-weight: 700;
    color: #495057;
    opacity: 0;
}

/* === ADIM 1: Tanışma ve İhtiyaç Analizi === */
#step1-person {
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

#step1-lume {
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%);
    width: 80px;
    height: 80px;
}

#step1-dialogue {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0d6efd, #0056b3);
    z-index: 9;
}

#step1-dialogue svg {
    stroke: #ffffff;
    stroke-width: 2;
}

.step1-items-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    padding: 15px;
    box-sizing: border-box;
    z-index: 10;
}

.step1-item {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-1 {
    grid-area: 1 / 1 / 2 / 2;
}

.item-2 {
    grid-area: 1 / 4 / 2 / 5;
}

.item-3 {
    grid-area: 4 / 1 / 5 / 2;
}

.item-4 {
    grid-area: 4 / 4 / 5 / 5;
}

.item-5 {
    grid-area: 2 / 1 / 3 / 2;
}

.item-6 {
    grid-area: 2 / 4 / 3 / 5;
}

.item-7 {
    grid-area: 3 / 1 / 4 / 2;
}

.item-8 {
    grid-area: 3 / 4 / 4 / 5;
}


/* === ADIM 2: Fikirden Tasarıma === */
#step2-design-tool {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fd7e14, #dc6f02);
    z-index: 5;
}

#step2-design-tool svg {
    stroke: #ffffff;
    stroke-width: 2;
    width: 60%;
    height: 60%;
}

.step2-wireframe {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #adb5bd;
    border-radius: 8px;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 4;
}

.step2-wf-header {
    top: 12%;
    left: 18%;
    width: 64%;
    height: 14%;
}

.step2-wf-sidebar {
    top: 28%;
    left: 18%;
    width: 28%;
    height: 52%;
}

.step2-wf-main {
    top: 28%;
    left: 48%;
    width: 34%;
    height: 52%;
}

/* === ADIM 3: Geliştirme & Düzenleme === */
#step3-code-editor {
    width: 80%;
    height: 70%;
    top: 50%;
    left: 50%;
    background: #212529;
    border-radius: 8px;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.editor-header {
    height: 30px;
    background: #343a40;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.editor-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.editor-header .dot:nth-child(1) {
    background: #ff5f56;
}

.editor-header .dot:nth-child(2) {
    background: #ffbd2e;
}

.editor-header .dot:nth-child(3) {
    background: #27c93f;
}

.editor-body {
    padding: 15px;
    font-family: 'SF Mono', 'Monaco', monospace;
    color: #ced4da;
    font-size: 14px;
}

.code-line {
    white-space: pre;
    margin: 0;
    opacity: 0;
}

.code-line .tag {
    color: #e83e8c;
}

.code-line .class {
    color: #fd7e14;
}

.code-line .comment {
    color: #6c757d;
}

.code-line .cursor {
    color: #f8f9fa;
    background: #f8f9fa;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        background: transparent;
    }
}


/* === ADIM 4: Yayına Alma ve Destek === */
#step4-rocket {
    bottom: -25%;
    left: 45%;
    transform: translateX(-50%) rotate(-45deg);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    z-index: 10;
}

#step4-rocket svg {
    stroke: #ffffff;
    stroke-width: 1.5;
}

#step4-globe {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    z-index: 8;
}

#step4-globe svg {
    stroke: #0d6efd;
    stroke-width: 1.5;
}

.pulse-dot {
    position: absolute;
    background-color: #0d6efd;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 9;
}


/* === RESPONSIVE DÜZENLEMELER === */
@media (max-width: 992px) {
    .steps-visual-column {
        display: none;
    }

    .steps-accordion-column {
        flex: 0 0 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .step-description {
        margin-left: 0;
    }

    .accordion-visual-mobile {
        display: block;
        min-height: 300px;
        margin-bottom: 20px;
        position: relative;
    }

    /* MOBİL ANİMASYON DÜZELTMELERİ */
    .accordion-visual-mobile .step1-items-grid {
        display: none;
    }

    .accordion-visual-mobile #step1-person,
    .accordion-visual-mobile #step1-lume,
    .accordion-visual-mobile #step1-dialogue {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .accordion-visual-mobile #step1-person,
    .accordion-visual-mobile #step1-lume {
        width: 60px;
        height: 60px;
    }

    .accordion-visual-mobile #step1-dialogue {
        width: 70px;
        height: 70px;
    }

    .accordion-visual-mobile #step3-code-editor {
        width: 95%;
        height: 85%;
    }

    .accordion-visual-mobile .editor-body {
        font-size: 11px;
        padding: 10px;
    }
}

/* Özel Kart Yerleşimleri (Grid pozisyonları bir öncekiyle aynı) */
.feature-card-v2.layout-item-tall-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.feature-card-v2.layout-item-top-right-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.feature-card-v2.layout-item-top-right-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.feature-card-v2.layout-item-mid-right-1 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.feature-card-v2.layout-item-mid-right-2 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.feature-card-v2.layout-item-full-bottom {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
}

/* Uzun ve Geniş Kartlardaki Görsel Alanları İçin Özel Yükseklikler */
.feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder {
    min-height: 550px;
    /* İstediğin gibi x2 uzatıldı (Standart 160px'in iki katından fazla) */
}

.feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
    min-height: 180px;
}

/* INTEGRATIONS SECTION */
/* =============================================== */
/* ENTEGRASYONLAR BÖLÜMÜ - GÜNCELLENMİŞ STİLLER   */
/* =============================================== */

.integrations-section {
    padding: 70px 0;
    /* Üst ve alt boşluk biraz ayarlandı */
    background-color: #f8f9fa;
    /* Bölümün ana arka planı beyaz */
    text-align: center;
}

.integrations-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.integrations-section .section-title {
    font-size: 30px;
    /* Başlık boyutu referansa yakın */
    font-weight: 600;
    /* Referanstaki gibi daha ince olabilir veya 700 kalabilir */
    color: #1a202c;
    /* Koyu, siyaha yakın bir başlık rengi */
    margin-bottom: 40px;
    /* Başlık ve logolar arası boşluk */
    line-height: 1.3;
}

/* Alt başlık kaldırıldığı için .integrations-section .section-subtitle stilleri silinebilir veya yorumda kalabilir */

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    /* Kart genişliği ve sığdırma ayarı */
    gap: 18px;
    /* Kartlar arası boşluk (referansa yakın) */
    margin-bottom: 50px;
}

.integration-item {
    background-color: #f8f9fa;
    /* Kartların arka planı (hafif gri, beyaz zeminden ayrışır) */
    padding: 20px;
    border-radius: 12px;
    /* Referanstaki gibi yuvarlak köşeler */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    /* Çok minimal bir gölge */
    border: 1px solid #f0f2f5;
    /* Çok hafif bir sınır */
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    /* Sadece renk ve gölge geçişi */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    /* Kartlara sabit bir yükseklik (referanstaki gibi) */
    overflow: hidden;
    /* Taşan logoları gizle */
}

.integration-item:hover {
    /* transform: none; // Hareket efekti yok */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

/* .integration-logo-wrapper artık gerekmeyebilir, img doğrudan .integration-item içinde */

.integration-item img {
    max-width: 80%;
    /* Kartın içindeki logonun maksimum genişliği */
    max-height: 40px;
    /* Logonun maksimum yüksekliği (referansa yakın) */
    object-fit: contain;
}


.all-integrations-link-wrapper {
    text-align: center;
    margin-top: 40px;
    /* Butonla grid arası boşluk */
}

.all-integrations-link-wrapper .cta-button-secondary-alt {
    color: #2d3748;
    /* Metin rengi koyu, bu doğru */
    border: 1px solid #cccccc;
    /* SINIRI DAHA GÖRÜNÜR YAP */
    background-color: transparent;
    /* ARKA PLANI ŞEFFAF YAP (ANA ÇÖZÜM) */
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: none;
    /* Başlangıç gölgesini kaldır */
}

.all-integrations-link-wrapper .cta-button-secondary-alt:hover {
    border-color: #ced4da;
    background-color: #fdfdfd;
}

/* PRICING SECTION (Ana Sayfa) */
.pricing-section:not(.detailed-pricing-comparison-section) {
    /* Sadece ana sayfadaki fiyatlandırma bölümünü hedefler */
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.pricing-section:not(.detailed-pricing-comparison-section) .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    background-color: #e0e0e0;
    border-radius: 25px;
    padding: 5px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.pricing-section:not(.detailed-pricing-comparison-section) .toggle-btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    background-color: transparent;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.pricing-section:not(.detailed-pricing-comparison-section) .toggle-btn.active {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-section:not(.detailed-pricing-comparison-section) .savings-badge {
    font-size: 0.75em;
    font-weight: 600;
    color: #333333;
    margin-left: 5px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-card.highlighted {
    border: 2px solid #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pricing-section:not(.detailed-pricing-comparison-section) .badge-popular {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #000000;
    color: #ffffff;
    padding: 6px 20px 6px 15px;
    font-size: 13px;
    font-weight: 600;
    border-bottom-left-radius: 12px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .card-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-for {
    font-size: 14px;
    color: #555555;
    min-height: 40px;
    font-weight: 400;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-price {
    margin-bottom: 25px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .price-value {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    display: none;
}

.pricing-section:not(.detailed-pricing-comparison-section) .price-value.monthly-price {
    display: inline-block;
}

.pricing-section:not(.detailed-pricing-comparison-section) .period {
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    margin-left: 5px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .features-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-section:not(.detailed-pricing-comparison-section) .features-list li {
    font-size: 15px;
    color: #333333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.pricing-section:not(.detailed-pricing-comparison-section) .features-list li i {
    color: #000000;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-section:not(.detailed-pricing-comparison-section) .features-list li i.text-muted {
    color: #aaaaaa;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-cta {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    text-align: center;
    display: block;
    background-color: #333333;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-cta:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-card.highlighted .plan-cta,
.pricing-section:not(.detailed-pricing-comparison-section) .plan-cta.primary {
    background-color: #000000;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-card.highlighted .plan-cta:hover,
.pricing-section:not(.detailed-pricing-comparison-section) .plan-cta.primary:hover {
    background-color: #333333;
}

.pricing-section:not(.detailed-pricing-comparison-section).show-yearly .monthly-price {
    display: none;
}

.pricing-section:not(.detailed-pricing-comparison-section).show-yearly .yearly-price {
    display: inline-block;
}

.pricing-section:not(.detailed-pricing-comparison-section) .hero-microcopy {
    /* Ana sayfadaki fiyatlandırma için microcopy */
    font-size: 13px;
    color: #666666;
    font-weight: 400;
    margin-top: 20px;
}


.premium-showcase-section {
    background: linear-gradient(135deg, #000000 30%, #474747 70%);
    color: #ffffff;
    padding: 70px 20px 80px 20px;
    text-align: left;
}

.premium-showcase-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.premium-showcase-text {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    margin-right: 20px;
}

.premium-showcase-title {
    color: #ffffff !important;
    text-align: left !important;
    font-size: 30px !important;
    font-weight: 700;
    margin-bottom: 15px !important;
}

.premium-showcase-description {
    font-size: 16px;
    line-height: 1.75;
    color: #ced4da;
    margin-bottom: 30px;
}

.premium-showcase-section .cta-button-dark-bg {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1d24;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.premium-showcase-section .cta-button-dark-bg:hover {
    background-color: #e9ecef;
    color: #1a1d24;
    transform: translateY(-2px);
}

.premium-showcase-visual {
    flex: 1;
    min-width: 300px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-showcase-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-logos-row img {
    height: 32px;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.5);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-logos-row img:hover {
    filter: grayscale(0%) brightness(0) invert(1) opacity(0.9);
}

.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section .section-title {
    color: #000000;
    font-size: 30px;
}

.faq-section .section-subtitle {
    margin-bottom: 50px;
    font-size: 17px;
}

.faq-accordion {
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.faq-question {
    background-color: transparent;
    width: 100%;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.2s ease;
}

.faq-question-text-content {
    flex-grow: 1;
    margin-right: 10px;
    word-break: break-word;
    hyphens: auto;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-icon {
    font-size: 16px;
    color: #000000;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    background-color: #ffffff;
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin: 0;
    font-weight: 400;
}

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

.contact-form-section {
    padding: 100px 20px;
    background-color: #ffffff;
    /* Hafif kırık beyaz / çok açık gri */
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    /* Sol sütun biraz daha dar */
    gap: 80px;
    /* Sütunlar arası boşluk */
    align-items: center;
    background-color: #ffffff;
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(80, 80, 120, 0.08);
}

.contact-form-left {
    text-align: left;
}

.contact-avatars {
    display: flex;
    margin-bottom: 25px;
}

.contact-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-avatars img:not(:first-child) {
    margin-left: -15px;
    /* Avatarları üst üste bindir */
}

.contact-form-title {
    font-size: 42px;
    /* Başlık boyutu */
    font-weight: 700;
    color: #1a1d24;
    line-height: 1.3;
    margin-bottom: 30px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e9e9ff;
    /* Açık leylak */
    color: #5353c6;
    /* Orta ton mor/mavi */
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.contact-badge i {
    font-size: 1.1em;
}

.contact-form-right {
    width: 100%;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .input-group {
    flex: 1;
    /* Alanların eşit yer kaplaması için */
    position: relative;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #dfe3e8;
    /* Hafif gri border */
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', 'K2D', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus {
    outline: none;
    border-color: #5353c6;
    box-shadow: 0 0 0 3px rgba(83, 83, 198, 0.15);
}

.contact-form input::placeholder {
    color: #9095a0;
}

.phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    padding-left: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-input-group:focus-within {
    /* Input focus olduğunda çerçeveyi de etkile */
    border-color:var(--lume-dark);
    box-shadow: 0 0 0 3px rgba(83, 83, 198, 0.15);
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333333;
    font-weight: 500;
    font-size: 15px;
    padding-right: 10px;
    border-right: 1px solid #dfe3e8;
    margin-right: 10px;
    flex-shrink: 0;
}

.phone-prefix img {
    width: 16px;
    height: auto;
}

.phone-input-group input[type="tel"] {
    border: none;
    /* Çerçeve dış dive taşındı */
    padding-left: 0;
    /* İç boşluk sıfırlandı */
    flex-grow: 1;
    /* Kalan alanı doldur */
}

.phone-input-group input[type="tel"]:focus {
    box-shadow: none;
    /* İç input focus gölgesi kaldırıldı */
}

.form-checkbox-row {
    margin-bottom: 30px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--lume-dark);
    /* Checkbox rengi */
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    color: #555555;
}

.checkbox-group label a {
    color: #5353c6;
    text-decoration: underline;
}

.checkbox-group label a:hover {
    color: #3e3e9d;
}

.form-submit-row {
    justify-content: flex-end;
    /* Butonu sağa yasla */
}

.contact-submit-btn {
    background: linear-gradient(135deg, #000000 30%, #474747 70%);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.contact-submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(83, 83, 198, 0.3);
}

.form-message-container {
    padding: 15px 20px;
    margin-bottom: 20px;
    /* Formla arasında boşluk */
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
    border-width: 1px;
    border-style: solid;
}

.form-message-container strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-message-container ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.form-message-container ul li {
    margin-bottom: 4px;
}

.form-message-container ul li:last-child {
    margin-bottom: 0;
}

.form-message-container.error {
    background-color: #fdecea;
    border-color: #f5c6cb;
    color: #721c24;
}

.form-message-container.error strong {
    color: #721c24;
    font-size: 1.05em;
}

.form-message-container.error ul {
    padding-left: 18px;
    list-style-type: disc;
    font-size: 0.95em;
}

.form-message-container.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.form-message-container.success p {
    margin: 0;
}

.form-message-container.success p#homepageRedirectCountdown {
    margin-top: 8px;
    font-weight: normal;
    /* Kalın olmasın */
    font-size: 0.9em;
    color: #0f5132;
}

.hidden-form-field {
    /*Bu kısım izleme için*/
    opacity: 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 0 !important;
    width: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#detailsPopupOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1060;
    /* Terms modalından biraz daha üstte olabilir */
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#detailsPopupOverlay.active {
    display: flex;
    opacity: 1;
}

#detailsPopupContent {
    /* Zaten .modal-content ile aynı stile sahip olabilir */
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 550px;
    /* Popup biraz daha dar olabilir */
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(-10px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#detailsPopupOverlay.active #detailsPopupContent {
    transform: scale(1) translateY(0);
}

#detailsPopupContent .modal-header {
    /* .modal-header stilini kullanabilir */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e6ed;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

#detailsPopupContent .modal-header h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin: 0;
}

#detailsPopupContent .close-modal {
    /* .close-modal stilini kullanabilir */
    font-size: 26px;
    font-weight: bold;
    color: #5f6c7b;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: color 0.2s ease;
}

#detailsPopupContent .close-modal:hover {
    color: #1a1a1a;
}

#detailsPopupContent .modal-body-text {
    /* .modal-body-text stilini kullanabilir */
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

#detailsPopupContent .form-group {
    margin-bottom: 18px;
}

#detailsPopupContent .form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 6px;
}

#detailsPopupContent .form-select,
#detailsPopupContent .form-textarea {
    /* Admin panelindeki form elemanlarına benzer stil */
    width: 100%;
    padding: 10px 12px;
    font-size: 14.5px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
}

#detailsPopupContent .form-select:focus,
#detailsPopupContent .form-textarea:focus {
    border-color: #5353c6;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(83, 83, 198, 0.25);
}

#detailsPopupContent .form-actions {
    text-align: right;
}

#detailsPopupContent .submit-button {
    /* .contact-form-actual .submit-button stilini kullanabilir */
    padding: 10px 25px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
}

#detailsPopupContent .submit-button:hover {
    background-color: #333333;
}

#detailsFormMessageContainer .form-message-container {
    font-size: 0.9em;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.cta-section {
    width: 100%;
    background-color: #171D29;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: #C8CCD4;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 200px;
    height: 56px;
    justify-content: center;
}

.cta-btn-primary {
    background-color: #25314D;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 49, 77, 0.4);
}

.cta-btn-primary:hover {
    background-color: #fff;
    color: #25314D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn-secondary:hover {
    background-color: #fff;
    color: #25314D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.trust-message {
    font-size: 0.9rem;
    color: #C8CCD4;
    font-style: italic;
    opacity: 0.8;
}

/* Background decoration */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 49, 77, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .cta-section {
        padding: 40px 15px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.7rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }
}

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

/* Pulse animation for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 49, 77, 0.4);
    }

    50% {
        box-shadow: 0 6px 20px rgba(37, 49, 77, 0.6);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 49, 77, 0.4);
    }
}

.cta-btn-primary {
    animation: pulse 2s infinite;
}

.cta-microcopy {
    font-size: 13px;
    color: #666666;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.cta-microcopy .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
}

.cta-microcopy i {
    color: #4ade80;
    font-size: 14px;
}


@media (max-width: 768px) {
    .dedicated-cta-section {
        padding: 60px 15px;
    }

    .cta-buttons-group {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button-main,
    .cta-button-secondary-alt {
        width: 100%;
        max-width: 320px;
        padding: 16px 30px;
        font-size: 16px;
    }

    .cta-microcopy {
        flex-direction: column;
        gap: 15px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .dedicated-cta-section {
        padding: 50px 10px;
    }

    .cta-headline {
        margin-bottom: 20px;
    }

    .cta-subtext {
        margin-bottom: 35px;
    }
}

/* Accessibility improvements */
.cta-button-main:focus,
.cta-button-secondary-alt:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    .shiny-button::before,
    .dedicated-cta-section::before {
        animation: none;
    }

    .cta-button-main,
    .cta-button-secondary-alt {
        transition: none;
    }
}


.blog-snippet-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.blog-snippet-section .section-title {
    text-align: center;
    justify-content: center;
    font-size: 30px;
}

.blog-snippet-section .section-subtitle {
    text-align: center;
    justify-content: center;
    font-size: 17px;
}


.blog-snippet-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-snippet-section .section-subtitle {
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    border: 1px solid #e9ecef;
}

.blog-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-color: #ced4da;
    background-color: #fdfdfd;
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
    position: relative;
    /* Kategori etiketinin pozisyonlanması için eklendi */
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 13px;
    color: #555555;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-card-meta .meta-separator {
    margin: 0 5px;
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #35124257;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    z-index: 2;
    line-height: 1.3;
    opacity: 1;
}

.blog-card-category:hover {
    background-color: #132175;
    transform: scale(1.03);
}

.blog-card-title {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card-title a {
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color, #000000);
}

.blog-card-excerpt {
    font-size: 14.5px;
    color: #495057;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 400;
    overflow:hidden;
    display:none;
}

.read-more-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color, #000000);
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.read-more-link i {
    margin-left: 6px;
    font-size: 0.9em;
    transition: transform 0.2s ease;
}

.read-more-link:hover {
    color: var(--primary-hover-color, #333333);
}

.read-more-link:hover i {
    transform: translateX(2px);
}

.all-posts-link-wrapper {
    text-align: center;
    margin-top: 50px;
    /* Blog kartları ile arasında daha iyi bir boşluk */
    margin-bottom: 50px;
    /* Altında gelecek bölümle de boşluk olsun */
}

.section-title .char,
.section-subtitle .char {
    opacity: 0;
    /* SplitText harflerini başlangıçta gizle */
}

/* ==========================================================================
   1. TEMEL BÖLÜM VE KART STİLLERİ
   ========================================================================== */
/* ==========================================================================
   1. TEMEL BÖLÜM VE KART STİLLERİ
   ========================================================================== */

.features-section-v2 {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
    overflow-x: hidden;
}

.features-section-v2 .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-section-v2 .section-title {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.features-section-v2 .section-subtitle {
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
    line-height: 1.65;
    font-size: 17px;
}

.features-grid-v2.specific-layout-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(3, minmax(270px, auto));
    gap: 25px;
}

.feature-card-v2 {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-card-v2:hover {
    border-color: #ced4da;
    background-color: #fdfdfd;
}

.feature-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    color: #adb5bd;
    transition: color 0.2s ease;
    z-index: 10;
}

.feature-card-arrow:hover {
    color: #000000;
}

.feature-card-title-v2 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-top: 0;
    margin-bottom: 10px;
    padding-right: 30px;
    line-height: 1.4;
}

.feature-card-description-v2 {
    font-size: 14px;
    color: #495057;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-card-visual-placeholder {
    background: linear-gradient(145deg, #f7f8fa, #e6e8f0);
    border: 1px solid #e9ecef;
    border-radius: 6px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.feature-card-v2.layout-item-tall-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.feature-card-v2.layout-item-top-right-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.feature-card-v2.layout-item-top-right-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.feature-card-v2.layout-item-mid-right-1 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.feature-card-v2.layout-item-mid-right-2 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.feature-card-v2.layout-item-full-bottom {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
}

.feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder {
    min-height: 550px;
}

.feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
    min-height: 180px;
}

/* ==========================================================================
   2. ANİMASYON ELEMENTLERİNİN STİLLERİ
   ========================================================================== */

/* Metin animasyonu için hazırlık */
.section-title .char,
.section-subtitle .word {
    opacity: 0;
    transform: translateY(30px);
}

/* YENİLENMİŞ - 7/24 Destek Animasyonu Stilleri */
#visual-destek .chat-bubble-container {
    position: relative;
    width: 100px;
    height: 100px;
}

#visual-destek .chat-bubble {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 100, 255, 0.1);
}

#visual-destek .chat-bubble.large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4d8eff, #2a69e8);
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#visual-destek .chat-bubble.small {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    top: 0;
    right: 0;
}

#visual-destek .typing-dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* YENİLENMİŞ - Kullanıcı Dostu Panel Animasyonu Stilleri */
#visual-panel .panel-window {
    width: 85%;
    height: 85%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    display: flex;
    overflow: hidden;
}

#visual-panel .panel-sidebar {
    width: 25%;
    background-color: #f8f9fa;
    padding: 15px 10px;
    border-right: 1px solid #e9ecef;
}

#visual-panel .panel-logo {
    width: 30px;
    height: 30px;
    background-color: #4d8eff;
    border-radius: 8px;
    margin-bottom: 20px;
}

#visual-panel .panel-menu {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin-bottom: 12px;
}

#visual-panel .panel-menu.short {
    width: 70%;
}

#visual-panel .panel-main {
    width: 75%;
    padding: 15px;
}

#visual-panel .panel-header {
    width: 60%;
    height: 12px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin-bottom: 20px;
}

#visual-panel .panel-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 70%;
}

#visual-panel .panel-widget {
    background-color: #f8f9fa;
    border-radius: 4px;
}

#visual-panel .panel-widget.large {
    grid-column: 1 / 3;
}

/* Gelişmiş Güvenlik Animasyonu Stilleri */
#visual-guvenlik .sec-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    border: 1px solid rgba(0, 80, 255, 0.2);
    box-sizing: border-box;
}

#visual-guvenlik .sec-layer-1 {
    width: 120px;
    height: 120px;
}

#visual-guvenlik .sec-layer-2 {
    width: 95px;
    height: 95px;
}

#visual-guvenlik .sec-layer-3 {
    width: 70px;
    height: 70px;
}

#visual-guvenlik .sec-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4d8eff, #2a69e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

/* Ölçeklenebilir Altyapı Animasyonu Stilleri */
#visual-altyapi .node-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 80%;
    height: 80%;
}

#visual-altyapi .node {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: rgba(108, 117, 125, 0.2);
}

/* E-posta Animasyonu Stilleri */
#visual-eposta .email-icon-base {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 50px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transform: translate(-50%, -50%);
}

#visual-eposta .email-icon-flap {
    position: absolute;
    top: calc(50% - 25px);
    left: 50%;
    width: 0;
    height: 0;
    border-left: 42px solid transparent;
    border-right: 42px solid transparent;
    border-top: 25px solid #ddd;
    transform: translate(-50%, -100%) scaleY(1);
    transform-origin: bottom;
}

/* Performans Animasyonu Stilleri */
#visual-performans .performans-graph {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#visual-performans .performans-graph path {
    stroke: #17a2b8;
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}


/* ==========================================================================
   3. RESPONSIVE (MOBİL UYUMLULUK) STİLLERİ
   ========================================================================== */
@media (max-width: 992px) {
    .features-grid-v2.specific-layout-v2 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .feature-card-v2.layout-item-tall-left {
        grid-column: 1 / 3;
    }

    .feature-card-v2.layout-item-top-right-1,
    .feature-card-v2.layout-item-top-right-2,
    .feature-card-v2.layout-item-mid-right-1,
    .feature-card-v2.layout-item-mid-right-2 {
        grid-column: auto;
    }

    .feature-card-v2.layout-item-full-bottom {
        grid-column: 1 / 3;
    }

    .feature-card-visual-placeholder,
    .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder,
    .feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
        min-height: 180px;
    }

    .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .features-section-v2 {
        padding: 60px 0;
    }

    .features-grid-v2.specific-layout-v2 {
        grid-template-columns: 1fr;
    }

    .feature-card-v2.layout-item-tall-left,
    .feature-card-v2.layout-item-full-bottom {
        grid-column: auto;
    }

    .feature-card-v2 {
        padding: 20px;
    }

    .feature-card-title-v2 {
        font-size: 17px;
    }

    .feature-card-description-v2 {
        font-size: 13.5px;
    }

    .feature-card-visual-placeholder,
    .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder,
    .feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
        min-height: 160px;
    }
}

/* BLOG BÖLÜMÜNDEKİ BUTONUN STİLİ */
.all-posts-link-wrapper .cta-button-secondary-alt {
    color: #2d3748;
    border: 1px solid #cccccc;
    background-color: transparent;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
}

.all-posts-link-wrapper .cta-button-secondary-alt:hover {
    border-color: #ced4da;
    background-color: #fdfdfd;
}

.site-footer {
    flex-shrink: 0;
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 70px 20px 20px 20px;
    font-size: 15px;
    line-height: 1.7;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo-link {
    justify-content: center;
    display: flex;
    margin-bottom: 20px;
}

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

.footer-logo {
    display: block;
    width: fit-content;
    margin: 0 auto 15px auto;
    /* Üst: 0, Sağ/Sol: auto, Alt: 15px */
}

.footer-about-text {
    margin-bottom: 25px;
    font-weight: 400;
    color: #e0e0e0;
}

.social-media-links a {
    color: #cccccc;
    font-size: 20px;
    margin-right: 18px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.social-media-links a:last-child {
    margin-right: 0;
}

.social-media-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

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

.footer-links ul li a {
    color: #cccccc;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-weight: 400;
}

.footer-links ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    color: #aaaaaa;
}

.blog-hero {
    background-color: #f8f9fc;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
}

.blog-hero .section-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    /* var(--blog-dark-color); */
}

.blog-hero .section-subtitle {
    /* Eğer genel .section-subtitle kullanıyorsanız bunu özelleştirebilirsiniz */
    font-size: 18px;
    color: #555555;
    /* var(--blog-text-muted); */
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Tekil Blog Kartı */
.blog-card {
    background-color: #ffffff;
    /* var(--blog-light-color); */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eeeeee;
    /* var(--blog-border-color); */
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

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

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

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0E1337;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card-category:hover {
    background-color: rgb(15, 15, 34);
}

.blog-card-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    /* var(--blog-dark-color); */
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 56px;
    /* Yaklaşık 2 satır için, isteğe bağlı */
}

.blog-card-title a:hover {
    color: #5353c6;
    /* var(--blog-primary-color); */
}

.blog-card-excerpt {
    font-size: 15px;
    color: #555555;
    /* var(--blog-text-muted); */
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #888888;
    border-top: 1px solid #eeeeee;
    /* var(--blog-border-color); */
    padding-top: 15px;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    font-size: 1.1em;
    /* İkon boyutu */
}

.blog-card-meta .read-more {
    color: #5353c6;
    /* var(--blog-primary-color); */
    font-weight: 600;
    white-space: nowrap;
}

.blog-card-meta .read-more:hover {
    text-decoration: underline;
}

/* Sayfalama Stilleri */
.pagination {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    /* var(--blog-text-muted); */
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination a:hover {
    background-color: #f0f0f0;
    border-color: #cccccc;
    color: #111111;
}

.pagination span.current {
    background-color: #1a1a1a;
    /* var(--blog-dark-color); */
    color: #ffffff;
    /* var(--blog-light-color); */
    border-color: #1a1a1a;
    /* var(--blog-dark-color); */
    font-weight: 700;
}

.pagination span.dots {
    border: none;
    background: none;
}

.pagination a.prev i,
.pagination a.next i {
    font-size: 0.9em;
}

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

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu-button {
        display: inline-block;
    }

    .mega-menu-panel {
        display: none !important;
    }
}

/* ==========================================================================
   2. TABLETLER (992px ve altı)
   ========================================================================== */
@media (max-width: 992px) {

    /* Fiyatlandırma Tablosu */
    .pricing-comparison-table {
        grid-template-columns: minmax(180px, 1fr) repeat(3, minmax(180px, 1fr));
    }

    .feature-header-cell,
    .plan-header-cell,
    .feature-name-cell,
    .plan-feature-cell {
        padding: 15px 12px;
        font-size: 0.9rem;
    }

    .plan-header-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .plan-header-cell h3 {
        font-size: 1.2rem;
    }

    .current-price {
        font-size: 1.6rem;
    }

    .badge-popular-table {
        font-size: 0.7rem;
        padding: 4px 10px;
        top: -12px;
    }

    .plan-header-cell.popular {
        padding-top: 30px;
    }

    /* Hero Alanı */
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        order: 2;
        max-width: 100%;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-visual img {
        max-width: 90%;
    }

    .hero-headline {
        font-size: 40px;
    }

    /* Süreç Adımları */
    .process-steps-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-step {
        max-width: 450px;
        width: 100%;
        margin-bottom: 20px;
    }

    .step-connector-arrow {
        display: none;
    }

    /* Premium Vitrin */
    .premium-showcase-layout {
        flex-direction: column;
        text-align: center;
    }

    .premium-showcase-text {
        padding-right: 0;
        text-align: center;
    }

    .premium-showcase-title {
        text-align: center !important;
    }

    .premium-showcase-visual {
        margin-top: 20px;
        max-width: 80%;
    }

    /* Testimonials Grid */
    .testimonials-grid-placeholder {
        grid-template-columns: 1fr;
    }

    /* Mega Menü Panel İçeriği */
    .mega-menu-panel .mega-menu-content.container {
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
    }

    .mega-menu-main-links {
        flex-direction: column;
        gap: 20px;
    }

    .mega-menu-main-links .links-column {
        min-width: 100%;
    }

    .mega-menu-featured-column {
        flex-basis: auto;
        margin-left: 0;
        padding-left: 0;
        margin-top: 25px;
        padding-top: 25px;
        border-left: none;
        border-top: 1px solid #3a3f47;
    }

    /* İletişim Formu Grid */
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 50px;
    }

    .contact-form-left {
        text-align: center;
        align-items: center;
    }

    .contact-avatars {
        justify-content: center;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .form-submit-row {
        justify-content: center;
    }

    .contact-submit-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Blog Listeleme Grid (992px) */
    .blog-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-hero .section-title {
        font-size: 38px;
    }

    /* Features Grid - 3D Parallax (992px) */
    .features-grid {
        /* Bu .features-grid, 3D parallax olan */
        grid-template-columns: repeat(2, 1fr);
        /* Tablette 2 sütun */
        gap: 25px;
        perspective: 1000px;
        /* Perspektifi azaltabiliriz */
    }

    .feature-card-image-wrapper {
        height: 160px;
    }

    .feature-card-icon {
        font-size: 24px;
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
        transform: translateZ(40px);
        /* Z değeri ayarı */
    }

    .feature-card:hover .feature-card-icon {
        transform: translateZ(50px) scale(1.1);
    }

    .parallax-main-image {
        transform: translateZ(15px);
    }

    .feature-card:hover .parallax-main-image {
        transform: translateZ(30px) scale(1.05);
    }

    .parallax-bg-layer {
        transform: translateZ(0);
        /* Arka katman daha az hareket edebilir */
    }

    .feature-card:hover .parallax-bg-layer {
        transform: translateZ(-20px) scale(1.1);
    }

    /* Responsive Düzenlemeler (Features Section - Tabs) (992px) */
    .features-section {
        /* Bu .features-section, tablı olan */
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .features-section .section-subtitle {
        margin-bottom: 30px;
    }

    .interactive-services-content {
        gap: 25px;
        padding: 20px;
        min-height: 400px;
        flex-direction: column;
        /* EKLENDİ: Tablet görünümünde içeriği dikey sırala */
        align-items: stretch;
        /* EKLENDİ: Öğeleri tam genişliğe yay */
    }

    .services-selector {
        min-width: unset;
        width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
        flex-direction: row;
        /* DEĞİŞİKLİK: Tablette tabları yatayda sırala */
        overflow-x: auto;
        /* EKLENDİ: Çok fazla tab varsa yatay kaydırma */
        justify-content: flex-start;
        /* EKLENDİ: Tabları sola yasla */
        scrollbar-width: thin;
        /* EKLENDİ: Kaydırma çubuğu inceltme (Firefox) */
        scrollbar-color: var(--primary-color, #000000) #f0f0f0;
        /* EKLENDİ: Kaydırma çubuğu rengi (Firefox) */
    }

    .services-selector::-webkit-scrollbar {
        /* EKLENDİ: Webkit tabanlı tarayıcılar için kaydırma çubuğu */
        height: 5px;
    }

    .services-selector::-webkit-scrollbar-thumb {
        /* EKLENDİ: Webkit kaydırma çubuğu tutamacı */
        background-color: var(--primary-color, #000000);
        border-radius: 10px;
    }

    .services-selector::-webkit-scrollbar-track {
        /* EKLENDİ: Webkit kaydırma çubuğu yolu */
        background-color: #f0f0f0;
    }

    .service-tab {
        font-size: 15px;
        padding: 10px 15px;
        margin-bottom: 0px;
        /* DEĞİŞİKLİK: Yatay sıralamada dikey margin sıfırlandı */
        margin-right: 10px;
        flex-shrink: 0;
        /* EKLENDİ: Tabların küçülmesini engelle */
    }

    .service-tab:last-child {
        margin-right: 0;
    }

    .service-details-display {
        min-height: auto;
        /* EKLENDİ: Tablette minimum yükseklik içeriğe göre ayarlanacak */
    }

    .panel-title {
        font-size: 26px;
    }

    .panel-description {
        font-size: 14px;
    }

    .diagram-placeholder {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .diagram-step-item {
        max-width: 95%;
        padding: 8px 15px;
    }

    .step-counter {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .step-content-box .step-title {
        font-size: 14px;
    }

    .step-content-box .step-description {
        font-size: 11px;
    }

    .step-icon-right {
        font-size: 16px;
    }

    .diagram-arrow {
        font-size: 18px;
        margin: 6px 0;
    }

    .panel-cta {
        margin-top: 15px;
    }

    .panel-cta .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hero-cta-buttons{
        justify-content: center;
        align-items: center;
    }
    /* Features Grid v2 - Specific Layout (Tablet) */
    .features-grid-v2.specific-layout-v2 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    /* Tablette span'ları daha basit bir akışa göre düzenle */
    .feature-card-v2.layout-item-tall-left {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .feature-card-v2.layout-item-top-right-1,
    .feature-card-v2.layout-item-top-right-2,
    .feature-card-v2.layout-item-mid-right-1,
    .feature-card-v2.layout-item-mid-right-2 {
        grid-column: auto;
        grid-row: auto;
    }

    .feature-card-v2.layout-item-full-bottom {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .feature-card-visual-placeholder,
    .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder,
    .feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
        min-height: 140px;
    }
}

/* ==========================================================================
   TABLET VE ALTI İÇİN DAHA ERKEN KIRILMA (820px ve altı)
   ========================================================================== */
@media (max-width: 820px) {
    .comparison-block {
        flex-direction: column;
        margin: 0 10px 30px 10px;
        /* Kenar boşlukları ayarlandı */
    }

    .comparison-column.lume-advantages-column {
        margin: 0;
        /* Mobilde kenar boşluğu sıfırlanır, blok padding'i yeterli */
        border-radius: 10px 10px 0 0;
        /* Alt köşeler düzleşir */
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        /* Mobilde gölge azaltılabilir */
    }

    .comparison-column.typical-problems-column {
        background-color: #f8f9fa;
        /* Mobilde sağ sütuna da hafif bir arka plan verilebilir */
        padding-left: 30px;
        /* Sol sütunla aynı padding */
        border-radius: 0 0 10px 10px;
        /* Üst köşeler düzleşir */
    }

    .problem-solution-section.modern-variant .container {
        max-width: 600px;
        /* Mobilde container biraz daha dar olabilir */
    }
}

/* ==========================================================================
   3. DİKEY TABLETLER / BÜYÜK TELEFONLAR (768px ve altı)
   ========================================================================== */
@media (max-width: 768px) {

    /* Fiyatlandırma Tablosu */
    .pricing-comparison-table-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }

    .feature-header-cell {
        font-size: 15px;
        position: static;
    }

    .plan-header-cell h3 {
        font-size: 1.1rem;
    }

    .plan-header-description {
        font-size: 0.8rem;
        min-height: 30px;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .plan-select-button {
        font-size: 14px;
        padding: 10px 12px;
    }

    .pricing-toggle-container {
        max-width: 100%;
        flex-direction: column;
        gap: 10px;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    .pricing-toggle-container .toggle-btn {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .toggle-separator {
        display: none;
    }

    /* Genel Layout Değişiklikleri */
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-headline {
        font-size: 32px;
    }

    /* 992px'deki 40px'i ezer */
    .hero-subheadline {
        font-size: 16px;
    }

    /* Bu .features-grid, 3D parallax olan (768px) */
    .features-grid {
        grid-template-columns: 1fr;
        /* Mobilde tek sütun */
        gap: 20px;
        /* 992px'deki 25px'i ezer */
        perspective: none;
        /* Mobilde 3D efekti kapatılabilir */
        transform-style: flat;
        /* 3D'yi devre dışı bırak */
    }

    .feature-card {
        text-align: center;
        transform-style: flat;
        /* 3D'yi devre dışı bırak */
    }

    .feature-card-content {
        align-items: center;
    }

    .feature-card-image-wrapper {
        /* 992px'deki 160px'i ezer */
        height: 180px;
        transform-style: flat;
    }

    /* Mobilde 3D transformları kaldır */
    .parallax-bg-layer,
    .parallax-main-image,
    .feature-card-icon {
        /* 992px'deki transformları ezer */
        position: relative;
        /* Absolute'u kaldır */
        transform: none !important;
        /* Tüm 3D transformları sıfırla */
        transition: none !important;
        /* Geçişleri sıfırla */
        z-index: auto !important;
        /* Z-index'i sıfırla */
        opacity: 1 !important;
        /* Opaklığı sıfırla */
    }

    .feature-card-icon {
        /* 992px'deki stil ve pozisyonları ezer */
        margin: 0 auto 15px auto;
        /* Ortala ve alttan boşluk ver */
        background-color: var(--primary-color, #000000);
        color: #ffffff;
        box-shadow: none;
        /* font-size, width, height 992px'den miras kalır, gerekirse burada ezilir */
    }

    .feature-card:hover .feature-card-icon {
        /* 992px'deki hover'ı ezer */
        background-color: var(--primary-color-dark, #333333);
        transform: none !important;
    }

    .feature-card:hover .feature-card-image {
        transform: none;
        /* Mobilde görsel büyümesini kapat */
    }

    .feature-card:hover .parallax-main-image,
    .feature-card:hover .parallax-bg-layer {
        transform: none !important;
    }

    .feature-item {
        padding: 25px;
        text-align: center;
        align-items: center;
    }

    /* Bu .feature-item, muhtemelen başka bir özellik listesi */
    .pricing-section:not(.detailed-pricing-comparison-section) .pricing-grid {
        grid-template-columns: 1fr;
    }

    .toggle-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .plan-for {
        min-height: auto;
    }

    .faq-section .container {
        padding: 0 15px;
    }

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

    .faq-answer p {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-icon {
        font-size: 14px;
    }

    .step-title {
        font-size: 20px;
    }

    /* Süreç adımları için */
    .step-description {
        font-size: 14px;
    }

    /* Süreç adımları için */
    .step-number-icon {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    /* Muhtemelen farklı bir adım bileşeni */
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    /* Muhtemelen farklı bir adım bileşeni */
    .cta-headline {
        font-size: 28px;
    }

    .cta-subtext {
        font-size: 16px;
    }

    .dedicated-cta-section .cta-button-main,
    .dedicated-cta-section .cta-button-secondary-alt {
        font-size: 16px;
        padding: 12px 25px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-excerpt {
        font-size: 14px;
    }

    .integrations-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .integration-item {
        padding: 20px;
    }

    .integration-logo-wrapper {
        height: 60px;
    }

    .integration-logo-wrapper img {
        max-height: 45px;
    }

    .premium-showcase-title {
        font-size: 26px !important;
    }

    /* 992px'deki !important'ı korur */
    .premium-showcase-description {
        font-size: 15px;
    }

    .brand-logos-row {
        justify-content: center;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .site-footer {
        padding: 40px 15px 15px 15px;
    }

    .footer-column-title {
        margin-bottom: 10px;
        font-size: 17px;
    }

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

    .footer-about,
    .footer-links {
        text-align: center;
        margin-bottom: 20px;
    }

    .social-media-links {
        margin-bottom: 20px;
        justify-content: flex-start;
    }

    /* Problem/Çözüm */
    .problem-solution-section.modern-variant .section-title {
        font-size: 28px;
    }

    .problem-solution-section.modern-variant .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    /* min-width:769px'deki stili ezer */
    .problem-card,
    .solution-card {
        text-align: center;
        padding: 20px;
    }

    .card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .solution-arrow {
        display: none;
    }

    /* min-width:769px'deki stili ezer */

    /* İletişim Formu */
    .contact-form-section {
        padding: 60px 15px;
    }

    .contact-form-grid {
        padding: 25px;
    }

    /* 992px'deki padding'i ezer */
    .contact-form .form-row {
        flex-direction: column;
        margin-bottom: 0;
    }

    .contact-form .input-group {
        margin-bottom: 15px;
    }

    .contact-form .form-checkbox-row {
        margin-bottom: 25px;
    }

    .checkbox-group label {
        font-size: 12px;
    }

    /* Blog Listeleme Grid (768px) */
    .blog-listing-grid {
        grid-template-columns: 1fr;
    }

    /* 992px'deki 2 sütunu ezer */
    .blog-hero {
        padding: 60px 20px;
    }

    .blog-hero .section-title {
        font-size: 32px;
    }

    /* 992px'deki 38px'i ezer */
    .blog-hero .section-subtitle {
        font-size: 16px;
    }

    .category-filter {
        margin-bottom: 40px;
    }

    .blog-main-content {
        padding: 60px 0;
    }

    /* Responsive Düzenlemeler (Features Section - Tabs) (768px) */
    .features-section {
        /* Bu .features-section, tablı olan. 992px'deki padding'i ezer */
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .features-section .section-title {
        /* Genel .section-title'ı (28px) ezer */
        font-size: 30px;
    }

    .features-section .section-subtitle {
        /* Genel .section-subtitle'ı (16px) ezer. 992px'deki margin'i ezer */
        font-size: 15px;
        margin-bottom: 20px;
    }

    .interactive-services-content {
        /* 992px'deki padding, gap, min-height'ı ezer */
        padding: 15px;
        gap: 15px;
        min-height: auto;
        /* DEĞİŞİKLİK: Mobil için min-height kaldırıldı, içerik belirlesin */
    }

    .services-selector {
        /* 992px'deki stilleri ezer/değiştirir */
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
        /* DEĞİŞİKLİK: Daha yumuşak bir ayırıcı */
        /* overflow-x: auto; 992px'den miras alır, wrap ile gerekmeyebilir ama kalabilir */
    }

    .service-tab {
        /* 992px'deki stil ve margin'leri ezer */
        font-size: 14px;
        padding: 8px 12px;
        margin-right: 8px;
        margin-bottom: 8px;
        /* DEĞİŞİKLİK: Alt alta gelen tablar için boşluk artırıldı */
    }

    .panel-title {
        font-size: 22px;
    }

    /* 992px'deki 26px'i ezer */
    .panel-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    /* 992px'deki 14px'i ezer */
    .diagram-placeholder {
        padding: 10px 15px;
        margin-bottom: 15px;
    }

    /* 992px'dekileri ezer */
    .diagram-step-item {
        max-width: 100%;
        padding: 6px 10px;
    }

    /* 992px'dekileri ezer */
    .step-counter {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    /* 992px'dekileri ezer */
    .step-content-box .step-title {
        font-size: 13px;
    }

    /* 992px'dekileri ezer */
    .step-content-box .step-description {
        font-size: 10px;
    }

    /* 992px'dekileri ezer */
    .step-icon-right {
        font-size: 14px;
    }

    /* 992px'deki 16px'i ezer */
    .diagram-arrow {
        font-size: 16px;
        margin: 5px 0;
    }

    /* 992px'dekileri ezer */
    .panel-cta {
        margin-top: 10px;
    }

    /* 992px'deki 15px'i ezer */

    /* Features Grid v2 - Specific Layout (Mobil) */
    .features-grid-v2.specific-layout-v2 {
        /* 992px'dekini ezer */
        grid-template-columns: 1fr;
        gap: 20px;
        /* 992px'den miras alır, aynı değer */
    }

    .feature-card-v2.layout-item-tall-left,
    .feature-card-v2.layout-item-top-right-1,
    .feature-card-v2.layout-item-top-right-2,
    .feature-card-v2.layout-item-mid-right-1,
    .feature-card-v2.layout-item-mid-right-2,
    .feature-card-v2.layout-item-full-bottom {
        /* 992px'deki grid-column/row'u ezer */
        grid-column: auto;
        grid-row: auto;
    }

    .feature-card-v2 {
        padding: 20px;
    }

    .feature-card-title-v2 {
        font-size: 17px;
        margin-bottom: 8px;
        padding-right: 25px;
    }

    /* Ok için padding korundu */
    .feature-card-description-v2 {
        font-size: 13.5px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .feature-card-visual-placeholder,
    .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder,
    .feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
        /* 992px'deki min-height'ı ezer */
        min-height: 120px;
        font-size: 12px;
    }
}

/* ==========================================================================
   ÖZEL ARALIK: DİKEY TABLETLER (481px - 768px arası)
   ========================================================================== */
@media (max-width: 768px) and (min-width: 481px) {

    /* Problem/Çözüm (Modern Variant) */
    .problem-solution-section.modern-variant .section-subtitle {
        margin-bottom: 50px;
        /* 768px max-width bloğundaki 40px'i bu aralıkta ezer */
    }

    .problem-card,
    .solution-card {
        padding: 20px;
        /* 768px max-width bloğundaki ile aynı, spesifik aralık için teyit */
    }

    .problem-card h3,
    .solution-card h3 {
        font-size: 16px;
    }

    .problem-card p,
    .solution-card p {
        font-size: 13px;
    }
}


/* ==========================================================================
   4. KÜÇÜK TELEFONLAR (480px ve altı)
   ========================================================================== */
@media (max-width: 480px) {
    .main-header {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.5em;
        padding-right: 15px;
        padding-bottom: 4px;
    }

    .navbar-left {
        flex-grow: 1;
    }

    .navbar-right {
        margin-left: 0;
    }

    .lang-button {
        font-size: 11px;
        padding: 5px 7px;
        margin-right: 6px;
    }

    .login-button {
        font-size: 11px;
        padding: 5px 7px;
        margin-right: 2px;
    }

    .navbar-right .cta-button {
        font-size: 11px;
        padding: 6px 8px;
    }

    .hamburger-menu-button {
        font-size: 18px;
        padding: 5px 7px;
        margin-left: 4px;
    }

    .hero-section {
        padding: 40px 10px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 24px;
    }

    /* 768px'deki 32px'i ezer */
    .hero-subheadline {
        font-size: 14px;
    }

    /* 768px'deki 16px'i ezer */
    .hero-section .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-section .cta-primary,
    .hero-section .cta-secondary {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    /* 768px'deki 28px'i ezer. Features-section'daki 30px'i de ezer */
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    /* 768px'deki 16px'i ve mb:30px'i ezer. Features-section'daki 15px'i ve mb:20px'i de ezer */

    .feature-item:nth-child(n) {
        animation-delay: 0.1s;
    }

    /* Başka bir özellik listesi için */
    .pricing-toggle {
        flex-direction: column;
        display: flex;
        align-items: stretch;
        padding: 10px;
    }

    /* .pricing-toggle-container 768px'de zaten column, burada ek .pricing-toggle için */
    .toggle-btn {
        margin-bottom: 5px;
        font-size: 13px;
        padding: 8px 15px;
    }

    /* 768px'deki .toggle-btn'i ezer */
    .toggle-btn:last-child {
        margin-bottom: 0;
    }

    .savings-badge {
        display: block;
        margin-left: 0;
        margin-top: 3px;
    }

    .price-value {
        font-size: 36px;
    }

    .period {
        font-size: 14px;
    }

    .dedicated-cta-section .cta-headline {
        font-size: 24px;
    }

    /* 768px'deki 28px'i ezer */
    .dedicated-cta-section .cta-buttons-group {
        flex-direction: column;
        gap: 15px;
    }

    .dedicated-cta-section .cta-button-main,
    .dedicated-cta-section .cta-button-secondary-alt {
        width: 100%;
        max-width: 280px;
        font-size: 15px;
    }

    /* 768px'dekileri ezer */

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Muhtemelen .blog-listing-grid ile aynı amaçlı */
    .blog-card-content {
        padding: 20px;
    }

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    /* 768px'dekileri ezer */
    .integration-name {
        font-size: 13px;
    }

    .premium-showcase-title {
        font-size: 22px !important;
    }

    /* 768px'deki 26px'i ezer */
    .premium-showcase-description {
        font-size: 14px;
    }

    /* 768px'deki 15px'i ezer */
    .premium-showcase-section .cta-button-dark-bg {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 11px 20px;
    }

    .brand-logos-row {
        gap: 15px;
    }

    /* 768px'deki 20px'i ezer */
    .brand-logos-row img {
        height: 25px;
        max-width: 90px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* 768px'dekileri ezer */
    .footer-about,
    .footer-links {
        margin-bottom: 15px;
        text-align: center;
    }

    /* 768px'dekileri ezer */
    .social-media-links {
        justify-content: center;
    }

    /* 768px'dekileri ezer */
    .footer-bottom p {
        font-size: 13px;
    }

    .footer-logo-img {
        max-height: 30px;
        text-align: center;
    }

    /* --- 480px MOBİL MENÜ VE SUP AYARLARI --- */
    sup {
        font-size: 8px !important;
        /* BURASI 6px OLARAK DÜZELTİLDİ (Kodda 8px, yorum dikkate alınarak 8px bırakıldı) */
        vertical-align: top;
        position: relative;
        top: -0.8em;
        margin-left: 1px;
        margin-top: 10px;
        /* Margin-top sıfırlandı (Kodda 10px, yorum dikkate alınarak 10px bırakıldı) */
    }

    .logo sup {
        top: -1.2em;
    }

    .mobile-nav-menu ul li a:not(.login-button-mobile):not(.cta-button-mobile) {
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .mobile-nav-menu ul li a.login-button-mobile,
    .mobile-nav-menu ul li a.cta-button-mobile {
        margin-left: 20px;
        margin-right: 20px;
        padding: 11px 15px;
        font-size: 14px;
    }

    /* -------------------------------------- */

    /* Blog Card (480px) */
    .blog-card-title {
        font-size: 18px;
        min-height: auto;
    }

    /* 768px ile aynı, teyit */
    .blog-card-excerpt {
        font-size: 14px;
    }

    /* 768px ile aynı, teyit */
    .blog-card-meta {
        font-size: 12px;
    }

    .meta-left {
        gap: 10px;
        flex-basis: 100%;
        /* Tarih ve okuma süresini tam genişlik yap */
        justify-content: space-between;
        /* Aralarını aç */
        margin-bottom: 8px;
        /* Eğer read-more alta geçerse diye */
    }

    .blog-card-meta .read-more {
        flex-basis: 100%;
        text-align: right;
        /* Linki alta alıp sağa yasla */
    }

    .pagination a,
    .pagination span {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* Features Grid - 3D Parallax (480px) - Zaten 768px altında sıfırlanmıştı, burada daha ince ayarlar */
    /* .features-section genel bölüm ya da 3D parallax içeren bölüm olabilir. Adlandırmaya dikkat. */
    /* Eğer bu 3D parallax içeren .features-section ise: */
    .features-section.parallax-section {
        /* Örnek bir sınıflandırma, eğer ayrıysa */
        padding: 40px 10px;
    }

    .features-grid {
        /* Bu .features-grid, 3D parallax olan. 768px'deki gap:20px'i ezer */
        gap: 15px;
    }

    .feature-card-image-wrapper {
        /* 768px'deki 180px'i ezer */
        height: 150px;
    }

    .feature-card-content {
        padding: 15px;
    }

    .feature-card-title {
        font-size: 17px;
    }

    .feature-card-description {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .feature-card-link {
        font-size: 13px;
    }

    /* .feature-card-icon vs. 768px'de zaten sıfırlandığı için burada ek ezme gerekmeyebilir. */

    /* Responsive Düzenlemeler (Features Section - Tabs) (480px) */
    .features-section {
        /* Bu .features-section, tablı olan. 768px'deki paddingleri ezer. */
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .features-section .section-title {
        /* .section-title (24px) genelini ezer, 768px'deki (30px) i ezer */
        font-size: 24px;
        /* Zaten genel .section-title ile aynı, teyit amaçlı */
    }

    .features-section .section-subtitle {
        /* .section-subtitle (14px) genelini ezer, 768px'deki (15px) i ezer */
        font-size: 13px;
        margin-bottom: 15px;
        /* 768px'deki mb:20px'yi ezer */
    }

    .interactive-services-content {
        /* 768px'dekileri ezer */
        padding: 10px;
        gap: 10px;
        /* min-height: 300px; // YORUM: Çok küçük mobil min yükseklik kaldırıldı, içerik belirlesin */
    }

    .services-selector {
        /* 768px'dekileri ezer */
        padding-bottom: 8px;
    }

    .service-tab {
        /* 768px'dekileri ezer */
        font-size: 12px;
        padding: 6px 10px;
        /* DEĞİŞİKLİK: Dokunma hedefi için padding biraz artırıldı (5px 8px -> 6px 10px) */
        margin-right: 5px;
        margin-bottom: 5px;
        /* DEĞİŞİKLİK: Mobil butonlar arası dikey boşluk tutarlı hale getirildi */
    }

    .panel-title {
        font-size: 18px;
    }

    /* 768px'deki 22px'i ezer */
    .panel-description {
        font-size: 12px;
    }

    /* 768px'deki 13px'i ezer */
    .diagram-placeholder {
        padding: 8px 10px;
    }

    /* 768px'dekileri ezer */
    .diagram-step-item {
        padding: 4px 8px;
    }

    /* 768px'dekileri ezer */
    .step-counter {
        width: 18px;
        height: 18px;
        font-size: 10px;
        margin-right: 5px;
    }

    /* 768px'dekileri ezer */
    .step-content-box .step-title {
        font-size: 12px;
    }

    /* 768px'dekileri ezer */
    .step-content-box .step-description {
        font-size: 9px;
    }

    /* 768px'dekileri ezer */
    .step-icon-right {
        font-size: 12px;
    }

    /* 768px'deki 14px'i ezer */
    .diagram-arrow {
        font-size: 14px;
        margin: 4px 0;
    }

    /* 768px'deki 16px'i ezer */
    .panel-cta .cta-button {
        font-size: 13px;
        padding: 9px 18px;
        /* DEĞİŞİKLİK: Dokunma hedefi için padding biraz artırıldı (8px 15px -> 9px 18px) */
        /* GELİŞTİRME NOTU: Çok küçük ekranlarda bile butonların tıklanabilirliği (min. 44px yükseklik/genişlik) önemlidir. */
    }

    /* Problem/Çözüm Karşılaştırma Blokları (Modern Variant) */
    .problem-solution-section.modern-variant {
        /* 820px ve 768px'dekileri ezer */
        padding: 60px 0;
    }

    .problem-solution-section.modern-variant .section-title {
        /* Genel .section-title (24px) ezer, 768px'deki (28px) i ezer */
        font-size: 26px;
        /* İkinci 480px bloğundaki değer, diğer 480px section-title (24px) değerini ezer */
    }

    .problem-solution-section.modern-variant .section-subtitle {
        /* Genel .section-subtitle (14px, mb:25px) ezer, 768px'deki (16px, mb:40px) i ezer */
        font-size: 15px;
        margin-bottom: 40px;
        /* İkinci 480px bloğundaki değer */
    }

    .comparison-column {
        /* 820px'dekileri ezer */
        padding: 25px 20px;
        /* Mobilde iç boşluklar */
    }

    .comparison-column ul li {
        font-size: 13.5px;
    }

    .comparison-column ul li i {
        margin-top: 1px;
        font-size: 14px;
    }

    /* Problem/Çözüm Kartları (Modern Variant ve Genel) */
    .problem-card,
    .solution-card {
        /* 768px'deki padding ile aynı, teyit. */
        padding: 20px;
        text-align: center;
    }

    .problem-card h3,
    .solution-card h3 {
        font-size: 16px;
        text-align: center;
    }

    .problem-card p,
    .solution-card p {
        font-size: 13px;
        text-align: center;
    }

    .solution-arrow {
        /* 768px'de display:none idi, burada tekrar görünür ve stil alır */
        display: block;
        /* Veya flex, içeriğe göre. Orjinal display:none'ı ezer. */
        font-size: 16px;
        margin: 3px 0;
        text-align: center;
        /* Eğer flex ise align/justify center */
    }
}

/* ==========================================================================
   5. GENİŞ EKRANLAR İÇİN DÜZELTMELER (769px ve üstü)
   ========================================================================== */
@media (min-width: 769px) {

    /* Problem/Çözüm Grid */
    .problem-solution-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: stretch;
        gap: 30px;
        /* İlk tanımda 20px idi, sonraki tanım bunu 30px olarak eziyor. Bu birleştirilmiş halde son değer geçerli. */
    }

    .solution-arrow {
        /* Bu genel .solution-arrow için, 768px altında display:none olabilir */
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(0deg);
        margin: 0;
        text-align: center;
    }

    .problem-solution-grid>.solution-arrow {
        /* Daha spesifik seçici, üsttekini destekler/ezer */
        margin: 0;
        transform: rotate(0deg);
        align-self: center;
        padding: 0 15px;
    }

    /* Nasıl Çalışır (Süreç Adımları) */
    .step-connector-arrow {
        display: flex;
        /* 992px altında none idi, burada tekrar görünür */
    }
}

/* @media (max-width: 1024px) veya mobil menü breakpoint'iniz içinde */
.mobile-nav-menu {
    /* Ana mobil menü için genel stilleriniz (arkaplan, pozisyon vb.) burada olmalı */
    background-color: #fff;
    /* Temiz beyaz arka plan */
}

.mobile-nav-main-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item a,
.mobile-nav-item .mobile-accordion-trigger {
    display: block;
    padding: 15px 25px;
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-item:last-child a,
.mobile-nav-item:last-child .mobile-accordion-trigger {
    border-bottom: none;
}

.mobile-nav-item a:hover,
.mobile-nav-item .mobile-accordion-trigger:hover {
    background-color: #f8f8f8;
    color: #000000;
}

.mobile-nav-item.has-accordion .mobile-accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-accordion-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-item.has-accordion.open .mobile-accordion-trigger {
    background-color: #f0f0f0;
    /* Aktif başlık için hafif farklı arka plan */
    font-weight: 600;
}

.mobile-nav-item.has-accordion.open .mobile-accordion-arrow {
    transform: rotate(180deg);
}

.mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding-top 0.35s ease-out, padding-bottom 0.35s ease-out;
    background-color: #f9f9f9;
    /* Alt panel için çok hafif farklı bir arka plan */
    /* padding-left: 25px; Bu padding'i içindeki .mobile-links-column'a verelim */
}

.mobile-accordion-panel.open {
    /* max-height JS ile ayarlanacak */
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
    /* Panelin bittiği yerde bir çizgi */
}

.mobile-accordion-panel .mobile-links-column {
    padding: 0 25px 0 40px;
    /* Sol girinti ve yan boşluklar */
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.mobile-accordion-panel .mobile-links-column:last-child {
    margin-bottom: 0;
}

.mobile-accordion-panel h4 {
    font-size: 12px;
    color: #555;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    padding-bottom: 5px;
    /* border-bottom: 1px solid #ddd; İsteğe bağlı */
}

.mobile-accordion-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-accordion-panel ul li a {
    padding: 8px 0;
    font-size: 15px;
    font-weight: normal;
    color: #333;
    border-bottom: none !important;
    /* Ana linklerden farklı */
    background-color: transparent !important;
    /* Ana linklerden farklı */
}

.mobile-accordion-panel ul li a:hover {
    color: #000 !important;
    text-decoration: underline;
}

.mobile-nav-separator {
    height: 1px;
    background-color: #000000;
    margin: 10px 25px;
}

.mobile-nav-item.button-item a {
    /* Butonlar için özel stil */
    text-align: center;
    margin: 5px 25px;
    border-radius: 5px;
    border-bottom: none;
}

.mobile-nav-item.button-item a.login-button-mobile {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.mobile-nav-item.button-item a.login-button-mobile:hover {
    background-color: #e0e0e0;
}

.mobile-nav-item.button-item a.cta-button-mobile {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.mobile-nav-item.button-item a.cta-button-mobile:hover {
    background-color: #333333;
}
