/* ============================================
   COON Technology - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Brief'e göre */
    --color-primary: #0056D2;
    --color-primary-light: #3375D9;
    --color-primary-dark: #0044A6;
    --color-secondary: #0F172A;
    --color-secondary-light: #1E293B;
    --color-secondary-dark: #020617;
    --color-accent: #38BDF8;
    --color-accent-light: #7DD3FC;
    --color-accent-dark: #0EA5E9;
    --color-background: #FFFFFF;
    --color-background-light: #F8FAFC;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    
    /* Typography */
    --font-heading: 'Darker Grotesque', system-ui, sans-serif;
    --font-body: 'Poppins', system-ui, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-secondary);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Header Styles
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.top-bar {
    background: var(--color-secondary);
    border-bottom: 1px solid var(--color-gray-800);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.contact-info {
    color: white;
    font-size: 14px;
    font-family: var(--font-body);
}

.contact-info .separator {
    margin: 0 var(--spacing-xs);
}

.btn-login {
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition-base);
}

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

.main-nav {
    position: relative;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*    padding: var(--spacing-md) 0;*/
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
}

.logo-main {
    font-size: 2rem;
}

.logo-sub {
    font-size: 1.125rem;
    margin-left: var(--spacing-xs);
    font-family: var(--font-body);
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: center;
    height: 22px;
}

.desktop-menu a,
.desktop-menu button,
.desktop-menu .nav-link,
.desktop-menu .dropdown-trigger {
    font-size: 14px !important;
    line-height: 22px !important;
    height: 22px !important;
    font-weight: 500 !important;
    font-family: var(--font-body) !important;
    color: var(--color-secondary) !important;
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
}

.desktop-menu a:hover,
.desktop-menu button:hover,
.desktop-menu .nav-link:hover,
.desktop-menu .dropdown-trigger:hover {
    color: var(--color-primary) !important;
}

@media (min-width: 1024px) {
    .desktop-menu {
        display: flex;
        align-items: center;
        justify-content: center; /* space-between / space-around olmasın */
        gap: 0; /* varsa sıfırla */
        column-gap: 0; /* bazı durumlarda ayrı düşebiliyor */
    }

        .desktop-menu > a,
        .desktop-menu > .nav-dropdown {
            margin: 0; /* item’larda margin bırakma */
        }
        .desktop-menu a,
        .desktop-menu button {
            height: 40px !important;
            line-height: 40px !important;
            padding: 0 12px !important; /* boşlukları padding ile “yaşayan alan” yap */
        }

}
.nav-dropdown {
    position: relative;
    display: flex;
}

    /* dropdown panelin sınıfını senin projedeki gerçek sınıfa göre değiştir */
    .nav-dropdown .dropdown-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
    }

    .nav-dropdown:hover .dropdown-panel,
    .nav-dropdown:focus-within .dropdown-panel {
        display: block;
    }

.nav-link {
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 22px !important;
    height: 22px !important;
    color: var(--color-secondary) !important;
    padding-bottom: 0 !important;
    position: relative;
    transition: color var(--transition-base);
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center !important;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.active,
.nav-link[data-active="home"] {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px !important;
    margin-bottom: -2px !important;
}

.dropdown-trigger {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 14px !important;
    line-height: 22px !important;
    height: 22px !important;
    font-weight: 500 !important;
    font-family: var(--font-body) !important;
    white-space: nowrap;
    color: var(--color-secondary) !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.chevron {
    transition: transform var(--transition-base);
    width: 14px !important;
    height: 58px !important;
    flex-shrink: 0;
}

.nav-dropdown {
    display: inline-flex !important;
    align-items: center !important;
    height: 58px !important;
}

.nav-dropdown.active .chevron {
    transform: rotate(180deg);
}

.nav-dropdown button.nav-link {
    font-size: 14px !important;
    line-height: 58px !important;
    height: 58px !important;
    font-weight: 500 !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-secondary);
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.search-toggle:hover {
    color: var(--color-primary);
    background: var(--color-gray-100);
}

.btn-contact {
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-base);
    display: none;
    font-family: var(--font-body);
}

@media (min-width: 768px) {
    .btn-contact {
        display: inline-flex;
        align-items: center;
    }
}

.btn-contact:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

 

@media (min-width: 1024px) {
     
}

 

/* Mega Menu */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.1;
    z-index: 0;
}

