/* ========== FREE ANALYSIS SAYFASI - ÖZEL STILLER ========== */
/* Header, footer ve genel stiller style.css'den gelir */

/* HERO BANNER - DÖNÜŞÜM ODAKLI */
.analysis-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 50%, #0a0a2a 100%);
}

.analysis-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.15), rgba(16,185,129,0.05));
    pointer-events: none;
}

.analysis-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.analysis-hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(59,130,246,0.5);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

.analysis-hero-particles .particle:nth-child(1) { top: 15%; left: 10%; animation-duration: 7s; }
.analysis-hero-particles .particle:nth-child(2) { top: 45%; left: 85%; animation-duration: 11s; }
.analysis-hero-particles .particle:nth-child(3) { top: 65%; left: 20%; animation-duration: 9s; }
.analysis-hero-particles .particle:nth-child(4) { top: 25%; left: 70%; animation-duration: 13s; }
.analysis-hero-particles .particle:nth-child(5) { top: 80%; left: 50%; animation-duration: 8s; }

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.analysis-hero-content {
    position: relative;
    max-width: 800px;
    padding: 80px 24px;
    z-index: 10;
}

.analysis-badge {
    display: inline-block;
    background: rgba(16,185,129,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #34d399;
    margin-bottom: 24px;
    border: 1px solid rgba(16,185,129,0.3);
    animation: fadeInDown 0.6s ease;
}

.analysis-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.analysis-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.analysis-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.analysis-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.analysis-hero-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

.analysis-hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59,130,246,0.5);
}

.analysis-hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.analysis-hero-buttons .btn-outline:hover {
    background: white;
    color: #1e3a8a;
    border-color: white;
}

.analysis-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.analysis-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.analysis-hero-wave svg path {
    fill: #ffffff;
}

body.dark-mode .analysis-hero-wave svg path {
    fill: #0a0f2a;
}

/* ANİMASYONLAR */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ANALİZ KAPSAMI BÖLÜMÜ */
.analysis-scope {
    padding: 70px 0;
    background: #ffffff;
}

body.dark-mode .analysis-scope {
    background: #0a0f2a;
}

.analysis-scope h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1e3a8a;
    margin-bottom: 16px;
}

body.dark-mode .analysis-scope h2 {
    color: #60a5fa;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
}

body.dark-mode .section-subtitle {
    color: #cbd5e1;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.scope-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

body.dark-mode .scope-card {
    background: #11173b;
    border-color: #1e2a5e;
}

.scope-card:hover {
    transform: translateY(-5px);
}

.scope-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.scope-card h3 {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

body.dark-mode .scope-card h3 {
    color: #60a5fa;
}

.scope-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

body.dark-mode .scope-card p {
    color: #cbd5e1;
}

/* FORM BÖLÜMÜ */
.analysis-form-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

body.dark-mode .analysis-form-section {
    background: linear-gradient(135deg, #0f142e, #11173b);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

body.dark-mode .form-wrapper {
    background: #11173b;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 12px;
}

body.dark-mode .form-header h2 {
    color: #60a5fa;
}

.form-header p {
    color: #64748b;
}

.analysis-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: #0a0f2a;
    border-color: #1e2a5e;
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: #64748b;
}

.form-checkbox a {
    color: #1e3a8a;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}

.form-note {
    font-size: 0.7rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 10px;
}

/* GÜVEN VE GARANTİ */
.analysis-trust {
    padding: 60px 0;
    background: #ffffff;
}

body.dark-mode .analysis-trust {
    background: #0a0f2a;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 20px;
    transition: transform 0.3s;
}

body.dark-mode .trust-card {
    background: #11173b;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

body.dark-mode .trust-card h3 {
    color: #60a5fa;
}

.trust-card p {
    font-size: 0.85rem;
    color: #64748b;
}

body.dark-mode .trust-card p {
    color: #cbd5e1;
}

/* NASIL ÇALIŞIR */
.analysis-how {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    text-align: center;
}

body.dark-mode .analysis-how {
    background: linear-gradient(135deg, #0f142e, #11173b);
}

.analysis-how h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 50px;
}

body.dark-mode .analysis-how h2 {
    color: #60a5fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

body.dark-mode .step-item h3 {
    color: #60a5fa;
}

.step-item p {
    color: #64748b;
    font-size: 0.85rem;
}

body.dark-mode .step-item p {
    color: #cbd5e1;
}

/* SSS */
.analysis-faq {
    padding: 70px 0;
    background: #ffffff;
}

body.dark-mode .analysis-faq {
    background: #0a0f2a;
}

.analysis-faq h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 50px;
}

body.dark-mode .analysis-faq h2 {
    color: #60a5fa;
}

.faq-analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-analysis-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

body.dark-mode .faq-analysis-item {
    background: #11173b;
    border-color: #1e2a5e;
}

.faq-analysis-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question span {
    font-size: 1.3rem;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
}

body.dark-mode .faq-question h4 {
    color: #60a5fa;
}

.faq-answer {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    padding-left: 38px;
}

body.dark-mode .faq-answer {
    color: #cbd5e1;
}

/* CTA BÖLÜMÜ */
.analysis-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    text-align: center;
    color: white;
}

.analysis-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.analysis-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.85);
}

.analysis-cta .btn-primary {
    background: white;
    color: #1e3a8a;
    padding: 14px 36px;
}

.analysis-cta .btn-primary:hover {
    background: #e0e7ff;
}

/* MOBİL UYUM */
@media (max-width: 968px) {
    .analysis-hero-title {
        font-size: 2.2rem;
    }
    
    .analysis-hero-stats {
        gap: 25px;
    }
    
    .form-wrapper {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .scope-grid {
        gap: 20px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .analysis-hero {
        min-height: 500px;
    }
    
    .analysis-hero-title {
        font-size: 1.8rem;
    }
    
    .analysis-hero-subtitle {
        font-size: 1rem;
    }
    
    .analysis-hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .analysis-hero-buttons {
        gap: 12px;
    }
    
    .analysis-hero-buttons .btn-primary,
    .analysis-hero-buttons .btn-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .analysis-scope h2 {
        font-size: 1.8rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-cta h2 {
        font-size: 1.6rem;
    }
    
    .analysis-hero-wave svg {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .analysis-hero-title {
        font-size: 1.5rem;
    }
    
    .analysis-badge {
        font-size: 0.7rem;
    }
    
    .scope-card {
        padding: 20px;
    }
    
    .trust-card {
        padding: 20px;
    }
}
