/* --- VARIABLES & RESET --- */
:root {
    --primary-blue: #0060e0;
    --hover-blue: #004db3;
    --dark-navy: #032d60;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --text-main: #101820;
    --text-gray: #5e6c84;
    --border-color: #d8dde6;
    --font-main: 'Inter', sans-serif;
    --max-width: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }

/* CONTAINER */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- UTILITY BAR --- */
.utility-bar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem;
    padding: 10px 0;
}
.utility-links { display: flex; justify-content: flex-end; gap: 24px; color: var(--text-gray); }
.utility-links a:hover { color: var(--primary-blue); text-decoration: underline; }
.login-link { color: var(--primary-blue); font-weight: 600; }

/* --- HEADER --- */
.site-header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 88px;
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo-area {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}
.logo-icon { color: var(--primary-blue); font-size: 2rem; }

/* Desktop Nav */
.main-nav .nav-list { display: flex; gap: 40px; height: 100%; align-items: center; }
.nav-link { font-weight: 500; color: var(--text-main); padding: 32px 0; display: block; font-size: 1rem; }
.nav-link:hover { color: var(--primary-blue); }
.nav-link i { font-size: 0.75rem; margin-left: 4px; opacity: 0.7; }

/* Desktop Mega Menu */
.has-mega-menu { position: static; height: 100%; display: flex; align-items: center; }
.mega-menu {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    padding: 48px 0;
}
.has-mega-menu:hover .mega-menu { opacity: 1; visibility: visible; }
.has-mega-menu:hover .nav-link { color: var(--primary-blue); border-bottom: 3px solid var(--primary-blue); }

.mega-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr; 
    gap: 60px;
}
.mega-column h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); margin-bottom: 24px; font-weight: 700; }
.mega-column a { display: block; margin-bottom: 18px; font-size: 1.05rem; color: var(--dark-navy); font-weight: 600; }
.mega-column a:hover { color: var(--primary-blue); transform: translateX(5px); }
.sub-desc { font-size: 0.9rem; color: var(--text-gray); font-weight: 400; display: block; margin-top: 2px; }
.highlight-card { background-color: #f0f6ff; padding: 24px; border-radius: 12px; border: 1px solid #d0e0ff; }
.highlight-card i { color: var(--primary-blue); font-size: 1.6rem; margin-bottom: 16px; display: block; }
.highlight-card h5 { margin-bottom: 8px; font-size: 1.2rem; font-weight: 700; color: var(--dark-navy); }
.highlight-card p { font-size: 0.95rem; margin-bottom: 16px; color: var(--text-gray); line-height: 1.5; }
.text-link { color: var(--primary-blue); font-weight: 600; }

/* Buttons & Actions */
.header-actions { display: flex; align-items: center; gap: 16px; }
.btn { padding: 12px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; display: inline-block; font-size: 0.95rem; text-align: center; border: none; }
.btn-primary { background-color: var(--primary-blue); color: #fff; border: 1px solid transparent; }
.btn-primary:hover { background-color: var(--hover-blue); box-shadow: 0 4px 12px rgba(0, 96, 224, 0.2); }
.btn-outline { border: 1px solid var(--border-color); color: var(--dark-navy); padding: 10px 16px; background: transparent; }
.btn-outline:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
.btn-secondary { background-color: #fff; color: var(--primary-blue); border: 1px solid var(--primary-blue); }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-block { width: 100%; display: block; }

/* Hamburger Button */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark-navy); cursor: pointer; margin-left: 10px; }

/* --- MOBILE MENU OVERLAY & ACCORDION --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

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

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

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

.mobile-menu-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header .logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark-navy);
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
}

.mobile-menu-content {
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
}

/* Mobile Accordion Styles */
.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-navy);
    font-size: 1.1rem;
}

