@font-face {
    font-family: 'IRANSans';
    src: url('/static/fonts/IRANSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root{
    --primary:#4f8f2f;
    --primary-dark:#2f5d1a;
    --primary-soft:#eef8ea;
    --accent:#d7ead0;
    --dark:#17311b;
    --text:#1f2937;
    --muted:#6b7280;
    --border:#e5e7eb;
    --white:#ffffff;
    --bg:#f7faf7;
    --shadow:0 18px 45px rgba(0,0,0,.08);
    --shadow-soft:0 10px 24px rgba(0,0,0,.05);
    --radius:28px;
}

*{ box-sizing:border-box; }

body{
    font-family:'IRANSans',sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top left, rgba(79,143,47,.10), transparent 22%),
        radial-gradient(circle at bottom right, rgba(79,143,47,.08), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    overflow-x:hidden;
    line-height:1.9;
}

a{ text-decoration:none; }

.hero-section{
    padding:92px 0 40px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    background:var(--primary-soft);
    color:var(--primary-dark);
    font-weight:700;
    padding:.55rem 1rem;
    border-radius:999px;
    font-size:.92rem;
    margin-bottom:1rem;
}

.hero-title{
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height:1.32;
    font-weight:900;
    letter-spacing:-.04em;
    color:var(--dark);
    margin-bottom:1rem;
}

.hero-text{
    max-width:820px;
    color:var(--muted);
    font-size:1.05rem;
}

.hero-panel{
    background:rgba(255,255,255,.9);
    border:1px solid rgba(229,231,235,.95);
    border-radius:32px;
    box-shadow:var(--shadow-soft);
    padding:26px;
    height:100%;
}

.hero-stat{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:16px 0;
    border-bottom:1px solid #edf2ea;
}

.hero-stat:last-child{
    border-bottom:none;
}

.hero-stat-icon{
    width:46px;
    height:46px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,#f5fbf2 0%, #eaf6e6 100%);
    color:var(--primary);
    font-size:1.15rem;
    flex:0 0 46px;
}

.hero-stat h5{
    margin:0;
    font-size:1rem;
    font-weight:800;
    color:var(--dark);
}

.hero-stat p{
    margin:2px 0 0;
    color:var(--muted);
    font-size:.95rem;
}

.section{
    padding:58px 0;
}

.section-heading{
    margin-bottom:28px;
}

.section-heading h2{
    font-size:clamp(1.2rem, 2.2vw, 2.2rem);
    line-height:1.32;
    font-weight:900;
    color:var(--dark);
    margin-bottom:10px;
}

.section-heading p{
    color:var(--muted);
    max-width:900px;
    margin:0;
}

.feature-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow-soft);
    height:100%;
    overflow:hidden;
    transition:.3s ease;
}

.feature-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.feature-top{
    padding:24px 24px 0;
}

.feature-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg, rgba(79,143,47,.12), rgba(79,143,47,.05));
    color:var(--primary);
    font-size:1.35rem;
    margin-bottom:18px;
}

.feature-title{
    font-size:1.15rem;
    font-weight:900;
    color:var(--dark);
    margin-bottom:10px;
}

.feature-text{
    color:var(--muted);
    margin-bottom:0;
    padding-bottom:20px;
}

.feature-list{
    list-style:none;
    padding:0 24px 24px;
    margin:0;
    display:grid;
    gap:10px;
}

.feature-list li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:var(--text);
    font-size:.96rem;
}

.feature-list li::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--primary);
    margin-top:.55rem;
    flex:0 0 10px;
}

.roles-box{
    background:linear-gradient(135deg, rgba(79,143,47,.10), rgba(255,255,255,.9));
    border:1px solid rgba(79,143,47,.12);
    border-radius:32px;
    padding:28px;
    box-shadow:var(--shadow-soft);
}

.roles-box h3{
    font-size:clamp(1rem, 2vw, 1.9rem);
    line-height:1.32;
    font-weight:900;
    color:var(--dark);
    margin-bottom:10px;
}

.roles-box p{
    color:var(--muted);
    margin-bottom:0;
}

.role-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:18px;
    box-shadow:0 8px 18px rgba(0,0,0,.03);
    height:100%;
}

.role-tag{
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    background:var(--primary-soft);
    color:var(--primary-dark);
    padding:.35rem .8rem;
    border-radius:999px;
    font-size:.85rem;
    font-weight:800;
    margin-bottom:12px;
}

.role-item h5{
    font-weight:900;
    color:var(--dark);
    margin-bottom:8px;
}

.role-item p{
    color:var(--muted);
    margin:0;
    font-size:.96rem;
}

.cta-box{
    background:linear-gradient(135deg, var(--primary), var(--primary-dark));
    color:#fff;
    border-radius:34px;
    padding:34px;
    box-shadow:0 18px 40px rgba(47,93,26,.22);
}

.cta-box h3{
    font-size:clamp(1rem, 2vw, 1.9rem);
    line-height:1.32;
    font-weight:900;
    margin-bottom:12px;
}

.cta-box p{
    margin-bottom:0;
    opacity:.92;
}

.btn-cta{
    background:#fff;
    color:var(--primary-dark);
    border:none;
    border-radius:14px;
    padding:12px 22px;
    font-weight:800;
    transition:.3s ease;
}

.btn-cta:hover{
    transform:translateY(-2px);
    color:var(--primary-dark);
    background:#f7fff3;
}

.note-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:22px;
    box-shadow:var(--shadow-soft);
}

.note-box h4{
    font-weight:900;
    color:var(--dark);
    margin-bottom:10px;
}

.note-box p{
    color:var(--muted);
    margin:0;
}

@media (max-width:768px){
    .hero-section{
        padding:68px 0 28px;
    }

    .section{
        padding:44px 0;
    }

    .hero-panel,
    .roles-box,
    .cta-box{
        padding:22px;
    }
}