﻿@import url('/css/fonts/Fontcss.css');

body {
    margin: 0;
    font-family: Vazirmatn-FD-Regular;
    background-color: #0f172a;
    color: #e5e7eb;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #020617, #020617);
    border-radius: 8px;
}

    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        opacity: 0.9;
    }

.hero-buttons {
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    margin: 0 5px;
    display: inline-block;
}

    .btn.primary {
        background-color: #6366f1;
        color: #fff;
    }

    .btn.outline {
        border: 1px solid #6366f1;
        color: #6366f1;
    }

.features, .plans, .contact {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}

.feature-grid, .plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card, .plan-card {
    background-color: #020617;
    padding: 25px;
    border-radius: 12px;
    transition: transform .45s ease, box-shadow .45s ease;
}

    .feature-card:hover, .plan-card:hover {
        border: 1px solid #6366f1;
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgb(255, 255, 255, 0.10);
    }

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #020617;
    border: 1px solid #334155;
    color: #fff;
    border-radius: 6px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #020617;
    font-size: 14px;
}