.mega-menu-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920');
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
}

.mega-menu-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) 0;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.mega-menu-grid.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mega-menu-grid.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
}

.mega-menu-grid.grid-cols-1 {
    grid-template-columns: 1fr;
    max-width: 300px;
}

.mega-menu-column h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    font-weight: 700;
}

.mega-menu-column h3.border-l-4 {
    padding-left: var(--spacing-md);
    border-left: 4px solid var(--color-primary);
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column li {
    margin-bottom: var(--spacing-md);
}

.mega-menu-column a {
    color: var(--color-gray-700);
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: color var(--transition-base);
}

.mega-menu-column a:hover {
    color: var(--color-primary);
}

.mega-menu-column a svg {
    margin-left: var(--spacing-xs);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay.active .search-container {
    animation: scaleIn 0.3s ease-out;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.125rem;
    font-family: var(--font-body);
    padding: var(--spacing-sm);
}

.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-left: var(--spacing-sm);
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Hero Section
   ============================================ */

/* Hero styles moved to hero-simple.css - DO NOT ADD HERO STYLES HERE */

/* DISABLE ALL HERO STYLES - They are in hero-simple.css */
/* .hero-carousel styles are defined in hero-simple.css */

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    padding: var(--spacing-2xl) 0;
    min-height: auto;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.35);
    backdrop-filter: blur(12px);
    color: #FFFFFF;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-body);
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.6),
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.text-accent {
    color: #10B981;
    display: block;
    margin-top: var(--spacing-xs);
    font-weight: 800;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.7),
        0 0 24px rgba(16, 185, 129, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: var(--spacing-lg);
    line-height: 1.75;
    font-weight: 500;
    text-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.7),
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 86, 210, 0.15);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0056D2;
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748B;
    font-family: var(--font-body);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
}

.hero-card-chart {
    height: 128px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(56, 189, 248, 0.1));
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.hero-card-chart::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.1) 20px,
            rgba(255, 255, 255, 0.1) 40px
        );
    opacity: 0.5;
}

.hero-card-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(56, 189, 248, 0.4), transparent);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.chart-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: var(--spacing-sm);
    gap: var(--spacing-xs);
    z-index: 3;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    min-width: 8px;
    animation: chartGrow 0.8s ease-out;
}

