/* ========== CSS DEĞİŞKENLERİ ========== */
:root {
    --primary: #1a2e59;
    --primary-dark: #0a56cc;
    --primary-light: #eef4ff;
    --gray-bg: #f8f9fc;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --border-light: #e2e8f0;
}

/* ========== RESET & GENEL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafcff;
    color: #1a2c3e;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVBAR & HEADER ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.logo span {
    color: var(--primary);
}

/* Hamburger Menu (Mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.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(7px, -7px);
}

/* Navigasyon Linkleri */
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-outline {
    border: 1.5px solid var(--primary);
    background: transparent;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* ========== HERO BÖLÜMÜ ========== */
.hero {
    padding: 60px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-badge {
    background: var(--primary-light);
    color: var(--primary);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-image {
    flex: 1;
    background: linear-gradient(135deg, #eef2ff, #ffffff);
    border-radius: 40px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}

.dashboard-mock {
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.mock-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #edf2f7;
}

.mock-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* ========== BÖLÜMLER ========== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-sub {
    text-align: center;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto 48px auto;
    font-size: 1.1rem;
}

/* ========== ÖZELLİK KARTLARI ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    border: 1px solid var(--border-light);
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 30px -15px rgba(21,109,255,0.15);
}

.feature-icon {
    background: var(--primary-light);
    width: 56px;
    height: 56px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
}

.platform-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.platform-badge span {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== CRM VE ÖDEME ========== */
.row-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.split-col {
    flex: 1;
}

.crm-list {
    list-style: none;
    margin-top: 24px;
}

.crm-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.crm-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ========== FİYATLANDIRMA ========== */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
}

.pricing-card {
    background: white;
    border-radius: 32px;
    border: 1px solid var(--border-light);
    padding: 32px;
    width: 300px;
    text-align: center;
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 10px 25px -8px rgba(21,109,255,0.2);
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.price small {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
}

.pricing-features li {
    margin: 12px 0;
}

/* ========== CTA ========== */
.cta {
    background: var(--primary-light);
    border-radius: 48px;
    text-align: center;
    padding: 64px 32px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

/* ========== FOOTER ========== */
footer {
    border-top: 1px solid var(--border-light);
    padding: 40px 0;
    text-align: center;
    color: var(--text-gray);
}

/* ========== RESPONSIVE TASARIM ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero {
        flex-direction: column;
        padding: 30px 0 20px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
    }
    
    .hero-stats {
        justify-content: space-around;
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 1.4rem;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 320px;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta {
        padding: 40px 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .row-split {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
}

/* ========== MEVCUT CSS'İN SONUNA EKLENECEK KISIMLAR ========== */

/* ========== AUTH SAYFALARI (LOGIN & REGISTER) ========== */
.auth-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    min-height: 600px;
}

.auth-card {
    flex: 1;
    padding: 48px 40px;
    background: white;
}

.auth-info {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.info-content {
    text-align: center;
}

.info-content i {
    font-size: 4rem;
    margin-bottom: 24px;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.info-content p {
    font-size: 1rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-top: 32px;
}

.info-features span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.info-features i {
    font-size: 1.2rem;
    margin: 0;
}

.auth-logo {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 32px;
}

.auth-logo span {
    color: var(--primary);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-gray);
}

/* Form Stilleri */
.auth-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon i:first-child {
    position: absolute;
    left: 16px;
    color: var(--text-gray);
}

.input-icon input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.input-icon input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.toggle-password {
    position: absolute;
    right: 16px;
    cursor: pointer;
    color: var(--text-gray);
    z-index: 1;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.forgot-link, .terms-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover, .terms-link:hover {
    text-decoration: underline;
}

/* Auth Butonu */
.auth-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 24px;
    padding: 14px;
}

/* Divider */
.auth-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-light);
}

.auth-divider span {
    background: white;
    padding: 0 16px;
    position: relative;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    background: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn:hover {
    background: var(--gray-bg);
    transform: translateY(-2px);
}

.google-btn {
    color: #ea4335;
}

.github-btn {
    color: #333;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
    font-size: 0.8rem;
}

.password-strength.weak {
    color: #ff4757;
}

.password-strength.medium {
    color: #ffa502;
}

.password-strength.strong {
    color: #2ed573;
}

/* Responsive Auth */
@media (max-width: 968px) {
    .auth-info {
        display: none;
    }
    
    .auth-card {
        flex: 1;
        padding: 40px 24px;
    }
    
    .auth-container {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-card {
        padding: 32px 20px;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
}

/* ========== FEATURES PAGE STYLES ========== */
.features-page {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Features Hero */
.features-hero {
    padding: 80px 0 40px 0;
    text-align: center;
}

.features-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 24px 0;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Features Grid */
.features-main {
    padding: 60px 0;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-card-modern {
    background: white;
    border-radius: 28px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(21, 109, 255, 0.15);
    border-color: transparent;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    margin-bottom: 24px;
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e8eeff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-circle {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    color: white;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card-modern p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.feature-stats span {
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Detailed Features Section */
.features-detailed {
    padding: 60px 0;
    background: var(--gray-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
}

.detailed-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.detailed-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.detailed-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e8eeff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.detailed-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.detailed-content p {
    color: var(--text-gray);
    line-height: 1.5;
}

/* Integrations Section */
.integrations {
    padding: 60px 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.integration-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.integration-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(21, 109, 255, 0.1);
}

.integration-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.integration-item span {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.integration-status {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Modern CTA */
.cta-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 32px;
    padding: 64px;
    text-align: center;
    margin: 40px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-modern h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
}

.cta-modern p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-modern .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-modern .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 968px) {
    .features-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-item {
        padding: 20px;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 16px;
    }
    
    .cta-modern {
        padding: 40px 24px;
    }
    
    .cta-modern h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .feature-card-modern {
        padding: 24px;
    }
    
    .feature-card-modern h3 {
        font-size: 1.3rem;
    }
    
    .detailed-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detailed-icon {
        margin: 0 auto;
    }
    
    .integration-item {
        padding: 16px;
    }
    
    .integration-item i {
        font-size: 2rem;
    }
}

.integration-group {
    margin-bottom: 60px;
}

.integration-group:last-child {
    margin-bottom: 0;
}

.integration-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.integration-group-title i {
    font-size: 1.8rem;
    color: var(--primary);
    background: var(--primary-light);
    padding: 10px;
    border-radius: 16px;
}

.integration-group-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Entegrasyon Grid Düzeni */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.integration-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.integration-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(21, 109, 255, 0.1);
}

.integration-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.integration-item span {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.integration-status {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 20px;
    display: inline-block;
}

.integration-status:contains("✅ Entegre") {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Responsive */
@media (max-width: 768px) {
    .integration-group-title {
        margin-bottom: 20px;
    }
    
    .integration-group-title i {
        font-size: 1.4rem;
        padding: 8px;
    }
    
    .integration-group-title h3 {
        font-size: 1.2rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
    }
    
    .integration-item {
        padding: 16px;
    }
    
    .integration-item i {
        font-size: 2rem;
    }
    
    .integration-item span {
        font-size: 0.85rem;
    }
}

/* ========== PRICING PAGE STYLES ========== */

.pricing-page {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

/* Pricing Hero */
.pricing-hero {
    padding: 60px 0 40px 0;
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 24px 0;
}

.pricing-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Fiyat Toggle (Aylık/Yıllık) */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-label.active {
    color: var(--primary);
}

.save-badge {
    background: linear-gradient(135deg, #2ed573, #00b894);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background: var(--border-light);
    border-radius: 32px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-slider {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(28px);
}

/* Modern Fiyat Kartları */
.pricing-cards {
    padding: 60px 0;
}

.pricing-grid-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
}

.pricing-card-modern {
    background: white;
    border-radius: 32px;
    padding: 40px 32px;
    width: 350px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card-modern.popular-plan {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(21, 109, 255, 0.15);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.popular-tag i {
    margin-right: 6px;
}

.plan-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), #e8eeff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.plan-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.plan-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.plan-description {
    color: var(--text-gray);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.plan-btn {
    width: 100%;
    margin-bottom: 24px;
    justify-content: center;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.plan-features i {
    width: 20px;
}

.plan-features .fa-check-circle {
    color: #2ed573;
}

.plan-features .fa-times-circle {
    color: #ff4757;
}

/* Karşılaştırma Tablosu */
.comparison-table {
    padding: 60px 0;
    background: var(--gray-bg);
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-grid {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.comparison-grid th,
.comparison-grid td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-grid th {
    background: var(--primary-light);
    font-weight: 600;
    color: var(--primary);
}

.comparison-grid th:first-child {
    background: white;
    color: var(--text-dark);
}

.comparison-grid td:first-child {
    font-weight: 600;
    background: #fafcff;
}

.comparison-grid .fa-check {
    color: #2ed573;
    font-size: 1.2rem;
}

.comparison-grid .fa-times {
    color: #ff4757;
    font-size: 1.2rem;
}

/* SSS Bölümü */
.faq-section {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 16px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-hero-content h1 {
        font-size: 2rem;
    }
    
    .pricing-grid-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card-modern {
        width: 100%;
        max-width: 400px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid th,
    .comparison-grid td {
        padding: 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pricing-toggle {
        gap: 12px;
    }
    
    .save-badge {
        display: none;
    }
    
    .plan-price .price {
        font-size: 2.2rem;
    }
    
    .pricing-card-modern {
        padding: 32px 24px;
    }
}

/* ========== CONTACT PAGE STYLES ========== */

.contact-page {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

/* Contact Hero */
.contact-hero {
    padding: 60px 0 40px 0;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 24px 0;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* İletişim Kartları */
.contact-cards {
    padding: 40px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(21, 109, 255, 0.15);
    border-color: var(--primary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e8eeff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.contact-link:hover {
    gap: 12px;
}

.working-badge {
    background: #2ed57320;
    color: #2ed573;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
}

/* İletişim Formu ve Harita */
.contact-form-section {
    padding: 60px 0;
    background: var(--gray-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-container {
    padding: 48px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-gray);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: #ff4757;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
}

/* Harita Kısmı */
.contact-map-container {
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    flex: 1;
    min-height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.map-info {
    padding: 24px;
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
}

.map-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.map-info-item:last-child {
    margin-bottom: 0;
}

.map-info-item i {
    width: 24px;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.map-info-item strong {
    display: block;
    font-size: 0.9rem;
}

.map-info-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Sosyal Medya */
.social-media-section {
    padding: 60px 0;
}

.social-header {
    text-align: center;
    margin-bottom: 48px;
}

.social-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.social-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.social-card span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.social-followers {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Sosyal Medya Renkleri */
.social-card.linkedin i { color: #0077b5; }
.social-card.twitter i { color: #1da1f2; }
.social-card.instagram i { color: #e4405f; }
.social-card.facebook i { color: #1877f2; }
.social-card.youtube i { color: #ff0000; }
.social-card.github i { color: #333; }

.social-card.linkedin:hover { border-color: #0077b5; }
.social-card.twitter:hover { border-color: #1da1f2; }
.social-card.instagram:hover { border-color: #e4405f; }
.social-card.facebook:hover { border-color: #1877f2; }
.social-card.youtube:hover { border-color: #ff0000; }
.social-card.github:hover { border-color: #333; }

/* FAQ Preview */
.faq-preview {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e8eeff 100%);
}

.faq-preview-content {
    text-align: center;
}

.faq-preview-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.faq-preview-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 32px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-info-grid {
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 24px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .social-card {
        padding: 24px 16px;
    }
    
    .social-card i {
        font-size: 2rem;
    }
    
    .faq-preview-content h3 {
        font-size: 1.3rem;
    }
}

/* ========== FAQ PAGE STYLES ========== */

.faq-page {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

/* FAQ Hero */
.faq-hero {
    padding: 60px 0 40px 0;
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 24px 0;
}

.faq-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Arama Kutusu */
.faq-search {
    max-width: 600px;
    margin: 40px auto 0;
}

.search-wrapper {
    position: relative;
}

.search-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.search-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 45px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.clear-search {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    display: none;
}

.clear-search.visible {
    display: block;
}

/* Kategori Filtreleri */
.faq-categories {
    padding: 20px 0 40px;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.category-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--border-light);
    background: white;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* SSS İçeriği */
.faq-content {
    padding: 40px 0;
}

.faq-grid-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 48px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.category-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.category-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.faq-item-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
}

.faq-item-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.faq-item-card.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-item-card.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Sonuç Bulunamadı */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* Hala Yardım Bölümü */
.still-need-help {
    padding: 60px 0;
}

.help-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, #e8eeff 100%);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
}

.help-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.help-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.help-box h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.help-box p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.help-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero-content h1 {
        font-size: 2rem;
    }
    
    .category-filters {
        gap: 8px;
    }
    
    .category-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .help-box {
        padding: 32px 24px;
    }
    
    .help-box h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .faq-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .category-filters {
        gap: 8px;
    }
    
    .category-btn {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .help-buttons button {
        width: 100%;
        justify-content: center;
    }
}


/* ========== ANA SAYFA EKLENTİLERİ ========== */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mock Row Time */
.mock-time {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-gray);
}

/* İstatistik Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    padding: 60px 0;
}

.stat-showcase-item {
    color: white;
}

.stat-showcase-item i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.stat-showcase-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-showcase-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(21, 109, 255, 0.15);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-stars i {
    margin-right: 4px;
}

.testimonial-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: var(--primary);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Counter Animasyonu */
.stat-number {
    transition: all 0.3s ease;
}

/* Hero Badge Animation */
.hero-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Feature Card Hover Animation */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Pricing Card Hover */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* CTA Hover */
.cta {
    transition: all 0.3s ease;
}

.cta:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(21, 109, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 0;
    }
    
    .stat-showcase-item h3 {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-showcase-item i {
        font-size: 2rem;
    }
    
    .stat-showcase-item h3 {
        font-size: 1.5rem;
    }
}

/* ========== MODERN FOOTER STYLES ========== */

.modern-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    padding: 60px 0 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Dekoratif Arka Plan */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #764ba2, var(--primary));
}

.modern-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(21,109,255,0.1) 0%, rgba(21,109,255,0) 70%);
    pointer-events: none;
}

/* Ana Footer Grid */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Marka Bölümü */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, white, var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--primary), #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #94a3b8;
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Link Bölümleri */
.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}

/* Bülten Aboneliği */
.footer-newsletter h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: #94a3b8;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}

.newsletter-input-group input::placeholder {
    color: #64748b;
}

.newsletter-input-group button {
    padding: 0 20px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-input-group button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Rozetler */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.footer-badges span {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-badges span i {
    font-size: 0.7rem;
}

/* Alt Footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--primary);
}

.language-select {
    padding: 8px 32px 8px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.language-select:hover {
    border-color: var(--primary);
}

.language-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group button {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 40px 0 0;
    }
    
    .footer-legal {
        gap: 16px;
    }
    
    .footer-legal a {
        font-size: 0.75rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
}