/* ===================================
   RESET
=================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Vazirmatn',sans-serif;

background:#f5f7fa;

color:#222;

line-height:1.9;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:.3s;

}

ul{

list-style:none;

}

.container{

width:min(1200px,92%);

margin:auto;

}


/* ===================================
   VARIABLES
=================================== */

:root{

--primary:#d40000;

--primary-dark:#b30000;

--secondary:#222;

--text:#444;

--light:#f7f8fa;

--border:#e5e7eb;

--success:#16a34a;

--shadow:
0 10px 30px rgba(0,0,0,.08);

--radius:16px;

}


/* ===================================
   TYPOGRAPHY
=================================== */

h1{

font-size:clamp(2rem,5vw,2.5rem);

line-height:1.4;

font-weight:800;

}

h2{

font-size:clamp(1.7rem,4vw,2.5rem);

margin-bottom:15px;

font-weight:800;

}

h3{

font-size:1.2rem;

font-weight:700;

}

p{

color:var(--text);

}

.ad-banner{
    display: block;
    margin: 0 auto;
    margin-bottom: 50px;
}


/* ===================================
   BUTTONS
=================================== */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 30px;

border-radius:12px;

font-weight:700;

transition:.3s;

cursor:pointer;

}

.btn-primary{

background:var(--primary);

color:#fff;

}

.btn-primary:hover{

background:var(--primary-dark);

transform:translateY(-2px);

}

.btn-outline{

border:2px solid var(--primary);

color:var(--primary);

background:#fff;

margin-top:30px;


}

.btn-outline:hover{

background:var(--primary);

color:#fff;

}


/* ===================================
   HEADER
=================================== */

.header{

position:sticky;

top:0;

z-index:999;

background:#fff;

box-shadow:0 2px 12px rgba(0,0,0,.05);

}

.header.scrolled{

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.header-inner{

display:flex;

align-items:center;

justify-content:space-between;

padding:18px 0;

gap:20px;

}

.logo img{

height:52px;

}

.desktop-menu{

display:flex;

gap:25px;

}

.desktop-menu a{

color:#222;

font-weight:500;

}

.desktop-menu a:hover{

color:var(--primary);

}

.header-actions{

display:flex;

align-items:center;

gap:15px;

}

.header-phone{

font-weight:700;

color:#222;

}

.header-phone i{

margin-left:8px;

color:var(--primary);

}

.header-cta{

background:var(--primary);

color:#fff;

padding:12px 20px;

border-radius:10px;

font-weight:700;

}

.header-cta:hover{

background:var(--primary-dark);

}


/* ===================================
   HERO
=================================== */

.hero{

padding:60px 0;

background:
linear-gradient(
135deg,
#ffffff 0%,
#f8fafc 100%
);

}

.hero-content{

max-width:900px;

margin:auto;

text-align:center;

}

.hero-badge{

display:inline-block;

padding:10px 18px;

background:#fff0f0;

color:var(--primary);

border:1px solid #ffd4d4;

border-radius:999px;

font-weight:700;

margin-bottom:25px;

}

.hero h1{

margin-bottom:25px;

}

.hero-text{

font-size:1.15rem;

max-width:760px;

margin:auto;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin-bottom:15px;

  padding: 0 20px;
  box-sizing: border-box;

}

.hero-features{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:20px;

}

.hero-features li{

background:#fff;

padding:12px 18px;

border-radius:12px;

box-shadow:var(--shadow);

font-size:.95rem;

font-weight: 600;

}

.hero-features i{

color:var(--success);

margin-left:8px;

}


/* ===================================
   SECTION HEADER
=================================== */

.section-header{

text-align:center;

margin-bottom:60px;

}

.section-badge{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 18px;

background:#fff0f0;

color:var(--primary);

border-radius:999px;

font-weight:700;

margin-bottom:15px;

}

.section-header p{

max-width:700px;

margin:auto;

}


/* ===================================
   CLIENT LOGOS
=================================== */

.clients{

padding:40px 0;

background:#fff;

}

.logos-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:20px;

}

