                /*====================== Hero section ========================*/

/* =========================
   ROOT COLORS
========================= */

:root{
    --bg: #ffffff;
    --text: #111827;
    --primary: #009970;
    --card: rgba(0,0,0,0.04);
    --border: rgba(0,0,0,0.08);
    --para: #475569;
}

body.dark{
    --bg: #041226;
    --text: #ffffff;
    --card: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.08);
    --para: #94a3b8;
}

/* =========================
   GLOBAL
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: var(--bg);
    color: var(--text);
    font-family: Arial, sans-serif;
    transition: 0.3s ease;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0;

    background:
    radial-gradient(circle at top right, rgba(0,208,156,0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0,208,156,0.08), transparent 30%),
    var(--bg);

    overflow: hidden;
}

/* =========================
   WRAPPER
========================= */

.hero-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-content{
    flex: 1;
    text-align: left;
}

.hero-badge{
    display: inline-block;
    padding: 12px 22px;
    border-radius: 40px;
    background: rgba(0,208,156,0.12);
    border: 1px solid rgba(0,208,156,0.2);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 28px;
}

.hero-content h1{
    font-size: 50px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 25px;
}

.hero-content h1 span{
    color: var(--primary);
}

.hero-content p{
    max-width: 560px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--para);
    margin-bottom: 40px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.btn-primary,
