@media (min-width: 1025px) {
    .site-footer .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-card {
        display: none;
    }
}

/* Premium Register Page Styles */
.register-hero {
    position: relative;
    padding: 8rem 0 6rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background: #0f172a;
    overflow: hidden;
}

    .register-hero .hero-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: 0;
    }

    .register-hero .hero-particles {
        position: absolute;
        inset: 0;
        z-index: 1;
        /* Particles effect - matches contact.html */
        background-image: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    }

    .register-hero .container {
        position: relative;
        z-index: 10;
    }

    .register-hero .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        font-weight: 900;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        color: #fff;
    }

    .register-hero .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 300;
    }

.register-content {
    position: relative;
    z-index: 1;
    margin-top: -4rem;
    padding-bottom: 6rem;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .benefits-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    }

    .benefits-card h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.75rem;
        color: #0f172a;
        margin-bottom: 1.5rem;
    }

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .benefits-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid #f1f5f9;
    }

        .benefits-list li:last-child {
            border-bottom: none;
        }

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

    .benefit-icon::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.benefits-list li:hover .benefit-icon {
    transform: scale(1.1) translateY(-5px) rotate(3deg);
}

.benefit-icon.purple {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.benefit-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.benefit-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.benefit-icon.blue {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.benefit-icon.teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.benefit-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.benefit-icon.yellow {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3);
}

.benefit-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.form-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    }

    .form-card h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.75rem;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .form-card .form-subtitle {
        color: #64748b;
        margin-bottom: 2rem;
    }

.premium-form-group {
    margin-bottom: 1.5rem;
}

    .premium-form-group label {
        display: block;
        font-weight: 600;
        color: #1e293b;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

.premium-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #0f172a;
}

    .premium-input:focus {
        outline: none;
        border-color: #6366f1;
        background: white;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.15);
        transform: translateY(-2px);
    }

    .premium-input::placeholder {
        color: #94a3b8;
    }

    .premium-input:hover:not(:focus) {
        border-color: #cbd5e1;
    }

.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

    .kvkk-checkbox:hover {
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        border-color: rgba(99, 102, 241, 0.2);
        transform: translateX(4px);
    }

    .kvkk-checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-top: 0.125rem;
        accent-color: #6366f1;
        flex-shrink: 0;
        cursor: pointer;
    }

    .kvkk-checkbox span {
        font-size: 0.875rem;
        color: #475569;
        line-height: 1.6;
    }

    .kvkk-checkbox a {
        color: #6366f1;
        text-decoration: none;
        border-bottom: 1px dashed #6366f1;
        font-weight: 500;
        transition: all 0.2s;
    }

        .kvkk-checkbox a:hover {
            color: #4f46e5;
            border-bottom-style: solid;
        }

.marketing-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    margin-top: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

    .marketing-checkbox:hover {
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        border-color: rgba(99, 102, 241, 0.2);
        transform: translateX(4px);
    }

    .marketing-checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-top: 0.125rem;
        accent-color: #6366f1;
        flex-shrink: 0;
        cursor: pointer;
    }

    .marketing-checkbox span {
        font-size: 0.875rem;
        color: #475569;
        line-height: 1.6;
    }

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-register {
    flex: 1;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

    .btn-register::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-register:hover::before {
        left: 100%;
    }

.btn-register-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4), 0 0 0 0 rgba(99, 102, 241, 0.4);
}

    .btn-register-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5), 0 0 0 4px rgba(99, 102, 241, 0.1);
    }

    .btn-register-primary:active {
        transform: translateY(-1px);
    }

.btn-register-secondary {
    padding: 1.125rem 1.5rem;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    font-weight: 600;
}

    .btn-register-secondary:hover {
        border-color: #6366f1;
        color: #6366f1;
        background: rgba(99, 102, 241, 0.05);
    }

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

    .form-status.success {
        background: rgba(16, 185, 129, 0.1);
        color: #059669;
    }

    .form-status.error {
        background: rgba(239, 68, 68, 0.1);
        color: #dc2626;
    }

