
p {
    line-height: 1.9;
}

/* HERO */
.hero-title {
    font-size: 2rem;
}

.hero-subtitle {
    font-size: 1rem;
}

.profile-wrapper {
    width: 260px;
    height: 380px;
    padding: 6px;
    background: linear-gradient(145deg, #ffffff, #f1f3f6);
    border-radius: 140px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 140px;
    border: 4px solid #ffffff;
    filter: contrast(1.05) saturate(1.05);
}
/* subtle hover only on desktop */
.profile-img:hover {
    transform: scale(1.03);
}

/* FEATURE CARDS */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #0d6efd;
}

/* CTA */
.cta-buttons {
    gap: 10px;
}

/* MOBILE */
@media (max-width: 576px) {

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .profile-wrapper {
        width: 180px;
        height: 270px;
        border-radius: 120px;
    }

    .profile-img {
        border-radius: 120px;
    }

    /* remove hover effects on mobile */
    .feature-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .profile-img:hover {
        transform: none;
    }
}

.cta-buttons {
    gap: 0.75rem;
}

/* حالت پیش‌فرض (دسکتاپ) */
.cta-btn {
    white-space: nowrap;
}

/* موبایل: وقتی زیر هم افتادند */
@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }
}