/*==================================================
SERVICES HERO
==================================================*/

.services-hero{

    position:relative;

    overflow:hidden;
    padding:10px 0 50px;

    background:#ffffff;

    min-height:780px;

    display:flex;

    align-items:center;

}

/*==================================================
BACKGROUND
==================================================*/

.hero-grid{

    position:absolute;
    z-index:0;

    inset:0;

    background-image:

        linear-gradient(rgba(32,85,225,.045) 1px,transparent 1px),

        linear-gradient(90deg,rgba(32,85,225,.045) 1px,transparent 1px);

    background-size:78px 78px;

    pointer-events:none;

}

.hero-glow{

    position:absolute;

    left:-260px;
    z-index:1;
    top:50%;

    transform:translateY(-50%);

    width:900px;

    height:900px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(56,119,255,.16) 0%,

        rgba(56,119,255,.10) 32%,

        rgba(56,119,255,.04) 58%,

        transparent 78%);

    filter:blur(12px);

    pointer-events:none;

}

/*==================================================
CONTAINER
==================================================*/

.services-hero .container{
    width:100%;

    max-width:1300px;          /* was 1480 */

    padding:0 0; 

    margin:auto;
    position:relative;
    z-index:10;

}

/*==================================================
MAIN GRID
==================================================*/

.hero-layout{

    align-items:center;

    display:grid;

    grid-template-columns:900px 1fr;

    column-gap:40px;                /* was 70 */

    min-height:680px;

}

/*==================================================
LEFT
==================================================*/

.hero-left{

    width:800px;
}

/*==================================================
RIGHT
==================================================*/

.hero-right{

    position:relative;

    width:100%;

    height:640px;  
}
/*==================================================
LEFT CONTENT
==================================================*/

.hero-left{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

/*==================================================
BACKGROUND IMAGE
==================================================*/

.hero-bg-image{

    position:absolute;

    inset:0;
    margin-left: 100px;

    background-image:url("../images/services-hero-bg.webp"); /* your image */

    background-repeat:no-repeat;

    background-position:center center;

    background-size:cover;

    opacity:.9;

    pointer-events:none;

    z-index:2;

}

/*==================================================
BADGE
==================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    width:max-content;

    height:40px;

    padding:0 18px;

    margin-bottom:32px;

    border:1px solid #e8eef8;

    border-radius:999px;

    background:#ffffff;

    box-shadow:
        0 12px 28px rgba(15,23,42,.04);

}

.hero-badge i{

    font-size:14px;

    color:#356DFF;

}

.hero-badge span{

    font-weight:700;

    font-size:11px;

    letter-spacing:2.8px;

    color:#356DFF;

}

/*==================================================
HEADING
==================================================*/
 
.hero-left h1{

    margin:0;
    font-size:55px;
    line-height:1;
    letter-spacing:-2px;

    font-weight:800;
    color:#0F172A;

}

.hero-left h1 span{

    display:block;

    margin-top:8px;

    color:#356DFF;

}

/*==================================================
PARAGRAPH
==================================================*/

.hero-left>p{

    max-width:100%;
    width:620px;

    margin-top:24px;

    font-size:16px;

    line-height:1.8;
    font-weight:400;

    color:#64748B;

}
/*==================================================
BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:36px;

}

/*==================================================
PRIMARY BUTTON
==================================================*/

.hero-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    height:56px;

    min-width:270px;

    padding:0 32px;

    border-radius:18px;

    background:linear-gradient(135deg,#4E87FF 0%,#2E67FF 100%);

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    box-shadow:
        0 14px 32px rgba(46,103,255,.22);

    transition:.35s ease;

}

.hero-btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 22px 40px rgba(46,103,255,.30);

}

.hero-btn-primary i{

    font-size:15px;

    transition:.3s;

}

.hero-btn-primary:hover i{

    transform:translateX(4px);

}

/*==================================================
SECONDARY BUTTON
==================================================*/