.verify-box {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: none;
}

    .verify-box.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    .verify-box h3 {
        font-family: 'Playfair Display', serif;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .verify-box p {
        color: #64748b;
        margin-bottom: 1.5rem;
    }

.verify-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-verify {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-verify-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
}

    .btn-verify-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    }

.btn-verify-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

    .btn-verify-outline:hover {
        background: rgba(99, 102, 241, 0.05);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.benefits-card,
.form-card {
    animation: fadeIn 0.6s ease forwards;
}

.form-card {
    animation-delay: 0.2s;
}

    .benefits-card:hover,
    .form-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.15);
    }

/* Responsive */
@media (max-width: 992px) {
    .register-hero {
        padding: 7rem 0 5rem;
        min-height: 45vh;
    }

        .register-hero h1 {
            font-size: 3rem;
        }

    .register-grid {
        grid-template-columns: 1fr;
    }

    .register-content {
        margin-top: 0;
        padding-top: 2rem;
    }
}

@media (max-width: 640px) {
    .register-hero {
        padding: 5rem 0 3rem;
        min-height: 40vh;
    }

        .register-hero h1 {
            font-size: 2.25rem;
        }

        .register-hero p {
            font-size: 1rem;
        }

    .hero-badge-premium {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .benefits-card,
    .form-card {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-register {
        width: 100%;
        justify-content: center;
    }
}


.auth-footer {
    display: flex; /* Elemanları yan yana dizer */
    justify-content: center; /* Yatayda ortalar */
    align-items: baseline; /* Metin ve link taban çizgilerini hizalar */
    gap: 8px; /* Aradaki boşluğu belirler (kurumsal standart: 8-12px) */
    margin-top: 20px;
    font-family: 'Inter', sans-serif; /* Vebende Akademi estetiğine uygun font */
    text-align: right;
}

.auth-link {
    font-weight: 600; /* Linki vurgulamak için */
    text-decoration: none;
    color: #6f42c1; /* Görseldeki buton rengiyle uyumlu mor tonu */
}

    .auth-link:hover {
        text-decoration: underline;
    }

/* Konteynır Yapısı */
.ilgi-alanlari {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

    .ilgi-alanlari h3 {
        font-size: 1.5rem;
        color: #1a202c;
        margin-bottom: 1.5rem;
        font-weight: 700;
        border-left: 4px solid #3b82f6;
        padding-left: 1rem;
    }

/* Liste Düzeni */
.interest-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    padding: 0;
    list-style: none;
}

    .interest-list li {
        position: relative;
    }

    /* Checkbox'ı Gizle (Erişilebilirliği koruyarak) */
    .interest-list input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    /* Label - Ana Taşıyıcı */
    .interest-list label {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.95rem;
        color: #475569;
        font-weight: 500;
        user-select: none;
    }

        /* Yeni Nesil Checkbox Kutusu (Solda) */
        .interest-list label::before {
            content: "";
            width: 20px;
            height: 20px;
            border: 2px solid #cbd5e1;
            border-radius: 6px;
            margin-right: 12px;
            flex-shrink: 0;
            transition: all 0.2s ease;
            background: white;
        }

        /* Hover Efekti */
        .interest-list label:hover {
            background: #f1f5f9;
            border-color: #3b82f6;
            color: #1e293b;
        }

    /* Seçili Durum (Checked) */
    .interest-list input[type="checkbox"]:checked + label {
        background: #eff6ff;
        border-color: #3b82f6;
        color: #2563eb;
    }

        .interest-list input[type="checkbox"]:checked + label::before {
            background-color: #3b82f6;
            border-color: #3b82f6;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
            background-size: 80%;
            background-position: center;
            background-repeat: no-repeat;
            transform: scale(1.1);
        }

    /* Odaklanma Durumu (Keyboard Navigation için) */
    .interest-list input[type="checkbox"]:focus + label {
        outline: 2px solid #93c5fd;
        outline-offset: 2px;
    }
