/* ============================================================
   Sosyal Medya Asistanı CSS - Neon Pembe/Mor
   ============================================================ */
:root {
    --bg-main: #0b0c10;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #c5c6c7;
    --brand-pink: #ff007f;
    --brand-purple: #8a2be2;
    --gradient-primary: linear-gradient(135deg, #ff007f, #8a2be2);
    --gradient-accent: linear-gradient(135deg, #8a2be2, #00d2ff);
    --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-fast: 0.3s ease;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

.sm-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center top, rgba(255, 0, 127, 0.15), transparent 60%), var(--bg-main);
}

.sm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/grid-pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.sm-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sm-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sm-hero .sm-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sm-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sm-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 0.95rem;
}

.sm-btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.sm-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.sm-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--brand-pink);
}

.sm-btn-outline:hover {
    background: rgba(255, 0, 127, 0.1);
    transform: translateY(-2px);
}

.sm-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sm-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

.sm-section-title span {
    color: var(--brand-pink);
}

.sm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sm-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.sm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 127, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.sm-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sm-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.sm-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.sm-integration {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    border: 1px solid var(--border-color);
    text-align: center;
}

.sm-integration p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.sm-footer-cta {
    background: var(--gradient-primary);
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.2);
}

.sm-footer-cta h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.sm-footer-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sm-hero {
        padding: 140px 0 80px;
    }

    .sm-hero h1 {
        font-size: 2rem;
    }

    .sm-section {
        padding: 50px 20px;
    }

    .sm-section-title {
        font-size: 1.8rem;
    }

    .sm-integration {
        padding: 30px;
    }
}