        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            background: #f5f7fa;
            color: #1e293b;
            line-height: 1.5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        
        .btn-primary {
            background-color: #f37021;
            border: none;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 16px 24px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-block;
            text-decoration: none;
            width: 100%;
            border: 2px solid transparent;
            letter-spacing: 0.3px;
        }
        
        .btn-primary:hover {
            background-color: #e05e10;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(243,112,33,0.2);
        }
        
        /* TİPOGRAFİ */
        h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }
        
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 24px;
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.6rem; }
        }
        
        .header {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e293b;
            text-decoration: none;
        }
        
        .logo span {
            color: #f37021;
        }
        
        .login-link {
            color: #475569;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            background: #f1f5f9;
            transition: background 0.2s;
        }
        
        .login-link:hover {
            background: #e2e8f0;
        }
        
        .urgency-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff2e5;
            color: #f37021;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid #ffe0c0;
        }
        
        .urgency-badge span {
            background: #f37021;
            color: white;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-left: 4px;
        }
        
        /* HERO - TEMİZ TASARIM */
        .hero {
            padding: 20px 0 40px;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        
        .hero-left {
            padding-top: 20px;
        }
        
        .hero-badge {
            display: inline-block;
            background: #f37021;
            color: white;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 24px;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: #475569;
            margin-bottom: 32px;
            max-width: 500px;
        }
        
        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
        }
        
        .feature-item span:first-child {
            font-size: 1.4rem;
        }
        
        .trust-items {
            display: flex;
            gap: 24px;
            color: #64748b;
            font-size: 0.9rem;
            border-top: 1px solid #e2e8f0;
            padding-top: 24px;
        }
        
        .trust-items span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .form-card {
            background: white;
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
            border: 1px solid #e9eef2;
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
        }
        
        .form-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-align: center;
        }
        
        .form-subtitle {
            text-align: center;
            color: #f37021;
            font-weight: 500;
            margin-bottom: 24px;
            font-size: 0.95rem;
        }
        
        .form-group {
            margin-bottom: 16px;
        }
        
        .form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #dae2ec;
            border-radius: 12px;
            font-size: 1rem;
            background: #ffffff;
            transition: all 0.2s;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #f37021;
            box-shadow: 0 0 0 3px rgba(243,112,33,0.1);
        }
        
        .form-group input::placeholder {
            color: #94a3b8;
        }
        
        .password-hint {
            font-size: 0.8rem;
            color: #64748b;
            margin-top: 4px;
            margin-left: 4px;
        }
        
        .form-check {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 0.85rem;
            color: #64748b;
        }
        
        .form-check input {
            width: 18px;
            height: 18px;
            accent-color: #f37021;
        }
        
        .btn-primary {
            margin-bottom: 16px;
        }
        
        .form-footer {
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }
        
        .form-footer strong {
            color: #f37021;
            font-weight: 600;
        }
        
        .testimonials {
            padding: 60px 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        @media (max-width: 600px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .testimonial-card {
            background: white;
            padding: 24px;
            border-radius: 20px;
            border: 1px solid #eef2f6;
        }
        
        .testimonial-card p {
            color: #475569;
            margin-bottom: 16px;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #1e293b;
        }
        
        .testimonial-title {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .why-us {
            padding: 40px 0;
            background: white;
            border-radius: 30px;
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        @media (max-width: 700px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 450px) {
            .why-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .why-card {
            text-align: center;
            padding: 20px;
        }
        
        .why-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }
        
        .why-card h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .why-card p {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        footer {
            padding: 40px 0;
            text-align: center;
            color: #64748b;
            border-top: 1px solid #e2e8f0;
            margin-top: 40px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            text-decoration: none;
            color: #475569;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: #f37021;
        }
        
        .text-center {
            text-align: center;
        }
		
		
.form-check input {
    width: 18px;
    height: 18px;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #f37021;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.form-check input:checked {
    background-color: #f37021;
    border-color: #f37021;
}

.form-check input:checked::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}

.alert {
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.95rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
