﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg,#f8fafc 0%,#e2e8f0 100%);
}


/* ==========================
        CONTAINER
========================== */

.ftb-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}


/* ==========================
        HERO
========================== */

.ftb-hero {
    text-align: center;
    margin-bottom: 50px;
}


    .ftb-hero h1 {
        font-size: 52px;
        font-weight: bold;
        background: linear-gradient( 135deg, #08574c 0%, #2fa88d 50%, #08574c 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
    }


    .ftb-hero p {
        font-size: 20px;
        color: #64748b;
    }


/* ==========================
        INTRO
========================== */

.intro {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    margin-bottom: 50px;
}


    .intro h2 {
        font-size: 32px;
        background: linear-gradient( 135deg, #08574c, #2fa88d );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


    .intro p {
        color: #475569;
        font-size: 18px;
        line-height: 1.7;
    }


/* ==========================
        STEPS
========================== */


.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}


.step {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .3s;
    border-top: 5px solid #2fa88d;
}


    .step:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }


.icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    background: linear-gradient( 135deg, #08574c, #2fa88d );
    margin-bottom: 20px;
}



.step h3 {
    color: #0f172a;
    font-size: 22px;
    margin-bottom: 10px;
}


.step p {
    color: #64748b;
    line-height: 1.6;
}


/* ==========================
        BENEFITS
========================== */


.benefits {
    margin-top: 70px;
    text-align: center;
}



    .benefits h2 {
        font-size: 36px;
        margin-bottom: 35px;
        background: linear-gradient( 135deg, #08574c, #2fa88d );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }



.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}



.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    border-left: 6px solid #2fa88d;
    transition: .3s;
}



    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }



    .card h3 {
        color: #08574c;
        font-size: 22px;
    }



    .card p {
        color: #475569;
        line-height: 1.6;
    }



/* ==========================
        CTA
========================== */


.cta {
    margin-top: 70px;
    text-align: center;
    background: linear-gradient( 135deg, #08574c, #2fa88d );
    color: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}



    .cta h2 {
        font-size: 36px;
    }


    .cta p {
        color: white;
        opacity: .9;
        font-size: 18px;
    }



.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: white;
    color: #08574c;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s;
    margin-right: 10px;
}



    .btn:hover {
        transform: translateY(-4px);
    }



    .btn.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }



/* ==========================
        RESPONSIVE
========================== */


@media(max-width:900px) {


    .steps {
        grid-template-columns: repeat(2,1fr);
    }
}



@media(max-width:700px) {


    .ftb-container {
        padding: 30px 15px;
    }


    .ftb-hero h1 {
        font-size: 36px;
    }



    .ftb-hero p {
        font-size: 16px;
    }



    .steps {
        grid-template-columns: 1fr;
    }



    .step {
        padding: 25px;
    }



    .benefit-grid {
        grid-template-columns: 1fr;
    }



    .intro {
        padding: 25px;
    }



        .intro h2 {
            font-size: 26px;
        }



    .cta {
        padding: 35px 20px;
    }



        .cta h2 {
            font-size: 28px;
        }



    .btn {
        width: 100%;
        margin-right: 0;
        box-sizing: border-box;
    }
}
