* {
    box-sizing: border-box;
    transition: all 0.25s ease-in-out;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f4f6f9;
    color: #1f2937;
    direction: rtl;
}

/* چیدمان اصلی به صورت عمودی */
.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
}

.wizard-section {
    width: 100%;
    padding: 0 15%;
    padding-bottom: 40px;
    background-color: #3e7fe9;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
    transform: translateX(0);
    opacity: 1;
}

.services-grid.slide-out {
    transform: translateY(-20px);
    opacity: 0;
}

/* استایل عمومی کارت‌ها */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

/* استایل تصویر جدید کارت‌ها */
.service-card__image-container {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
}

.service-card__img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

/* دکمه‌ها */
.start-btn {
    background: #3e7fe9;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.25);
    width: 100%;
    transition: all 0.2s ease;
}

.start-btn:hover {
    background: #3a81f2;
    transform: translateY(-2px);
}

/* استایل کارت غیرفعال */
.disabled-card {
    background: #f9fafb;
    border-color: #f3f4f6;
    opacity: 0.75;
}

.disabled-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.disabled-btn {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

.badge-coming-soon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fef3c7;
    color: #d97706;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #fde68a;
    z-index: 2;
}

/* استایل تایپ انیمیشنی */
.typing-container {
    font-size: 21px;
    font-weight: 700;
    color: #eaeaea;
    min-height: 32px;
}

.cursor {
    display: inline-block;
    color: #4f46e5;
    font-weight: bold;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* استایل بخش مقالات */
.articles-section {
    width: 100%;
    max-width: 1000px;
    margin: 10px;
    padding: 50px;
    background-color: #f4f4f4;
    border-radius: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 32px;
}

.section-title h2 {
    font-size: 26px;
    color: #111827;
    margin: 0 0 8px 0;
}

.section-title p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.article-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.article-card__image {
    height: 160px;
    background: #e0e7ff;
    position: relative;
    padding: 16px;
}

.article-card__image .badge {
    background: #4f46e5;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 8px;
}

.article-card__content {
    padding: 20px;
}

.article-card__content h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #111827;
    line-height: 1.4;
}

.article-card__content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.article-card__link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.article-card__link:hover {
    color: #3730a3;
}