* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

body {
    font-family: 'Calibri','Inter',Arial,sans-serif; 
    line-height: 1.6; 
    color: #333; 
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
}

.header {
    background: linear-gradient(135deg, #007ACC 0%, #0056b3 100%); 
    color: white; 
    padding: 1rem 0; 
    position: sticky; 
    top: 0; 
    z-index: 998; 
    box-shadow: 0 2px 15px rgba(0, 122, 204, 0.2);
}

.nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
    max-width: 100%;
}

/* Hamburger Menu Styles */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 9999;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background: rgba(255, 255, 255, 0.8);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #007ACC 0%, #0056b3 100%);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
	pointer-events: none;
}

.mobile-menu.active {
    right: 0;
	pointer-events: auto;
}

.menu-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-bottom: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Overlay when menu is open */
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.mobile-menu.active::before {
    left: -280px;
    opacity: 1;
}

.hero {
    position: relative; 
    color: white; 
    padding: 80px 0; 
    text-align: center; 
    background: url('bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative; 
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem); 
    margin-bottom: 25px; 
    font-weight: 600; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem); 
    margin-bottom: 40px; 
    max-width: 850px; 
    margin: 0 auto 40px auto; 
    opacity: 0.95; 
    line-height: 1.6;
    padding: 0 10px;
}

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.download-btn {
    display: inline-flex; 
    background: linear-gradient(45deg,#28a745,#20c997); 
    color: white; 
    padding: 18px 35px; 
    border-radius: 50px; 
    font-size: clamp(1.1rem, 2.5vw, 1.3rem); 
    font-weight: 600; 
    transition: all .3s ease; 
    box-shadow: 0 8px 30px rgba(40,167,69,0.3); 
    border: none; 
    cursor: pointer; 
    position: relative; 
    overflow: hidden;
    text-decoration: none;
    touch-action: manipulation;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.download-btn::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent); 
    transition: left .5s;
}

.download-btn:hover, .download-btn:focus {
    transform: translateY(-2px); 
    box-shadow: 0 12px 35px rgba(40,167,69,0.4);
    outline: none;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:active {
    transform: translateY(0);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    font-size: 1rem !important;
    padding: 12px 25px !important;
    max-width: 220px !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15) !important;
}

.trial-info {
    margin-top: 20px; 
    font-size: clamp(1rem, 2vw, 1.2rem); 
    opacity: .9; 
    background: rgba(255,255,255,0.15); 
    padding: 15px 20px; 
    border-radius: 25px; 
    display: inline-block;
    backdrop-filter: blur(10px);
    max-width: 90%;
}

.features {
    padding: 80px 0; 
    background: #f8f9fa;
}

.section-title {
    text-align: center; 
    font-size: clamp(2rem, 5vw, 2.8rem); 
    margin-bottom: 50px; 
    color: #007ACC; 
    font-weight: 700;
    line-height: 1.2;
}

.features-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-top: 40px;
}

.feature-card {
    background: white; 
    padding: 35px 25px; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: 0 10px 35px rgba(0,122,204,0.1); 
    transition: all .4s ease; 
    border-top: 4px solid #007ACC;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,122,204,0.2);
}

.feature-icon {
    width: 80px; 
    height: 80px; 
    background: linear-gradient(135deg,#007ACC,#0056b3); 
    border-radius: 50%; 
    margin: 0 auto 25px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2rem; 
    color: white;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem); 
    margin-bottom: 15px; 
    color: #007ACC; 
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: #666; 
    line-height: 1.7; 
    font-size: clamp(1rem, 2vw, 1.1rem);
    flex-grow: 1;
}

.benefits {
    padding: 80px 0; 
    background: linear-gradient(135deg,#007ACC 0%,#0056b3 100%); 
    color: white;
}

.benefits-content {
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 50px; 
    align-items: center;
}

.benefits-text h2 {
    font-size: clamp(2rem, 5vw, 2.8rem); 
    margin-bottom: 30px; 
    font-weight: 700;
    text-align: center;
}

.benefit-item {
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 20px; 
    padding: 18px; 
    background: rgba(255,255,255,0.12); 
    border-radius: 15px; 
    transition: all .3s ease; 
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255,255,255,0.2); 
    transform: translateX(5px);
}

