/* ==========================================================================
   PRAJIS — Customer Satisfaction Survey
   Modern Dark / Glass / Business Theme
   ========================================================================== */


/* ==========================================================================
   1. VARIABLES
   ========================================================================== */

.survey-page{

    --survey-bg: #03111b;
    --survey-bg-2: #061c2b;
    --survey-bg-3: #09283b;

    --survey-card: rgba(255,255,255,.045);
    --survey-card-hover: rgba(255,255,255,.075);

    --survey-border: rgba(255,255,255,.10);
    --survey-border-light: rgba(255,255,255,.17);

    --survey-text: #f3f6f8;
    --survey-muted: rgba(243,246,248,.68);
    --survey-muted-2: rgba(243,246,248,.48);

    --survey-gold: #e8b923;
    --survey-gold-light: #f6d35d;

    --survey-blue: #4da3ff;
    --survey-green: #48d597;
    --survey-orange: #ff9d55;
    --survey-red: #ff6b6b;

    --survey-radius: 22px;

    position: relative;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    width: 100vw;

    background:
            radial-gradient(
                    circle at 10% 5%,
                    rgba(77,163,255,.08),
                    transparent 28%
            ),
            radial-gradient(
                    circle at 90% 20%,
                    rgba(232,185,35,.06),
                    transparent 25%
            ),
            linear-gradient(
                    145deg,
                    var(--survey-bg),
                    var(--survey-bg-2)
            );

    color: var(--survey-text);

    padding: 45px 0 80px;

    overflow: hidden;
}


/* خطوط نور بسیار ظریف در پس‌زمینه */

.survey-page::before,
.survey-page::after{

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    opacity: .18;
}

.survey-page::before{

    background: #12608a;

    top: 350px;
    right: -300px;
}

.survey-page::after{

    background: #9b7311;

    top: 1600px;
    left: -320px;
}


/* ==========================================================================
   2. GENERAL
   ========================================================================== */

.survey-page *{
    box-sizing: border-box;
}

.survey-page h1,
.survey-page h2,
.survey-page h3,
.survey-page h4{
    color: var(--survey-text);
}

.survey-page p,
.survey-page li{
    color: var(--survey-muted);
}

.survey-page strong{
    color: var(--survey-text);
}

.survey-page section{
    position: relative;
    z-index: 1;
}

.survey-page .container{
    position: relative;
    z-index: 2;
}

.survey-page a{
    text-decoration: none;
}


/* ==========================================================================
   3. HERO
   ========================================================================== */

.survey-hero{

    text-align: center;

    max-width: 980px;

    margin: 0 auto;

    padding: 35px 0 30px;
}


.survey-eyebrow{

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--survey-gold);

    background: rgba(232,185,35,.07);

    border: 1px solid rgba(232,185,35,.25);

    padding: 8px 20px;

    border-radius: 50px;

    font-size: .86rem;

    font-weight: 800;

    margin-bottom: 22px;

    box-shadow:
            0 0 25px rgba(232,185,35,.06);

}


.survey-eyebrow::before{

    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--survey-gold);

    box-shadow:
            0 0 10px var(--survey-gold);

}


.survey-hero h1{

    max-width: 850px;

    margin: 0 auto 25px;

    font-size: clamp(2rem, 4vw, 3.1rem);

    line-height: 1.65;

    font-weight: 900;

    letter-spacing: -.5px;

}


.survey-hero-text{

    max-width: 820px;

    margin: 0 auto;

    font-size: 1.05rem;

    line-height: 2.25;

}


.highlight-red{
    color: var(--survey-red) !important;
}

.highlight-green2{
    color: var(--survey-green) !important;
}

.highlight-blue{
    color: var(--survey-blue) !important;
}


/* ==========================================================================
   4. HERO BUTTONS
   ========================================================================== */

.survey-hero-actions{

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

    margin: 30px 0 40px;
}


.survey-primary-btn,
.survey-secondary-btn{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 11px 25px;

    border-radius: 13px;

    font-size: .9rem;

    font-weight: 800;

    transition:
            transform .25s ease,
            box-shadow .25s ease,
            background .25s ease,
            border-color .25s ease;

}


.survey-primary-btn{

    color: #092c42;

    background:
            linear-gradient(
                    135deg,
                    var(--survey-gold-light),
                    var(--survey-gold)
            );

    border: 1px solid var(--survey-gold);

    box-shadow:
            0 8px 25px rgba(232,185,35,.15);
}