.mobile-dropdown-header .arrow {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Active State */
.mobile-dropdown-item.active .arrow {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.mobile-dropdown-item.active .mobile-dropdown-header {
    color: var(--primary-blue);
}

/* Mobile Submenu (Hidden by default) */
.mobile-submenu {
    display: none;
    background-color: #f8f9fc;
    margin: 0 -24px;
    padding: 10px 24px;
    box-shadow: inset 0 4px 6px -4px rgba(0,0,0,0.05);
}

.mobile-submenu li {
    border-bottom: none;
    margin-bottom: 0;
    padding: 8px 0;
}

.mobile-submenu a {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    display: block;
    padding-left: 10px;
    border-left: 2px solid transparent;
}

.mobile-submenu a:hover {
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

/* Show submenu when active */
.mobile-dropdown-item.active .mobile-submenu {
    display: block;
    animation: slideDown 0.3s ease;
}

/* Standard Link (No Dropdown) */
.mobile-link-standard {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.mobile-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
    border: none !important;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- SECTIONS --- */
.hero-enterprise { padding: 100px 0; background: linear-gradient(105deg, #fff 45%, #f0f6ff 45%); overflow: hidden; min-height: 700px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.hero-text h1 { font-size: 4rem; line-height: 1.1; color: var(--dark-navy); margin-bottom: 24px; letter-spacing: -1px; }
.hero-text .lead { font-size: 1.25rem; color: var(--text-gray); margin-bottom: 40px; max-width: 90%; }
.hero-buttons { display: flex; gap: 16px; }

.dashboard-mockup { background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,0.12); border-radius: 12px; overflow: hidden; height: 420px; position: relative; border: 1px solid rgba(0,0,0,0.05); font-family: monospace; }
.mockup-header { background: #e6e9ed; padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.address-bar { margin-left: 16px; background: #fff; padding: 4px 12px; border-radius: 4px; color: #888; font-size: 0.8rem; width: 100%; opacity: 0.8; }
.mockup-body { padding: 32px; }
.status-bar { display: flex; justify-content: space-between; margin-bottom: 24px; font-family: var(--font-main); }
.encrypted-badge { background: #e3fcef; color: #008a4b; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.transfer-log { background: #f7f9fa; border-radius: 8px; padding: 16px; }
.log-header { display: grid; grid-template-columns: 1fr 1fr 1fr; font-size: 0.8rem; color: #888; margin-bottom: 12px; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.log-item { display: grid; grid-template-columns: 1fr 1fr 1fr; font-size: 0.9rem; padding: 12px 0; border-bottom: 1px solid #eee; color: var(--dark-navy); }
.log-item.active { color: var(--primary-blue); font-weight: 700; background-color: #fff; padding: 12px; border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin: 8px 0; border: none; }
.status.deleted { color: #d93025; font-weight: 700; letter-spacing: 1px; }

.trust-bar { padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
.trust-bar p { color: var(--text-gray); margin-bottom: 32px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.logo-grid { display: flex; justify-content: center; gap: 64px; font-weight: 800; color: #cbd5e0; font-size: 1.6rem; flex-wrap: wrap; }

.product-tabs-section { padding: 100px 0; background-color: var(--bg-white); }
.section-heading { text-align: center; font-size: 2.5rem; color: var(--dark-navy); margin-bottom: 60px; }
.tabs-header { display: flex; justify-content: center; gap: 32px; margin-bottom: 48px; border-bottom: 1px solid var(--border-color); max-width: 800px; margin-left: auto; margin-right: auto; }
.tab-btn { background: none; border: none; padding: 16px 24px; font-size: 1.15rem; color: var(--text-gray); cursor: pointer; border-bottom: 4px solid transparent; font-weight: 500; font-family: var(--font-main); transition: all 0.2s; }
.tab-btn:hover { color: var(--primary-blue); }
.tab-btn.active { color: var(--primary-blue); border-bottom: 4px solid var(--primary-blue); font-weight: 700; }
.tabs-content .tab-pane { display: none; }
.tabs-content .tab-pane.active { display: block; animation: fadeInUp 0.5s ease; }
.tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--bg-light); padding: 64px; border-radius: 24px; }
.tab-text h3 { font-size: 2.2rem; margin-bottom: 20px; color: var(--dark-navy); }
.feature-list { margin: 32px 0; }
.feature-list li { margin-bottom: 16px; color: var(--dark-navy); font-size: 1.1rem; display: flex; align-items: center; gap: 12px; }
.feature-list i { color: var(--primary-blue); font-size: 1.2rem; }
.fake-img { width: 100%; height: 350px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #ccc; font-weight: 700; box-shadow: 0 20px 40px rgba(0,0,0,0.06); font-size: 1.5rem; }

.resources-section { padding: 100px 0; }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.resource-card { border: 1px solid var(--border-color); padding: 32px; border-radius: 12px; transition: 0.3s; background: #fff; height: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.resource-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-6px); border-color: transparent; }
.card-tag { font-size: 0.75rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; background: #eff4ff; padding: 4px 8px; border-radius: 4px; }
.resource-card h4 { font-size: 1.4rem; margin-bottom: 12px; color: var(--dark-navy); line-height: 1.3; }
.resource-card p { font-size: 1rem; color: var(--text-gray); margin-bottom: 24px; flex-grow: 1; }
.resource-card a { font-weight: 600; color: var(--primary-blue); font-size: 1rem; display: flex; align-items: center; gap: 6px; }

.bottom-cta { background: linear-gradient(135deg, #0047ab, #0060e0); padding: 100px 0; color: #fff; text-align: center; position: relative; overflow: hidden; }
.bottom-cta h2 { font-size: 3rem; margin-bottom: 20px; font-weight: 800; }
.bottom-cta p { font-size: 1.4rem; margin-bottom: 40px; opacity: 0.9; font-weight: 300; }
.bottom-cta .btn { background: #fff; color: var(--primary-blue); border: none; }
.bottom-cta .btn:hover { background: #f0f0f0; }

.site-footer { background-color: var(--dark-navy); color: #fff; padding: 80px 0 40px; font-size: 0.95rem; }
.footer-columns { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 60px; margin-bottom: 40px; }
.f-col h5 { font-size: 1rem; margin-bottom: 24px; color: #fff; font-weight: 700; }
.f-col ul li { margin-bottom: 14px; }
.f-col a { color: #b3bac5; }
.f-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: #828c99; font-size: 0.85rem; flex-wrap: wrap; gap: 20px; }
.socials i { font-size: 1.4rem; margin-right: 20px; cursor: pointer; transition: 0.2s; }
.socials i:hover { color: #fff; }

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

/* --- RESPONSIVE / MOBILE STYLES --- */
@media (max-width: 1024px) {
    /* Header Layout */
    .site-header { height: auto; padding: 10px 0; }
    .header-inner { padding: 0; gap: 10px; }
    
    /* Hide Desktop Nav */
    .main-nav { display: none; }
    
    /* Show Mobile Toggle */
    .mobile-toggle { display: block; }

    /* Layout adjustments */
    .header-actions { gap: 10px; }
    .btn { padding: 10px 16px; font-size: 0.85rem; }
    .hero-text h1 { font-size: 2.8rem; text-align: center; }
    .hero-text .lead { text-align: center; font-size: 1.1rem; margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .mockup-body { padding: 15px; }
    
    /* Stack grids */
    .hero-grid, .tab-grid, .footer-columns { grid-template-columns: 1fr; }
    .logo-grid { gap: 30px; }
}
/* --- PRICING SECTION STYLES --- */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subheading {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: -40px; /* Başlığa yaklaştır */
    margin-bottom: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start; /* Kartların üst hizasını korur */
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Featured (Orta) Kart Stili */
.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 96, 224, 0.1);
    transform: scale(1.05); /* Diğerlerinden biraz büyük */
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 4px;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-left: 5px;
}

.plan-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 50px; /* Hizalamayı korumak için */
}

.plan-features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.plan-features ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: #27c93f; /* Yeşil onay işareti */
    font-size: 0.9rem;
}

/* Enterprise kartındaki özel durumlar */
.enterprise-card .price-tag {
    font-size: 2.5rem;
}

/* MOBİL UYUMLULUK GÜNCELLEMESİ */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1); /* Mobilde büyütme efektini kaldır */
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}
/* --- COMPANY PAGE SPECIFIC STYLES (company.html) --- */

/* SECTION 1: COMPANY HERO */
.company-hero-section {
    background-color: var(--dark-navy);
    color: var(--bg-white);
    padding: 100px 0 80px;
    text-align: center;
}

.company-hero-section .pre-header {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.company-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 20px auto 30px;
}

.company-hero-section .lead-text {
    font-size: 1.3rem;
    color: #b3bac5;
    max-width: 800px;
    margin: 0 auto;
}

/* SECTION 2: VALUES */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0, 96, 224, 0.1);
}

.icon-xl {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

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

/* SECTION 3: LEADERSHIP */
.leadership-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.section-subheading {
    color: var(--text-gray);
    margin-bottom: 50px;
}

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

.team-member {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.member-photo {
    width: 120px;
    height: 120px;
    background-color: var(--border-color); /* Placeholder photo */
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-blue);
}

.team-member h4 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.team-member .title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member .bio {
    font-size: 0.9rem;
    color: var(--text-gray);
    min-height: 50px; /* Hizalama için */
}

/* SECTION 4: TIMELINE (Zaman Çizelgesi) */
.timeline-section {
    padding: 100px 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--primary-blue);
    border: 4px solid var(--bg-white);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Sol Tarafa Hizala */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Sağ Tarafa Hizala */
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
}


/* --- COMPANY PAGE RESPONSIVE FIXES --- */
@media (max-width: 800px) {
    .company-hero-section h1 { font-size: 2.5rem; }
    .company-hero-section .lead-text { font-size: 1.1rem; }
    
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    
    /* Zaman Çizelgesi Mobil Düzeni */
    .timeline-container::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(odd) {
        text-align: left;
    }

    .timeline-content {
        background: var(--bg-light);
        padding: 15px;
        border-radius: 8px;
    }
}

/* --- COMPANY PAGE STYLES (English Version) --- */

/* Shared Heading Alignments for Company Page */
.section-heading-left {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-navy);
    font-weight: 800;
}

.section-subheading-left {
    text-align: left;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

/* SECTION 1: COMPANY HERO */
.company-hero-section {
    background-color: var(--dark-navy);
    color: var(--bg-white);
    padding: 100px 0 80px;
    text-align: center;
}

.company-hero-section .pre-header {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.company-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 20px auto 30px;
}

.company-hero-section .lead-text {
    font-size: 1.3rem;
    color: #b3bac5;
    max-width: 800px;
    margin: 0 auto;
}

/* SECTION 2: VALUES */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0, 96, 224, 0.1);
}

.icon-xl {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

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

/* SECTION 3: TIMELINE */
.timeline-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--primary-blue);
    border: 4px solid var(--bg-light);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Left Side */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Right Side */
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* SECTION 4: REGULATORY INTELLIGENCE */
.regulatory-section {
    padding: 100px 0;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.regulatory-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-main);
}

.regulatory-text strong {
    color: var(--dark-navy);
}

.regulatory-visual {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.regulatory-visual .fa-robot {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.regulatory-visual p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
}


/* --- COMPANY PAGE RESPONSIVE FIXES --- */
@media (max-width: 992px) {
    .regulatory-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-heading-left,
    .section-subheading-left {
        text-align: center;
    }

    .regulatory-text .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 800px) {
    .company-hero-section h1 { font-size: 2.5rem; }
    .company-hero-section .lead-text { font-size: 1.1rem; }
    
    .values-grid { grid-template-columns: 1fr; }
    
    /* Timeline Mobile Adjustment */
    .timeline-container::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
        padding-left: 70px;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(odd) {
        text-align: left;
    }
}
/* --- LEARNING CENTER STYLES --- */

/* 1. LEARNING HERO */
.learning-hero {
    background-color: var(--dark-navy);
    padding: 120px 0 80px;
    text-align: center;
    background-image: radial-gradient(circle at 50% 50%, #0b2245 0%, var(--dark-navy) 70%);
}

.hero-label {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-blue);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.learning-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.2rem;
    color: #b3bac5;
    max-width: 700px;
    margin: 0 auto;
}

/* 2. BREACH BULLETIN (NEWS TICKER) - GÜNCELLENDİ */
.breach-bulletin-wrapper {
    background-color: #020617; /* Çok koyu siber lacivert */
    color: #e2e8f0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #1e293b;
    height: 56px; /* Biraz daha yüksek */
    font-family: 'JetBrains Mono', monospace; /* Kod fontu */
    font-size: 0.85rem;
    
    /* Konum Düzeltmesi (Video üstüne çıkması için) */
    position: relative;
    z-index: 20; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.ticker-label {
    background-color: #059669; /* GÜVENLİ YEŞİL */
    color: #fff;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 5px 0 15px rgba(0,0,0,0.3); /* Label'ın sağ tarafına gölge */
}

.ticker-label i {
    margin-right: 10px;
    animation: pulse-green 2s infinite; /* İkon yanıp sönsün */
}

.ticker-track {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); /* Kenarlarda yumuşak geçiş */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    /* HIZ AYARI: 80s (Daha yavaş ve akıcı) */
    animation: ticker-scroll 80s linear infinite; 
}

.news-item {
    margin-right: 60px;
    opacity: 0.9;
}

.news-item strong {
    color: #34d399; /* Metin içi açık yeşil vurgu */
    text-transform: uppercase;
}

.source-tag {
    background: #1e293b;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-right: 8px;
    border: 1px solid #334155;
}

@keyframes ticker-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes pulse-green {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
/* =========================================
   LEARNING CENTER STYLES (FIXES AND NEW SECTIONS)
   ========================================= */

/* Learning Hero (Aynı) */
.learning-hero {
    background-color: var(--dark-navy);
    padding: 120px 0 80px;
    text-align: center;
    background-image: radial-gradient(circle at 50% 50%, #0b2245 0%, var(--dark-navy) 70%);
}
.hero-label { font-family: 'JetBrains Mono', monospace; color: var(--primary-blue); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 15px; }
.learning-hero h1 { font-size: 3.5rem; color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 1.2rem; color: #b3bac5; max-width: 700px; margin: 0 auto; }

/* 2. INTEL FEED (FIXED GREEN & Z-INDEX) */
.breach-bulletin-wrapper {
    background-color: #020617;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #1e293b;
    height: 56px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    position: relative;
    z-index: 20; /* VİDEONUN ÜZERİNDE KALSIN */
}
.ticker-label {
    background-color: #059669; /* Cyber Green */
    color: #fff;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    z-index: 2;
    white-space: nowrap;
}
.ticker-track { flex-grow: 1; overflow: hidden; white-space: nowrap; }
.ticker-content { display: inline-block; padding-left: 100%; animation: ticker-scroll 80s linear infinite; }
.news-item { margin-right: 60px; opacity: 0.9; }
.news-item strong { color: #34d399; }
.source-tag { background: #1e293b; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; color: #94a3b8; margin-right: 8px; border: 1px solid #334155; }
@keyframes ticker-scroll { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* 3. KEYNOTE VIDEO */
.keynote-section { 
    margin-top: -60px; /* Hero'nun içine gömülsün */
    padding-bottom: 80px; 
    z-index: 10; /* Ticker'ın altında kalması için */
    position: relative;
}
.video-frame-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-bg { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.video-overlay { position: absolute; text-align: center; color: #fff; z-index: 2; padding: 20px; }
.play-button {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
    border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 20px; cursor: pointer; transition: 0.3s;
}
.play-button:hover { transform: scale(1.1); background: var(--primary-blue); border-color: var(--primary-blue); }


/* 4. WISDOM (BIOMETRIC PHOTOS) - CRITICAL FIXES */
.wisdom-section { padding: 80px 0; background-color: #f8f9fc; }
.wisdom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.wisdom-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* --- KRİTİK RESİM BOYUTU AYARI --- */
.bio-photo-wrapper {
    width: 140px !important;
    height: 140px !important;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary-blue), transparent);
    overflow: hidden;
}

.biometric-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Resmi kutuya sığdırır */
    border-radius: 50%;
    filter: grayscale(100%) contrast(1.2); /* Biometrik Efekt */
    border: 4px solid #fff;
    display: block;
}

.scan-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%;
    background: linear-gradient(to bottom, transparent 45%, rgba(0, 255, 255, 0.3) 50%, transparent 55%);
    background-size: 100% 200%;
    animation: scan 3s linear infinite;
    pointer-events: none;
    z-index: 10;
}
@keyframes scan { 0% { background-position: 0% 0%; } 100% { background-position: 0% 200%; } }

.cyber-quote { font-size: 1.2rem; font-style: italic; color: var(--dark-navy); margin-bottom: 20px; line-height: 1.6; }
.author-meta cite { display: block; font-weight: 800; font-style: normal; color: var(--primary-blue); text-transform: uppercase; font-size: 0.9rem; }
.author-role { font-size: 0.85rem; color: var(--text-gray); }

/* 5. INDUSTRY WATCH */
.industry-watch-section { padding: 80px 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.video-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-color); transition: 0.3s; cursor: pointer; }
.video-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.vid-thumb { height: 180px; background-color: #000; position: relative; display: flex; align-items: center; justify-content: center; }
.vid-thumb i { font-size: 3rem; color: #fff; opacity: 0.8; }
.brand-tag { position: absolute; top: 10px; right: 10px; padding: 4px 10px; font-size: 0.7rem; font-weight: 700; border-radius: 4px; color: #fff; }
.brand-tag.google { background: #DB4437; } .brand-tag.microsoft { background: #00a4ef; } .brand-tag.oracle { background: #C74634; }
.vid-info { padding: 20px; }
.vid-info h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--dark-navy); }

/* 6. LIBRARY */
.library-section { padding: 80px 0; background: var(--bg-light); }
.library-list { max-width: 800px; margin: 0 auto; }
.doc-item { display: flex; align-items: center; background: #fff; padding: 20px; margin-bottom: 20px; border-radius: 8px; border: 1px solid var(--border-color); }
.doc-icon { font-size: 2rem; color: var(--primary-blue); margin-right: 20px; }
.doc-details { flex-grow: 1; }
.doc-details h4 { font-size: 1.1rem; margin-bottom: 4px; }

/* RESPONSIVE FIXES (Learning Specifics) */
@media (max-width: 800px) {
    .wisdom-grid, .video-grid { grid-template-columns: 1fr; }
}
/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* SECTION 1: CONTACT HERO */
.contact-hero-section {
    background-color: var(--dark-navy);
    color: var(--bg-white);
    padding: 100px 0 80px;
    text-align: center;
}

.contact-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero-section .lead-text {
    font-size: 1.3rem;
    color: #b3bac5;
    max-width: 800px;
    margin: 0 auto;
}

/* SECTION 2: CONTACT ROUTING CARDS */
.contact-routing-section {
    padding: 60px 0;
    margin-top: -80px; /* Hero section'ın altına girsin */
    position: relative;
    z-index: 10;
}

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

.contact-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-card .icon-2xl {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    min-height: 50px;
}


/* SECTION 3: CONTACT FORM */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-area {
    padding-right: 30px;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-main);
    background-color: #fff;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 96, 224, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.form-footer-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 10px;
}

.form-security-visual {
    background-color: var(--dark-navy);
    color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-security-visual .fa-user-secret {
    font-size: 4rem;
    color: #ff9800; /* Vurgu Rengi */
    margin-bottom: 20px;
}

.form-security-visual h3 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

/* SECTION 4: GLOBAL OFFICES */
.global-offices-section {
    padding: 80px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.office-map-visual {
    background-color: var(--bg-light);
    height: 400px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--text-gray);
}

.office-map-visual .fa-map-marked-alt {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 10px;
}

.office-card {
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.office-card h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.location-name {
    font-weight: 600;
    color: var(--dark-navy);
}

.location-address {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 5px;
}

/* SECTION 5: ALTERNATIVE RESOURCES */
.resources-section-contact {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.resource-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.resource-link-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.resource-link-card:hover {
    transform: translateY(-5px);
    border-top: 3px solid var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0, 96, 224, 0.1);
}

.resource-link-card i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.resource-link-card h4 {
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.resource-link-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}


/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .contact-routing-grid,
    .contact-form-wrapper,
    .global-offices-section .offices-grid,
    .resource-links-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }

    .form-area {
        padding-right: 0;
    }
    
    .contact-card p {
        min-height: auto;
    }
}
/* =========================================
   PRODUCTS PAGE STYLES (products.html)
   ========================================= */

/* 1. Product Hero */
.product-hero {
    background-color: var(--dark-navy);
    padding: 120px 0 100px;
    text-align: center;
    color: #fff;
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.product-hero .hero-lead {
    font-size: 1.3rem;
    color: #b3bac5;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-nav-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-nav-buttons .btn-outline:hover {
    border-color: var(--primary-blue);
    background-color: var(--primary-blue);
    color: #fff;
}

/* 2. Product Detail Sections */
.product-detail-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-detail-section.bg-light-alt {
    background-color: var(--bg-light);
}

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

/* Reverse Layout for Alternating Sections */
.product-grid.reverse-layout .product-content {
    order: 2;
}
.product-grid.reverse-layout .product-visual {
    order: 1;
}

.product-icon-box {
    width: 60px;
    height: 60px;
    background-color: #f0f6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.product-content h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-desc {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: start;
    gap: 12px;
}

.product-features i {
    color: var(--primary-blue);
    margin-top: 4px;
}

/* Visuals */
.visual-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    color: var(--text-gray);
}

.visual-box i {
    font-size: 5rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

/* 3. API Section (Dark Theme) */
.product-detail-section.bg-dark-theme {
    background-color: #0f172a; /* Koyu Lacivert */
    color: #fff;
    border-bottom: none;
}

.bg-dark-theme h2 {
    color: #fff;
}

.bg-dark-theme p {
    color: #94a3b8;
}

.api-header {
    margin-bottom: 60px;
}

.api-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.api-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.api-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.api-card h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Mobile Fixes for Products Page */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-grid.reverse-layout .product-content {
        order: 1; /* Mobilde her zaman içerik önce gelsin */
    }
    .product-grid.reverse-layout .product-visual {
        order: 2;
    }
    
    .api-grid {
        grid-template-columns: 1fr;
    }
    
    .product-hero h1 {
        font-size: 2.5rem;
    }
}
/* =========================================
   SOLUTIONS PAGE STYLES (solutions.html)
   ========================================= */

/* 1. Solutions Hero */
.solutions-hero {
    background-color: var(--dark-navy);
    padding: 120px 0 100px;
    text-align: center;
    background-image: linear-gradient(to bottom right, #0f172a, #1e3a8a);
    color: #fff;
}

.solutions-hero .pre-header {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.solutions-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.solutions-hero .hero-lead {
    font-size: 1.3rem;
    color: #b3bac5;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* 2. Industry Sections */
.industry-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.industry-section.bg-light-alt {
    background-color: var(--bg-light);
}

.industry-header {
    text-align: center;
    margin-bottom: 60px;
}

.industry-header .icon-3xl {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.industry-header h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.industry-sub {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.industry-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Challenge vs Solution Boxes */
.challenge-box, .solution-box {
    padding: 40px;
    border-radius: 12px;
}

.challenge-box {
    background-color: #fff1f0; /* Hafif Kırmızı/Uyarı Tonu */
    border-left: 5px solid #d93025;
}

.solution-box {
    background-color: #f0f9ff; /* Hafif Mavi/Çözüm Tonu */
    border-left: 5px solid var(--primary-blue);
}

.challenge-box h3 { color: #d93025; margin-bottom: 15px; font-size: 1.4rem; }
.solution-box h3 { color: var(--primary-blue); margin-bottom: 15px; font-size: 1.4rem; }

.challenge-box p, .solution-box p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-main);
}

.pain-points li, .solution-points li {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.95rem;
}

.pain-points li::before {
    content: "•";
    color: #d93025;
    font-weight: bold;
}

.solution-points i {
    color: var(--primary-blue);
    margin-top: 3px;
}

/* 3. Role Section */
.role-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.role-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.role-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.role-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.role-card h3 { font-size: 1.2rem; color: var(--dark-navy); margin-bottom: 10px; }
.role-card p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; min-height: 60px; }

/* 4. Compliance Strip */
.compliance-section {
    padding: 60px 0;
    background-color: var(--dark-navy);
    color: #fff;
    text-align: center;
}

.compliance-section h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.compliance-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.comp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #b3bac5;
    font-weight: 600;
}

.comp-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* 5. Case Study Highlight */
.case-study-section {
    padding: 100px 0;
}

.case-study-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 16px;
}

.cs-tag {
    background-color: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.cs-content h2 { font-size: 2.2rem; color: var(--dark-navy); margin-bottom: 20px; }
.cs-content p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 30px; }

.cs-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-box { display: flex; flex-direction: column; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary-blue); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--text-gray); font-weight: 600; margin-top: 5px; }

.cs-visual {
    height: 300px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cs-visual i { font-size: 5rem; margin-bottom: 20px; }

/* Responsive Fixes */
@media (max-width: 992px) {
    .industry-content-grid, .case-study-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .role-grid {
        grid-template-columns: 1fr;
    }
    .compliance-logos {
        gap: 30px;
    }
}
/* =========================================
   PRICING PAGE STYLES (pricing.html)
   ========================================= */

/* Pricing Hero */
.pricing-hero {
    background-color: var(--dark-navy);
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}
.pricing-hero h1 { font-size: 3rem; margin-bottom: 20px; }
.pricing-hero .hero-sub { font-size: 1.2rem; color: #b3bac5; }

/* Comparison Table (Matrix) */
.comparison-section { padding: 80px 0; }
.table-responsive { overflow-x: auto; }
.comp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    min-width: 700px; /* Mobilde kaydırma için */
}
.comp-table th {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-light);
    color: var(--dark-navy);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--border-color);
}
.comp-table th.feature-col { text-align: left; width: 40%; }
.comp-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-gray);
}
.comp-table td:first-child { text-align: left; color: var(--dark-navy); font-weight: 600; }
.section-row td {
    background-color: #f0f9ff;
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding-top: 25px;
}
.text-green { color: #10b981; font-size: 1.2rem; }

/* FAQ Section */
.faq-section { padding: 80px 0; background-color: var(--bg-light); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-navy);
    list-style: none; /* Varsayılan oku gizle */
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: 800;
    color: var(--primary-blue);
}
.faq-item details[open] summary::after { content: '-'; }
.faq-content {
    padding: 0 20px 20px;
    color: var(--text-gray);
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

/* =========================================
   PAYMENT MODAL STYLES
   ========================================= */
.payment-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000; /* Her şeyin üstünde */
    display: none; /* Varsayılan gizli */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.payment-overlay.active { display: flex; }

.payment-container {
    background-color: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.close-payment-btn {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none; font-size: 2rem; cursor: pointer; color: #999;
}

.payment-header { margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.payment-header h3 { font-size: 1.5rem; color: var(--dark-navy); margin-bottom: 5px; }
.selected-plan-info { display: flex; justify-content: space-between; font-weight: 600; color: var(--primary-blue); font-size: 1.1rem; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-gray); margin-bottom: 5px; font-weight: 600; }
.payment-form input {
    width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 6px; font-size: 1rem;
}
.input-with-icon { position: relative; }
.input-with-icon i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #999; }
.input-with-icon input { padding-left: 40px; }

.form-row-split { display: flex; gap: 15px; }
.form-row-split .form-group { flex: 1; }

.payment-summary { font-size: 0.8rem; color: #666; margin-bottom: 20px; text-align: center; }
.pay-btn { font-size: 1.1rem; padding: 14px; }

.payment-security-badges {
    margin-top: 20px; text-align: center; color: #ccc; font-size: 1.5rem; display: flex; justify-content: center; gap: 15px; align-items: center;
}
.payment-security-badges span { font-size: 0.7rem; color: #999; font-weight: 600; display: flex; align-items: center; gap: 5px; }
/* =========================================
   LOGIN & REGISTER PAGE STYLES (login.html)
   ========================================= */

body.login-page-body {
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.login-wrapper {
    flex-grow: 1; /* Ortadaki içeriğin sayfanın geri kalanını doldurmasını sağlar */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    /* Gradient Text */
    background: linear-gradient(90deg, var(--primary-blue), #5678ee, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers not supporting -webkit-text-fill-color */
}

.login-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Tab Selector for Sign In / Register */
.tab-selector {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-button {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button.active {
    color: var(--dark-navy);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Border altına oturması için */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

/* Auth Forms (Sign In / Register) */
.auth-form {
    display: none; /* Varsayılan olarak gizli */
    text-align: left;
}

.auth-form.active {
    display: block; /* Aktif olduğunda göster */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-weight: 600;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus,
.auth-form input[type="text"]:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    color: var(--text-gray);
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--primary-blue); /* Checkbox rengi */
}

.forgot-password, .sso-info a, .privacy-terms a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover, .sso-info a:hover, .privacy-terms a:hover {
    color: var(--dark-navy);
    text-decoration: underline;
}

/* Animated Button Styles */
.animated-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    transform: translateY(0); /* Varsayılan durum */
}

/* Primary Button Animation */
.btn-primary.animated-btn {
    background-color: var(--primary-blue);
    color: #fff;
    border: 1px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

.btn-primary.animated-btn:hover {
    background-color: var(--dark-navy); /* Hover'da daha koyu */
    border-color: var(--dark-navy);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px); /* Hafif yukarı çıkma */
}

.btn-primary.animated-btn:active {
    background-color: #2a4175; /* Tıklama anında daha koyu */
    transform: translateY(1px); /* Basılma efekti */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Social Button Animations */
.btn-social.animated-btn {
    background-color: #f5f5f5;
    color: var(--dark-navy);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-social.animated-btn:hover {
    background-color: #e0e0e0;
    border-color: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-social.animated-btn:active {
    background-color: #d0d0d0;
    transform: translateY(1px);
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.btn-social.animated-btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

.social-login-separator {
    margin: 30px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-login-separator::before,
.social-login-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
    margin: 0 15px;
}

.social-login-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-login-options .btn {
    flex: 1;
    padding: 12px 15px;
}

.sso-info {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.privacy-terms {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: -5px; /* Form ile arasındaki boşluğu ayarla */
    margin-bottom: 25px;
}
.privacy-terms a {
    font-weight: 600;
}

.security-info {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: left;
}

.security-info i {
    color: var(--dark-navy);
    font-size: 1.3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .login-container {
        padding: 30px 20px;
    }
    .login-header h1 {
        font-size: 2rem;
    }
    .login-header p {
        font-size: 1rem;
    }
    .tab-button {
        font-size: 1rem;
    }
    .social-login-options {
        flex-direction: column;
        gap: 10px;
    }
}
/* =========================================
   LOGIN PAGE SPECIFIC STYLES (MINIMALIST & DUAL SCANNER)
   ========================================= */

/* 1. Background & Layout */
body.login-page-body {
    /* Base color: White */
    background-color: #ffffff;
    
    /* Mesh Gradient Effect:
       - Top Left: Primary Blue (Zagsendos Blue)
       - Top Right: Subtle Red (Alert/Energy)
       - Bottom/Center: White/Transparent to keep it clean
    */
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(0, 96, 224, 0.25) 0%, transparent 45%), /* Blue Light */
        radial-gradient(circle at 100% 0%, rgba(220, 38, 38, 0.20) 0%, transparent 45%), /* Red Light */
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1) 0%, transparent 100%); /* White/Clean Center */
        
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 2. Simple Header (Logo Only) */
.simple-header {
    padding: 30px 0;
    text-align: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-link .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    /* Gradient Text Effect */
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-link .logo-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

/* 3. Login Container Centering */
.login-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* 4. Login Box Styling */
.login-container {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

/* Apple-style Gradient Text */
.gradient-text {
    font-size: 2rem;
    margin-bottom: 5px; /* Çizgi için boşluk bırak */
    background: linear-gradient(135deg, #1a1a1a 0%, #0060e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* --- NEW: REVERSE HEADER SCANNER --- */
.header-scanner-wrapper {
    width: 100%;
    max-width: 180px; /* Başlık kadar genişlik */
    height: 2px;
    margin: 0 auto 20px; /* Yazının hemen altında */
    position: relative;
    overflow: hidden;
    /* Hafif bir zemin çizgisi */
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent); 
}

.header-scanner-line {
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    position: absolute;
    top: 0;
    right: -100px; /* Sağdan başlayacak */
    /* Ters Yön Animasyonu: 3s, 1 kere */
    animation: scanner-swipe-reverse 3s ease-in-out 1 forwards;
    opacity: 0;
}

.login-header p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Tabs */
.tab-selector {
    display: flex;
    margin: 30px 0;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
}

.tab-button {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-button.active {
    background: #fff;
    color: var(--dark-navy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Forms */
.auth-form { display: none; text-align: left; }
.auth-form.active { display: block; animation: fadeIn 0.3s ease; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-navy); margin-bottom: 6px; }
.form-group input {
    width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px;
    transition: 0.2s; font-size: 1rem;
}
.form-group input:focus { 
    border-color: var(--primary-blue); 
    box-shadow: 0 0 0 4px rgba(0, 96, 224, 0.1); 
    outline: none; 
}

.form-actions { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; margin-bottom: 25px; }
.forgot-password { color: var(--primary-blue); text-decoration: none; font-weight: 600; }

.animated-btn {
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.1s;
}
.animated-btn:active {
    transform: scale(0.96);
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.1);
}

.sso-info { margin-top: 20px; font-size: 0.85rem; color: var(--text-gray); text-align: center; }
.sso-info a { color: var(--dark-navy); font-weight: 600; }
.privacy-terms { font-size: 0.8rem; color: var(--text-gray); margin-bottom: 20px; line-height: 1.5; }

.security-badges-row {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    color: #94a3b8;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 5. SIMPLE FOOTER & NORMAL SCANNER */
.simple-footer {
    text-align: center;
    padding: 20px 0 40px;
    position: relative;
}

.footer-links-minimal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-links-minimal a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: 0.2s; }
.footer-links-minimal a:hover { color: #fff; }
.footer-links-minimal .dot { margin: 0 8px; opacity: 0.5; }

/* --- FOOTER SCANNER (Left to Right) --- */
.scanner-wrapper {
    width: 100%;
    max-width: 300px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.scanner-line {
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00c6ff, transparent); 
    position: absolute;
    top: 0;
    left: -100px;
    animation: scanner-swipe 3s ease-in-out 1 forwards; 
    opacity: 0;
}

/* ANIMATION: LEFT TO RIGHT */
@keyframes scanner-swipe {
    0% { left: -100px; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 100%; }
    100% { left: -100px; opacity: 0; }
}

/* ANIMATION: RIGHT TO LEFT (REVERSE) */
@keyframes scanner-swipe-reverse {
    0% { right: -100px; opacity: 0; }
    10% { opacity: 1; }
    50% { right: 100%; }
    100% { right: -100px; opacity: 0; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
/* =========================================
   HELP CENTER STYLES (help-center.html)
   ========================================= */

/* 1. Help Hero & Search Area */
.help-hero {
    background-color: var(--dark-navy);
    padding: 100px 0 120px;
    text-align: center;
    color: #fff;
    /* Hafif bir gradient arka plan */
    background-image: radial-gradient(circle at 50% 0%, #1e3a8a 0%, var(--dark-navy) 60%);
}

.help-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.help-hero .hero-sub {
    font-size: 1.2rem;
    color: #b3bac5;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* AI Search Bar Styling */
.search-wrapper {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.search-box {
    display: flex;
    background: #fff;
    padding: 6px;
    border-radius: 50px; /* Hap şeklinde */
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-box:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 96, 224, 0.15);
}

.search-icon {
    padding: 15px 25px;
    color: var(--text-gray);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: var(--font-main);
    color: var(--text-main);
}

.search-box .btn {
    border-radius: 40px;
    padding: 12px 35px;
    font-weight: 600;
}

/* AI Result Box (Cevap Alanı) */
.ai-result-box {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.1); /* Yarı saydam beyaz */
    backdrop-filter: blur(12px); /* Buzlu cam efekti */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    animation: fadeInUp 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #60a5fa; /* Açık mavi */
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-result-box p {
    color: #f1f5f9; /* Çok açık gri metin */
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* 2. Help Topics Grid */
.help-topics {
    padding: 80px 0;
    margin-top: -60px; /* Hero'nun içine hafifçe girsin */
    position: relative;
    z-index: 10;
}

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

.topic-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: inherit;
}

.topic-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-blue);
}

.topic-card i {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    background: #f0f9ff;
    padding: 15px;
    border-radius: 12px;
}

.topic-card h3 {
    font-size: 1.25rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.topic-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* 3. Popular Articles */
.popular-articles {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.article-list {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden; /* Köşelerin keskin kalmaması için */
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.2s ease;
    font-weight: 500;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item i {
    color: var(--primary-blue);
    font-size: 0.9rem;
    opacity: 0; /* Başlangıçta gizli */
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.article-item:hover {
    background-color: #f8fafc;
    color: var(--primary-blue);
    padding-left: 40px; /* Sağa kayma efekti */
}

.article-item:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Fixes for Help Center */
@media (max-width: 1024px) {
    .topic-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 20px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 16px;
        padding: 15px;
    }

    .search-box input {
        width: 100%;
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }
    
    .search-icon { display: none; } /* Mobilde ikonu gizle, yer aç */

    .search-box .btn {
        width: 100%;
    }
    
    .help-hero {
        padding: 80px 0 100px;
    }
    
    .help-hero h1 {
        font-size: 2.2rem;
    }
}