/* ==========================================
   SOLUTIONS HERO
========================================== */

.solutions-hero {
    padding: 180px 0 120px;
}

.solutions-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.solutions-hero__content h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin: 25px 0;
}

.solutions-hero__content h1 span {
    color: var(--color-primary);
}

.solutions-hero__content p {
    max-width: 650px;
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.solutions-hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.solutions-hero__visual {
    display: flex;
    justify-content: center;
}

.hero-dashboard {
    width: 420px;
    background: #151515;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.dashboard-header {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.dashboard-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: .7;
}

.hero-dashboard h3 {
    margin-bottom: 25px;
    color: var(--color-primary);
    font-size: 2.4rem;
}

.workflow-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    transition: .3s ease;
}

.workflow-step:hover {
    transform: translateX(8px);
    background: rgba(245,194,66,.10);
}

.workflow-step span:first-child {
    color: var(--color-text-light);
}

.workflow-step span:last-child {
    color: #3DDC84;
    font-weight: bold;
}

@media (max-width: 991px){

    .solutions-hero .container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .solutions-hero__buttons{
        justify-content:center;
    }

    .solutions-hero__content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-dashboard{
        width:100%;
        max-width:450px;
        margin-top:50px;
    }

}
/* ==========================================================
   SOLUTIONS OVERVIEW
========================================================== */

.solutions-overview{

    padding:120px 0;

}

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading h2{

    margin:20px 0;

    font-size:4.4rem;

    line-height:1.2;

}

.section-heading p{

    color:var(--color-text-light);

    font-size:1.8rem;

    line-height:1.8;

}

.solutions-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.solution-card{

    background:#141414;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px 35px;

    text-decoration:none;

    color:inherit;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.solution-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(245,194,66,.08),
        transparent 60%
    );

    opacity:0;

    transition:.35s;

}

.solution-card:hover{

    transform:translateY(-10px);

    border-color:rgba(245,194,66,.35);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.solution-card:hover::before{

    opacity:1;

}

.solution-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:rgba(245,194,66,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:3rem;

    margin-bottom:28px;

}

.solution-card h3{

    margin-bottom:16px;

    font-size:2.4rem;

}

.solution-card p{

    color:var(--color-text-light);

    line-height:1.8;

}


/* ==========================================================
   AI AUTOMATION
========================================================== */

.solution-section{
    padding:120px 0;
}

.solution-layout{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

.solution-content h2{
    font-size:4.8rem;
    line-height:1.2;
    margin:20px 0;
}

.solution-content p{
    font-size:1.8rem;
    line-height:1.8;
    color:var(--color-text-light);
    margin-bottom:35px;
}

.solution-features{
    list-style:none;
    padding:0;
    margin:0 0 40px;
}

.solution-features li{
    position:relative;
    padding-left:34px;
    margin-bottom:18px;
    color:var(--color-text);
}

.solution-features li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--color-primary);
    font-weight:700;
}

.solution-visual{
    display:flex;
    justify-content:center;
}

.automation-flow{
    width:100%;
    max-width:420px;
    background:#151515;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.flow-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.06);
    padding:18px 22px;
    border-radius:14px;
    text-align:center;
    transition:.3s ease;
}

.flow-box:hover{
    background:rgba(245,194,66,.10);
    transform:translateY(-4px);
}

.flow-arrow{
    text-align:center;
    font-size:2.4rem;
    color:var(--color-primary);
    padding:12px 0;
}
/* ==========================================================
   TABLET
========================================================== */

@media (max-width:991px){

    .solutions-hero .container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .solutions-hero__buttons{
        justify-content:center;
    }

    .solutions-hero__content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-dashboard{
        width:100%;
        max-width:450px;
        margin-top:50px;
    }

    .solutions-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .solution-layout{
        grid-template-columns:1fr;
        gap:60px;
    }

    .solution-layout.reverse{
        grid-template-columns:1fr;
    }

    .solution-content{
        text-align:center;
    }

    .solution-features{
        max-width:420px;
        margin:0 auto 40px;
        text-align:left;
    }

    .solution-visual{
        justify-content:center;
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:767px){

    .solutions-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:3.6rem;
    }

    .solution-content h2{
        font-size:3.6rem;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .marketing-dashboard{
        grid-template-columns:1fr;
    }

    .website-cards{
        grid-template-columns:1fr;
    }
    .cta-box{

    padding:60px 30px;

}

}
/* ==========================================================
   CHATBOT SECTION
========================================================== */

.solution-layout.reverse{

    grid-template-columns:.9fr 1.1fr;

}

.chatbot-preview{

    max-width:420px;

    margin:auto;

    background:#151515;

    border-radius:24px;

    padding:30px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.chat-header{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:25px;

    color:var(--color-text);

    font-weight:600;

}

.status-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#37d67a;

}

.chat-message{

    padding:14px 18px;

    border-radius:14px;

    margin-bottom:14px;

    font-size:1.5rem;

    line-height:1.6;

}

.chat-message.ai{

    background:rgba(245,194,66,.10);

}

.chat-message.user{

    background:rgba(255,255,255,.05);

    margin-left:50px;

}
/* ==========================================================
   CRM & WORKFLOW
========================================================== */

.crm-dashboard{

    width:100%;
    max-width:420px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.crm-card{

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px 24px;

    transition:.3s ease;

    font-size:1.7rem;

}

.crm-card:hover{

    transform:translateX(10px);

    border-color:rgba(245,194,66,.35);

    background:rgba(245,194,66,.08);

}
/* ==========================================================
   WEBSITE DEVELOPMENT
========================================================== */

.website-preview{

    max-width:430px;

    margin:auto;

    background:#151515;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.browser-top{

    display:flex;

    gap:8px;

    padding:15px 20px;

    background:#1b1b1b;

}

.browser-top span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:var(--color-primary);

    opacity:.7;

}

.website-screen{

    padding:25px;

}

.website-navbar{

    height:16px;

    width:70%;

    background:rgba(255,255,255,.12);

    border-radius:10px;

    margin-bottom:25px;

}

.website-hero{

    height:140px;

    border-radius:18px;

    background:rgba(245,194,66,.12);

    margin-bottom:25px;

}

.website-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

}