.survey-primary-btn:hover{

    color: #092c42;

    transform: translateY(-3px);

    box-shadow:
            0 12px 35px rgba(232,185,35,.25);
}


.survey-secondary-btn{

    color: var(--survey-text);

    background: rgba(255,255,255,.035);

    border: 1px solid var(--survey-border);
}


.survey-secondary-btn:hover{

    color: #fff;

    background: rgba(255,255,255,.075);

    border-color: var(--survey-border-light);

    transform: translateY(-3px);
}


/* ==========================================================================
   5. HERO IMAGE
   ========================================================================== */

.survey-hero-image{

    position: relative;

    max-width: 900px;

    margin: 15px auto 0;
}


.survey-hero-image::before{

    content: "";

    position: absolute;

    inset: 15%;

    background: rgba(77,163,255,.12);

    filter: blur(70px);

    z-index: -1;
}


.survey-page .survey-hero-image .images{

    display: block;

    width: 100%;

    max-width: 900px;

    margin: auto;

    border-radius: 24px;

    border: 1px solid var(--survey-border);

    box-shadow:
            0 25px 70px rgba(0,0,0,.35),
            0 0 35px rgba(255,255,255,.04);
}


/* ==========================================================================
   6. SECTION COMMON
   ========================================================================== */

.survey-section-label{

    display: inline-block;

    color: var(--survey-gold);

    font-size: .98rem;

    font-weight: 800;

    letter-spacing: .2px;

    background: rgba(232,185,35,.06);

    border: 1px solid rgba(232,185,35,.20);

    border-radius: 50px;

    padding: 6px 15px;

    margin-bottom: 15px;
}


.survey-outsourcing,
.survey-metrics-section,
.survey-process-section,
.survey-output-section,
.survey-industries-section,
.survey-sample-section,
.survey-benefits-section,
.survey-example-section{

    margin-top: 90px;

    margin-bottom: 90px;
}


.survey-page section > h2,
.survey-section-content h2{

    font-size: clamp(1.5rem, 3vw, 2rem);

    line-height: 1.7;

    font-weight: 850;

    margin: 0 0 14px;
}


.survey-page section > p{

    line-height: 2.1;

    margin-bottom: 28px;
}


/* ==========================================================================
   7. OUTSOURCING
   ========================================================================== */

.survey-two-column{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;

    align-items: stretch;
}


.survey-section-content{

    padding: 25px 10px 25px 20px;
}


.survey-section-content p{

    line-height: 2.15;

    font-size: .94rem;
}


.survey-service-box{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    padding: 20px;

    background:
            linear-gradient(
                    145deg,
                    rgba(255,255,255,.055),
                    rgba(255,255,255,.025)
            );

    border: 1px solid var(--survey-border);

    border-radius: var(--survey-radius);

    box-shadow:
            0 20px 50px rgba(0,0,0,.18);
}


.survey-service-item{

    display: flex;

    gap: 13px;

    align-items: flex-start;

    padding: 18px;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 15px;

    transition: .25s ease;
}


.survey-service-item:hover{

    transform: translateY(-4px);

    background: rgba(255,255,255,.055);

    border-color: rgba(255,255,255,.13);
}


.survey-service-icon{

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--survey-gold);

    background: rgba(232,185,35,.09);

    border: 1px solid rgba(232,185,35,.18);
}


.survey-service-item strong{

    display: block;

    font-size: .87rem;

    margin-bottom: 5px;
}


.survey-service-item span{

    display: block;

    color: var(--survey-muted-2);

    font-size: .76rem;

    line-height: 1.7;
}


/* ==========================================================================
   8. PACKAGES
   ========================================================================== */

.satpkg-section{

    margin: 95px 0;

    position: relative;

    padding: 5px 0;
}


.satpkg-head{

    text-align: center;

    max-width: 680px;

    margin: 0 auto 42px;
}


.satpkg-head > span{

    display: inline-block;

    color: var(--survey-gold);

    font-size: .8rem;

    font-weight: 800;

    background: rgba(232,185,35,.07);

    border: 1px solid rgba(232,185,35,.22);

    padding: 7px 17px;

    border-radius: 50px;

    margin-bottom: 14px;
}