.benefit-icon {
    width: 28px; 
    height: 28px; 
    background: #28a745; 
    border-radius: 50%; 
    margin-right: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-weight: bold; 
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item span {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.5;
}

.benefits-visual {
    text-align: center;
    order: -1;
}

.dashboard-preview {
    width: 100%; 
    max-width: 400px; 
    height: 300px; 
    background: rgba(255,255,255,0.15); 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255,255,255,0.2); 
    overflow: hidden;
    margin: 0 auto;
}

.dashboard-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.cta {
    padding: 80px 0; 
    background: #f8f9fa; 
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 2.8rem); 
    margin-bottom: 25px; 
    color: #007ACC; 
    font-weight: 700;
}

.cta p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem); 
    margin-bottom: 40px; 
    color: #666; 
    max-width: 600px; 
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.footer {
    background: #007ACC; 
    color: white; 
    text-align: center; 
    padding: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.credits {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Sağa yaslamak için */
    gap: 10px;
    margin-top: 0; /* Üst boşluk kaldırıldı */
    flex-grow: 1; /* Esnek büyüme */
}

.footer-links {
    justify-content: flex-start; /* Sola yaslamak için */
    flex-grow: 1; /* Esnek büyüme */
}

.credits-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 400;
}

.credits a {
    display: inline-flex;
    align-items: center;
}

.credits img {
    display: block;
}

@media (max-width: 480px) {
    .credits {
        flex-direction: column;
        gap: 8px;
    }
    
    .credits-text {
        font-size: 0.9rem;
    }

    .footer-bottom {
        justify-content: center; /* Mobilde ortalamak için */
        flex-direction: column; /* Öğeleri alt alta sırala */
        align-items: center; /* Öğeleri ortala */
    }

    .footer-links, .credits {
        justify-content: center; /* İçeriklerini ortala */
        text-align: center;
    }
}

.footer p {
    opacity: .9; 
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 10px;
}

.footer img {
    max-width: 100px;
    height: auto;
}

.footer-links {
    margin: 0; /* Boşluk kaldırıldı */
    display: flex;
    gap: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Terms ve Version sayfaları için stiller */
.changelog-content, .terms-content, .guide-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.changelog-title, .terms-title, .guide-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.terms-text, .version-block, .guide-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.7;
    color: #666;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.version-block {
    border-left: 4px solid #007ACC;
}

.version-meta h3 {
    margin-top: 0;
    margin-bottom: 0.25rem;
    color: #007ACC;
}

/* Sürüm notları akordeon */
.version-block.accordion-item {
    padding: 0;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    padding: 1.25rem 2rem;
    gap: 1rem;
    user-select: none;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #f0f7ff;
}

.version-meta {
    flex: 1;
    min-width: 0;
}


.version-meta .version-subtitle {
    font-size: 1.1rem;
    color: #444;
    font-weight: 600;
    margin-top: 0.2rem;
}

.accordion-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    padding-top: 3px;
}

