/* FULL WIDTH WRAPPER */
.hxq-wrap{
    margin-top: -130px;
    position:relative;
    left:50%;
    right:50%;
    margin-left:-50vw;
    margin-right:-50vw;
    width:100vw;
    max-width:100vw;
    overflow:hidden;
    background:#f8fafc;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;
    color:#1a1a1a;
    line-height:1.6;
    }
    
    /* RESET */
    .hxq-wrap *,
    .hxq-wrap *::before,
    .hxq-wrap *::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    /* VARIABLES */
    .hxq-wrap{
    --primary:#091F5B;
    --primary-light:#E8EEF7;
    --accent:#4A5A8D;
    --text:#1a1a1a;
    --text-muted:#64748b;
    --bg:#f8fafc;
    --white:#ffffff;
    --shadow:0 4px 6px -1px rgb(0 0 0 / 0.05),0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg:0 20px 25px -5px rgb(0 0 0 / 0.05),0 8px 10px -6px rgb(0 0 0 / 0.05);
    --radius:16px;
    --radius-sm:12px;
    }
    
    /* TYPOGRAPHY */
    .hxq-text-xs{font-size:.75rem}
    .hxq-text-sm{font-size:.875rem}
    .hxq-text-base{font-size:1rem}
    .hxq-text-lg{font-size:1.125rem}
    .hxq-text-xl{font-size:1.25rem}
    .hxq-text-2xl{font-size:1.5rem}
    .hxq-text-3xl{font-size:1.875rem}
    .hxq-text-4xl{font-size:2.25rem}
    
    /* CONTAINER */
    .hxq-container {
        max-width: 100%;
        padding: 0 10.5rem;

        }
        
   
    
    .hxq-text-center{text-align:center}
    
    /* HERO */
    .hxq-hero{
  /*  background:linear-gradient(135deg,var(--primary) 0%,var(--accent) 100%);*/
    color:#1a1a1a;
    padding:5rem 0 4rem;
    position:relative;
    overflow:hidden;
    }
    .hxq-hero img{
        width:100%;
        height:85vh;
        display:block;
        z-index: 0;
        margin-top: -5%;
    }
    
    .hxq-hero::before{
    content:'';
    position:absolute;
    top:-50%;
    right:-10%;
    width:600px;
    height:600px;
    background:rgba(255,255,255,0.03);
    border-radius:50%;
    }
    
    .hxq-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:.5rem 1.25rem;
    border-radius:50px;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    font-size:.875rem;
    font-weight:600;
    margin-bottom:1.5rem;
    border:1px solid rgba(255,255,255,.2);
    z-index: 10;
    }
    
    .hxq-hero h1{
    font-weight:800;
    margin-bottom:1rem;
    letter-spacing:-.02em;
    }
    
    .hxq-hero-subtitle{
    font-size:1.25rem;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    opacity:.9;
    font-weight:500;
    margin-bottom:2rem;
    }
    
    .hxq-hero-divider{
    width:60px;
    height:3px;
    background:rgba(255,255,255,.5);
    border-radius:2px;
    margin:0 auto 2rem;
    }
    
    .hxq-hero-description{
    max-width:800px;
    margin:0 auto;
    font-size:1.125rem;
    line-height:1.8;
    opacity:.95;
    }
    
    /* ACCORDION DESCRIPTION */
    .hxq-description-accordion{
    max-width:800px;
    margin:2rem auto 0;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    border-radius:var(--radius);
    border:1px solid rgba(7, 20, 92, 0.877);
    overflow:hidden;
    }
    
    .hxq-accordion-header{
    padding:1.25rem 1.5rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    transition:.3s;
    }
    
    .hxq-accordion-header:hover{
    background:rgba(255,255,255,.05);
    }
    
    .hxq-accordion-header h3{
    font-size:1rem;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    font-weight:600;
    }
    
    .hxq-accordion-icon{
    transition:.3s;
    font-size:1.25rem;
    }
    
    .hxq-accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    }
    
    .hxq-accordion-content.expanded{
    max-height:800px;
    }
    
    .hxq-accordion-content p{
    padding:0 1.5rem 1.5rem;
    font-size:.95rem;
    line-height:1.8;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    opacity:.9;
    }
    
    /* FEATURES */
    .hxq-features{
    padding:4rem 0;
    background:var(--white);
    }
    
    .hxq-section-header{
    text-align:center;
    margin-bottom:3rem;
    }
    
    .hxq-section-header h2{
    font-weight:700;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    color:var(--primary);
    margin-bottom:.5rem;
    }
    
    .hxq-features-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:1.5rem;
    width: 85%;
    margin:0 auto;
    }
    
    .hxq-feature-card{
    background:var(--white);
    border:1px solid #e2e8f0;
    border-radius:var(--radius);
    padding:2rem 1.5rem;
    text-align:center;
    transition:.3s;
    }
    
    .hxq-feature-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-lg);
    border-color:var(--primary-light);
    }
    
    .hxq-feature-icon{
    width:56px;
    height:56px;
    background:var(--primary-light);
    color:var(--primary);
    border-radius:var(--radius-sm);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 1.25rem;
    font-size:1.5rem;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    transition:.3s;
    }
    
    .hxq-feature-card:hover .hxq-feature-icon{
    background:var(--primary);
    color:var(--white);
    transform:scale(1.1);
    }
    
    /* PLATFORMS */
    .hxq-platforms{
    padding:4rem 0;
    background:var(--bg);
    }
    
    .hxq-platforms-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:1.5rem;
    margin:0 auto;
    }
    
    .hxq-platform-card{
    background:var(--white);
    border-radius:var(--radius);
    padding:2rem;
    text-align:center;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;
    font-size: 18px;
    border:1px solid #e2e8f0;
    transition:.3s;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:1.25rem;
    }
    
    .hxq-platform-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-lg);
    border-color:var(--primary-light);
    }
    
    .hxq-platform-logo{
    width:100%;
    height:70px;
    object-fit:contain;
    opacity:.8;
    transition:.3s;
    }
    .hero-btn-orange-glow {
        display: inline-block;
        background: linear-gradient(45deg, #ea580c, #f97316);
        color: #fff;
        padding: clamp(10px, 1.2vw, 18px) clamp(25px, 3vw, 45px);
        font-size: clamp(1rem, 1.1vw, 1.3rem);
        font-weight: bold;
        border-radius: 50px;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
        animation: pulse-orange 2s infinite;
        border: none;
        cursor: pointer;
        margin-top: 20px;
        margin-right: 20px;

      
      }
      
      .hero-btn-orange-glow .btn-icon {
        width: 1.5em;
        height: 1.5em;
        margin-left: 8px; /* فاصله از متن */
        animation: pulse 2s infinite;
      }
      
      
      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.15); } /* کمی بزرگ میشه */
        100% { transform: scale(1); }
      }
      
      
      .hero-btn-orange-glow:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(249, 115, 22, 0.8);
      }
      
      @keyframes pulse-orange {
        0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
        100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
      }
    .hxq-platform-card:hover .hxq-platform-logo{
    filter:grayscale(9%);
    opacity:1;
    }
    
    /* buttonxS */
    .hxq-btnx{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    padding:.75rem 1.5rem;
    border-radius:50px;
    font-weight:600;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    font-size:.9rem;
    text-decoration:none;
    transition:.3s;
    border:none;
    cursor:pointer;
    width:100%;
    }
    
    .hxq-btnx-outline{
    background:transparent;
    color:var(--primary);
    border:1.5px solid var(--primary);
    }
    
    .hxq-btnx-outline:hover{
    background:var(--primary);
    color:var(--white);
    transform:translateY(-2px);
    }
    
    .hxq-btnx-primary{
    background:var(--primary);
    color:var(--white);
    padding:1rem 2.5rem;
    width:auto;
    min-width:280px;
    }
    
    .hxq-btnx-primary:hover{
    background:var(--accent);
    transform:translateY(-2px);
    box-shadow:0 10px 20px -5px rgba(9,31,91,.3);
    }
    
    /* FAQ */
    .hxq-faq{
    padding:4rem 0;
    background:var(--white);
    }
    
    .hxq-faq-list{
    max-width:800px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:1rem;
    }
    
    .hxq-faq-item{
    background:var(--bg);
    border-radius:var(--radius-sm);
    border:1px solid #e2e8f0;
    overflow:hidden;
    transition:.3s;
    }
    
    .hxq-faq-item:hover{
    border-color:var(--primary-light);
    }
    
    .hxq-faq-question{
    padding:1.25rem 1.5rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    font-weight:600;
    font-size:1rem;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    background:none;
    border:none;
    width:100%;
    text-align:right;
    font-family:inherit;
    }
    
    .hxq-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease,padding .3s ease;
    }
    
    .hxq-faq-answer.active{
    max-height:300px;
    padding:0 1.5rem 1.25rem;
    }
    
    .hxq-faq-icon{
    transition:.3s;
    color:var(--primary);
    }
    
    .hxq-faq-item.active .hxq-faq-icon{
    transform:rotate(180deg);
    }
    
    /* CTA */
    .hxq-cta{
    padding:4rem 0;
    background:linear-gradient(135deg,var(--primary-light) 0%,var(--white) 100%);
    }
    
    .hxq-cta-box{
    background:var(--white);
    border-radius:var(--radius);
    padding:3rem 2rem;
    text-align:center;
    border:2px dashed var(--accent);
    max-width:900px;
    margin:0 auto;
    }
    
    .hxq-cta-box h3{
    font-size:1.5rem;
    font-weight:700;
    color:var(--primary);
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    margin-bottom:.75rem;
    }
    
    .hxq-cta-box p{
    color:var(--text-muted);
    margin-bottom:1.5rem;
    font-size:1.1rem;
    }
    
    /* MOBILE */
    /* MOBILE & TABLET */