.satpkg-head h2{

    font-size: 2rem;

    margin: 0 0 12px;

    font-weight: 900;
}


.satpkg-head p{

    margin: 0;

    line-height: 2;

    color: var(--survey-muted);
}


.satpkg-grid{

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    align-items: stretch;
}


.satpkg-card{

    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    padding: 28px 22px;

    border-radius: 20px;

    background:
            linear-gradient(
                    150deg,
                    rgba(255,255,255,.055),
                    rgba(255,255,255,.025)
            );

    border: 1px solid var(--survey-border);

    overflow: visible;

    transition:
            transform .3s ease,
            border-color .3s ease,
            box-shadow .3s ease;

}


.satpkg-card::after{

    content: "";

    position: absolute;

    left: 15%;
    right: 15%;
    bottom: -20px;

    height: 35px;

    background: rgba(0,0,0,.3);

    filter: blur(20px);

    opacity: 0;

    transition: .3s ease;

}


.satpkg-card:hover{

    transform: translateY(-8px);

    border-color: var(--survey-border-light);

    box-shadow:
            0 25px 50px rgba(0,0,0,.22);
}


.satpkg-card:hover::after{

    opacity: 1;
}


.satpkg-card.is-featured{

    border: 1px solid var(--survey-gold);

    background:
            linear-gradient(
                    150deg,
                    rgba(232,185,35,.11),
                    rgba(255,255,255,.035)
            );

    box-shadow:
            0 15px 45px rgba(232,185,35,.09);
}


.satpkg-card.is-featured:hover{

    box-shadow:
            0 25px 60px rgba(232,185,35,.16);
}


.satpkg-badge{

    position: absolute;

    top: -14px;
    right: 20px;

    color: #092c42;

    background:
            linear-gradient(
                    135deg,
                    var(--survey-gold-light),
                    var(--survey-gold)
            );

    font-size: .72rem;

    font-weight: 900;

    padding: 6px 14px;

    border-radius: 50px;

    box-shadow:
            0 6px 20px rgba(232,185,35,.22);
}


.satpkg-icon{

    width: 47px;
    height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    font-size: 19px;

    margin-bottom: 18px;

    border: 1px solid rgba(255,255,255,.10);
}


.satpkg-basic .satpkg-icon{

    color: var(--survey-green);

    background: rgba(72,213,151,.08);

}


.satpkg-advanced .satpkg-icon{

    color: var(--survey-blue);

    background: rgba(77,163,255,.08);

}


.satpkg-pro .satpkg-icon{

    color: var(--survey-gold);

    background: rgba(232,185,35,.10);

}


.satpkg-premium .satpkg-icon{

    color: var(--survey-orange);

    background: rgba(255,157,85,.08);

}


.satpkg-card h4{

    font-size: 1.12rem;

    font-weight: 900;

    margin: 0 0 5px;
}


.satpkg-goal{

    font-size: .77rem;

    color: var(--survey-muted-2);

    margin: 0 0 20px;
}


.satpkg-card ul{

    list-style: none;

    padding: 0;

    margin: 0 0 25px;

    flex-grow: 1;
}


.satpkg-card li{

    position: relative;

    padding-right: 23px;

    margin-bottom: 12px;

    font-size: .82rem;

    line-height: 1.8;
}


.satpkg-card li::before{

    content: "";

    position: absolute;

    right: 0;

    top: 8px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--survey-gold);

    box-shadow:
            0 0 8px rgba(232,185,35,.55);
}


.satpkg-card li.extra{

    color: var(--survey-text);

    font-weight: 600;
}


.satpkg-meta{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 13px 0;

    margin-bottom: 13px;

    border-top: 1px dashed var(--survey-border);

    border-bottom: 1px dashed var(--survey-border);

    font-size: .77rem;
}


.satpkg-meta strong{

    color: var(--survey-text);

    font-size: .83rem;
}


.satpkg-price{

    display: flex;

    align-items: baseline;

    justify-content: space-between;

    gap: 5px;

    margin-bottom: 18px;
}


.satpkg-price-amount{

    font-size: 1.05rem;

    font-weight: 900;

    color: #fff;
}


.satpkg-price-period{

    font-size: .7rem;

    color: var(--survey-muted-2);
}


