@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #030712;
    --card: #111827;
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --text: #f3f4f6;
    --text-dim: #9ca3af;
    --border: rgba(255, 255, 255, 0.08);
    --success: #10b981;
    --section-spacing: 100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, #1e3a8a 0%, transparent 50%);
    z-index: -1;
}

.container { 
    max-width: 1140px; 
    margin: 10px auto; 
    padding: 0 24px; 
    width: 100%;
}

header { 
    padding: 20px 0; 
    border-bottom: 1px solid var(--border); 
    background: rgba(3, 7, 18, 0.75); 
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

main { flex: 1; padding: 60px 0; }

/* Hero Section */
.hero { 
    text-align: center; 
    margin-bottom: 60px; 
    width: 100%;
}
.hero h1 { 
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800; 
    margin-bottom: 24px; 
    line-height: 1.1; 
    letter-spacing: -0.04em; 
}
.hero h1 span { color: var(--primary); }
.hero p { 
    color: var(--text-dim); 
    font-size: 1.2rem; 
    max-width: 720px; 
    margin: 0 auto; 
    line-height: 1.5;
}

/* Upload Area */
#uploadForm { width: 100%; max-width: 800px; margin: 0 auto; }

.upload-area {
    background: var(--card);
    border: 2px dashed var(--border);
    border-radius: 24px;
    padding: 70px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.02);
    box-shadow: 0 0 40px var(--primary-glow);
    transform: translateY(-4px);
}

.upload-btn {
    background: var(--primary);
    color: white;
    padding: 16px 42px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer !important;
    pointer-events: auto !important;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.upload-btn:hover {
    background: #2563eb;
    transform: scale(1.02);
}

/* Info Notice - Simetrik Düzeltme */
.info-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 650px;
    margin: 0 auto 80px;
    padding: 14px 20px;
    background: rgba(56, 189, 248, 0.03);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 100px; /* Capsule shape */
}
.info-notice img { width: 18px; height: 18px; opacity: 0.8; }
.info-notice p { font-size: 0.88rem; color: var(--text-dim); text-align: center; margin: 0; }
.info-notice strong { color: var(--primary); font-weight: 600; }

/* Section Titles */
.section-title {
    margin-top: var(--section-spacing);
    margin-bottom: 48px;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Feature Cards & Process Steps Simetrisi */
.features, .process-steps { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 24px; 
    width: 100%;
}

.feature-card, .step {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover, .step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-card h3, .step h3 { font-size: 1.25rem; margin-bottom: 16px; font-weight: 700; color: #fff; }
.feature-card p, .step p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; }

/* Step Specifics */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    opacity: 0.35;
    filter: grayscale(1);
    transition: 0.3s;
}
.trust-bar:hover { opacity: 0.7; filter: grayscale(0.5); }
.trust-bar img { height: 22px; }

/* Footer & Legal */
footer { padding: 80px 0 40px; border-top: 1px solid var(--border); margin-top: 120px; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 40px; }
.footer-links a { color: var(--text-dim); font-size: 0.9rem; text-decoration: none; transition: 0.2s; }
.footer-links a:hover { color: var(--primary); }
.copyright { text-align: center; color: var(--text-dim); font-size: 0.8rem; opacity: 0.6; padding-top: 40px; border-top: 1px solid var(--border); }

/* Responsive Fixes */
@media (max-width: 768px) {
    main { padding: 40px 0; }
    .hero h1 { font-size: 2.2rem; }
    .features, .process-steps { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; align-items: center; gap: 16px; }
    .legal-content-box { padding: 32px 24px; }
    .legal-header h1 { font-size: 2rem; }
}

/* --- Clean & Professional Legal Layout --- */

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 100px;
}

.legal-header {
    text-align: center;
    margin-bottom: 64px;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #fff;
}

.legal-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.legal-content-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-list {
    list-style: none;
    padding: 0;
}

.legal-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