@keyframes chartGrow {
    from {
        height: 0;
    }
    to {
        height: var(--height, 60%);
    }
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.hero-card-item {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-item-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.card-item-subtitle {
    font-size: 0.75rem;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Carousel Controls */
/* Hero carousel controls moved to hero-simple.css */

/* ============================================
   Solutions Section
   ============================================ */

.solutions {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #e8f4f8 0%, #f0f7fa 50%, #f8fbfc 100%);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 86, 210, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 42rem;
    margin: 0 auto var(--spacing-lg);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition-base);
}

.section-link:hover {
    color: var(--color-primary);
}

.link-arrow {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base);
}

.section-link:hover .link-arrow {
    background: var(--color-primary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

.solution-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: var(--spacing-xl);
    border: 1px solid rgba(0, 86, 210, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.06),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.1),
        -12px -12px 30px rgba(255, 255, 255, 1),
        0 20px 40px rgba(0, 86, 210, 0.15);
    border-color: rgba(0, 86, 210, 0.2);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: white;
    position: relative;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
}

.solution-icon-blue {
    background: linear-gradient(135deg, #0056D2, #003d99);
    box-shadow: 0 8px 20px rgba(0, 86, 210, 0.35);
}

.solution-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.solution-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.solution-icon-red {
    background: linear-gradient(135deg, #F97316, #EA580C);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.solution-title {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    color: #0056D2;
    letter-spacing: -0.02em;
}

.solution-description {
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.75;
    font-size: 0.95rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.solution-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.solution-link:hover {
    color: var(--color-primary-dark);
    gap: 10px;
}

.solution-link:hover::after {
    width: 100%;
}

.solution-link svg {
    transition: transform 0.3s ease;
}

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

/* ============================================
   Utility Classes
   ============================================ */

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

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* Skip Link Removed */

/* Keyboard Navigation */
.keyboard-nav *:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: var(--color-secondary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    z-index: 10000;
    pointer-events: none;
    white-space: nowrap;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--color-secondary);
}

/* Floating Buttons */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.whatsapp-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    z-index: 1000;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
 

/* ============================================
   Global Responsive Utilities
   ============================================ */

@media (max-width: 1023px) {
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mega-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .top-bar {
        display: none;
    }
    
    .nav-content {
        padding: var(--spacing-sm) 0;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .logo-sub {
        font-size: 0.875rem;
    }
    
    .search-toggle {
        width: 36px;
        height: 36px;
    }
    
    .btn-contact {
        display: none !important;
    }
    
    .scroll-to-top,
    .whatsapp-button {
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
    
    .scroll-to-top {
        left: 16px;
    }
    
    .whatsapp-button {
        right: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo-sub {
        display: none;
    }
    
    .mobile-menu {
        max-width: 100%;
    }
}

.faq-grid {
    display: grid;
    gap: 16px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

    .faq-item:hover {
        border-color: var(--kamera-primary);
    }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s;
}

    .faq-question:hover {
        color: var(--kamera-primary);
    }

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kamera-primary);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}
.logo img {
    width: 160px;
    margin-bottom: 8px;
    margin-top: 8px;
}
/* =========================
   PREMIUM MOBILE MENU (COON)
   Paste at END of style.css
   ========================= */

/* Overlay: blur + darken */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .55);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 9998;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

/* Drawer shell */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(92vw, 380px);
    z-index: 9999;
    /* glass card look */
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-left: 1px solid rgba(15,23,42,.10);
    box-shadow: -28px 0 80px rgba(2,6,23,.25);
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    transform: translateX(110%);
    transition: transform .45s cubic-bezier(.16,.8,.24,1);
    overflow: hidden;
}

    .mobile-menu.active {
        transform: translateX(0);
    }

    /* Subtle top glow */
    .mobile-menu::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(1200px 500px at 20% -10%, rgba(14,165,233,.20), transparent 60%), radial-gradient(900px 500px at 90% 10%, rgba(37,99,235,.16), transparent 55%);
        opacity: .9;
    }

/* Header */
.mobile-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 14px;
    background: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.mobile-menu-logo img {
    height: 26px;
    display: block;
    filter: saturate(1.05);
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease;
}

    .mobile-menu-close:active {
        transform: scale(.96);
    }

    .mobile-menu-close:hover {
        background: #fff;
    }

/* Body */
.mobile-menu-body {
    position: relative;
    padding: 14px 14px 110px; /* footer için boşluk */
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Primary links (Ana sayfa / Blog / İletişim) */
.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 18px;
    text-decoration: none;
    color: rgba(15,23,42,.92);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 10px 24px rgba(15,23,42,.06);
    font-weight: 700;
    letter-spacing: .2px;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

    .mobile-link span {
        opacity: .55;
        font-weight: 800;
    }

    .mobile-link:hover {
        background: #fff;
        box-shadow: 0 14px 34px rgba(15,23,42,.10);
    }

    .mobile-link:active {
        transform: scale(.98);
    }

/* Accordion container */
.mobile-acc {
    margin-top: 12px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(255,255,255,.55);
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

/* Accordion trigger */
.mobile-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    color: rgba(15,23,42,.92);
    letter-spacing: .2px;
}

    .mobile-acc-trigger .chev {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        border: 1px solid rgba(15,23,42,.10);
        background: rgba(255,255,255,.70);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .25s cubic-bezier(.16,.8,.24,1), background .2s ease;
    }

    .mobile-acc-trigger.expanded .chev {
        transform: rotate(180deg);
        background: #fff;
    }

/* Accordion panel (animated) */
.mobile-acc-panel {
    display: grid;
    gap: 10px;
    padding: 0 12px 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .35s cubic-bezier(.16,.8,.24,1), opacity .25s ease, transform .25s ease;
}

    .mobile-acc-panel.active {
        max-height: 1200px; /* yeterince büyük */
        opacity: 1;
        transform: translateY(0);
    }

/* Section title inside panel */
.mobile-acc-title {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding: 8px 6px 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(15,23,42,.45);
}

/* Default panel links */
.mobile-acc-panel > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(15,23,42,.08);
    color: rgba(15,23,42,.88);
    font-weight: 650;
    transition: transform .15s ease, background .2s ease;
}

    .mobile-acc-panel > a:hover {
        background: #fff;
    }

    .mobile-acc-panel > a:active {
        transform: scale(.98);
    }

/* 🔥 GRID for products (2 columns) */
.mobile-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
}