.satpkg-card .home-btn{

    width: 100%;

    min-height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: rgba(255,255,255,.045);

    border: 1px solid var(--survey-border);

    color: #fff;

    transition: .25s ease;
}


.satpkg-card .home-btn:hover{

    background: rgba(255,255,255,.09);

    transform: translateY(-2px);
}


.satpkg-card.is-featured .home-btn{

    color: #092c42;

    background: var(--survey-gold);

    border-color: var(--survey-gold);

    font-weight: 900;
}


.satpkg-card.is-featured .home-btn:hover{

    background: var(--survey-gold-light);

}


/* ==========================================================================
   9. METRICS
   ========================================================================== */

.survey-metrics-section{

    text-align: center;
}


.survey-metrics-section > p{

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}


.survey-metrics{

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 13px;

    margin-top: 30px;
}


.survey-metric{

    padding: 22px 15px;

    border-radius: 17px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(34, 197, 94, .35);

    transition: .25s ease;
}


.survey-metric:hover{

    transform: translateY(-5px);

    background: rgba(255,255,255,.065);

    border-color: rgba(77,163,255,.25);

    box-shadow:
            0 12px 30px rgba(0,0,0,.15);
}


.survey-metric b{

    display: block;

    font-size: 1.15rem;

    color: var(--survey-gold);

    margin-bottom: 8px;

}


.survey-metric span{

    display: block;

    font-size: .75rem;

    line-height: 1.7;

    color: var(--survey-muted);
}


/* ==========================================================================
   10. PROCESS
   ========================================================================== */

.survey-process-section{

    text-align: center;
}


.survey-process-section > p{

    max-width: 650px;

    margin-left: auto;
    margin-right: auto;
}


.survey-process{

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;

    margin-top: 35px;
}
.survey-process-section {
    text-align: center !important;
}

.survey-process-section > p {
    text-align: center !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 35px !important;
}

/* مراحل پایین را راست‌چین نگه دار تا به هم نریزد */
.survey-process,
.survey-process-item {
    text-align: right !important;
}

.survey-process-item{

    position: relative;

    padding: 25px 17px;

    text-align: right;

    background:
            linear-gradient(
                    150deg,
                    rgba(255,255,255,.05),
                    rgba(255,255,255,.025)
            );

    border: 1px solid var(--survey-border);

    border-radius: 18px;

    transition: .25s ease;
}


.survey-process-item:hover{

    transform: translateY(-6px);

    border-color: rgba(232,185,35,.25);

    box-shadow:
            0 15px 35px rgba(0,0,0,.16);
}


.survey-process-number{

    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    margin-bottom: 17px;

    border-radius: 11px;

    color: #092c42;

    background: var(--survey-gold);

    font-weight: 900;

    font-size: .9rem;
}


.survey-process-item h4{

    font-size: .9rem;

    margin: 0 0 8px;

    font-weight: 850;
}


.survey-process-item p{

    font-size: .75rem;

    line-height: 1.9;

    margin: 0;
}


/* ==========================================================================
   11. OUTPUT / DASHBOARD
   ========================================================================== */

.survey-output-card{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;

    align-items: center;

    padding: 35px;

    border-radius: 26px;

    background:
            radial-gradient(
                    circle at 90% 20%,
                    rgba(77,163,255,.08),
                    transparent 35%
            ),
            rgba(255,255,255,.035);

    border: 1px solid var(--survey-border);

    box-shadow:
            0 25px 60px rgba(0,0,0,.20);
}


.survey-output-label{

    display: inline-block;

    color: var(--survey-blue);

    font-size: .78rem;

    font-weight: 800;

    margin-bottom: 13px;
}


.survey-output-content h2{

    font-size: 1.65rem;

    line-height: 1.7;

    margin: 0 0 14px;
}


.survey-output-content > p{

    line-height: 2;

    font-size: .9rem;
}


.survey-output-list{

    margin-top: 25px;
}


.survey-output-list > div{

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    font-size: .82rem;

    color: var(--survey-muted);
}


.survey-output-list i{

    color: var(--survey-green);

    font-size: .75rem;
}


/* dashboard */

.survey-dashboard-preview{

    padding: 22px;

    border-radius: 18px;

    background:
            linear-gradient(
                    145deg,
                    #09283a,
                    #061a29
            );

    border: 1px solid rgba(255,255,255,.09);

    box-shadow:
            0 20px 45px rgba(0,0,0,.28);
}


