body {
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
    background: #fff;
    color: #333;
}

.landing-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.landing-header .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #e36a1e;
}

.landing-header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.landing-header nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.3s;
}

.landing-header nav ul li a.active,
.landing-header nav ul li a:hover {
    background: #ffe5d1;
    color: #e36a1e;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(120deg, #ff8a47, #ffb380);
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-btn {
    background: #fff;
    color: #e36a1e;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #ffe5d1;
}

/* Stats Section */
.stats-section {
    background: #fff8f2;
    padding: 40px 20px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    width: 180px;
    box-shadow: 0 2px 10px #00000010;
}

.stat-box i {
    font-size: 28px;
    color: #e36a1e;
    margin-bottom: 10px;
}

.stat-box h3 {
    margin: 5px 0;
    color: #ff5a1f;
    font-size: 20px;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.feature-box {
    background: #fff7f0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px #00000010;
    transition: transform 0.2s, background 0.3s;
}

.feature-box i {
    font-size: 30px;
    color: #e36a1e;
    margin-bottom: 12px;
}

.feature-box:hover {
    transform: translateY(-4px);
    background: #fff2e6;
}

.feature-box.future i {
    color: #999;
}

/* Footer */
.landing-footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 14px 20px;
    text-align: center;
}

.landing-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    color: #e36a1e;
    font-size: 18px;
    margin-left: 10px;
    text-decoration: none;
}
