/* ==========================================
   2zk.ir
   Version 2.0
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    direction:rtl;
    background:#f5f7fb;
    color:#222;
    font-family:Tahoma,Arial,sans-serif;
    line-height:1.9;
}

.container{
    width:95%;
    max-width:1100px;
    margin:50px auto;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

/* ==========================
   لوگو
========================== */

.logo{
    text-align:center;
    font-size:70px;
    font-weight:bold;
    margin-bottom:20px;
    letter-spacing:-3px;
}

.logo span{
    color:#0A84FF;
}

/* ==========================
   عنوان ها
========================== */

h1{
    text-align:center;
    font-size:36px;
    margin-bottom:20px;
    color:#111;
}

h2{
    text-align:center;
    font-size:28px;
    margin:45px 0 25px;
    color:#0A84FF;
}

h3{
    margin-bottom:15px;
    color:#222;
}

p{
    line-height:2.2;
    color:#555;
}

.subtitle{
    text-align:center;
    font-size:18px;
    color:#666;
    margin-bottom:40px;
}

/* ==========================
   دکمه ها
========================== */

.btn{
    display:inline-block;
    background:#0A84FF;
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
    transition:.3s;
    font-size:17px;
    font-weight:bold;
    margin:5px;
}

.btn:hover{
    background:#0066dd;
}

.btn-green{
    background:#16a34a;
}

.btn-green:hover{
    background:#15803d;
}

/* ==========================
   فرم
========================== */

form{
    width:100%;
}

.row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.col{
    flex:1;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}

input,
select,
textarea{

    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    transition:.3s;
    font-size:15px;
}

input:focus,
select:focus,
textarea:focus{

    border-color:#0A84FF;
    box-shadow:0 0 0 4px rgba(10,132,255,.10);
}

textarea{

    min-height:140px;
    resize:vertical;
}

small{

    color:#888;
}

button{

    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#0A84FF;
    color:#fff;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
}

button:hover{

    background:#0066dd;
}


/* ==========================
   جدول ها
========================== */

table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    margin-top:25px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

table th{
    background:#0A84FF;
    color:#fff;
    padding:15px;
    text-align:center;
}

table td{
    padding:15px;
    border-bottom:1px solid #eee;
    text-align:center;
}

table tr:hover{
    background:#f8fbff;
}

/* ==========================
   پیام ها
========================== */

.success{
    background:#eafaf1;
    color:#166534;
    border:1px solid #b7ebc6;
    padding:18px;
    border-radius:12px;
    margin:20px 0;
}

.error{
    background:#fff1f2;
    color:#b91c1c;
    border:1px solid #fecdd3;
    padding:18px;
    border-radius:12px;
    margin:20px 0;
}

/* ==========================
   کارت ها
========================== */

.box{
    background:#fff;
    border-radius:15px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

/* ==========================
   صفحه اصلی
========================== */

.hero{
    text-align:center;
    margin-bottom:60px;
}

.hero p{
    max-width:800px;
    margin:25px auto;
    font-size:18px;
    line-height:2.3;
}

.hero-buttons{
    margin-top:35px;
}

/* ==========================
   ویژگی ها
========================== */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-top:30px;
}

.feature{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-6px);
}

.feature h3{
    text-align:center;
    color:#0A84FF;
    margin-bottom:15px;
}

.feature p{
    text-align:center;
    color:#666;
    font-size:15px;
    line-height:2;
}

/* ==========================
   آمار سایت
========================== */

.stats{
    display
    
    
    /* ==========================
   مراحل خرید
========================== */

.steps{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    margin-top:30px;
}

.steps ol{
    padding-right:25px;
}

.steps li{
    margin-bottom:18px;
    font-size:17px;
    line-height:2;
    color:#444;
}

/* ==========================
   FAQ
========================== */

.faq{
    margin-top:35px;
}

.faq-item{
    background:#fff;
    border-radius:14px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.faq-question{
    width:100%;
    background:#fff;
    color:#222;
    border:none;
    padding:20px;
    text-align:right;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.faq-question:hover{
    background:#f7f9fc;
}

.faq-answer{
    display:none;
    padding:20px;
    line-height:2.2;
    background:#fafafa;
    color:#555;
    border-top:1px solid #eee;
}

/* ==========================
   اعتماد
========================== */

.trust{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-top:35px;
}

.trust-item{
    background:#fff;
    padding:25px;
    border-radius:
    
    
    
    /* ==========================================
   انیمیشن ها
========================================== */

.feature,
.box,
.card,
.trust-item,
.stat,
.contact-box,
.faq-item{

    transition:all .30s ease;

}

.feature:hover,
.box:hover,
.trust-item:hover,
.stat:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

/* ==========================================
   تصاویر
========================================== */

img{

    max-width:100%;

    height:auto;

    border-radius:12px;

}

/* ==========================================
   لینک ها
========================================== */

a{

    transition:.30s;

}

a:hover{

    opacity:.90;

}

/* ==========================================
   موبایل
========================================== */

@media (max-width:768px){

.container{

    width:94%;

    margin:20px auto;

}

.card{

    padding:20px;

}

.logo{

    font-size:48px;

}

h1{

    font-size:28px;

}

h2{

    font-size:22px;

}

p{

    font-size:16px;

}

.row{

    flex-direction:column;

}

.btn{

    display:block;

    width:100%;

    text-align:center;

    margin:10px 0;

}

.hero-buttons .btn{

    width:100%;

}

.features{

    grid-template-columns:1fr;

}

.trust{

    grid-template-columns:1fr;

}

.stats{

    grid-template-columns:repeat(2,1fr);

}

table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}

}

/* ==========================================
   موبایل کوچک
========================================== */

@media (max-width:480px){

.logo{

    font-size:40px;

}

h1{

    font-size:24px;

}

h2{

    font-size:20px;

}

.stats{

    grid-template-columns:1fr;

}

.feature{

    padding:18px;

}

.trust-item{

    padding:18px;

}

.contact-box{

    padding:20px;

}

}

/* ==========================================
   پایان فایل
========================================== */