.dashboard-top{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    font-size: .72rem;

    color: var(--survey-muted);
}


.dashboard-status{

    padding: 4px 9px;

    border-radius: 20px;

    color: var(--survey-green);

    background: rgba(72,213,151,.08);
}


.dashboard-score{

    padding: 22px 0;

}


.dashboard-score small{

    display: block;

    color: var(--survey-muted);

    font-size: .72rem;

    margin-bottom: 5px;
}


.dashboard-score strong{

    display: block;

    font-size: 2.3rem;

    color: var(--survey-gold);

    line-height: 1.2;
}


.dashboard-score span{

    font-size: .7rem;

    color: var(--survey-green);
}


.dashboard-bars > div{

    margin-bottom: 15px;
}


.dashboard-bars span{

    display: block;

    font-size: .7rem;

    color: var(--survey-muted);

    margin-bottom: 7px;
}


.dashboard-bars b{

    display: block;

    height: 6px;

    border-radius: 20px;

    background:
            linear-gradient(
                    90deg,
                    var(--survey-blue),
                    var(--survey-gold)
            );

    box-shadow:
            0 0 10px rgba(77,163,255,.15);
}


/* ==========================================================================
   12. INDUSTRIES
   ========================================================================== */

.survey-industries-section > p{

    max-width: 700px;
}


.survey-industries{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 30px;
}


.survey-industry{

    position: relative;

    padding: 25px;

    border-radius: 18px;

    background: rgba(255,255,255,.035);

    border: 1px solid var(--survey-border);

    overflow: hidden;

    transition: .28s ease;
}


.survey-industry::before{

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    left: -50px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(77,163,255,.08);

    filter: blur(25px);

    transition: .3s ease;
}


.survey-industry:hover{

    transform: translateY(-6px);

    background: rgba(255,255,255,.06);

    border-color: rgba(255,255,255,.15);

    box-shadow:
            0 18px 40px rgba(0,0,0,.16);
}


.survey-industry:hover::before{

    transform: scale(2);
}


.survey-industry-icon{

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--survey-blue);

    background: rgba(77,163,255,.08);

    border: 1px solid rgba(77,163,255,.16);

    margin-bottom: 16px;
}


.survey-industry h4{

    font-size: .92rem;

    margin: 0 0 9px;

    font-weight: 850;
}


.survey-industry p{

    font-size: .78rem;

    line-height: 1.95;

    margin: 0;
}


/* ==========================================================================
   13. SAMPLE REPORT
   ========================================================================== */

.survey-sample-section{

    text-align: center;
}


.survey-sample-section > p{

    max-width: 650px;

    margin-left: auto;
    margin-right: auto;
}


.survey-sample{

    max-width: 680px;

    margin: 35px auto 0;

    text-align: right;

    padding: 23px;

    border-radius: 20px;

    background:
            linear-gradient(
                    145deg,
                    rgba(255,255,255,.055),
                    rgba(255,255,255,.025)
            );

    border: 1px solid var(--survey-border);

    box-shadow:
            0 20px 50px rgba(0,0,0,.18);
}


.survey-sample-head{

    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 18px;

    margin-bottom: 5px;

    border-bottom: 1px solid var(--survey-border);
}


.survey-sample-head > i{

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--survey-gold);

    background: rgba(232,185,35,.08);
}


.survey-sample-head h4{

    margin: 0 0 3px;

    font-size: .92rem;
}


.survey-sample-head span{

    font-size: .68rem;

    color: var(--survey-muted-2);
}


.survey-sample-row{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 15px 5px;

    border-bottom: 1px dashed rgba(255,255,255,.07);

    font-size: .8rem;
}


.survey-sample-row:last-child{

    border-bottom: none;
}


.survey-sample-score{

    min-width: 58px;

    text-align: center;

    padding: 4px 8px;

    border-radius: 8px;

    color: var(--survey-green);

    background: rgba(72,213,151,.08);

    font-weight: 800;
}


/* ==========================================================================
   14. BENEFITS
   ========================================================================== */

.survey-benefits-section{

    text-align: center;
}


.survey-benefits-section > p{

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}


.survey-benefits{

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    margin-top: 35px;
}


.survey-benefit{

    padding: 25px 18px;

    text-align: center;

    border-radius: 18px;

    background: rgba(255,255,255,.035);

    border: 1px solid var(--survey-border);

    transition: .25s ease;
}


