

/* ===== RISK DISCLOSURE STYLES ===== */
.risk-warning {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin-bottom: 3rem;
}

.risk-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.risk-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.risk-item h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.disclaimer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

/* ===== SECURITY STYLES ===== */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.security-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
}

.security-item h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.compliance-section {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 3rem;
}

/* ===== CAREERS STYLES ===== */
.careers-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.open-positions {
    max-width: 800px;
    margin: 0 auto;
}

.position-card {
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.position-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.position-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* ===== PRESS STYLES ===== */
.press-releases {
    margin-bottom: 4rem;
}

.press-card {
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #17a2b8;
}

.press-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.media-contacts {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* ===== TERMS & PRIVACY STYLES ===== */
.terms-section,
.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.terms-section h2,
.privacy-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.terms-section p,
.privacy-section p {
    line-height: 1.8;
    color: #555;
}

/* ===== MARKETPLACE FULL STYLES ===== */
.marketplace-filters {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-options select {
    padding: 0.8rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    background: white;
    min-width: 200px;
}

.startup-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.startup-card-full {
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e5e9;
}

.startup-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.startup-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.startup-header h3 {
    flex: 1;
    margin: 0;
    color: #333;
}

.category-tag {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.startup-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.startup-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.value {
    font-weight: 600;
    color: #333;
}

.risk-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.risk-low { background: #28a745; }
.risk-medium { background: #ffc107; }
.risk-high { background: #dc3545; }

.startup-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-options select {
        min-width: auto;
    }
    
    .startup-grid-full {
        grid-template-columns: 1fr;
    }
    
    .startup-details {
        grid-template-columns: 1fr;
    }
    
    .startup-actions {
        flex-direction: column;
    }
    
    .startup-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .faq-item,
    .security-item,
    .position-card,
    .press-card {
        padding: 1.5rem;
    }
    
    .support-form {
        gap: 1rem;
    }
}

/* ===== ANIMATION STYLES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CARD STYLES ===== */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-heading:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #667eea;
    border-radius: 2px;
}