/* ===========================================
   GOOGLE FONTS
=========================================== */

@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&family=Poppins:wght@300;400;500;600;700&display=swap');


/* ===========================================
   RESET
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F7F4EC;
    color:#111;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* ===========================================
   NAVBAR
=========================================== */


/* ===========================================
   NAV LINKS
=========================================== */


/* ===========================================
   CONTACT BUTTON
=========================================== */


/* ===========================================
   HERO
=========================================== */

.services-hero{

    padding:80px 0 100px;

}

.services-hero-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;

}

.services-hero-content{

    flex:1;

}

.services-hero-content h1{

    font-family:'Comic Neue',cursive;

    font-size:64px;

    line-height:1.12;

    font-weight:700;

    margin-bottom:28px;

    color:#111;

}

.services-hero-content p{

    font-size:17px;

    line-height:1.9;

    color:#555;

    max-width:560px;

    margin-bottom:40px;

}

.hero-btn{

    display:inline-block;

    background:#000;

    color:#fff;

    padding:18px 32px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    background:#222;

}

.services-hero-image{

    flex:1;

    display:flex;
    justify-content:flex-end;

}

.services-hero-image img{

    width:100%;
    max-width:560px;

    border-radius:4px;

}

/*=========================
SOLUTIONS SECTION
=========================*/

.solutions-section{
    padding:120px 0;
    background:#F7F3EB;
}

.solutions-title{
    font-family:'Sniglet', cursive;
    font-weight:400;
    font-size:46px;
    line-height:1.2;
    text-align:center;
    color:#111;
    margin-bottom:18px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.solutions-subtitle{
    text-align:center;
    font-size:16px;
    color:#666;
    max-width:680px;
    margin:0 auto 90px;
    line-height:1.8;
}

.solutions-list{
    display:flex;
    flex-direction:column;
    gap:110px;
}

/* EACH BLOCK — text + image side by side */

.solution-block{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* alternate direction for every other block */

.solution-block.reverse{
    flex-direction:row-reverse;
}

/* TEXT SIDE */

.solution-text{
    flex:1;
    max-width:420px;
}

.solution-text h3{
    font-family:'Comic Neue', sans-serif;
    font-weight:700;
    font-size:26px;
    color:#111;

    padding-left:16px;
    border-left:3px solid #111;

    margin-bottom:20px;
}

.solution-text p{
    font-size:15px;
    line-height:1.9;
    color:#666;
    margin-bottom:32px;
}

.solution-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:15px 26px;
    border-radius:8px;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.solution-btn:hover{
    background:var(--gold, #B89A5B);
}

/* IMAGE SIDE */

.solution-image{
    flex:1;
    max-width:440px;

    aspect-ratio:4 / 3;

    background:#fff;
    border:6px solid #fff;
    border-radius:16px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    overflow:hidden;
}

.solution-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .solutions-title{
        font-size:34px;
    }

    .solution-block,
    .solution-block.reverse{
        flex-direction:column;
        gap:40px;
    }

    .solution-text{
        max-width:100%;
        text-align:left;
    }

    .solution-image{
        max-width:100%;
    }

}

@media(max-width:600px){

    .solutions-section{
        padding:70px 0;
    }

    .solutions-title{
        font-size:28px;
    }

    .solutions-subtitle{
        font-size:14px;
        margin-bottom:50px;
    }

    .solutions-list{
        gap:60px;
    }

    .solution-text h3{
        font-size:22px;
    }

}
/*=========================
ONE PARTNER SECTION
=========================*/

.partner-section{
    padding:130px 0;
    background:#F7F3EB;
}

.partner-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:100px;
}

.partner-title{
    font-family:'Sniglet', cursive;
    font-weight:400;
    font-size:56px;
    line-height:1.2;
    color:#111;
    flex:1;
    max-width:520px;
}

.partner-title span{
    color:#B89A5B;
}

.partner-text{
    flex:1;
    max-width:640px;
    margin-top:10px;
}

.partner-text p{
    font-size:20px;
    line-height:1.7;
    color:#666;
    margin-bottom:32px;
}

.partner-text p:last-child{
    margin-bottom:0;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .partner-container{
        flex-direction:column;
        gap:40px;
    }

    .partner-title{
        font-size:40px;
        max-width:100%;
    }

    .partner-text{
        max-width:100%;
    }

    .partner-text p{
        font-size:17px;
    }

}

@media(max-width:600px){

    .partner-section{
        padding:70px 0;
    }

    .partner-title{
        font-size:30px;
    }

    .partner-text p{
        font-size:15px;
        margin-bottom:24px;
    }

}
/*=========================
INDUSTRIES SECTION
=========================*/

.industries-section{
    padding:120px 0;
    background:#F7F3EB;
}

.industries-title{
    font-family:'Sniglet', cursive;
    font-weight:400;
    font-size:40px;
    text-align:center;
    color:#111;
    margin-bottom:100px;
}

.industries-cluster{
    position:relative;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:0;

    max-width:1180px;
    margin:0 auto;
}

/* CONNECTOR LINES */

.industries-lines{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
    pointer-events:none;
}

.industries-lines path{
    fill:none;
    stroke:#DCD5C6;
    stroke-width:1.5;
}

.industries-col,
.industries-center{
    position:relative;
    z-index:1;
}

.industries-col{
    display:flex;
    flex-direction:column;
    gap:40px;
    flex-shrink:0;
}

.industries-col.left{
    align-items:flex-start;
}

.industries-col.right{
    align-items:flex-start;
}

.industry-pill{
    display:inline-flex;
    align-items:center;
    gap:14px;

    background:#fff;

    border:1px solid #eee7db;
    border-radius:14px;

    padding:16px 26px;

    font-size:15px;
    font-weight:600;
    color:#111;

    box-shadow:0 8px 18px rgba(0,0,0,.05);

    white-space:nowrap;

    transition:.3s;
}

.industry-pill img{
    width:20px;
    height:20px;
    object-fit:contain;
    display:block;
}

.industry-pill:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(0,0,0,.09);
}