.survey-benefit:hover{

    transform: translateY(-6px);

    border-color: rgba(232,185,35,.22);

    background: rgba(255,255,255,.06);
}


.survey-benefit-icon{

    width: 47px;
    height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 14px;

    color: var(--survey-gold);

    background: rgba(232,185,35,.08);

    border: 1px solid rgba(232,185,35,.15);

    transition: .25s ease;
}


.survey-benefit:hover .survey-benefit-icon{

    transform: scale(1.08);

    box-shadow:
            0 0 20px rgba(232,185,35,.12);
}


.survey-benefit h4{

    font-size: .88rem;

    margin: 0 0 8px;

    font-weight: 850;
}


.survey-benefit p{

    font-size: .75rem;

    line-height: 1.9;

    margin: 0;
}


/* ==========================================================================
   15. REAL EXAMPLE
   ========================================================================== */

.survey-example-card{

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 25px;

    align-items: start;

    padding: 35px;

    border-radius: 24px;

    background:
            linear-gradient(
                    135deg,
                    rgba(232,185,35,.07),
                    rgba(255,255,255,.035)
            );

    border: 1px solid rgba(232,185,35,.16);

    box-shadow:
            0 20px 50px rgba(0,0,0,.18);
}


.survey-example-icon{

    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: var(--survey-gold);

    background: rgba(232,185,35,.09);

    border: 1px solid rgba(232,185,35,.18);

    font-size: 25px;
}


.survey-example-label{

    color: var(--survey-gold);

    font-size: 1.26rem;

    font-weight: 800;
}


.survey-example-card h2{

    font-size: 1.45rem;

    margin: 7px 0 15px;
}


.survey-example-card p{

    font-size: .86rem;

    line-height: 2.1;

    margin-bottom: 10px;
}


.survey-example-card > div > strong{

    display: block;

    margin-top: 17px;

    color: var(--survey-gold);

    font-size: .87rem;

    line-height: 1.9;
}


/* ==========================================================================
   16. PILOT
   ========================================================================== */

.survey-pilot{

    position: relative;

    margin: 100px 0;

    padding: 55px 30px;

    text-align: center;

    border-radius: 26px;

    overflow: hidden;

    background:
            radial-gradient(
                    circle at 50% 0%,
                    rgba(232,185,35,.13),
                    transparent 45%
            ),
            linear-gradient(
                    145deg,
                    #09263a,
                    #061a29
            );

    border: 1px solid rgba(232,185,35,.18);

    box-shadow:
            0 25px 60px rgba(0,0,0,.22);
}


.survey-pilot::before{

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -180px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(232,185,35,.10);

    filter: blur(40px);
}


.survey-pilot-content{

    position: relative;

    max-width: 750px;

    margin: auto;
}


.survey-pilot-content > span{

    display: inline-block;

    color: var(--survey-gold);

    font-size: .77rem;

    font-weight: 800;

    margin-bottom: 12px;
}


.survey-pilot h2{

    font-size: 1.9rem;

    margin: 0 0 13px;
}


.survey-pilot p{

    line-height: 2.1;

    font-size: .9rem;

    margin-bottom: 25px;
}