.mobile-grid-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 18px;
    text-decoration: none;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
    color: rgba(15,23,42,.90);
    font-weight: 750;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

    .mobile-grid-item:hover {
        background: #fff;
        box-shadow: 0 14px 34px rgba(15,23,42,.10);
    }

    .mobile-grid-item:active {
        transform: scale(.98);
    }

    .mobile-grid-item .icon {
        width: 34px;
        height: 34px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(37,99,235,.14));
        border: 1px solid rgba(37,99,235,.18);
        font-size: 16px;
    }

    .mobile-grid-item .txt {
        line-height: 1.1;
        font-size: 13.5px;
    }

/* Footer pinned CTA */
.mobile-menu-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.92) 40%, rgba(255,255,255,.98));
    border-top: 1px solid rgba(15,23,42,.08);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    font-weight: 900;
    letter-spacing: .3px;
    box-shadow: 0 16px 40px rgba(37,99,235,.35);
    transition: transform .15s ease, box-shadow .2s ease;
}

    .mobile-menu-cta:active {
        transform: scale(.99);
    }

    .mobile-menu-cta:hover {
        box-shadow: 0 18px 48px rgba(37,99,235,.45);
    }

/* Small screens: grid becomes 1 column */
@media (max-width: 360px) {
    .mobile-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   MOBILE HAMBURGER FIX
   Paste at END of style.css
   ========================= */

.mobile-menu-toggle {
    display: flex; /* desktop'ta media ile kapatıyoruz zaten */
    width: 40px;
    height: 40px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(15,23,42,.10);
    background: #fff;
}

    .mobile-menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: rgba(15,23,42,.92);
        transition: transform .2s ease, opacity .2s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

/* sadece mobilde göster */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* =========================
   COON MOBILE MENU - WOW LAYER
   Paste at END of style.css
   ========================= */

.mm-hero {
    padding: 14px 14px 10px;
    margin: 10px 12px 12px;
    border-radius: 22px;
    background: radial-gradient(900px 420px at 10% 0%, rgba(14,165,233,.22), transparent 55%), radial-gradient(900px 420px at 90% 0%, rgba(37,99,235,.18), transparent 55%), rgba(255,255,255,.72);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 50px rgba(2,6,23,.10);
}

.mm-hero-title {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(15,23,42,.55);
}

.mm-hero-sub {
    margin-top: 4px;
    font-weight: 850;
    font-size: 18px;
    color: rgba(15,23,42,.92);
}

.mm-search {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(15,23,42,.10);
}

.mm-search-ic {
    opacity: .75;
}

.mm-search-inp {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-weight: 650;
    color: rgba(15,23,42,.92);
}

.mm-quick {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
}

.mm-pill {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.mm-pill-t {
    font-weight: 850;
}

.mm-pill-b {
    font-size: 12px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg,#0ea5e9,#2563eb);
}

.mm-primary {
    margin: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 16px 40px rgba(2,6,23,.08);
    font-weight: 850;
    color: rgba(15,23,42,.92);
}

    .mm-primary:active {
        transform: scale(.99);
    }

.mm-go {
    margin-left: auto;
    opacity: .55;
    font-weight: 900;
}

.mm-acc {
    margin: 10px 12px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(255,255,255,.62);
    box-shadow: 0 18px 50px rgba(2,6,23,.08);
}

.mm-acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    background: rgba(255,255,255,.55);
}

.mm-acc-left {
    text-align: left;
}

.mm-acc-label {
    font-weight: 950;
    font-size: 15px;
    color: rgba(15,23,42,.92);
}

.mm-acc-hint {
    margin-top: 2px;
    font-weight: 650;
    font-size: 12px;
    color: rgba(15,23,42,.45);
}

.mm-acc-chev {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.78);
    transition: transform .25s ease;
}

.mobile-acc-trigger.expanded .chev {
    transform: rotate(180deg);
}
/* eski sınıfın varsa sorun değil */

.mm-acc-panel {
    padding: 12px 12px 14px;
    display: grid;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .35s cubic-bezier(.16,.8,.24,1), opacity .25s ease, transform .25s ease;
}

    .mm-acc-panel.active {
        max-height: 1600px;
        opacity: 1;
        transform: translateY(0);
    }