.logo-item{

height:100px;

background:#fff;

border:1px solid var(--border);

border-radius:14px;

display:flex;

align-items:center;

justify-content:center;

padding:3px;

transition:.3s;

filter:none;

}

.logo-item:hover{

transform:translateY(-4px);

box-shadow:var(--shadow);

filter:grayscale(10%);

}

.logo-item img{

max-height:90px;

width:auto;

object-fit:contain;

}


/* ===================================
   BENEFITS
=================================== */

.reportage-benefits{

padding:90px 0;

background:#f7f8fa;

}

.benefits-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.benefit-card{

background:#fff;

padding:35px 25px;

border-radius:var(--radius);

box-shadow:var(--shadow);

text-align:center;

transition:.3s;

}

.benefit-card:hover{

transform:translateY(-5px);

}

.benefit-card i{

font-size:2.3rem;

color:var(--primary);

margin-bottom:20px;

}

.benefit-card h3{

margin-bottom:12px;

}

.benefit-card p{

font-size:.95rem;

}


/* ===================================
   COMPARISON TABLE
=================================== */

.comparison-section{

padding:90px 0;

background:#fff;

}

.comparison-table{

overflow-x:auto;

}

.comparison-table table{

width:100%;

border-collapse:collapse;

background:#fff;

border-radius:16px;

overflow:hidden;

box-shadow:var(--shadow);

}

.comparison-table th{

background:var(--primary);

color:#fff;

padding:18px;

font-weight:700;

}

.comparison-table td{

padding:18px;

border-bottom:1px solid var(--border);

text-align:center;

}

.comparison-table tr:last-child td{

border-bottom:none;

}

.comparison-table td:nth-child(2){

font-weight:700;

color:var(--success);

}

.comparison-note{

margin-top:30px;

padding:18px 25px;

background:#ecfdf5;

border:1px solid #bbf7d0;

border-radius:12px;

font-weight:700;

text-align:center;

color:#166534;

}

.comparison-note i{

margin-left:8px;

}


/* ===================================
   SAMPLE REPORTAGES
=================================== */

.samples{

padding:90px 0;

background:#f7f8fa;

}

.sample-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.sample-card{

background:#fff;

border-radius:var(--radius);

overflow:hidden;

box-shadow:var(--shadow);

transition:.3s;

}

.sample-card:hover{

transform:translateY(-6px);

}

.sample-card img{

width:100%;

height:220px;

object-fit:cover;

}

.sample-content{

padding:22px;

}

.sample-content h3{

margin-bottom:12px;

line-height:1.8;

}

.sample-content p{

font-size:.95rem;

margin-bottom:15px;

}

.sample-content a{

color:var(--primary);

font-weight:700;

}

.sample-content a:hover{

color:var(--primary-dark);

}


/* ===================================
   MIDDLE CTA
=================================== */

.middle-cta{

padding:90px 0;

background:linear-gradient(
135deg,
var(--primary),
#e11d48
);

text-align:center;

color:#fff;

}

.middle-cta h2{

color:#fff;

margin-bottom:20px;

}

.middle-cta p{

color:#fff;

opacity:.95;

max-width:650px;

margin:auto;

margin-bottom:30px;

}

.middle-cta .btn-primary{

background:#fff;

color:var(--primary);

}

.middle-cta .btn-primary:hover{

background:#f8fafc;

}


/* ===================================
   TESTIMONIALS
=================================== */

.testimonials{

padding:90px 0;

background:#fff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.testimonial-card{

background:#fff;

padding:30px;

border-radius:var(--radius);

box-shadow:var(--shadow);

border-top:4px solid var(--primary);

}

.testimonial-stars{

font-size:1.2rem;

color:#f59e0b;

margin-bottom:15px;

}