.survey-pilot-actions{

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* ==========================================================================
   17. FINAL CTA
   ========================================================================== */

.survey-final-cta{

    position: relative;

    text-align: center;

    max-width: 850px;

    margin: 100px auto 25px;

    padding: 50px 30px;

    border-radius: 26px;

    background:
            linear-gradient(
                    145deg,
                    rgba(255,255,255,.055),
                    rgba(255,255,255,.025)
            );

    border: 1px solid var(--survey-border);

    box-shadow:
            0 25px 65px rgba(0,0,0,.20);

    overflow: hidden;
}


.survey-final-cta::before{

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -160px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(232,185,35,.12);

    filter: blur(50px);
}


.survey-final-icon{

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border-radius: 17px;

    color: var(--survey-gold);

    background: rgba(232,185,35,.08);

    border: 1px solid rgba(232,185,35,.18);

    font-size: 21px;
}


.survey-final-label{

    position: relative;

    display: block;

    color: var(--survey-gold);

    font-size: .98rem;

    font-weight: 800;

    margin-bottom: 10px;
}


.survey-final-cta h2{

    position: relative;

    font-size: clamp(1.4rem, 3vw, 2rem);

    line-height: 1.8;

    margin: 0 auto 15px;

    font-weight: 900;
}


.survey-final-cta p{

    position: relative;

    max-width: 700px;

    margin: 0 auto 28px;

    font-size: .9rem;

    line-height: 2.15;
}


.survey-final-btn{

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 28px;

    border-radius: 13px;

    color: #092c42;

    background:
            linear-gradient(
                    135deg,
                    var(--survey-gold-light),
                    var(--survey-gold)
            );

    font-size: .88rem;

    font-weight: 900;

    box-shadow:
            0 10px 30px rgba(232,185,35,.16);

    transition: .25s ease;
}


.survey-final-btn:hover{

    color: #092c42;

    transform: translateY(-3px);

    box-shadow:
            0 15px 40px rgba(232,185,35,.25);
}


/* ==========================================================================
   18. RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 1100px){

    .satpkg-grid{

        grid-template-columns: repeat(2, 1fr);

    }

    .survey-process{

        grid-template-columns: repeat(3, 1fr);

    }

    .survey-metrics{

        grid-template-columns: repeat(4, 1fr);

    }

    .survey-benefits{

        grid-template-columns: repeat(3, 1fr);

    }

}


/* ==========================================================================
   19. RESPONSIVE — 900px
   ========================================================================== */

@media (max-width: 900px){

    .survey-two-column,
    .survey-output-card{

        grid-template-columns: 1fr;

    }

    .survey-section-content{

        padding: 10px 0;
    }

    .survey-process{

        grid-template-columns: repeat(2, 1fr);

    }

    .survey-industries{

        grid-template-columns: repeat(2, 1fr);

    }

    .survey-benefits{

        grid-template-columns: repeat(2, 1fr);

    }

}


/* ==========================================================================
   20. RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 600px){

    .survey-page{

        padding-top: 25px;

        padding-bottom: 45px;
    }


    .survey-hero{

        padding-top: 20px;
    }


    .survey-hero h1{

        font-size: 1.65rem;

        line-height: 1.75;
    }


    .survey-hero-text{

        font-size: .88rem;

        line-height: 2.1;
    }


    .survey-hero-actions{

        flex-direction: column;

        align-items: stretch;

        padding: 0 10px;
    }


    .survey-primary-btn,
    .survey-secondary-btn{

        width: 100%;
    }


    .survey-outsourcing,
    .survey-metrics-section,
    .survey-process-section,
    .survey-output-section,
    .survey-industries-section,
    .survey-sample-section,
    .survey-benefits-section,
    .survey-example-section{

        margin-top: 65px;

        margin-bottom: 65px;
    }


    .satpkg-section{

        margin: 65px 0;
    }


    .satpkg-grid{

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .satpkg-card{

        padding: 25px 21px;
    }


    .survey-service-box{

        grid-template-columns: 1fr;

        padding: 14px;
    }


    .survey-metrics{

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }


    .survey-metric{

        padding: 18px 10px;
    }


    .survey-process{

        grid-template-columns: 1fr;

    }


    .survey-industries{

        grid-template-columns: 1fr;

    }


    .survey-benefits{

        grid-template-columns: 1fr;

    }


    .survey-output-card{

        padding: 22px;

        gap: 25px;
    }


    .survey-dashboard-preview{

        padding: 18px;
    }


    .survey-example-card{

        grid-template-columns: 1fr;

        padding: 25px;

        gap: 18px;
    }


    .survey-example-icon{

        width: 55px;
        height: 55px;

        font-size: 20px;
    }


    .survey-example-card h2{

        font-size: 1.25rem;

    }


    .survey-pilot{

        margin: 70px 0;

        padding: 40px 20px;
    }


    .survey-pilot h2{

        font-size: 1.4rem;

        line-height: 1.8;
    }


    .survey-pilot-actions{

        flex-direction: column;

        align-items: stretch;
    }


    .survey-final-cta{

        margin-top: 70px;

        padding: 38px 20px;
    }


    .survey-final-cta h2{

        font-size: 1.3rem;

        line-height: 1.9;
    }


    .survey-final-btn{

        width: 100%;
    }

}


/* ==========================================================================
   21. VERY SMALL MOBILE
   ========================================================================== */

@media (max-width: 380px){

    .survey-metrics{

        grid-template-columns: 1fr;

    }

    .survey-page .container{

        padding-left: 15px;

        padding-right: 15px;
    }

}


/* ==========================================================================
   22. ACCESSIBILITY / REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce){

    .survey-page *,
    .survey-page *::before,
    .survey-page *::after{

        transition: none !important;

        animation: none !important;

    }

}

/* ==========================================================================
   بخش معرفی فرآیند رضایت‌سنجی
   ========================================================================== */

.survey-process-section {
    position: relative;
    margin: 90px 0 70px;
    padding: 55px 50px;
    background:
            radial-gradient(
                    circle at 90% 10%,
                    rgba(232,185,35,.08),
                    transparent 35%
            ),
            linear-gradient(
                    145deg,
                    rgba(255,255,255,.045),
                    rgba(255,255,255,.015)
            );
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 28px;
    overflow: hidden;
}

/* نور تزئینی گوشه */
.survey-process-section::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -100px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(232,185,35,.06);
    filter: blur(30px);
    pointer-events: none;
}