.mm-title {
    margin-top: 6px;
    padding: 8px 6px 0;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(15,23,42,.45);
}

.mm-list {
    display: grid;
    gap: 10px;
}

.mm-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(15,23,42,.08);
}

    .mm-row:hover {
        background: #fff;
    }

.mm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
}

.mm-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

    .mm-card:hover {
        background: #fff;
    }

.mm-ic {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(37,99,235,.14));
    border: 1px solid rgba(37,99,235,.18);
}

.mm-bottom {
    padding: 6px 0 0;
}

@media (max-width: 360px) {
    .mm-grid {
        grid-template-columns: 1fr;
    }
}
/* === MOBILE MENU SCROLL FIX === */

/* drawer'ın içinde gerçek scroll alanı: body */
.mobile-menu {
    display: flex;
    flex-direction: column;
}

/* header sabit, içerik scroll */
.mobile-menu-body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 110px; /* footer CTA için */
}

    /* iOS/Chrome: scroll bar gizlemek istersen */
    .mobile-menu-body::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

/* =========================
   ENTERPRISE MOBILE MENU UI
   ========================= */

:root {
    --em-bg: rgba(255,255,255,.92);
    --em-line: rgba(15,23,42,.10);
    --em-text: rgba(15,23,42,.92);
    --em-muted: rgba(15,23,42,.55);
    --em-soft: rgba(15,23,42,.04);
    --em-shadow: 0 18px 55px rgba(2,6,23,.14);
}

.mobile-menu {
    background: var(--em-bg);
    backdrop-filter: blur(14px);
    box-shadow: var(--em-shadow);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(110%);
}
    .mobile-menu.active {
        transform: translateX(0);
    }
/* body scroll area */
.mobile-menu-body {
    padding: 14px 14px 110px;
}

/* Search */
.em-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--em-line);
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
    margin-bottom: 12px;
}

.em-search-ic {
    color: rgba(15,23,42,.55);
    display: flex;
}

.em-search-inp {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-weight: 600;
    color: var(--em-text);
}

/* Primary rows */
.em-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--em-line);
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
    text-decoration: none;
    color: var(--em-text);
    font-weight: 750;
    margin: 10px 0;
}

.em-ic {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--em-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15,23,42,.75);
}

.em-text {
    flex: 1;
}

.em-go {
    color: rgba(15,23,42,.45);
    display: flex;
}

/* Accordion */
.em-acc {
    margin: 10px 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--em-line);
    background: #fff;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}

.em-acc-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    background: #fff;
    border: 0;
    cursor: pointer;
}

.em-acc-left {
    text-align: left;
}

.em-acc-label {
    font-weight: 850;
    color: var(--em-text);
    font-size: 15px;
}

.em-acc-hint {
    margin-top: 2px;
    font-weight: 600;
    color: var(--em-muted);
    font-size: 12px;
}

.em-acc-chev {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--em-line);
    background: #fff;
    color: rgba(15,23,42,.65);
    transition: transform .2s ease;
}

/* Panel anim */
.em-panel {
    padding: 0 12px 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .3s ease, opacity .2s ease, transform .2s ease;
}

    .em-panel.active {
        max-height: 1400px;
        opacity: 1;
        transform: translateY(0);
    }

.em-acc-btn.expanded .em-acc-chev {
    transform: rotate(180deg);
}

/* Titles */
.em-title {
    margin-top: 10px;
    padding: 10px 6px 4px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(15,23,42,.45);
}

/* Lists */
.em-list {
    display: grid;
    gap: 10px;
}

.em-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(15,23,42,.03);
    border: 1px solid rgba(15,23,42,.06);
    text-decoration: none;
    color: var(--em-text);
    font-weight: 650;
}

    .em-row:hover {
        background: rgba(15,23,42,.05);
    }

.em-row-text {
    flex: 1;
}

/* Grid */
.em-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.em-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(15,23,42,.03);
    border: 1px solid rgba(15,23,42,.06);
    text-decoration: none;
    color: var(--em-text);
    font-weight: 750;
}

    .em-card:hover {
        background: rgba(15,23,42,.05);
    }

.em-card-text {
    line-height: 1.15;
    font-size: 13.5px;
}

@media (max-width: 360px) {
    .em-grid {
        grid-template-columns: 1fr;
    }
}
/* Accordion satırlarını Ana Sayfa gibi yap */
.em-acc .em-primary {
    width: 100%;
    border: 1px solid rgba(15,23,42,.10);
    background: #fff;
}