.website-cards div{

    height:70px;

    border-radius:14px;

    background:rgba(255,255,255,.06);

}
/* ==========================================================
   BRANDING
========================================================== */

.branding-preview{

    max-width:420px;

    margin:auto;

    padding:35px;

    background:#151515;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.brand-logo{

    width:100px;

    height:100px;

    margin:0 auto 30px;

    border-radius:20px;

    background:var(--color-primary);

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:3rem;

    font-weight:700;

}

.brand-colors{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-bottom:30px;

}

.brand-colors span{

    width:38px;

    height:38px;

    border-radius:50%;

}

.brand-colors span:nth-child(1){
    background:#f5c242;
}

.brand-colors span:nth-child(2){
    background:#ffffff;
}

.brand-colors span:nth-child(3){
    background:#444;
}

.brand-colors span:nth-child(4){
    background:#111;
}

.brand-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.brand-cards div{

    height:90px;

    border-radius:16px;

    background:rgba(255,255,255,.06);

}
/* ==========================================================
   DIGITAL MARKETING
========================================================== */

.marketing-dashboard{

    max-width:440px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.metric-card{

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:25px;

    transition:.3s;

}

.metric-card:hover{

    transform:translateY(-8px);

    border-color:rgba(245,194,66,.35);

}

.metric-card h4{

    margin-bottom:15px;

    color:var(--color-text-light);

    font-size:1.5rem;

}

.metric-card strong{

    font-size:2.8rem;

    color:var(--color-primary);

}
/* ==========================================================
   WHY THUNDERPIXELS
========================================================== */

.why-solutions{

    padding:120px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-card{

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:rgba(245,194,66,.35);

}

.why-number{

    width:65px;

    height:65px;

    border-radius:50%;

    background:rgba(245,194,66,.12);

    color:var(--color-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    font-weight:700;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:18px;

}

.why-card p{

    color:var(--color-text-light);

    line-height:1.8;

}
/* ==========================================================
   OUR PROCESS
========================================================== */

.solutions-process{

    padding:120px 0;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.process-card{

    text-align:center;

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px 30px;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-8px);

    border-color:rgba(245,194,66,.35);

}

.process-number{

    width:70px;

    height:70px;

    border-radius:50%;

    margin:0 auto 25px;

    background:rgba(245,194,66,.12);

    color:var(--color-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    font-weight:700;

}

.process-card h3{

    margin-bottom:18px;

}

.process-card p{

    color:var(--color-text-light);

    line-height:1.8;

}
/* ==========================================================
   FAQ
========================================================== */

.solutions-faq{

    padding:120px 0;

}

.faq-list{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    padding:25px 30px;

    font-size:2rem;

    font-weight:600;

    position:relative;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:30px;

    font-size:2.4rem;

    color:var(--color-primary);

    transition:.3s;

}

.faq-item[open] summary::after{

    transform:rotate(45deg);

}

.faq-item p{

    padding:0 30px 30px;

    color:var(--color-text-light);

    line-height:1.8;

}
/* ==========================================================
   FINAL CTA
========================================================== */

.solutions-cta{

    padding:120px 0 140px;

}

.cta-box{

    max-width:950px;

    margin:0 auto;

    padding:80px 60px;

    text-align:center;

    background:linear-gradient(
        135deg,
        rgba(245,194,66,.12),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(245,194,66,.25);

    border-radius:30px;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(245,194,66,.08);

    filter:blur(80px);

    top:-120px;

    right:-120px;

}

.cta-box>*{

    position:relative;

    z-index:2;

}

.cta-box h2{

    margin:25px auto;

    max-width:700px;

}

.cta-box p{

    max-width:680px;

    margin:0 auto 40px;

    color:var(--color-text-light);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}