.survey-process-section > * {
    position: relative;
    z-index: 1;
}


/* برچسب بالای بخش */

.survey-process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 16px;
    border-radius: 30px;
    border: 1px solid rgba(232,185,35,.25);
    background: rgba(232,185,35,.07);
    color: #e8b923;
    font-size: .82rem;
    font-weight: 800;
}


/* عنوان */

.survey-process-section h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 850;
    line-height: 1.7;
}

.survey-process-section > p {
    max-width: 850px;
    margin: 0 0 35px;
    color: rgba(242,245,247,.68);
    font-size: .95rem;
    line-height: 2.2;
}


/* --------------------------------------------------------------------------
   سه مرحله فرآیند
   -------------------------------------------------------------------------- */

.survey-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}


.survey-process-step {
    position: relative;
    min-height: 145px;
    padding: 24px 22px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    transition:
            transform .3s ease,
            border-color .3s ease,
            background .3s ease,
            box-shadow .3s ease;
}

.survey-process-step:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.055);
    border-color: rgba(232,185,35,.28);
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}


/* شماره مرحله */

.survey-process-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 16px;

    border-radius: 11px;

    background: rgba(232,185,35,.1);
    border: 1px solid rgba(232,185,35,.2);

    color: #e8b923;
    font-size: .85rem;
    font-weight: 900;
}


.survey-process-step strong {
    display: block;
    margin-bottom: 7px;

    color: #fff;
    font-size: .95rem;
    font-weight: 800;
}


.survey-process-step span {
    display: block;

    color: rgba(242,245,247,.62);
    font-size: .82rem;
    line-height: 1.9;
}


/* ==========================================================================
   جلوگیری از افتادن متن کنار عکس
   ========================================================================== */

.survey-page .survey-process-section {
    width: 100%;
    clear: both;
    display: block;
}

.survey-page .survey-process-section img {
    display: block;
    max-width: 100%;
}


/* اگر تصویر قبل از این بخش قرار گرفته باشد، متن نباید کنار آن قرار بگیرد */

.survey-page .images {
    display: block;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}


/* ==========================================================================
   موبایل
   ========================================================================== */

@media (max-width: 900px) {

    .survey-process-section {
        padding: 40px 28px;
        margin: 65px 0 50px;
    }

    .survey-process-steps {
        grid-template-columns: 1fr;
    }

    .survey-process-section h2 {
        font-size: 1.5rem;
    }
}


@media (max-width: 600px) {

    .survey-process-section {
        padding: 32px 20px;
        border-radius: 22px;
    }

    .survey-process-section h2 {
        font-size: 1.35rem;
        line-height: 1.8;
    }

    .survey-process-section > p {
        font-size: .88rem;
        line-height: 2.1;
    }

    .survey-process-step {
        min-height: auto;
        padding: 20px;
    }
}

.survey-hero-image {
    width: 100%;
    text-align: center;
    margin: 35px 0 70px;
}

.survey-hero-image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.survey-industries-section {
    text-align: center !important;
}

.survey-industries-section > p {
    text-align: center !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* کارت‌های کسب‌وکار را راست‌چین نگه دار تا به هم نریزند */
.survey-industries,
.survey-industry {
    text-align: right !important;
}