/* em-go zaten yok ama garanti olsun */
.em-acc .em-go {
    display: none !important;
}

/* button olduğu için default border/outline temizle */
.em-acc-trigger {
    border: 0;
    cursor: pointer;
    text-align: left;
}

/* Panel spacing */
.em-panel {
    padding-top: 10px;
}
/* =========================
   MOBILE MENU (mm2) - Corporate & Symmetric
   Paste at END of style.css
   ========================= */

.mobile-menu-body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y; /* body kilitliyken menü scroll çalışsın */
}

/* Search */
.mm2-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin: 12px 12px 10px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 10px 26px rgba(2,6,23,.08);
}

.mm2-search-ic {
    color: rgba(15,23,42,.55);
}

.mm2-search-inp {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-weight: 600;
    color: rgba(15,23,42,.92);
}

/* Main row: same style for ALL items */
.mm2-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    margin: 10px 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 12px 28px rgba(2,6,23,.08);
    color: rgba(15,23,42,.92);
    text-decoration: none;
    font-weight: 700;
    transition: transform .12s ease, box-shadow .2s ease;
}

    .mm2-row:active {
        transform: scale(.99);
    }

    .mm2-row:hover {
        box-shadow: 0 16px 34px rgba(2,6,23,.12);
    }

.mm2-ic {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,.04);
    border: 1px solid rgba(15,23,42,.06);
    color: rgba(15,23,42,.70);
    flex: 0 0 auto;
}

.mm2-text {
    flex: 1;
}

.mm2-go {
    color: rgba(15,23,42,.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mm2-rot {
    transition: transform .22s ease;
}

.mm2-acc-trigger.expanded .mm2-rot {
    transform: rotate(90deg); /* aşağı ok değil: sağ ok 90 derece dönüyor */
}

/* Accordion container/panel */
.mm2-acc {
    margin: 0;
}

.mm2-panel {
    margin: -4px 12px 10px; /* row ile panel arası doğal */
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 12px 28px rgba(2,6,23,.06);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .28s ease, opacity .18s ease, transform .18s ease;
}

    .mm2-panel.active {
        max-height: 1400px;
        opacity: 1;
        transform: translateY(0);
        padding: 10px 10px 12px;
    }

.mm2-subgroup {
    padding: 6px 6px 10px;
}

.mm2-subtitle {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(15,23,42,.45);
    padding: 8px 8px 6px;
}

.mm2-sublist {
    display: grid;
    gap: 8px;
    padding: 0 6px 6px;
}

.mm2-sub-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    color: rgba(15,23,42,.88);
    font-weight: 600;
}

    .mm2-sub-link:active {
        transform: scale(.995);
    }

.mm2-sub-go {
    color: rgba(15,23,42,.38);
    display: flex;
}
/* --- Corporate Mobile Menu: Symmetric rows + clean accordion --- */

.mobile-menu {
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

.mobile-menu-body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    padding-bottom: 110px; /* alttaki CTA nefes alsın */
}

/* Search */
.mm-search {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    padding: 8px 0 12px;
}

.mm-search-ic {
    position: absolute;
    margin-left: 14px;
    margin-top: 13px;
    color: #6b7280;
}

.mm-search-inp {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 44px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    outline: none;
}

    .mm-search-inp:focus {
        border-color: rgba(0,0,0,.25);
    }

/* Main rows */
.mm-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    margin-top: 10px;
    border-radius: 16px;
    border: 1px solid #eef0f3;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    text-decoration: none;
    color: inherit;
}

.mm-item-btn {
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.mm-ic {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid #eef0f3;
    display: grid;
    place-items: center;
    color: #111827;
    background: #f8fafc;
    flex: 0 0 auto;
}

.mm-text {
    font-weight: 650;
    color: #111827;
    letter-spacing: -0.01em;
}

.mm-go {
    margin-left: auto;
    color: #6b7280;
    transition: transform .2s ease, color .2s ease;
}

.mm-item.expanded .mm-go-rot {
    transform: rotate(90deg);
    color: #111827;
}

/* Accordion panel */
.mm-panel {
    display: none;
    margin: 8px 4px 6px;
    padding: 12px 12px 6px;
    border-radius: 16px;
    border: 1px solid #eef0f3;
    background: #fff;
}

    .mm-panel.active {
        display: block;
    }

.mm-col-title {
    margin: 12px 6px 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
}

.mm-sublist {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 10px;
}

.mm-subitem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
}

    .mm-subitem:hover {
        background: #f8fafc;
    }