.testimonial-card p{

margin-bottom:20px;

line-height:2;

}

.testimonial-author{

display:flex;

flex-direction:column;

gap:5px;

}

.testimonial-author strong{

font-size:1rem;

}

.testimonial-author span{

font-size:.9rem;

color:#666;

}

/* ===================================
   PRICING
=================================== */

.pricing{

padding:100px 0;

background:#f7f8fa;

}

.pricing-grid{

display:grid;

grid-template-columns:1fr 1.2fr 1fr;

gap:30px;

align-items:center;

}

.price-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

position:relative;

transition:.3s;

}

.price-card:hover{

transform:translateY(-8px);

}

.price-card h3{

font-size:1.5rem;

margin-bottom:20px;

text-align:center; 

}

.price-value{

font-size:2rem; 

font-weight:800;

text-align:center;

color:var(--primary);

margin-bottom:25px;

}

.price-card ul{

display:flex;

flex-direction:column;

gap:12px;

margin-bottom:30px;

}

.price-card li{

position:relative;

padding-right:28px;

}

.price-card li::before{

content:"✓";

position:absolute;

right:0;

color:#16a34a;

font-weight:700;

}

.price-card .btn{

width:100%;

}

.price-label{

position:absolute;

top:10px;

left:20px;

padding:8px 14px;

border-radius:15px;

font-size:.9rem;

font-weight:700;

}

.price-label.limited{

background:#fff7ed;

color:#c2410c;

}

.price-label.popular{

background:#dc2626;

color:#fff;


}

.popular-counter{

text-align:center;

background:#dc2626;

color:#fff;

padding:10px;

border-radius:10px;

margin:15px 0 20px;

font-weight:700;

}

.featured{

border:3px solid var(--primary);

transform:scale(1.05);

box-shadow:
0 20px 50px rgba(212,0,0,.15);

}

.featured:hover{

transform:scale(1.08);

}


/* ===================================
   GUARANTEE
=================================== */

.guarantee{

padding:90px 0;

background:#fff;

}

.guarantee-box{

display:flex;

align-items:center;

gap:30px;

background:#ecfdf5;

border:1px solid #bbf7d0;

padding:40px;

border-radius:20px;

}

.guarantee-icon{

width:90px;

height:90px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#16a34a;

color:#fff;

font-size:2rem;

flex-shrink:0;

}

.guarantee-content h2{

margin-bottom:10px;

color:#166534;

}


/* ===================================
   FAQ
=================================== */

.faq-section{

padding:90px 0;

background:#f7f8fa;

}

.faq-list{

max-width:900px;

margin:auto;

}

.faq-list details{

background:#fff;

margin-bottom:15px;

border-radius:14px;

padding:20px;

box-shadow:var(--shadow);

}

.faq-list summary{

cursor:pointer;

font-weight:700;

font-size:1.05rem;

}

.faq-list p{

margin-top:15px;

padding-top:15px;

border-top:1px solid var(--border);

}


/* ===================================
   CONTACT
=================================== */

.contact-section{

padding:35px 0; 

background:#fff;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.contact-features{

margin-top:25px;

display:flex;

flex-direction:column;

gap:12px;

}

.contact-features li{

font-weight:500;

}

.contact-features i{

color:#16a34a;

margin-left:8px;

}

.contact-form-box{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

}

.form-group{

margin-bottom:15px;

}

.form-group input,
.form-group select{

width:100%;

height:56px;

padding:0 18px;

border:1px solid var(--border);

border-radius:12px;

font-family:inherit;

font-size:1rem;

outline:none;

transition:.3s;

}

.form-group input:focus,
.form-group select:focus{

border-color:var(--primary);

box-shadow:0 0 0 4px rgba(212,0,0,.08);

}

