/* ═══════════════════════════════════════════════════════════════
   PUBLIC SHARED CSS - Ortak stiller (8+ sayfa tarafindan kullanilir)
   Tum public/landing sayfalari icin canonical stil tanimlari.
   ═══════════════════════════════════════════════════════════════ */

/* === Layout === */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Section Header === */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-primary);
    background: var(--theme-badge-bg);
    border: 1px solid var(--theme-badge-border);
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.section-badge.light {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.2);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.section-title.white {
    color: var(--theme-text-primary);
}

.section-desc {
    font-size: 0.9375rem;
    color: var(--theme-text-secondary);
    line-height: 1.6;
}

/* === Gradient Text === */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === Hero Common === */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-primary);
    background: var(--theme-badge-bg);
    border: 1px solid var(--theme-badge-border);
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-desc {
    font-size: 0.9375rem;
    color: var(--theme-text-secondary);
    line-height: 1.6;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: var(--accent-gradient);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-glow:hover {
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--theme-text-secondary);
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--theme-card-border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--theme-text-primary);
    border-color: var(--theme-card-border-hover);
    background: var(--theme-bg-tertiary);
}

/* === CTA Section === */
.cta-section {
    padding: 3rem 0;
    background: var(--theme-bg-primary);
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--theme-cta-bg);
    border: 1px solid var(--theme-cta-border);
    border-radius: 1rem;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cta-desc {
    font-size: 0.9375rem;
    color: var(--theme-text-secondary);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-btn.glow {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}

.cta-btn.glow:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.cta-btn.ghost {
    background: transparent;
    color: var(--theme-text-secondary);
    border: 1px solid var(--theme-card-border-hover);
}

.cta-btn.ghost:hover {
    background: var(--theme-card-bg-hover);
    color: var(--theme-text-primary);
}

.cta-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--theme-text-secondary);
}

.cta-feature i {
    color: #10b981;
    font-size: 0.625rem;
}

/* === Feature Icon Colors === */
.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.feature-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.feature-icon.yellow { background: rgba(234, 179, 8, 0.1); color: #eab308; }
.feature-icon.green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.feature-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.feature-icon.cyan { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.feature-icon.pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.feature-icon.indigo { background: rgba(99, 102, 241, 0.1); color: #6366f1; }

/* === Animations === */
.animate-fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.delay-100 { animation-delay: 100ms; }
.delay-150 { animation-delay: 150ms; }
.delay-200 { animation-delay: 200ms; }
.delay-250 { animation-delay: 250ms; }
.delay-300 { animation-delay: 300ms; }
.delay-350 { animation-delay: 350ms; }

/* === Sector Landing Common === */
.sector-hero {
    padding: 4rem 0 3rem;
    background: var(--theme-bg-primary);
    text-align: center;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    padding: 1rem;
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-card-border);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--theme-cta-border);
    transform: translateY(-2px);
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.6875rem;
    color: var(--theme-text-muted);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    background: var(--theme-bg-page);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-card-border);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--theme-card-bg-hover);
    border-color: var(--theme-cta-border);
}

.feature-content h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.8125rem;
    color: var(--theme-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Highlight Section */
.highlight-section {
    padding: 3rem 0;
    background: var(--theme-bg-primary);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-content {
    max-width: 480px;
}

.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--theme-text-primary);
}

.highlight-item i {
    color: #22c55e;
    font-size: 0.75rem;
}

.highlight-visual {
    display: flex;
    justify-content: center;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 0;
    background: var(--theme-bg-page);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    padding: 1.25rem;
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-card-border);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--theme-card-bg-hover);
    border-color: var(--theme-cta-border);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1rem;
    color: white;
}

.benefit-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin-bottom: 0.375rem;
}

.benefit-card p {
    font-size: 0.8125rem;
    color: var(--theme-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Mockup Card */
.mockup-card {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 1rem;
    padding: 1rem;
    width: 280px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--theme-divider);
    margin-bottom: 0.75rem;
}

.mockup-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--theme-text-primary);
}

.mockup-dots {
    display: flex;
    gap: 0.25rem;
}

.mockup-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-text-muted);
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* === Responsive Shared === */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-content {
        max-width: 100%;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sector-hero,
    .features-section,
    .highlight-section,
    .benefits-section,
    .cta-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-glow, .btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}