.mm-subtext {
    font-weight: 520;
}

.mm-subgo {
    margin-left: auto;
    color: #9ca3af;
}

/* Footer CTA stick */
.mobile-menu-footer {
    position: sticky;
    bottom: 0;
    background: linear-gradient(to top, #fff 70%, rgba(255,255,255,0));
    padding: 14px 16px 18px;
}
.products-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    align-items: stretch;
}
.products-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
.product-card {
    width: 100%;
    max-width: 100%;
    min-width: 0; /* grid/flex içinde taşmayı kesen kritik satır */
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
    .product-card img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain; /* ürün görseli kırpılmasın */
    }
    .product-card .img-wrap {
        width: 100%;
        aspect-ratio: 1 / 1; /* kare alan */
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .product-card .img-wrap img {
            width: 70%;
            height: 70%;
            object-fit: contain;
        }
    .product-card img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain; /* ürün görseli kırpılmasın */
    }
    .product-card .img-wrap {
        width: 100%;
        aspect-ratio: 1 / 1; /* kare alan */
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .product-card .img-wrap img {
            width: 70%;
            height: 70%;
            object-fit: contain;
        }
    .product-card .title {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 2 satır */
        -webkit-box-orient: vertical;
    }

.products-section,
.tab-content,
.products-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: clip; /* veya hidden */
}
.store-buttons {
    display: flex;
    flex-direction: column; /* ALT ALTA */
    gap: 12px;
    align-items: stretch; /* aynı genişlik */
    width: 190px; /* ikisi de aynı boy olsun */
}

.store-btn {
    display: block;
}

    .store-btn img {
        width: 100%; /* container kadar */
        height: auto;
        transition: all .25s ease;
        filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
    }

    /* Hover efekti */

    .store-btn:hover img {
        transform: translateY(-2px) scale(1.02);
        filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
    }


.blog-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2; /* senin kart oranına göre */
    object-fit: cover;
}
.brand-placeholder {
    display: none;
}

.brand-frame.is-fallback .brand-placeholder {
    display: flex;
}

.brand-frame.is-fallback .brand-logo {
    display: none;
}
.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.brand-logo-item {
    width: 120px;
    height: 60px;
    background: white;
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s;
}

    .brand-logo-item:hover {
        border-color: #f97316;
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
    }

    .brand-logo-item img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s;
    }

    .brand-logo-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    .brand-logo-item.text-logo {
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.02));
    }

        .brand-logo-item.text-logo span {
            font-size: 14px;
            font-weight: 700;
            color: #64748b;
        }


:root {
    --cc-bg: rgba(12, 14, 18, .72);
    --cc-bg-2: rgba(12, 14, 18, .88);
    --cc-border: rgba(255,255,255,.14);
    --cc-text: rgba(255,255,255,.92);
    --cc-muted: rgba(255,255,255,.68);
    --cc-shadow: 0 18px 60px rgba(0,0,0,.38);
    --cc-radius: 18px;
    /* Brand accent (COON maviye yakın) */
    --cc-accent: #2f7bff;
    --cc-accent-2: #5ad6ff;
    --cc-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* Full-width bar */
.cc-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    font-family: var(--cc-font);
    color: var(--cc-text);
    padding-bottom: env(safe-area-inset-bottom);
}

.cc-shell {
    width: 100%;
    background: linear-gradient(180deg, var(--cc-bg), var(--cc-bg-2));
    border-top: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Content container keeps premium alignment with site grid */
.cc-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 14px;
    align-items: center;
}

.cc-left {
    min-width: 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cc-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.16);
    background: radial-gradient(120% 120% at 0% 0%, rgba(90,214,255,.30), rgba(255,255,255,.06));
}

.cc-copy {
    min-width: 0;
}

.cc-title {
    margin: 0;
    font-size: 14.5px;
    font-weight: 780;
    letter-spacing: .2px;
    line-height: 1.2;
}

.cc-desc {
    margin: 4px 0 0 0;
    font-size: 13px;
    line-height: 1.35;
    color: var(--cc-muted);
    overflow: hidden;
    text-overflow: ellipsis;
}