.btn-secondary{
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary{
    background: var(--primary);
    color: black;
    box-shadow: 0 0 25px rgba(0,208,156,0.25);
}

.btn-primary:hover{
    transform: translateY(-4px);
}

.btn-secondary{
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover{
    background: var(--primary);
    color: white;
}

/* =========================
   USERS TEXT
========================= */

.hero-users{
    font-size: 16px;
    color: var(--para);
}

.hero-users span{
    color: var(--primary);
    font-weight: 700;
}

/* =========================
   RIGHT IMAGE
========================= */

.hero-image{
    flex: 1;
    text-align: center;
}

.hero-image img{
    width: 100%;
    max-width: 560px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);

    /* FLOATING REMOVED */
    animation: none;
}

/* =========================
   TABLET
========================= */

@media(max-width: 992px){

    .hero{
        padding: 80px 0;
    }

    .hero-wrapper{
        flex-direction: column;
        text-align: left;
    }

    .hero-content{
        width: 100%;
    }

    .hero-content h1{
        font-size: 52px;
    }

    .hero-buttons{
        flex-wrap: wrap;
    }

    .hero-image{
        width: 100%;
    }

    .hero-image img{
        max-width: 650px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width: 768px){

    .hero{
        min-height: auto;
        padding: 70px 0;
    }

    .hero-wrapper{
        gap: 50px;
    }

    .hero-content h1{
        font-size: 42px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary{
        width: 100%;
        text-align: center;
    }

    .hero-image img{
        max-width: 100%;
        border-radius: 22px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width: 500px){

    .hero{
        padding: 60px 0;
    }

    .hero-content h1{
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content p{
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-badge{
        font-size: 12px;
        padding: 10px 16px;
    }

    .hero-users{
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary{
        padding: 15px 20px;
        font-size: 15px;
    }

}

                            /*==================== STATS SECTION===========================*/

.stats-section{
    padding:90px 0;
    background:var(--bg);
}

/* GRID */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.stat-card{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px 25px;

    text-align:center;

    transition:.3s ease;

    position:relative;

    overflow:hidden;
}

.stat-card::before{
    content:'';

    position:absolute;

    top:-60px;
    right:-60px;

    width:140px;
    height:140px;

    background:rgba(0,208,156,.08);

    border-radius:50%;
}

.stat-card:hover{
    transform:translateY(-8px);

    border-color:rgba(0,208,156,.35);

    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

/* ICON */

.stat-icon{
    width:70px;
    height:70px;

    margin:auto auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    border-radius:18px;

    background:rgba(0,208,156,.12);

    position:relative;
    z-index:2;
}

/* NUMBER */

.stat-card h3{
    font-size:48px;

    color:var(--primary);

    font-weight:900;

    margin-bottom:12px;

    position:relative;
    z-index:2;
}

/* TEXT */

.stat-card p{
    color:var(--para);

    font-size:16px;

    line-height:1.7;

    position:relative;
    z-index:2;
}

/* DARK MODE */

body.dark .stat-card{
    box-shadow:none;
}

/* TABLET */

@media(max-width:900px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat-card h3{
        font-size:40px;
    }

}

/* MOBILE */

@media(max-width:600px){

    .stats-section{
        padding:70px 0;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-card{
        padding:30px 20px;
    }

    .stat-card h3{
        font-size:36px;
    }

}

            /*======================== TOOLS SECTION ==========================*/
            

.tools-section{
    width: 100%;
    padding: 50px 0;

    background:
    radial-gradient(circle at top right, rgba(0,208,156,0.08), transparent 30%),
    var(--bg);

    transition: 0.3s ease;
}

/* =========================
   ROOT COLORS
========================= */

:root{
    --bg: #ffffff;
    --text: #111827;
    --primary: #009970;
    --card: rgba(0,0,0,0.04);
    --border: rgba(0,0,0,0.08);
    --para: #64748b;
}

body.dark{
    --bg: #041226;
    --text: #ffffff;
    --card: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.08);
    --para: #94a3b8;
}

/* =========================
   CONTAINER
========================= */

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   SECTION TOP
========================= */

.section-top{
    text-align: center;
    margin-bottom: 70px;
}

.section-badge{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(0,208,156,0.12);
    border: 1px solid rgba(0,208,156,0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-top h2{
    font-size: 58px;
    color: var(--text);
    margin-bottom: 18px;
    font-weight: 900;
}

.section-top h2 span{
    color: var(--primary);
}

.section-top p{
    color: var(--para);
    font-size: 17px;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

/* =========================
   GRID
========================= */

.tools-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* =========================
   TOOL CARD
========================= */

.tool-card{
    position: relative;
    overflow: hidden;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 26px;

    padding: 35px 28px;

    transition: 0.35s ease;
}

.tool-card::before{
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    background: rgba(0,208,156,0.08);
    border-radius: 50%;
}

.tool-card:hover{
    transform: translateY(-10px);
    border-color: rgba(0,208,156,0.35);
}

/* =========================
   ICON
========================= */

.tool-icon{
    width: 70px;
    height: 70px;
    border-radius: 18px;

    background: rgba(0,208,156,0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    margin-bottom: 28px;

    position: relative;
    z-index: 2;
}

/* =========================
   TEXT
========================= */

.tool-card h3{
    font-size: 28px;
    color: var(--text);
    margin-bottom: 18px;
    font-weight: 800;

    position: relative;
    z-index: 2;
}

.tool-card p{
    color: var(--para);
    line-height: 1.8;
    font-size: 16px;

    margin-bottom: 30px;

    position: relative;
    z-index: 2;
}

/* =========================
   BUTTON
========================= */

.tool-btn{
    display: inline-block;
    text-decoration: none;

    padding: 14px 24px;
    border-radius: 12px;

    background: transparent;
    border: 1px solid var(--border);

    color: var(--text);
    font-weight: 700;

    transition: 0.3s ease;

    position: relative;
    z-index: 2;
}

.tool-btn:hover{
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* =========================
   LAPTOP
========================= */

@media(max-width: 1100px){

    .tools-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   TABLET
========================= */

@media(max-width: 768px){

    .tools-section{
        padding: 80px 0;
    }

    .section-top h2{
        font-size: 42px;
    }

    .tools-grid{
        grid-template-columns: 1fr;
    }

    .tool-card{
        padding: 30px 24px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width: 500px){

    .section-top{
        margin-bottom: 50px;
    }

    .section-top h2{
        font-size: 34px;
    }

    .section-top p{
        font-size: 15px;
    }

    .tool-card h3{
        font-size: 24px;
    }

    .tool-card p{
        font-size: 15px;
    }

    .tool-btn{
        width: 100%;
        text-align: center;
    }

}


                /*=========================== TESTIMONIALS =============================*/
                

.testimonials-section{
    padding:100px 0;
    background:var(--bg);
}

.testimonial-top{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.testimonial-badge{
    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#d7f5eb;

    border:1px solid #9ee7cf;

    color:#006b4f;

    font-size:14px;
    font-weight:700;

    margin-bottom:20px;
}

.testimonial-top h2{
    font-size:58px;
    color:var(--text);
    margin-bottom:18px;
    font-weight:900;
}

.testimonial-top h2 span{
    color:var(--primary);
}

.testimonial-top p{
    color:var(--para);
    font-size:18px;
    line-height:1.8;
}

/* GRID */

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.testimonial-card{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    transition:.3s ease;

    position:relative;

    overflow:hidden;
}

.testimonial-card::before{
    content:"";

    position:absolute;

    top:-60px;
    right:-60px;

    width:140px;
    height:140px;

    border-radius:50%;

    background:rgba(0,208,156,.08);
}

.testimonial-card:hover{
    transform:translateY(-8px);

    border-color:rgba(0,208,156,.35);

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stars{
    font-size:22px;
    margin-bottom:20px;
}

.review{
    color:var(--para);

    line-height:1.9;

    margin-bottom:30px;

    position:relative;
    z-index:2;
}

.user{
    display:flex;
    align-items:center;
    gap:15px;

    position:relative;
    z-index:2;
}

.avatar{
    width:55px;
    height:55px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #00e8b0
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-weight:800;
}

.user h4{
    color:var(--text);
    margin-bottom:4px;
}

.user span{
    color:var(--para);
    font-size:14px;
}

/* DARK MODE */

body.dark .testimonial-card{
    box-shadow:none;
}

/* TABLET */

@media(max-width:900px){

    .testimonial-top h2{
        font-size:44px;
    }

    .testimonials-grid{
        grid-template-columns:1fr 1fr;
    }

}

/* MOBILE */

@media(max-width:600px){

    .testimonials-section{
        padding:70px 0;
    }

    .testimonial-top{
        margin-bottom:50px;
    }

    .testimonial-top h2{
        font-size:34px;
    }

    .testimonial-top p{
        font-size:15px;
    }

    .testimonials-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        padding:28px 22px;
    }

}

        /*=======================   BLOG SECTION ==================================*/
        

.blog-section{
    width: 100%;
    padding: 110px 0;

    background:
    radial-gradient(circle at bottom right, rgba(0,208,156,0.08), transparent 30%),
    var(--bg);

    transition: 0.3s ease;
}

/* =========================
   ROOT COLORS
========================= */

:root{
    --bg: #ffffff;
    --text: #111827;
    --primary: #009970;
    --card: rgba(0,0,0,0.04);
    --border: rgba(0,0,0,0.08);
    --para: #64748b;
}

body.dark{
    --bg: #041226;
    --text: #ffffff;
    --card: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.08);
    --para: #94a3b8;
}

/* =========================
   CONTAINER
========================= */

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   SECTION TOP
========================= */

.blog-top{
    text-align: center;
    margin-bottom: 70px;
}

.blog-badge{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(0,208,156,0.12);
    border: 1px solid rgba(0,208,156,0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-top h2{
    font-size: 58px;
    color: var(--text);
    margin-bottom: 18px;
    font-weight: 900;
}

.blog-top h2 span{
    color: var(--primary);
}

.blog-top p{
    color: var(--para);
    font-size: 17px;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

/* =========================
   GRID
========================= */

.blog-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================
   BLOG CARD
========================= */

.blog-card{
    overflow: hidden;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 26px;

    transition: 0.35s ease;
}

.blog-card:hover{
    transform: translateY(-10px);
    border-color: rgba(0,208,156,0.35);
}

/* =========================
   IMAGE
========================= */

.blog-image{
    overflow: hidden;
}

.blog-image img{
    width: 100%;
    height: 240px;
    object-fit: cover;

    transition: 0.4s ease;
}

.blog-card:hover .blog-image img{
    transform: scale(1.08);
}

/* =========================
   CONTENT
========================= */

.blog-content{
    padding: 28px;
}

/* =========================
   META
========================= */

.blog-meta{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-bottom: 18px;

    color: var(--para);
    font-size: 14px;
}

/* =========================
   TITLE
========================= */

.blog-content h3{
    font-size: 30px;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 18px;
    font-weight: 800;
}

/* =========================
   TEXT
========================= */

.blog-content p{
    color: var(--para);
    line-height: 1.8;
    font-size: 16px;

    margin-bottom: 28px;
}

/* =========================
   BUTTON
========================= */

.read-btn{
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    transition: 0.3s ease;
}

.read-btn:hover{
    letter-spacing: 1px;
}

/* =========================
   LAPTOP
========================= */

@media(max-width: 1100px){

    .blog-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   TABLET
========================= */

@media(max-width: 768px){

    .blog-section{
        padding: 80px 0;
    }

    .blog-top h2{
        font-size: 42px;
    }

    .blog-grid{
        grid-template-columns: 1fr;
    }

    .blog-content{
        padding: 24px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width: 500px){

    .blog-top{
        margin-bottom: 50px;
    }

    .blog-top h2{
        font-size: 34px;
    }

    .blog-top p{
        font-size: 15px;
    }

    .blog-content h3{
        font-size: 24px;
    }

    .blog-content p{
        font-size: 15px;
    }

    .blog-image img{
        height: 220px;
    }

}

                /*=====================================faq-section====================================*/

.faq-section{
    width: 100%;
    padding: 110px 0;

    background:
    radial-gradient(circle at top left, rgba(0,208,156,0.08), transparent 30%),
    var(--bg);

    transition: 0.3s ease;
}

/* =========================
   ROOT COLORS
========================= */

:root{
    --bg: #ffffff;
    --text: #111827;
    --primary: #009970;
    --card: rgba(0,0,0,0.04);
    --border: rgba(0,0,0,0.08);
    --para: #64748b;
}

body.dark{
    --bg: #041226;
    --text: #ffffff;
    --card: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.08);
    --para: #94a3b8;
}

/* =========================
   CONTAINER
========================= */

.container{
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   SECTION TOP
========================= */

.faq-top{
    text-align: center;
    margin-bottom: 70px;
}

.faq-badge{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(0,208,156,0.12);
    border: 1px solid rgba(0,208,156,0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.faq-top h2{
    font-size: 58px;
    color: var(--text);
    margin-bottom: 18px;
    font-weight: 900;
}

.faq-top h2 span{
    color: var(--primary);
}

.faq-top p{
    color: var(--para);
    font-size: 17px;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

/* =========================
   FAQ WRAPPER
========================= */

.faq-wrapper{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* =========================
   FAQ ITEM
========================= */

.faq-item{
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;

    transition: 0.3s ease;
}

.faq-item.active{
    border-color: rgba(0,208,156,0.4);
}

/* =========================
   QUESTION
========================= */

.faq-question{
    padding: 26px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
}

.faq-question h3{
    font-size: 24px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.5;
}

.faq-icon{
    font-size: 28px;
    color: var(--primary);
    transition: 0.3s ease;
}

/* =========================
   ANSWER
========================= */

.faq-answer{
    max-height: 0;
    overflow: hidden;

    transition: 0.4s ease;
}

.faq-answer p{
    padding: 0 30px 28px;

    color: var(--para);
    line-height: 1.9;
    font-size: 16px;
}

/* =========================
   ACTIVE FAQ
========================= */

.faq-item.active .faq-answer{
    max-height: 300px;
}

.faq-item.active .faq-icon{
    transform: rotate(45deg);
}

/* =========================
   TABLET
========================= */

@media(max-width: 768px){

    .faq-section{
        padding: 80px 0;
    }

    .faq-top h2{
        font-size: 42px;
    }

    .faq-question{
        padding: 22px 24px;
    }

    .faq-question h3{
        font-size: 20px;
    }

    .faq-answer p{
        padding: 0 24px 24px;
        font-size: 15px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width: 500px){

    .faq-top{
        margin-bottom: 50px;
    }

    .faq-top h2{
        font-size: 34px;
    }

    .faq-top p{
        font-size: 15px;
    }

    .faq-question{
        padding: 20px;
    }

    .faq-question h3{
        font-size: 17px;
        padding-right: 15px;
    }

    .faq-answer p{
        padding: 0 20px 22px;
        font-size: 14px;
        line-height: 1.8;
    }

    .faq-icon{
        font-size: 24px;
    }

}

                     /*==================================CTA SECTION==================================*/
    
    
.cta-section{
    padding:100px 0;
    background:var(--bg);
}

.cta-box{

    background:
    linear-gradient(
        135deg,
        rgba(0,208,156,.12),
        rgba(0,208,156,.04)
    );

    border:1px solid rgba(0,208,156,.18);

    border-radius:32px;

    padding:70px 50px;

    text-align:center;

    position:relative;

    overflow:hidden;
}

/* DECORATION */

.cta-box::before{
    content:"";

    position:absolute;

    top:-100px;
    right:-100px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(0,208,156,.10);
}

.cta-box::after{
    content:"";

    position:absolute;

    bottom:-120px;
    left:-120px;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(0,208,156,.06);
}

/* CONTENT */

.cta-content{
    position:relative;
    z-index:2;
}

.cta-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(0,208,156,.12);

    border:1px solid rgba(0,208,156,.20);

    color:var(--primary);

    font-size:14px;
    font-weight:700;

    margin-bottom:25px;
}

.cta-content h2{

    font-size:62px;

    line-height:1.15;

    color:var(--text);

    margin-bottom:20px;

    font-weight:900;
}

.cta-content h2 span{
    color:var(--primary);
}

.cta-content p{

    max-width:760px;

    margin:0 auto 35px;

    color:var(--para);

    font-size:20px;

    line-height:1.8;
}

/* BUTTONS */

.cta-buttons{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.cta-primary{

    text-decoration:none;

    background:var(--primary);

    color:#fff;

    padding:16px 32px;

    border-radius:14px;

    font-weight:700;

    transition:.3s ease;
}

.cta-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,208,156,.25);
}

.cta-secondary{

    text-decoration:none;

    border:1px solid var(--border);

    color:var(--text);

    padding:16px 32px;

    border-radius:14px;

    font-weight:700;

    transition:.3s ease;

    background:var(--card);
}

.cta-secondary:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);
}

/* =========================
   DARK MODE
========================= */

body.dark .cta-box{

    background:
    linear-gradient(
        135deg,
        rgba(0,208,156,.10),
        rgba(255,255,255,.02)
    );

    border-color:rgba(0,208,156,.20);
}

/* =========================
   TABLET
========================= */

@media(max-width:900px){

    .cta-box{
        padding:60px 35px;
    }

    .cta-content h2{
        font-size:48px;
    }

    .cta-content p{
        font-size:18px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .cta-section{
        padding:70px 0;
    }

    .cta-box{
        padding:45px 25px;
        border-radius:24px;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-primary,
    .cta-secondary{
        width:100%;
        text-align:center;
    }

}