@media (max-width:768px){
    .hero-btn-orange-glow {
        display: inline-block;
        background: linear-gradient(45deg, #ea580c, #f97316);
        color: #fff;
        padding: clamp(10px, 1.2vw, 18px) clamp(25px, 3vw, 45px);
        font-size: clamp(1rem, 1.1vw, 1.3rem);
        font-weight: bold;
        border-radius: 50px;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
        animation: pulse-orange 2s infinite;
        border: none;
        cursor: pointer;
        margin-top: 20px;
        margin-right: -150px;
      
      }

    /* container */
    .hxq-container{
    padding:0 1.2rem;
    }
    
    /* hero */
    .hxq-hero{
    padding:2.5rem 0 2rem;
    text-align:center;
    
    }
    .hxq-hero img{
        width:100%;
        height:auto;
        max-height:700px;
        object-fit:cover;
        display:block;
    }
    .hxq-hero h1{
    font-size:1.6rem;
    line-height:1.5;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    }
    
    .hxq-hero-subtitle{
    font-size:1rem;
    margin-bottom:1.5rem;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    }
    
    .hxq-hero-description{
    font-size:.95rem;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    padding:0 .5rem;
    }
    
    /* accordion */
    .hxq-description-accordion{
    margin-top:1.5rem;
    }
    
    .hxq-accordion-header{
    padding:1rem 1.1rem;
    }
    
    .hxq-accordion-content p{
    font-size:.9rem;
    font-family:'iranyekan','iransans',system-ui,-apple-system,sans-serif;

    }
    
    /* sections */
    .hxq-features,
    .hxq-platforms,
    .hxq-faq,
    .hxq-cta{
    padding:2.5rem 0;
    }
    
    /* titles */
    .hxq-section-header{
    margin-bottom:2rem;
    }
    
    .hxq-section-header h2{
    font-size:1rem;
    }
    
    /* features grid */
    /* FEATURES HORIZONTAL SCROLL */
/* horizontal scroll */
/* horizontal scroll */
/* FEATURES HORIZONTAL SCROLL - MOBILE */
.hxq-features-grid{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:1rem;
    width:100%;
    margin:0;
    padding:0 1.2rem .5rem;
    scroll-snap-type:x mandatory;
    }
    
    .hxq-features-grid::-webkit-scrollbar{
    display:none;
    }
    
    /* card */
    .hxq-feature-card{
    min-width:260px;
    flex:0 0 auto;
    display:flex;
    align-items:flex-start;
    gap:.9rem;
    padding:1rem 1.2rem;
    text-align:right;
    scroll-snap-align:start;
    }
    
    /* icon */
    .hxq-feature-icon{
    flex-shrink:0;
    width:42px;
    height:42px;
    margin:0;
    }
    
    /* text wrapper */
    .hxq-feature-text{
    display:flex;
    flex-direction:column;
    }
    
    .hxq-feature-text h3{
    font-size:10px;
    margin-bottom:0.25rem;
    }
    
    .hxq-feature-text p{
    font-size:12px;
    line-height:1.9;
    margin:0;
    }
    
    
    
    /* logo */
    .hxq-platform-logo{
    height:55px;
    }
    
    /* buttonxs */
    .hxq-btnx{
    padding:.8rem 1.2rem;
    font-size:.9rem;
    }
    
    .hxq-btnx-primary{
    min-width:100%;
    }
    
    /* faq */
    .hxq-faq-question{
    font-size:.95rem;
    padding:1rem 1.1rem;
    }
    
    .hxq-faq-answer.active{
    padding:0 1.1rem 1rem;
    }
    
    /* CTA */
    .hxq-cta-box{
    padding:1.8rem 1.2rem;
    margin:0 .5rem;
    }
    
    .hxq-cta-box h3{
    font-size:1.25rem;
    }
    
    .hxq-cta-box p{
    font-size:.95rem;
    }
    .hxq-text-2xl{font-size:1rem}

}