.cc-links {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

    .cc-links a {
        color: rgba(255,255,255,.86);
        text-decoration: none;
        font-size: 12.75px;
        border-bottom: 1px dashed rgba(255,255,255,.28);
        opacity: .95;
    }

        .cc-links a:hover {
            opacity: 1;
            border-bottom-color: rgba(90,214,255,.65);
        }

.cc-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.cc-btn {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: var(--cc-text);
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 720;
    font-size: 13px;
    cursor: pointer;
    min-height: 40px;
    transition: transform .08s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
    user-select: none;
}

    .cc-btn:hover {
        background: rgba(255,255,255,.10);
        border-color: rgba(255,255,255,.24);
    }

    .cc-btn:active {
        transform: translateY(1px);
    }

    /* Hierarchy */
    .cc-btn.ghost {
        background: transparent;
        border-color: transparent;
        color: rgba(255,255,255,.78);
        padding: 10px 10px;
    }

        .cc-btn.ghost:hover {
            background: rgba(255,255,255,.06);
            border-color: rgba(255,255,255,.10);
            color: rgba(255,255,255,.92);
        }

    .cc-btn.secondary {
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.18);
    }

    .cc-btn.primary {
        border-color: rgba(90,214,255,.40);
        background: radial-gradient(120% 120% at 0% 0%, rgba(90,214,255,.35), rgba(47,123,255,.20));
    }

/* Mobile-first behavior: compact, no “brick” */
@media (max-width: 780px) {
    .cc-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 14px;
    }

    .cc-actions {
        width: 100%;
        gap: 8px;
    }

    /* Buttons become 2-row friendly */
    .cc-btn {
        flex: 1 1 auto;
        min-width: 0;
    }

    /* Mobile copy becomes shorter and wraps nicely */
    .cc-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Links can be hidden on tiny screens to reduce height */
    @media (max-width: 420px) {
        .cc-links {
            display: none;
        }
    }
}

/* Modal (premium) */
.cc-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 100000;
    background: rgba(0,0,0,.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--cc-font);
    padding: 18px;
}

.cc-card {
    max-width: 720px;
    margin: 8vh auto;
    background: rgba(14, 16, 20, .92);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    box-shadow: 0 22px 80px rgba(0,0,0,.50);
    overflow: hidden;
}

.cc-card-head {
    padding: 16px 16px 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

    .cc-card-head h3 {
        margin: 0;
        font-size: 15.5px;
        font-weight: 800;
        color: var(--cc-text);
        letter-spacing: .2px;
    }

.cc-x {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: var(--cc-text);
    cursor: pointer;
}

.cc-card-body {
    padding: 16px;
    color: var(--cc-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.cc-toggles {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.cc-toggle {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
}

    .cc-toggle strong {
        display: block;
        color: var(--cc-text);
        font-size: 13.5px;
        margin-bottom: 2px;
        font-weight: 780;
    }

    .cc-toggle small {
        display: block;
        color: var(--cc-muted);
        font-size: 12.5px;
    }

.cc-switch {
    position: relative;
    width: 48px;
    height: 28px;
    flex: 0 0 auto;
}

    .cc-switch input {
        display: none;
    }

.cc-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    transition: .18s ease;
}

    .cc-slider:before {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        left: 3px;
        top: 2px;
        border-radius: 999px;
        background: rgba(255,255,255,.86);
        transition: .18s ease;
    }

.cc-switch input:checked + .cc-slider {
    background: rgba(90,214,255,.26);
    border-color: rgba(90,214,255,.45);
}

    .cc-switch input:checked + .cc-slider:before {
        transform: translateX(18px);
    }

.cc-card-foot {
    padding: 16px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid rgba(255,255,255,.10);
    flex-wrap: wrap;
}

@media (max-width: 520px) {
    .cc-card {
        margin: 10vh auto;
        width: 100%;
    }

    .cc-card-foot .cc-btn {
        flex: 1 1 auto;
    }
}

.form-alert {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all .4s ease;
}

    .form-alert.success {
        background: #ecfdf5;
        color: #065f46;
        border: 1px solid #34d399;
    }

    .form-alert.error {
        background: #fef2f2;
        color: #991b1b;
        border: 1px solid #f87171;
    }
.partner-logo img {
    max-height: 120px !important;
    max-width: 300px;
}