.hero-btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:56px;

    min-width:180px;

    padding:0 34px;

    border-radius:18px;

    background:#ffffff;

    border:1px solid #E6ECF7;

    color:#111827;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    box-shadow:
        0 10px 26px rgba(15,23,42,.05);

    transition:.35s ease;

}

.hero-btn-secondary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 18px 36px rgba(15,23,42,.10);

}
/*==================================================
STATS
==================================================*/

.service-stats{

    display:flex;

    gap:24px;          /* was 20px */

    margin-top:40px; 


}

/*==================================================
CARD
==================================================*/

.service-stat-card{

    width:175px;
    height:195px;

    padding:26px 22px;

    border-radius:26px;

    background:#fff;

    border:1px solid #edf2fa;

    box-shadow:
        0 12px 35px rgba(15,23,42,.08);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.service-stat-card:hover{

    transform:translateY(-10px);

    border-color:#c7dbff;

    box-shadow:
        0 24px 60px rgba(37,99,235,.15);

}


/*==================================================
ICON
==================================================*/

.service-stat-icon{
    position:relative;

    width:52px;
    height:52px;

    min-width:52px;
    min-height:52px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
    flex-shrink:0;
}

.service-stat-icon i{
    position:relative;
    z-index:2;

    font-size:20px;
    color:#fff;
    line-height:1;
}

/*==================================================
ICON COLORS
==================================================*/

.service-stat-icon.blue{

    background:linear-gradient(135deg,#5B8DFF,#2F66FF);

}

.service-stat-icon.green{

    background:linear-gradient(135deg,#43D99D,#16C784);

}

.service-stat-icon.sky{

    background:linear-gradient(135deg,#77C3FF,#4B8FFF);

}

.service-stat-icon.purple{

    background:linear-gradient(135deg,#A56EFF,#7A46FF);

}

/*==================================================
CARD TITLE
==================================================*/

.service-stat-card h3{

    margin:0;

    font-size:25px;

    font-weight:800;

    margin-bottom:6px;

    color:#0f172a;

}

.service-stat-card p{

    margin:8px 0 0;

    font-size:14px;

    line-height:1.45;

    max-width:110px;

    text-align:center;

    color:#64748b;

}
.service-stat-icon{
    position:relative;
    overflow:hidden;
}

.service-stat-icon::before{
    content:"";

    position:absolute;
    left:10px;
    top:7px;

    width:32px;
    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    filter:blur(5px);
}
.hero-scroll{

    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    margin-top:0px;
    gap:10px;
    color:#356DFF;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}

.hero-scroll i{

    font-size:12px;

    transition:.3s;

}

.hero-scroll:hover i{

    transform:translateY(4px);

}












/*==================================================
SECTION
==================================================*/

.services-section{

    position:relative;

    overflow:hidden;

    padding:60px 0 60px;

    background:
    radial-gradient(circle at top,#edf5ff 0%,transparent 45%),
    #ffffff;

}

.services-section .container{

    margin:auto;

    max-width:1380px;
    padding:0 18px;

}

/*==================================================
HEADING
==================================================*/

.services-heading{

    max-width:820px;
    margin:0 auto 28px;

    text-align:center;

}

.services-heading h2{

    font-size:3rem;

    line-height:1;

    margin-bottom:10px;

    font-weight:800;

    color:#0f172a;
}

.services-heading h2 span{

    display:block;

    color:#2563eb;

}

.services-heading p{
    margin:auto;

    font-size:.92rem;

    line-height:1.7;

    max-width:610px;
    color:#64748b;
}

/*==========================================================
GRID
==========================================================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/*==========================================================
CARD
==========================================================*/

.service-card{
    position:relative;
    display:flex;
    flex-direction:column;

    padding:22px;
    border-radius:22px;

    background:#fff;
    border:1px solid #e6edf8;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.35s;
    overflow:hidden;

    min-height:240px; /* adjust if needed */
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 55px rgba(37,99,235,.15);
    border-color:#dbeafe;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#38bdf8);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

/*==========================================================
ICON
==========================================================*/

.service-top{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:20px;
}

.service-icon{
    width:68px;
    height:68px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;
    font-size:30px;

    margin-bottom:0;
    background:#eff6ff;
    color:#2563eb;
}

.service-card:nth-child(2) .service-icon{
    background:#ecfeff;
    color:#10b981;
}

.service-card:nth-child(3) .service-icon{
    background:#f3e8ff;
    color:#9333ea;
}

.service-card:nth-child(4) .service-icon{
    background:#fff7ed;
    color:#f97316;
}

.service-card:nth-child(5) .service-icon{
    background:#eef2ff;
    color:#2563eb;
}

.service-card:nth-child(6) .service-icon{
    background:#ecfeff;
    color:#0891b2;
}

/*==========================================================
TEXT
==========================================================*/

.service-content{
    flex:1;
}

.service-content h3{
    font-size:1.25rem;
    margin-bottom:8px;
    line-height:1.3;
    color:#0f172a;
    font-weight:700;
}

.service-content p{
    font-size:.96rem;
    margin-bottom:18px;
    margin:0;
    line-height:1.7;
    color:#64748b;
}

.service-bottom{
    margin-top:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

/*==========================================================
TAGS
==========================================================*/
.service-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:8px;

    flex:1;
}

.service-tags span{
    padding:6px 12px;
    background:#f1f5f9;
    border-radius:20px;

    font-size:.75rem;
    font-weight:600;

    color:#475569;
}


/*==========================================================
ARROW
==========================================================*/

.service-arrow{
    width:46px;
    height:46px;

    flex-shrink:0;

    border:2px solid #2563eb;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#2563eb;

    transition:.35s;
}

.service-card:hover .service-arrow{
    background:#2563eb;
    color:#fff;
    transform:translateX(5px);
}














/*==================================================
PROCESS SECTION
==================================================*/

.process-section{

    position:relative;

    overflow:hidden;

    padding:60px 0;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );

}

/*==================================================
TIMELINE
==================================================*/

.process-timeline{

    position:relative;

    display:grid;

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

    gap:28px;

    margin-top:40px;

}

/* center line */

.process-timeline::before{

    content:"";

    position:absolute;

    left:8%;
    right:8%;

    top:74px;

    height:4px;

    border-radius:999px;

    background:
        linear-gradient(
            90deg,
            #dbeafe,
            #60a5fa,
            #2563eb,
            #60a5fa,
            #dbeafe
        );

    z-index:1;

}

/*==================================================
PROCESS CARD
==================================================*/

.process-card{

    position:relative;

    z-index:2;

    text-align:center;

    padding:36px 24px 30px;

    background:#ffffff;

    border:1px solid #e7edf5;

    border-radius:28px;

    box-shadow:

        0 15px 40px rgba(15,23,42,.05);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .35s ease;

}

/*==================================================
STEP NUMBER
==================================================*/

.step-number{

    width:54px;
    height:54px;

    margin:0 auto 24px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:

        linear-gradient(
            135deg,
            #2563eb,
            #60a5fa
        );

    color:#ffffff;

    font-weight:800;

    font-size:1rem;

    box-shadow:

        0 12px 25px rgba(37,99,235,.18);

}

/*==================================================
ICON
==================================================*/

.step-icon{

    width:72px;
    height:72px;

    margin:0 auto 22px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:22px;

    background:

        linear-gradient(
            180deg,
            #ffffff,
            #edf5ff
        );

    border:1px solid #dbe8f6;

    transition:.35s;

}

.step-icon i{

    font-size:30px;

    color:#2563eb;

}

/*==================================================
TEXT
==================================================*/

.process-card h3{

    margin:0 0 14px;

    font-size:1.3rem;

    font-weight:800;

    color:#0f172a;

}

.process-card p{

    color:#64748b;

    line-height:1.8;

    font-size:.93rem;

}
/*==================================================
ACTIVE CARD
==================================================*/

.process-card.active{

    transform:translateY(-18px);

    border-color:#bfdbfe;

    box-shadow:
        0 30px 70px rgba(37,99,235,.12);

}

.process-card.active .step-icon{

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #60a5fa
        );

}

.process-card.active .step-icon i{

    color:#ffffff;

}

/*==================================================
CARD HOVER
==================================================*/

.process-card::after{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
        radial-gradient(circle,
            rgba(37,99,235,.10),
            transparent 70%);

    opacity:0;

    transition:.4s;

}

.process-card:hover{

    transform:translateY(-12px);

    border-color:#bfdbfe;

    box-shadow:
        0 28px 60px rgba(15,23,42,.10);

}

.process-card:hover::after{

    opacity:1;

}

.process-card:hover .step-icon{

    transform:
        rotate(-8deg)
        scale(1.08);

}

/*==================================================
FEATURE BAR
==================================================*/

.process-features{

    display:grid;

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

    gap:20px;

    margin-top:40px;

}

.process-features div{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:20px;

    border-radius:18px;

    background:#ffffff;

    border:1px solid #e7edf5;

    font-weight:600;

    color:#334155;

    box-shadow:
        0 10px 30px rgba(15,23,42,.05);

}

.process-features i{

    color:#2563eb;

    font-size:15px;

}

/*==================================================
BACKGROUND GLOW
==================================================*/

.process-section::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    top:-320px;
    left:-250px;

    border-radius:50%;

    background:
        radial-gradient(circle,
            rgba(37,99,235,.05),
            transparent 70%);

    pointer-events:none;

}

.process-section::after{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    bottom:-320px;
    right:-250px;

    border-radius:50%;

    background:
        radial-gradient(circle,
            rgba(96,165,250,.05),
            transparent 70%);

    pointer-events:none;

}

/*==================================================
REVEAL
==================================================*/

.process-card{

    opacity:0;

    animation:processReveal .7s ease forwards;

}

.process-card:nth-child(1){animation-delay:.1s;}
.process-card:nth-child(2){animation-delay:.2s;}
.process-card:nth-child(3){animation-delay:.3s;}
.process-card:nth-child(4){animation-delay:.4s;}
.process-card:nth-child(5){animation-delay:.5s;}

@keyframes processReveal{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .process-timeline{

        grid-template-columns:1fr;

        gap:22px;

    }

    .process-timeline::before{

        display:none;

    }

    .process-card.active{

        transform:none;

    }

    .process-features{

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

    }

}

@media(max-width:768px){

    .process-section{

        padding:90px 0;

    }

    .process-card{

        padding:30px;

    }

    .process-features{

        grid-template-columns:1fr;

    }

}









/*==================================================
INDUSTRIES SECTION
==================================================*/

.industries-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );

}

/*==================================================
BACKGROUND GLOW
==================================================*/

.industries-section::before,
.industries-section::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    filter:blur(90px);

    pointer-events:none;

    opacity:.6;

}

.industries-section::before{

    top:-320px;
    left:-260px;

    background:
        radial-gradient(circle,
            rgba(37,99,235,.06),
            transparent 70%);

}

.industries-section::after{

    bottom:-320px;
    right:-260px;

    background:
        radial-gradient(circle,
            rgba(96,165,250,.05),
            transparent 70%);

}

/*==================================================
CONTAINER
==================================================*/

.industries-section .container{

    position:relative;

    width:min(1400px,92%);

    margin:auto;

    z-index:2;

}



/*==================================================
GRID
==================================================*/

.industries-grid{

    display:grid;

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

    gap:22px;

}

/*==================================================
CARD
==================================================*/

.industry-card{

    position:relative;

    padding:28px 24px;

    border-radius:26px;

    background:#ffffff;

    border:1px solid #e7edf5;

    box-shadow:
        0 18px 45px rgba(15,23,42,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    overflow:hidden;

}

/* subtle top accent */

.industry-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #60a5fa
        );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

/* hover glow */

.industry-card::after{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
        radial-gradient(circle,
            rgba(37,99,235,.10),
            transparent 70%);

    opacity:0;

    transition:.4s;

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:#bfdbfe;

    box-shadow:
        0 28px 70px rgba(15,23,42,.10);

}

.industry-card:hover::before{

    transform:scaleX(1);

}

.industry-card:hover::after{

    opacity:1;

}

/*==================================================
ICON
==================================================*/

.industry-card i{

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:
        linear-gradient(180deg,#ffffff,#f1f6ff);

    border:1px solid #e7edf5;

    color:#2563eb;

    font-size:20px;

    margin-bottom:16px;

    transition:.35s;

}

.industry-card:hover i{

    transform:rotate(-8deg) scale(1.1);

    box-shadow:
        0 12px 25px rgba(37,99,235,.15);

}

/*==================================================
TEXT
==================================================*/

.industry-card h3{

    margin:0 0 10px;

    font-size:1.15rem;

    font-weight:800;

    color:#0f172a;

}

.industry-card p{

    margin:0;

    font-size:.92rem;

    line-height:1.7;

    color:#64748b;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .industries-grid{

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

    }

}

@media(max-width:768px){

    .industries-section{

        padding:90px 0;

    }

    .industries-grid{

        grid-template-columns:1fr;

    }

    .industry-card{

        padding:26px;

    }

}








/*==================================================
FAQ SECTION (PREMIUM UPGRADE)
==================================================*/

.faq-section{

    position:relative;

    padding:60px 0;

    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 55%);

    overflow:hidden;

}

/* soft ambient glow */

.faq-section::before,
.faq-section::after{

    content:"";

    position:absolute;

    width:800px;
    height:800px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.55;

    pointer-events:none;

}

.faq-section::before{

    top:-420px;
    left:-320px;

    background:radial-gradient(circle,#2563eb22,transparent 70%);

}

.faq-section::after{

    bottom:-420px;
    right:-320px;

    background:radial-gradient(circle,#60a5fa1a,transparent 70%);

}


/*==================================================
GRID (spacing upgrade)
==================================================*/

.faq-grid{

    display:grid;

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

    gap:22px;

    align-items:start;

}

/*==================================================
ITEM (glass premium card)
==================================================*/

.faq-item{

    position:relative;

    border-radius:22px;

    overflow:hidden;


    padding:0;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    border:1px solid rgba(226,232,240,.9);

    box-shadow:
        0 18px 45px rgba(15,23,42,.05),
        inset 0 1px 0 rgba(255,255,255,.8);

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        border-color .35s ease;

    overflow:hidden;

}

/* hover lift */

.faq-item:hover{

    transform:translateY(-6px);

    border-color:#c7dbff;

    box-shadow:
        0 28px 70px rgba(37,99,235,.10),
        0 10px 25px rgba(15,23,42,.06);

}

/* active state stronger */

.faq-item.active{

    border-color:#93c5fd;

    box-shadow:
        0 30px 80px rgba(37,99,235,.14);

}

/*==================================================
QUESTION
==================================================*/

.faq-question{

    width:100%;

    padding:22px 24px;

    background:transparent;

    border:none;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:18px;

    font-size:1.05rem;

    font-weight:800;

    color:#0f172a;

    text-align:left;

    transition:color .3s ease;

}

/* subtle hover shift */

.faq-item:hover .faq-question{

    color:#2563eb;

}

/*==================================================
PREMIUM ICON (animated morph)
==================================================*/

.faq-question i{

    width:38px;
    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:#eff6ff;

    position:relative;

    flex-shrink:0;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        background .35s ease;

}

/* plus lines */

.faq-question i::before,
.faq-question i::after{

    content:"";

    position:absolute;

    background:#2563eb;

    border-radius:2px;

    transition:all .35s ease;

}

/* horizontal */

.faq-question i::before{

    width:14px;
    height:2px;

}

/* vertical */

.faq-question i::after{

    width:2px;
    height:14px;

}

/* ACTIVE ICON TRANSFORM */

.faq-item.active .faq-question i{

    background:#2563eb;

    transform:rotate(90deg) scale(1.05);

}

/* convert to clean X feel */

.faq-item.active .faq-question i::before{

    background:#ffffff;

    transform:rotate(45deg);

}

.faq-item.active .faq-question i::after{

    background:#ffffff;

    transform:rotate(45deg);

    opacity:0;

}

/*==================================================
FAQ HEADER - TYPOGRAPHY MATRIX STYLE
==================================================*/

.faq-header{

    margin-bottom:70px;

}

/* 2-column asymmetric layout */

.faq-matrix{

    display:grid;

    grid-template-columns:1fr 1.6fr;

    gap:50px;

    align-items:end;

}

/*==================================================
LEFT BIG TYPO BLOCK
==================================================*/

.faq-type{

    position:relative;

}

/* small label */

.faq-small-label{

    font-size:.75rem;

    font-weight:900;

    letter-spacing:.25em;

    text-transform:uppercase;

    color:#2563eb;

    margin-bottom:18px;

}

/* huge stacked text */

.faq-big-text{

    font-size:clamp(2.6rem,5vw,4.2rem);

    font-weight:900;

    line-height:.95;

    letter-spacing:-0.06em;

    color:#0f172a;

}

/*==================================================
RIGHT TEXT BLOCK
==================================================*/

.faq-text{

    max-width:620px;

}

/* title */

.faq-text h2{

    font-size:1.6rem;

    font-weight:800;

    line-height:1.4;

    color:#0f172a;

}

/* paragraph */

.faq-text p{

    margin-top:14px;

    font-size:1.05rem;

    color:#64748b;

    line-height:1.9;

}

/*==================================================
ANSWER (smooth reveal)
==================================================*/

.faq-answer{

    max-height:0;

    opacity:0;

    overflow:hidden;

    transform:translateY(-8px);

    transition:
        max-height .5s cubic-bezier(.2,.8,.2,1),
        opacity .3s ease,
        transform .4s ease;

}

.faq-answer p{

    margin:0;
    max-width:90%;

    word-break:break-word;


    padding-bottom:22px;

    font-size:.96rem;

    line-height:1.85;

    color:#64748b;

}

/* open state */

.faq-item.active .faq-answer{

    max-height:260px;

    opacity:1;

    transform:translateY(0);

}

/*==================================================
MICRO INTERACTION (premium feel)
==================================================*/

/* subtle left highlight line */

.faq-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    height:100%;

    width:3px;

    background:linear-gradient(#2563eb,#60a5fa);

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s ease;

}

.faq-item:hover::before{

    transform:scaleY(1);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .faq-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .faq-section{

        padding:100px 0;

    }

    .faq-question{

        font-size:.98rem;

    }

}
.faq-answer{

    width:90%;
    margin-left: 20px;       /* Fixed length (px, em, rem) */


    min-width:0; /* IMPORTANT for grid overflow fix */

}








/*==================================================
CTA SECTION (REBUILT PREMIUM)
==================================================*/

.cta-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);

}

/* soft glow layers */

.cta-section::before,
.cta-section::after{

    content:"";

    position:absolute;

    width:900px;
    height:900px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.5;

    pointer-events:none;

}

.cta-section::before{

    top:-420px;
    left:-320px;

    background:radial-gradient(circle,#2563eb22,transparent 70%);

}

.cta-section::after{

    bottom:-420px;
    right:-320px;

    background:radial-gradient(circle,#60a5fa1a,transparent 70%);

}

/*==================================================
WRAPPER
==================================================*/

.cta-wrapper{

    display:grid;

    grid-template-columns:1.3fr 1fr;

    gap:50px;

    align-items:center;

}

/*==================================================
BADGE
==================================================*/

.cta-badge{

    display:inline-flex;

    padding:10px 18px;

    border-radius:999px;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:#2563eb;

    background:#f1f6ff;

    margin-bottom:18px;

}

/*==================================================
LEFT CONTENT
==================================================*/

.cta-left h2{

    font-size:clamp(2.6rem,4vw,3.8rem);

    font-weight:900;

    color:#0f172a;

    line-height:1.1;

}

.cta-left h2 span{

    color:#2563eb;

}

.cta-left p{

    margin-top:16px;

    font-size:1.05rem;

    color:#64748b;

    line-height:1.8;

    max-width:520px;

}

/*==================================================
BUTTONS
==================================================*/

.cta-actions{

    margin-top:26px;

    display:flex;

    gap:14px;

    flex-wrap:wrap;

}

.cta-primary{

    padding:14px 22px;

    border-radius:12px;

    background:#2563eb;

    color:#fff;

    font-weight:700;

    text-decoration:none;

    box-shadow:0 16px 40px rgba(37,99,235,.25);

    transition:.3s;

}

.cta-primary:hover{

    transform:translateY(-3px);

    background:#1d4ed8;

}

.cta-secondary{

    padding:14px 22px;

    border-radius:12px;

    background:#f1f5ff;

    color:#2563eb;

    font-weight:700;

    text-decoration:none;

    border:1px solid #dbeafe;

    transition:.3s;

}

.cta-secondary:hover{

    transform:translateY(-3px);

    background:#e0ecff;

}

/*==================================================
TRUST ROW
==================================================*/

.cta-trust{

    margin-top:22px;

    display:flex;

    gap:14px;

    flex-wrap:wrap;

    font-size:.85rem;

    color:#475569;

}

.cta-trust span{

    background:#ffffff;

    border:1px solid #e7edf5;

    padding:8px 12px;

    border-radius:999px;

}

/*==================================================
RIGHT PANEL
==================================================*/

.cta-panel{

    padding:30px;

    border-radius:24px;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    border:1px solid rgba(226,232,240,.9);

    box-shadow:0 30px 80px rgba(15,23,42,.08);

    position:relative;

    overflow:hidden;

}

/* top line */

.cta-panel::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

}

/*==================================================
RIGHT ITEMS
==================================================*/

.cta-panel h3{

    font-size:1.3rem;

    font-weight:900;

    color:#0f172a;

}

.cta-panel p{

    margin-top:8px;

    font-size:.95rem;

    color:#64748b;

}

/* list */

.cta-list{

    margin-top:18px;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.cta-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:10px 12px;

    border-radius:12px;

    background:#f8fbff;

    border:1px solid #eef2ff;

    transition:.3s;

}

.cta-item:hover{

    transform:translateX(6px);

    border-color:#bfdbfe;

    background:#eff6ff;

}

.cta-item i{

    color:#2563eb;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .cta-wrapper{

        grid-template-columns:1fr;

    }

}
/*==================================================
SECTION HEADING
==================================================*/

.section-heading{

    max-width:760px;

    margin:0 auto 55px;

    text-align:center;

}

.section-heading .section-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    margin-bottom:20px;

    border-radius:999px;

    background:#eef4ff;

    color:#2563eb;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.section-heading .section-badge i{

    font-size:7px;

}

.section-heading h2{

    padding:0 0 18px;

    font-size:clamp(2rem,4vw,3.3rem);

    font-weight:800;

    line-height:1.05;

    color:#0f172a;

}

.section-heading h2 span{

    display:block;
    color: #2563eb;
}

.section-heading p{

    max-width:680px;

    margin:0 auto;

    font-size:1.05rem;

    line-height:1.9;

    color:#64748b;

}