/* ========================= */
/* Service Info Cards (right-aligned text) */
/* ========================= */

.info-grid{
padding:0 8% 60px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.info-card{
padding:35px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
backdrop-filter:blur(20px);
transition:.35s;
text-align:right;
}

.info-card:hover{
transform:translateY(-8px);
border-color:#00D9FF;
box-shadow:0 0 40px rgba(0,217,255,.2);
}

.info-card h3{
font-size:22px;
margin-bottom:14px;
color:#00D9FF;
}

.info-card h3 a{
color:inherit;
}

.info-card p{
opacity:.75;
line-height:1.9;
font-size:15px;
}

@media(max-width:900px){
.info-grid{
grid-template-columns:1fr;
}
}

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

.faq{
padding:60px 8% 140px;
}

.faq-wrapper{
max-width:900px;
margin:auto;
}

.faq-subtitle{
text-align:center;
opacity:.7;
font-size:18px;
margin-top:-40px;
margin-bottom:50px;
}

.faq-container{
display:flex;
flex-direction:column;
gap:16px;
}

.faq-item{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:18px;
backdrop-filter:blur(18px);
overflow:hidden;
transition:border-color .3s ease;
}

.faq-item:hover{
border-color:rgba(0,217,255,.4);
}

.faq-question{
display:flex;
align-items:center;
gap:14px;
padding:22px 26px;
cursor:pointer;
font-size:17px;
font-weight:500;
}

.faq-icon{
flex-shrink:0;
width:26px;
height:26px;
border-radius:50%;
background:rgba(0,217,255,.12);
color:#00D9FF;
display:flex;
align-items:center;
justify-content:center;
font-size:13px;
transition:transform .3s ease;
}

.faq-item.active .faq-icon{
transform:rotate(135deg);
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
}

.faq-answer p{
padding:0 26px 22px 26px;
opacity:.75;
line-height:1.9;
font-size:15px;
}

.faq-item.active .faq-answer{
max-height:400px;
}

/* ========================= */
/* Services / Bots grid (5 items) */
/* ========================= */

.services{
padding:20px 8% 100px;
}

/* ========================= */
/* About Page - Contact Grid (4 cards) */
/* ========================= */

.contact-grid{
padding:0 8% 140px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.contact-card{
padding:40px 30px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
backdrop-filter:blur(20px);
transition:.35s;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
}

.contact-card:hover{
transform:translateY(-10px);
border-color:#00D9FF;
box-shadow:0 0 40px rgba(0,217,255,.22);
}

.contact-card .icon{
font-size:44px;
margin-bottom:20px;
}

.contact-card h3{
font-size:21px;
margin-bottom:12px;
}

.contact-card p{
opacity:.7;
line-height:1.8;
font-size:14px;
margin-bottom:26px;
flex-grow:1;
}

.contact-card .btn{
margin-top:0;
padding:12px 30px;
font-size:15px;
}

@media(max-width:1100px){
.contact-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.contact-grid{
grid-template-columns:1fr;
}
}

/* ========================= */
/* Plan Features Checklist (for bot/reseller/config/cs plans) */
/* ========================= */

.plan-features {
    list-style: none;
    width: 100%;
    margin-bottom: 15px;
    padding: 0; /* حذف پدینگ پیش‌فرض */
    display: flex;
    flex-direction: column;
    gap: 6px; /* فاصله بین آیتم‌ها */
}

.plan-features li {
    padding: 8px 12px; /* کمی پدینگ بهتر */
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.5;
    word-break: break-word; /* جلوگیری از بیرون زدن کلمات */
    text-align: right; /* راست‌چین برای فارسی */
}

.plan-features li:last-child {
    border-bottom: none;
}

/* برای حالت روشن (Light Mode) */
html[data-theme="light"] .plan-features li {
    color: #0B1524;
    border-bottom: 1px solid rgba(11, 21, 36, 0.08);
}

/* استایل آیکون‌های تیک */
.plan-features .ico-inline {
    flex-shrink: 0; /* جلوگیری از کوچک شدن آیکون */
    width: 20px;
    text-align: center;
}

/* استایل برچسب موجودی (Stock Badge) */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: bold;
    color: #00D9FF;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    vertical-align: middle;
    white-space: nowrap; /* جلوگیری از شکستن برچسب */
}

/* ========================= */
/* Full Footer (expanded) */
/* ========================= */

.footer{
margin:100px auto 0;
padding:70px 8% 0;
}

.footer-container{
display:grid;
grid-template-columns:1.6fr 1fr 1.3fr 1fr 1fr;
gap:40px;
max-width:1300px;
margin:0 auto 50px;
text-align:right;
}

.footer-about p{
font-size:14.5px;
line-height:2;
opacity:.7;
}

.footer-column h3{
font-size:17px;
margin-bottom:20px;
color:var(--accent, #00D9FF);
}

.footer-column ul{
list-style:none;
display:flex;
flex-direction:column;
gap:12px;
}

.footer-column ul li a{
font-size:14px;
opacity:.75;
transition:.25s;
}

.footer-column ul li a:hover{
opacity:1;
color:var(--accent, #00D9FF);
padding-right:4px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.08);
padding:26px 8% 34px;
text-align:center;
}

.footer-bottom p{
font-size:13.5px;
opacity:.6;
line-height:1.9;
}

@media(max-width:1100px){
.footer-container{
grid-template-columns:repeat(2,1fr);
}
.footer-about{
grid-column:1 / -1;
text-align:center;
}
}

@media(max-width:600px){
.footer-container{
grid-template-columns:1fr;
text-align:center;
}
.footer-column ul li a:hover{
padding-right:0;
}
}

.plan-grid:has(.plan-card:only-child){
grid-template-columns:1fr;
max-width:380px;
margin:0 auto;
}
