/* ============================================================
   Yatırım Analiz CSS - Premium Launch (Pre-Launch 2026)
   ============================================================ */
:root {
    --bg-main: #07090f;
    /* Daha da derin gece mavisi/siyah */
    --bg-card: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a5b1;
    --brand-gold: #e2b35a;
    /* Premium Altın */
    --brand-blue: #007bff;
    /* Kurumsal Güven Mavisi */
    --brand-cyan: #00d2ff;
    /* Teknoloji Mavi */
    --gradient-primary: linear-gradient(135deg, #007bff, #00d2ff);
    --gradient-gold: linear-gradient(135deg, #e2b35a, #f9d976);
    --gradient-accent: linear-gradient(135deg, #00d2ff, #e2b35a);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.3s ease;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

.ya-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* HERO SECTION */
.ya-hero {
    position: relative;
    padding: 200px 0 120px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center top, rgba(0, 123, 255, 0.1), transparent 60%), var(--bg-main);
}

.ya-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/grid-pattern.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.ya-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.ya-launch-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(226, 179, 90, 0.1);
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(226, 179, 90, 0.3);
}

.ya-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ya-hero .ya-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ya-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ya-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.ya-btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
}

.ya-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.6);
    transform: translateY(-3px);
    color: #fff;
}

.ya-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border-color);
}

.ya-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-3px);
}

/* SECTIONS */
.ya-section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ya-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    line-height: 1.2;
}

.ya-section-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ya-section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* GRID CARDS */
.ya-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ya-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.ya-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.ya-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

.ya-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.ya-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* PRICING */
.ya-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.ya-price-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.ya-price-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
}

.ya-price-card.premium {
    border-color: var(--brand-gold);
    background: linear-gradient(180deg, rgba(226, 179, 90, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.ya-price-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gradient-gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.ya-price-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.ya-price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1;
}

.ya-price-amount span {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: normal;
}

.ya-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
}

.ya-price-features li {
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.ya-price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-gold);
    font-weight: bold;
}

.ya-btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* CONTACT / VIP FORM */
.ya-contact-wrapper {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ya-form-group {
    margin-bottom: 25px;
    text-align: left;
}

.ya-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.ya-form-control {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.ya-form-control:focus {
    outline: none;
    border-color: var(--brand-cyan);
    background: rgba(255, 255, 255, 0.06);
}

.ya-form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* DISCLAIMER */
.ya-disclaimer {
    border-left: 3px solid #666;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    max-width: 900px;
    margin: 60px auto 0;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    text-align: left;
}

.ya-disclaimer strong {
    color: #aaa;
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .ya-hero {
        padding: 150px 0 80px;
    }

    .ya-hero h1 {
        font-size: 2.2rem;
    }

    .ya-section {
        padding: 60px 20px;
    }

    .ya-section-title {
        font-size: 2rem;
    }

    .ya-contact-wrapper {
        padding: 30px 20px;
    }
}