/* CENTER CIRCLE */

.industries-center{
    flex-shrink:0;
    margin:0 60px;
}

.center-circle{
    width:150px;
    height:150px;

    border-radius:50%;

    background:#000;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    font-family:'Sniglet', cursive;
    font-weight:400;
    font-size:18px;

    border:4px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

/* EXTRA PILL BELOW */

.industries-extra{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:center;
    margin-top:50px;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .industries-cluster{
        max-width:100%;
    }

    .industries-col{
        gap:24px;
    }

    .industries-center{
        margin:0 20px;
    }

}

@media(max-width:768px){

    .industries-title{
        font-size:30px;
        margin-bottom:50px;
    }

    .industries-lines{
        display:none;
    }

   
    .industries-cluster{
        flex-direction:column;
        gap:30px;
    position:relative;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:0;

    max-width:1180px;
    margin:0 auto;

    padding-bottom:130px; /* gives the vertical line room to extend down to the pill */
}

.industries-extra{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:center;
    margin-top:0; /* line now handles the spacing via padding-bottom above */
}

    .industries-col.left,
    .industries-col.right{
        align-items:center;
    }

    .industries-center{
        margin:0;
    }

    .industry-pill{
        font-size:14px;
        padding:12px 22px;
    }

    .center-circle{
        width:120px;
        height:120px;
        font-size:16px;
        order:-1;
    }

}
/*=========================
FAQ — REDESIGNED
=========================*/

.faq-section{
    background:#F7F3EB;
    padding:120px 0;
}

.faq-section .container{
    width:90%;
    max-width:900px;
    margin:auto;
}

.faq-title{
    text-align:center;
    font-family:'Sniglet', cursive;
    font-weight:400;
    font-size:52px;
    color:#111;
    margin-bottom:12px;
}

.faq-subtitle{
    text-align:center;
    color:#777;
    font-size:16px;
    margin-bottom:60px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#fff;
    border-radius:20px;
    padding:8px 30px;
    border:1px solid #e7e1d8;

    box-shadow:0 4px 14px rgba(0,0,0,.03);

    transition:border-color .3s, box-shadow .3s;
}

.faq-item.active{
    border-color:#B89A5B;
    box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 0;

    cursor:pointer;
}

.faq-question h4{
    font-family:'Comic Neue', sans-serif;
    font-size:19px;
    font-weight:700;
    color:#111;
    margin:0;

    transition:color .3s;
}

.faq-item.active .faq-question h4{
    color:#B89A5B;
}

.faq-question button{
    width:40px;
    height:40px;
    flex-shrink:0;

    border-radius:50%;

    border:1px solid #e0dacd;
    background:#F7F3EB;

    font-size:18px;
    color:#111;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;
    transition:.3s;
}

.faq-question button::before{
    content:"+";
    display:block;
    transition:transform .3s;
}

.faq-item.active .faq-question button::before{
    content:"+";
    transform:rotate(45deg);
}

.faq-question button{
    font-size:0; /* hide raw JS-set text, use ::before instead */
}

.faq-item.active .faq-question button{
    background:#111;
    border-color:#111;
}

.faq-item.active .faq-question button::before{
    color:#fff;
}

.faq-question:hover button{
    border-color:#B89A5B;
}

/* ANSWER — smooth expand */

.faq-answer{
    max-height:0;
    overflow:hidden;

    color:#666;
    line-height:1.9;
    font-size:15px;
    max-width:100%;

    transition:max-height .4s ease, padding .4s ease;
}

.faq-item.active .faq-answer{
    max-height:400px;
    padding-bottom:26px;
}
/*=========================
NOT SURE CTA SECTION
=========================*/

.need-help-section{
    padding:100px 0;
    background:#F7F3EB;
}

.need-help-card{
    width:90%;
    max-width:1200px;
    margin:0 auto;

    background:#fff;
    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    overflow:hidden;

    box-shadow:0 25px 50px rgba(0,0,0,.1);
}

.need-help-text{
    flex:1;
    padding:60px 60px;
}

.need-help-text h2{
    font-family:'Sniglet', cursive;
    font-weight:400;
    font-size:34px;
    line-height:1.25;
    color:#111;
    margin-bottom:20px;
    max-width:380px;
}

.need-help-text p{
    font-size:15px;
    line-height:1.8;
    color:#666;
    max-width:400px;
    margin-bottom:34px;
}

.need-help-buttons{
    display:flex;
    gap:16px;
}

.need-help-btn{
    display:inline-block;
    padding:15px 26px;
    border-radius:8px;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    white-space:nowrap;
}

.need-help-btn.primary{
    background:#000;
    color:#fff;
}

.need-help-btn.primary:hover{
    background:#B89A5B;
}

.need-help-btn.secondary{
    border:1px solid #d8d8d8;
    color:#111;
    background:#fff;
}

.need-help-btn.secondary:hover{
    background:#f2f2f2;
}

.need-help-image{
    flex:1;
    max-width:600px;
    align-self:stretch;

    background:#e9e4d8;
}

.need-help-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:900px){

    .need-help-card{
        flex-direction:column;
    }

    .need-help-text{
        padding:50px 40px;
    }

    .need-help-text h2,
    .need-help-text p{
        max-width:100%;
    }

    .need-help-buttons{
        flex-wrap:wrap;
    }

    .need-help-image{
        max-width:100%;
        height:280px;
    }

}

@media(max-width:600px){

    .need-help-section{
        padding:60px 0;
    }

    .need-help-text{
        padding:40px 24px;
    }

    .need-help-text h2{
        font-size:26px;
    }

    .need-help-buttons{
        flex-direction:column;
        width:100%;
    }

    .need-help-btn{
        width:100%;
        text-align:center;
    }

}