.version-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.accordion-arrow {
    color: #007ACC;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    display: none;
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-body p {
    text-align: justify;
}

.stats-summary p {
    text-align: justify;
}

.terms-text h3 {
    color: #007ACC;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    margin-top: 0.7rem;
}

.terms-text h3:first-child {
    margin-top: 0;
}

.terms-text p {
    line-height: 1.5;
    color: #666;
    margin-bottom: 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.terms-text ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 2rem;
}

.terms-text li {
    line-height: 1.5;
    color: #666;
    margin-bottom: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.terms-text a {
    color: #007ACC;
    text-decoration: none;
    word-break: break-all;
    overflow-wrap: break-word;
}

.terms-text a:hover {
    text-decoration: underline;
}

.note, .last-updated {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.note strong, .last-updated strong {
    color: #007ACC;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #007ACC;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #0056b3;
}

.back-link::before {
    content: "←";
    font-size: 1.2rem;
}

/* Guide-specific styles */
.guide-intro {
    background: #f8f9fa;
    border-left: 4px solid #007ACC;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.guide-intro p {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
}

.step-header {
    background: linear-gradient(135deg, #007ACC 0%, #0056b3 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 12px 12px 0 0;
    margin: -2rem -2rem 2rem -2rem;
}

.step-number {
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-content {
    padding: 0;
}

.step-content p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.step-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.step-content li {
    line-height: 1.7;
    color: #666;
    margin-bottom: 0.5rem;
}

.requirements-list li {
    margin-bottom: 0.8rem;
}

.step-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
}

.screenshot-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #999;
    font-style: italic;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.warning-box p {
    margin: 0;
    color: #856404;
}

.info-box {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.info-box p {
    margin: 0;
    color: #0c5460;
}

.troubleshooting {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.troubleshooting h3 {
    color: #007ACC;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #007ACC;
    padding-bottom: 0.5rem;
}

.trouble-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.trouble-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.trouble-item h4 {
    color: #0056b3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trouble-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.support-info {
    background: linear-gradient(135deg, #007ACC 0%, #0056b3 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.support-info h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-info p {
    margin-bottom: 1rem;
    opacity: 0.95;
}

.support-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

.support-info li {
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.support-info a {
    color: white;
    text-decoration: underline;
}

.support-info a:hover {
    opacity: 0.8;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    animation: whatsappPulse 2s infinite;
	border-radius: 50%;
}

.whatsapp-sticky a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    min-height: 50px;
    white-space: nowrap;
}

.whatsapp-sticky a:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Focus ve accessibility */
.download-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Pulse animasyonu */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        border-radius: 50%; /* Bu satırı ekleyin */
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        border-radius: 50%; /* Bu satırı ekleyin */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        border-radius: 50%; /* Bu satırı ekleyin */
    }
}

/* Tablet ve Desktop medya sorguları */
@media (min-width: 768px) {
    .hero {
        padding: 100px 0;
        min-height: 100vh;
    }
    
    .features, .benefits, .cta {
        padding: 100px 0;
    }
    
    .benefits-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .benefits-visual {
        order: 0;
    }
    
    .benefits-text h2 {
        text-align: left;
    }
    
    .dashboard-preview {
        max-width: 500px;
        height: 400px;
    }
    
    .download-btn {
        width: auto;
        padding: 20px 45px;
    }
    
    .secondary-btn {
        padding: 14px 30px !important;
        font-size: 1.1rem !important;
    }
    
    .download-section {
        flex-direction: row;
        gap: 20px;
    }
    
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-sticky a {
        padding: 12px 16px;
        border-radius: 50px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-sticky a {
        width: 50px;
        height: 50px;
        justify-content: center;
        border-radius: 50%;
    }

}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .feature-card {
        padding: 45px 35px;
    }
    
    .benefit-item {
        transform: translateX(0);
    }
    
    .benefit-item:hover {
        transform: translateX(10px);
    }
    
    .mobile-menu {
        width: 320px;
        padding: 120px 40px 40px;
    }
    
    .menu-link {
        font-size: 1.2rem;
        padding: 12px 25px;
        margin-bottom: 6px;
    }
    
    .hamburger:hover {
        transform: scale(1.1);
    }
	
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .features, .benefits, .cta {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .benefit-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .benefit-item:hover {
        transform: translateX(0);
        background: rgba(255,255,255,0.2);
    }
    
    .dashboard-preview {
        height: 250px;
        max-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .terms-text, .version-block, .guide-step {
        padding: 1.5rem;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .version-block.accordion-item {
        padding: 0;
    }

    .accordion-header {
        padding: 1rem 1.5rem;
    }

    .accordion-body {
        padding: 1.5rem;
    }
    
    .step-header {
        padding: 1rem;
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    }
    
    .guide-content {
        padding: 40px 15px;
        max-width: 100%;
    }
    
    .secondary-btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .download-section {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-sticky a {
        padding: 12px 16px;
        border-radius: 50px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-sticky a {
        width: 50px;
        height: 50px;
        justify-content: center;
        border-radius: 50%;
    }
    
    /* Screenshots grid optimization */
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .screenshot-item img {
        height: 200px;
    }
    
    /* Lightbox mobile optimization */
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-prev, .lightbox-next {
        padding: 10px 15px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
	
}

/* Touch ve mobil optimizasyonları */
@media (max-width: 767px) {
    /* Touch-friendly button sizes */
    .download-btn, .pricing-btn, .submit-btn-modal {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
    }
    
    .menu-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    .hamburger {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
    }
    
    /* Improved touch targets */
    .faq-question {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .category-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Better spacing for touch */
    .feature-card {
        margin-bottom: 20px;
    }
    
    .benefit-item {
        margin-bottom: 15px;
    }
    
    /* Optimize text selection */
    .hero h1, .hero p, .feature-card h3, .feature-card p {
        -webkit-user-select: text;
        user-select: text;
    }
    
    /* Prevent zoom on input focus */
    input, textarea, select {
        font-size: 16px;
    }
}
/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 40px 0;
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .features, .benefits, .cta {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .benefit-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    
    .dashboard-preview {
        height: 200px;
    }
    
    .footer-link {
        display: block;
        margin: 5px 0;
        font-size: 13px;
    }
    
    .terms-text, .version-block, .guide-step {
        padding: 1rem;
        margin-bottom: 1.5rem;
        word-break: break-word;
    }

    .version-block.accordion-item {
        padding: 0;
    }

    .accordion-header {
        padding: 0.75rem 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin: -1rem -1rem 1rem -1rem;
        padding: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .guide-content {
        padding: 30px 10px;
    }
    
    .guide-intro {
        padding: 1rem;
    }
    
    .troubleshooting,
    .support-info {
        padding: 1rem;
    }
    
    .warning-box,
    .info-box {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .step-content img {
        border-radius: 4px;
        margin: 8px auto;
    }
    
    .terms-title, .changelog-title, .guide-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .last-updated {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .mobile-menu {
        width: 100vw;
        right: -100vw;
        padding: 100px 20px 30px;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu::before {
        display: none;
    }
    
    .menu-link {
        padding: 8px 15px;
        font-size: 1rem;
    }
    
    .whatsapp-sticky {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-sticky a {
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    
    .whatsapp-sticky svg {
        width: 20px;
        height: 20px;
    }
    
    /* Screenshots mobile optimization */
    .screenshots-grid {
        gap: 15px;
    }
    
    .screenshot-item img {
        height: 180px;
    }
    
    /* Lightbox mobile optimization */
    .lightbox-content {
        max-width: 98%;
        max-height: 75vh;
    }
    
    .lightbox-prev, .lightbox-next {
        padding: 8px 12px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-close {
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .lightbox-caption {
        bottom: -35px;
        font-size: 14px;
        padding: 8px 15px;
    }
    
    /* Pricing mobile optimization */
    .pricing {
        padding: 30px 0;
    }
    
    .pricing-table {
        margin-top: 10px;
    }
    
    .pricing-header {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 5px;
    }
    
    .pricing-row {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 5px;
    }
    
    .pricing-footer {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 5px;
    }
    
    .pricing-logo {
        max-width: 80px;
        margin-bottom: 5px;
    }
    
    .pricing-tagline {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .pricing-header h3 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .plan-subtitle {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .popular-badge,
    .popular-badge.discount {
        font-size: 0.6rem;
        padding: 2px 6px;
        margin-bottom: 5px;
    }
    
    .pricing-feature {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
    
    .pricing-value {
        padding: 8px 5px;
    }
    
    .check {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .pricing-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .pricing-note {
        padding: 10px 15px;
        margin-top: 20px;
    }
    
    .pricing-note p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}


/* Çok küçük ekranlar için ek optimizasyon */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 30px 0;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .features, .benefits, .cta {
        padding: 30px 0;
    }
    
    .feature-card {
        padding: 15px 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .benefit-icon {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
    
    .dashboard-preview {
        height: 180px;
    }
    
    .step-content img {
        border-radius: 4px;
        margin: 8px auto;
    }
    
    .terms-content, .changelog-content, .guide-content {
        padding: 30px 8px;
    }
    
    .terms-text, .version-block, .guide-step {
        padding: 0.8rem;
    }

    .version-block.accordion-item {
        padding: 0;
    }

    .accordion-header {
        padding: 0.6rem 0.8rem;
    }

    .accordion-body {
        padding: 0.8rem;
    }
    
    .terms-title, .changelog-title, .guide-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .step-header {
        padding: 0.8rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .menu-link {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .whatsapp-sticky a {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .whatsapp-sticky svg {
        width: 18px;
        height: 18px;
    }
    
    .screenshot-item img {
        height: 160px;
    }
    
    .lightbox-content {
        max-width: 99%;
        max-height: 70vh;
    }

    .lightbox-prev, .lightbox-next {
        padding: 6px 10px;
        font-size: 16px;
    }

    .lightbox-close {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .pricing {
        padding: 40px 0;
    }

    .pricing-intro {
        font-size: 1rem;
    }

    .plan-cards {
        max-width: 100%;
        gap: 16px;
    }

    .plan-card {
        padding: 24px 16px 20px;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .plan-price-box .plan-price {
        font-size: 2rem;
    }

    .all-features-section {
        margin-top: 36px;
    }

    .all-features-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .all-features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 12px 16px;
    }
}

/* High DPI ekranlar için */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: url('bg.jpg');
    }
}

/* Landscape telefon orientasyonu */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero h1 {
        margin-bottom: 15px;
    }
    
    .hero p {
        margin-bottom: 25px;
    }
}

/* Accessibility */
.hamburger:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.menu-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.whatsapp-sticky a:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduced motion için */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .whatsapp-sticky {
        animation: none;
    }
    
    .whatsapp-sticky a {
        transition: none;
    }
}

/* Will-change optimizations for smooth animations */
.feature-card, .benefit-item, .download-btn, .screenshot-item {
    will-change: transform;
}

/* GPU acceleration for smooth scrolling */
.hero, .features, .benefits, .cta {
    transform: translateZ(0);
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0; 
    background: #f8f9fa;
}

.screenshots-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-top: 40px;
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,122,204,0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    background: white;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,122,204,0.2);
}

.screenshot-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 122, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Pricing Section */
.pricing {
    padding: 60px 0 80px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.pricing .container {
    max-width: 900px;
}

.pricing .section-title {
    color: #007ACC;
}

.pricing-logo {
    display: block;
    margin: 0 0 15px 0;  /* auto yerine 0 */
    max-width: 123px;
    height: auto;
}

.pricing-tagline {
    font-size: 1.4rem;
    color: #666;
    margin: 0;
    font-weight: 400;
    text-align: left;
	line-height: 1.4;
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
	position: relative;
	z-index: 2;
}

.pricing-header {
    display: grid;
    grid-template-columns: 40% 20% 20% 20%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #007ACC;
}

.pricing-header > div {
    padding: 30px 20px;
    text-align: center;
}

.pricing-feature-column {
    text-align: left !important;
    padding-left: 30px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-header h3 {
    color: #007ACC;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.popular-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.pricing-row {
    display: grid;
    grid-template-columns: 40% 20% 20% 20%;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.pricing-row:hover {
    background: #f8f9fa;
}

.pricing-feature {
    padding: 20px 30px;
    font-weight: 500;
    color: #333;
    text-align: left;
}

.pricing-value {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-value.highlighted {
    background: rgba(0, 122, 204, 0.05);
}

.check {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: bold;
}

.uncheck {
    color: #dc3545;
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-footer {
    display: grid;
    grid-template-columns: 40% 20% 20% 20%;
    background: #f8f9fa;
    padding: 30px 0;
	position: relative;
    z-index: 1;
}

.pricing-footer > div {
    padding: 0 20px;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007ACC;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid #007ACC;
    background: white;
    color: #007ACC;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.pricing-btn:hover {
    background: #007ACC;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 204, 0.3);
}

.pricing-btn.primary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border-color: transparent;
}

.pricing-btn.primary:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.pricing-note {
    background: #e8f4fd;
    border-radius: 15px;
    padding: 20px 30px;
    margin-top: 40px;
    text-align: center;
    color: #1a5276;
    border: 2px solid #7fb8e6;
}

.pricing-note p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-note strong {
    color: #1a5276;
}

/* Mobile Responsive for Pricing */
@media (max-width: 1024px) {
    .pricing-header,
    .pricing-row,
    .pricing-footer {
        grid-template-columns: 1fr;
    }
    
	.pricing-footer {
		padding: 20px 0;
    }
    
    .pricing-footer .pricing-plan-column {
        padding: 20px 15px !important;
    }
	
    .pricing-logo {
        max-width: 100px;
        margin-bottom: 10px;
    }
    
    .pricing-tagline {
        font-size: 0.85rem;
        line-height: 1.4;
    }	
	
    .pricing-header > div,
    .pricing-feature,
    .pricing-value {
        text-align: center !important;
        padding-left: 20px !important;
        border-bottom: 1px solid #e9ecef;
    }
    
    .pricing-plan-column {
        padding: 20px !important;
    }
    
    .pricing-feature-column h3 {
        display: none;
    }
    
    .pricing-row {
        padding: 15px 0;
    }
    
    .pricing-feature::before {
        content: '';
        display: block;
        font-weight: 600;
        color: #007ACC;
        margin-bottom: 10px;
    }
    
    .pricing-value {
        display: inline-block;
        width: auto;
        margin: 5px;
    }
    
    .popular-badge {
        margin-bottom: 5px;
    }
    
    .price {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .pricing-btn {
        max-width: 100%;
    }
    
    .pricing-note {
        padding: 15px 20px;
    }
    
    .pricing-note p {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0 60px;
    }
}

/* Highlight indirim rozetleri */
.popular-badge.discount {
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    animation: pulseDiscount 2s infinite;
    font-size: 0.85rem;
    padding: 6px 18px;
}

@keyframes pulseDiscount {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
    }
}

.pricing-btn,
.pricing-footer .pricing-btn {
    z-index: 10 !important;
    pointer-events: auto !important;
    position: relative;
}

/* Pricing buton FIX - Kesin çözüm */
.pricing-footer > div:last-child,
.pricing-footer > div:last-child .pricing-btn {
    z-index: 100 !important;
    position: relative;
}

.pricing-footer > div:last-child .pricing-btn:hover {
    z-index: 101 !important;
}

/* Pricing section overflow fix */
.pricing {
    isolation: isolate;
}

.pricing-table {
    isolation: isolate;
}

/* Plan Card Layout */
.pricing-intro {
    color: #555;
    font-size: 1.5rem;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 0;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.plan-card {
    background: white;
    border: 1px solid #cfe3f5;
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.plan-card.featured {
    border: 3px solid #28a745;
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.plan-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.plan-badge.discount {
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.plan-name {
    color: #007ACC;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.plan-target {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 8px;
}

.plan-users {
    color: #444;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 20px;
}

.plan-price-box {
    margin-bottom: 24px;
}

.plan-price-box .plan-price {
    font-size: 2.6rem;
    font-weight: 700;
    color: #007ACC;
}

.plan-price-box .plan-period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.plan-card .pricing-btn {
    width: 100%;
    max-width: 220px;
    margin-top: auto;
}

/* All Features Section */
.all-features-section {
    margin-top: 56px;
}

.all-features-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
}

.all-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 24px;
    background: #fff;
}

.feature-item {
    background: #e8f4fd;
    border: 2px solid #7fb8e6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    color: #1a5276;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-check {
    width: 22px;
    height: 22px;
    background: #1a5276;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .plan-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-card.featured {
        transform: none;
        order: -1;
    }

    .plan-card.featured:hover {
        transform: translateY(-6px);
    }

    .all-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .plan-price-box .plan-price {
        font-size: 2.2rem;
    }

    .all-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Download Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10500;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.download-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #333;
    background: #f0f0f0;
}

.modal-content h2 {
    color: #007ACC;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.modal-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.modal-info p {
    margin: 12px 0;
    font-size: 1.05rem;
    color: #333;
}

.modal-guide {
    background: #e3f2fd;
    border-left: 4px solid #007ACC;
    padding: 15px 20px;
    border-radius: 8px;
}

.modal-guide p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.modal-guide a {
    color: #007ACC;
    text-decoration: none;
    font-weight: 600;
}

.modal-guide a:hover {
    text-decoration: underline;
}

/* Mobil uyumluluk */
@media (max-width: 480px) {
    .download-modal {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
	
}
	
/* Social Media Links - MAIN STYLES */
.footer .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.footer .social-links a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    color: white !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0 !important;
    font-size: 0 !important;
}

.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.footer .social-links svg {
    width: 16px;
    height: 16px;
    fill: white !important;
    color: white !important;
}

/* Mobile adjustments for social links */
@media (max-width: 480px) {
    .footer .social-links {
        gap: 20px;
        margin: 20px 0;
    }
    
    .footer .social-links a {
        width: 48px;
        height: 48px;
    }
    
    .footer .social-links svg {
        width: 24px;
        height: 24px;
    }
}

        /* FAQ Specific Styles */
        .faq-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .faq-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #333;
        }

        .faq-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .faq-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .category-btn {
            padding: 12px 24px;
            background: white;
            border: 2px solid #007ACC;
            color: #007ACC;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .category-btn:hover, .category-btn.active {
            background: #007ACC;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 122, 204, 0.3);
        }

        .faq-section {
            margin-bottom: 3rem;
        }

        .faq-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #007ACC;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #007ACC;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(0, 122, 204, 0.15);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            padding-right: 1rem;
            line-height: 1.5;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #007ACC 0%, #0056b3 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.7;
            margin: 0 0 1rem 0;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .faq-answer li {
            color: #666;
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }

        .faq-answer a {
            color: #007ACC;
            text-decoration: none;
            font-weight: 500;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        .highlight-box {
            background: #f0f8ff;
            border-left: 4px solid #007ACC;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }

        .highlight-box p {
            margin: 0;
            color: #0056b3;
        }

        .contact-cta {
            background: linear-gradient(135deg, #007ACC 0%, #0056b3 100%);
            color: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .contact-cta h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .contact-cta p {
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: #007ACC;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .faq-content {
                padding: 40px 15px;
            }

            .faq-title {
                font-size: 2rem;
            }

            .faq-subtitle {
                font-size: 1rem;
            }

            .faq-section-title {
                font-size: 1.5rem;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-question {
                padding: 1.2rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1.2rem 1.2rem 1.2rem;
            }

            .category-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .contact-cta {
                padding: 1.5rem;
            }

            .contact-cta h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 1.8rem;
            }

            .faq-categories {
                gap: 10px;
            }

            .category-btn {
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            .faq-icon {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }
        }

/* Contact Modal Styles */
.contact-modal {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.contact-modal .modal-content h2 {
    color: #007ACC;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.contact-modal .modal-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
}

.form-group-modal {
    margin-bottom: 1.2rem;
}

.form-group-modal label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group-modal label .required {
    color: #dc3545;
    margin-left: 3px;
}

.form-group-modal input,
.form-group-modal select,
.form-group-modal textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', Arial, sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group-modal input:focus,
.form-group-modal select:focus,
.form-group-modal textarea:focus {
    outline: none;
    border-color: #007ACC;
    box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}

.form-group-modal textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-btn-modal {
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    margin-top: 10px;
}

.submit-btn-modal:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.submit-btn-modal:disabled {
    background: linear-gradient(45deg, #6c757d, #5a6268);
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

/* Mobile responsive for contact modal */
@media (max-width: 768px) {
    .contact-modal {
        padding: 25px 20px;
        max-height: 85vh;
    }

    .form-row-modal {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-modal .modal-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-modal {
        padding: 20px 15px;
        width: 95%;
    }

    .form-group-modal {
        margin-bottom: 1rem;
    }
}

@media (max-width: 1024px) {
    .pricing-table {
        display: block;
        margin-top: 20px;
    }
    
    .pricing-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 10px;
        background: transparent;
        border: none;
        padding: 0 0 15px 0;
        align-items: end;
    }
    
    /* Önce Deneyin kısmı */
    .pricing-feature-column {
        text-align: center !important;
        padding: 15px !important;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-feature-column .pricing-tagline {
        color: #666;
        font-size: 0.85rem;  /* Plaka Bazlı Araç Takibi ile aynı */
        line-height: 1.4;
    }
    
    /* Plan başlıkları */
    .pricing-plan-column {
        background: white;
        border-radius: 12px;
        padding: 15px 10px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-bottom: none;
        text-align: center;
    }
    
    .pricing-header h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .plan-subtitle {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Tüm rozetleri aynı boyutta yap */
    .popular-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
        display: inline-block;
    }
    
    .popular-badge.discount {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    /* Tablo satırları */
    .pricing-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 10px;
        padding: 0;
        margin-bottom: 8px;
        border: none;
        background: transparent;
    }
    
    .pricing-row:first-of-type {
        margin-top: 15px;
    }
    
    .pricing-feature {
        padding: 12px 15px;
        background: white;
        border-radius: 8px;
        font-size: 0.85rem;  /* Bu boyutla aynı */
        text-align: left;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .pricing-value {
        padding: 12px 5px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .pricing-value.highlighted {
        background: rgba(0, 122, 204, 0.08);
    }
    
    .check {
        font-size: 1.2rem;
    }
    
    /* Footer */
    .pricing-footer {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        background: transparent;
        padding: 15px 0 0 0;
    }
    
    .pricing-footer .pricing-feature-column {
        display: none;
    }
    
    .pricing-footer .pricing-plan-column {
        padding: 20px 10px !important;
        text-align: center;
    }
    
    .price {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .pricing-btn {
        max-width: 100%;
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 40px 0;
    }
    
    .pricing-table {
        margin-top: 15px;
    }
    
    .pricing-header {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 8px;
    }
    
    .pricing-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 8px;
    }
    
    .pricing-footer {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    
    .pricing-footer .pricing-feature-column {
        display: none;
    }
    
    .pricing-feature-column .pricing-tagline {
        font-size: 0.8rem;  /* 768px altında biraz daha küçült */
    }
    
    .pricing-feature {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .pricing-header h3 {
        font-size: 1rem;
    }
    
    .plan-subtitle {
        font-size: 0.7rem;
    }
    
    .popular-badge,
    .popular-badge.discount {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .check {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
}

/* Ana sayfadaki menüde yer alan ancak mobilde gösterilmeyen linkler için */
@media (max-width: 768px) {
	.menu-link[href="/seffaffiyatlandirma"] {
    display: block; /* Mobilde de görünür yapıldı */
    }
}

/* Statistics Page Styles */
.stats-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
}

.stats-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

.stats-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 35px rgba(0, 122, 204, 0.1);
}

.stats-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #007ACC;
    margin-bottom: 2rem;
    text-align: center;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #007ACC;
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 122, 204, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007ACC;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stats-list-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.stats-list-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.stats-list-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007ACC;
    margin-bottom: 0.3rem;
}

.stats-list-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: scale(1.02);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tech-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #007ACC;
    min-width: 0;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 122, 204, 0.12);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tech-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #007ACC;
    margin-bottom: 0.25rem;
}

.tech-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Achievements */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 122, 204, 0.1);
}

.achievement-badge {
    font-size: 3rem;
    flex-shrink: 0;
}

.achievement-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007ACC;
    margin-bottom: 0.3rem;
}

.achievement-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Special Sections */
.highlight-section {
    background: linear-gradient(135deg, #007ACC 0%, #0056b3 100%);
    color: white;
}

.highlight-section .stats-section-title {
    color: white;
}

.highlight-section .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-top-color: white;
}

.highlight-section .stat-number {
    color: white;
}

.highlight-section .stat-label {
    color: rgba(255, 255, 255, 0.95);
}

.highlight-section .stat-description {
    color: rgba(255, 255, 255, 0.85);
}

.feature-section {
    background: #f8f9fa;
}

.achievement-section {
    border: 3px solid #007ACC;
}

.stats-summary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    margin-top: 3rem;
}

.stats-summary h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-summary p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-content {
        padding: 40px 15px;
    }

    .stats-title {
        font-size: 2rem;
    }

    .stats-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stats-section-title {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-list-item {
        flex-direction: column;
        text-align: center;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-card {
        padding: 1rem;
    }

    .tech-card h3 {
        font-size: 1rem;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
    }

    .stats-summary {
        padding: 1.5rem;
    }

    .stats-summary h3 {
        font-size: 1.4rem;
    }

    .stats-summary p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-content {
        padding: 30px 10px;
    }

    .stats-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .stats-intro {
        font-size: 1rem;
    }

    .stats-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .stats-section-title {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .tech-card {
        padding: 0.8rem;
    }

    .tech-card h3 {
        font-size: 0.9rem;
    }

    .stats-summary {
        padding: 1rem;
    }

    .stats-summary h3 {
        font-size: 1.2rem;
    }

    .stats-summary p {
        font-size: 0.9rem;
    }
}

/* Social Media Icons in Mobile Menu */
.social-links-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    margin-top: auto; /* İkonları menünün en altına iter */
}

.social-links-mobile a {
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links-mobile a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.social-links-mobile svg {
    width: 24px;
    height: 24px;
}