.submit-btn{

width:100%;

height:58px;

border:none;

border-radius:12px;

background:var(--primary);

color:#fff;

font-size:1rem;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.submit-btn:hover{

background:var(--primary-dark);

}

#result{

margin-top:15px;

font-weight:700;

text-align:center;

}


/* ===================================
   FOOTER
=================================== */

.footer{

background:#111827;

color:#fff;

padding:30px 0 60px;

}

.footer-content{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:30px;

}

.footer a{

display:block;

color:#d1d5db;

margin-bottom:10px;

}

.footer a:hover{

color:#fff;

}


/* ===================================
   MOBILE STICKY BAR
=================================== */

.mobile-sticky-bar{

position:fixed;

bottom:0;

right:0;

left:0;

background:#fff;

box-shadow:
0 -5px 20px rgba(0,0,0,.12);

display:flex;

z-index:9999;

}

.mobile-sticky-bar a{

flex:1;

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

padding:12px 5px;

color:#222;

font-size:.8rem;

font-weight:800;

}

.mobile-sticky-bar i{

font-size:1.1rem;

margin-bottom:5px;

}

.mobile-sticky-bar a:nth-child(2){

color:#16a34a;

}

.mobile-sticky-bar a:first-child{
    color:#dc2626;
    font-weight:800;
}

.mobile-sticky-bar a:nth-child(3) {
    color: #00AEEF; /* رنگ آبی بله */
}

.mobile-sticky-bar a:nth-child(4) {
    color: #3B82F6; /* رنگ آبی بله */
}


/* ===================================
   FLOATING BUTTONS
=================================== */

.floating-whatsapp{

position:fixed;

left:25px;

bottom:95px;

width:60px;

height:60px;

border-radius:50%;

background:#25d366;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:1.7rem;

box-shadow:
0 10px 25px rgba(0,0,0,.2);

z-index:999;

}

.floating-phone{

position:fixed;

left:25px;

bottom:170px;

width:60px;

height:60px;

border-radius:50%;

background:#dc2626;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:1.5rem;

box-shadow:
0 10px 25px rgba(0,0,0,.2);

z-index:999;

}


/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

.desktop-menu{

display:none;

}

.pricing-grid{

grid-template-columns:1fr;

}

.featured{

transform:none;

order:-1;

}

.contact-wrapper{

grid-template-columns:1fr;

}

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

.sample-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:1fr;

}

.logos-grid{

grid-template-columns:repeat(4,1fr);

}

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-content{

grid-template-columns:1fr;

text-align:center;

}

}


@media(max-width:768px){

.hero{

padding:40px 0;

}

.hero-buttons{
    
flex-direction:column;

}

.hero-buttons .btn{
    
width:100%;

}

.hero-features{

flex-direction:column;

}

.benefits-grid{

grid-template-columns:1fr;

}

.sample-grid{

grid-template-columns:1fr;

}

.logos-grid{

grid-template-columns:repeat(2,1fr);

}

.logo-item{

height:85px;

}

.trust-grid{

grid-template-columns:1fr 1fr;

gap:15px;

}

.guarantee-box{

flex-direction:column;

text-align:center;

}

.contact-form-box{

padding:25px;

}

.floating-phone{

display:none;

}

}


@media(max-width:480px){

.container{

width:94%;

}

h1{

font-size:1.9rem;

}

h2{

font-size:1.5rem;

}

.price-card{

padding:25px;

}

.price-value{

font-size:1.7rem;

}

.mobile-sticky-bar span{

font-size:.85rem;

}

}


/* ===================================
   FIXES
=================================== */

body,
html{

overflow-x:hidden;

}



img{

max-width:100%;

height:auto;

}

section{

overflow:hidden;

}

button,
input,
select,
textarea,
a,
.btn,
.header-cta,
.submit-btn{

font-family:'Vazirmatn',sans-serif !important;

}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
}
.price-new {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 800;
}
.price-badge {
    display: block;
    font-size: 1.8rem;
    color: #16a34a;
    margin-bottom: 5px;
}