/*==========================
    Announcement Bar
===========================*/

/* ==========================
   Announcement Bar
========================== */

.announcement-bar{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    height:48px;

    overflow:hidden;

    background:linear-gradient(90deg,#15803d,#22c55e);

    z-index:9999;

    display:flex;

    align-items:center;

}

.announcement-track{

    display:flex;

    width:max-content;

    animation:scrollText 18s linear infinite;

}

.announcement-item{

    white-space:nowrap;

    color:#fff;

    font-size:15px;

    font-weight:700;

    padding-right:80px;

    letter-spacing:.5px;

}

@keyframes scrollText{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

.announcement-bar{

    height:42px;

}

.announcement-item{

    font-size:13px;

    padding-right:40px;

}

}




/*==========================
    Announcement Bar end
===========================*/






html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 110px;
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 90px;
    }
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7faf8;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO */

.hero{

    padding:80px 0;

}

.hero .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

/* LEFT */

.hero-left{

    flex:1;

}

.offer{

    display:inline-block;

    background:#FFD54A;

    padding:12px 25px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:62px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:20px;

}

.hero h1 span{

    color:#0b9b58;

    display:block;

}

.hero p{

    color:#666;

    line-height:1.8;

    font-size:19px;

    margin-bottom:35px;

}

/* FEATURES */

.hero-features{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.feature{

    flex:1;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:18px;

    border-radius:15px;

    box-shadow:0 15px 30px rgba(0,0,0,.05);

}

.feature i{

    color:#0b9b58;

    font-size:28px;

}

.feature h4{

    font-size:17px;

}

.feature p{

    margin:0;

    font-size:14px;

}

/* BUTTONS */

.hero-btns{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.btn-primary{

    background:#0b9b58;

    color:#fff;

    padding:18px 35px;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

}

.btn-outline{

    border:2px solid #0b9b58;

    color:#0b9b58;

    padding:18px 35px;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

}

.trust{

    display:flex;

    gap:25px;

    color:#666;

    font-size:15px;

}

/* IMAGE */

.hero-right{

    flex:1;

    text-align:center;

}

.hero-right img{

    width:100%;

    max-width:470px;

    animation:float 4s ease infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:991px){

.hero .container{

    flex-direction:column;

}

.hero-left{

    order:1;

    text-align:center;

}

.hero-right{

    order:2;

    margin-top:40px;

}

.hero-features{

    flex-direction:column;

}

.hero-btns{

    justify-content:center;

}

.trust{

    justify-content:center;

    flex-wrap:wrap;

}

.hero h1{

    font-size:48px;

}

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

.hero{

    padding:50px 0;

}

.hero h1{

    font-size:40px;

}

.hero p{

    font-size:16px;

}

.hero-right img{

    max-width:280px;

}

.hero-btns{

    flex-direction:column;

}

.btn-primary,
.btn-outline{

    width:100%;

    text-align:center;

}

.trust{

    flex-direction:column;

    gap:10px;

    align-items:center;

}

.feature{

    text-align:left;

}

}

/* SMALL MOBILE */

@media(max-width:480px){

.hero h1{

    font-size:34px;

}

.offer{

    font-size:14px;

}

.hero-right img{

    max-width:230px;

}

}

/* price section start */

.offer-section{

    padding:90px 20px;

    background:linear-gradient(135deg,#ffffff,#f7fbf8);

    text-align:center;

}

.offer-section h2{

    font-size:52px;

    font-weight:800;

    margin:20px 0 50px;

}

.offer-section h2 span{

    color:#16a34a;

}

.offer-badge{

    background:#FFD54A;

    color:#000;

    padding:12px 28px;

    border-radius:40px;

    font-weight:600;

}

.price-grid{

    display:grid;

    grid-template-columns:1fr auto 1fr auto 1fr;

    align-items:center;

    max-width:900px;

    margin:auto;

    margin-bottom:45px;

}

.price-grid small{

    color:#777;

    display:block;

    margin-bottom:10px;

    font-size:17px;

}

.old-price{

    color:#999;

    text-decoration:line-through;

    font-size:42px;

}

.new-price{

    color:#16a34a;

    font-size:68px;

}

.save-price{

    color:#ef4444;

    font-size:48px;

}

.divider{

    width:1px;

    height:90px;

    background:#ddd;

}

.features{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin:50px 0;

    font-size:18px;

}

.offer-btn{

    display:inline-block;

    background:#16a34a;

    color:#fff;

    padding:22px 60px;

    border-radius:12px;

    text-decoration:none;

    font-size:24px;

    font-weight:700;

    transition:.3s;

}

.offer-btn:hover{

    transform:translateY(-3px);

}

.offer-section p{

    margin-top:30px;

    color:#777;

}

@media(max-width:768px){

.price-grid{

grid-template-columns:1fr;

gap:30px;

}

.divider{

display:none;

}

.offer-section h2{

font-size:34px;

}

.new-price{

font-size:48px;

}

.old-price{

font-size:28px;

}

.features{

font-size:15px;

gap:15px;

}

.offer-btn{

width:100%;

padding:18px;

font-size:20px;

}

}

/* price section end */

/* ==========================
      TEMPLATE SECTION
========================== */

.templates-section{

padding:110px 0;

background:#ffffff;

}

.templates-section .container{

max-width:1250px;

margin:auto;

padding:0 20px;

text-align:center;

}

.section-tag{

display:inline-block;

padding:10px 24px;

background:#ECFDF5;

color:#16A34A;

font-weight:600;

border-radius:50px;

margin-bottom:20px;

}

.templates-section h2{

font-size:52px;

font-weight:800;

margin-bottom:18px;

color:#1f2937;

}

.section-desc{

max-width:720px;

margin:auto;

font-size:18px;

line-height:1.8;

color:#6b7280;

margin-bottom:70px;

}

/* GRID */

.template-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

/* CARD */

.template-card{

background:#fff;

border:1px solid #e5e7eb;

border-radius:22px;

padding:35px;

text-align:left;

transition:.35s;

cursor:pointer;

}

.template-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.08);

border-color:#22c55e;

}

.icon{

width:70px;

height:70px;

border-radius:18px;

background:#ECFDF5;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:22px;

}

.template-card h3{

font-size:24px;

font-weight:700;

margin-bottom:8px;

color:#111827;

}

.template-card span{

color:#6b7280;

font-size:16px;

}

.more-card{

background:linear-gradient(135deg,#16A34A,#22C55E);

color:#fff;

}

.more-card .icon{

background:rgba(255,255,255,.18);

}

.more-card h3,

.more-card span{

color:#fff;

}

/* Tablet */

@media(max-width:992px){

.template-grid{

grid-template-columns:repeat(2,1fr);

}

.templates-section h2{

font-size:40px;

}

}

/* Mobile */

@media(max-width:768px){

.template-grid{

grid-template-columns:1fr;

}

.templates-section{

padding:70px 0;

}

.templates-section h2{

font-size:30px;

}

.section-desc{

font-size:16px;

margin-bottom:40px;

}

.template-card{

padding:28px;

}

}

/* ==========================
      TEMPLATE SECTION end
========================== */




/*=========================
Included Section
=========================*/

.included-section{

padding:110px 0;

background:#fff;

}

.included-section .container{

width:90%;

max-width:1300px;

margin:auto;

}

/* Heading */

.section-header{

text-align:center;

margin-bottom:70px;

}

.badge{

display:inline-block;

padding:10px 22px;

background:#E8FFF2;

color:#16A34A;

border-radius:50px;

font-weight:600;

margin-bottom:20px;

}

.section-header h2{

font-size:48px;

font-weight:800;

margin-bottom:15px;

}

.section-header p{

max-width:700px;

margin:auto;

font-size:18px;

color:#666;

line-height:1.8;

}

/* Featured */

.featured-card{

display:grid;

grid-template-columns:1fr 450px;

align-items:center;

background:#F8FAFC;

border-radius:30px;

padding:50px;

margin-bottom:45px;

overflow:hidden;

}

.featured-content span{

background:#16A34A;

color:#fff;

padding:8px 18px;

border-radius:40px;

font-size:13px;

display:inline-block;

margin-bottom:18px;

}

.featured-content h3{

font-size:42px;

margin-bottom:20px;

}

.featured-content p{

font-size:17px;

line-height:1.8;

color:#666;

margin-bottom:25px;

}

.featured-content ul{

padding:0;

margin:0 0 30px;

list-style:none;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.featured-content li{

font-weight:500;

}

.featured-content a{

text-decoration:none;

font-weight:700;

color:#16A34A;

}

.featured-image{

text-align:center;

}

.featured-image img{

width:320px;

transition:.4s;

filter:drop-shadow(0 25px 35px rgba(0,0,0,.15));

}

.featured-card:hover img{

transform:translateY(-10px);

}

/* Small Grid */

.mini-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.mini-card{

background:#fff;

border:1px solid #ECECEC;

border-radius:22px;

padding:30px;

text-align:center;

transition:.35s;

}

.mini-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.08);

border-color:#16A34A;

}

.mini-card img{

width:150px;

margin-bottom:20px;

}

.mini-card h4{

font-size:22px;

margin-bottom:10px;

}

.mini-card span{

color:#666;

}

/* Bottom */

.bottom-info{

margin-top:70px;

text-align:center;

padding:45px;

background:#F8FAFC;

border-radius:25px;

}

.bottom-info h3{

font-size:34px;

margin-bottom:15px;

}

.bottom-info p{

color:#666;

font-size:17px;

}

/* Responsive */

@media(max-width:991px){

.featured-card{

grid-template-columns:1fr;

text-align:center;

gap:40px;

}

.featured-content ul{

grid-template-columns:1fr;

}

.mini-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.section-header h2{

font-size:34px;

}

.featured-content h3{

font-size:30px;

}

.featured-card{

padding:30px;

}

.featured-image img{

width:220px;

}

.mini-grid{

grid-template-columns:1fr;

}

.bottom-info h3{

font-size:26px;

}

}

/*=========================
Included Section end 
=========================*/

/*=========================
price box Section start
=========================*/
/*=================================
        FINAL OFFER
==================================*/

.final-offer{

padding:110px 20px;

background:#f8fafc;

}

.offer-wrapper{

max-width:950px;

margin:auto;

background:#fff;

padding:70px;

border-radius:30px;

text-align:center;

box-shadow:0 30px 80px rgba(0,0,0,.08);

position:relative;

overflow:hidden;

}

.offer-wrapper::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:#16a34a10;

border-radius:50%;

right:-120px;

top:-120px;

}

.offer-label{

display:inline-block;

padding:12px 25px;

background:#FFD54A;

color:#000;

font-weight:600;

border-radius:50px;

margin-bottom:25px;

}

.offer-wrapper h2{

font-size:52px;

font-weight:800;

margin-bottom:18px;

line-height:1.2;

position:relative;

}

.offer-wrapper h2 span{

color:#16a34a;

}

.offer-wrapper p{

font-size:18px;

color:#666;

line-height:1.8;

max-width:700px;

margin:auto;

margin-bottom:50px;

position:relative;

}

.price-row{

display:flex;

justify-content:center;

align-items:center;

gap:50px;

margin-bottom:50px;

position:relative;

}

.price-box{

text-align:center;

}

.price-box small{

display:block;

color:#777;

margin-bottom:10px;

font-size:15px;

}

.price-box h3{

font-size:42px;

color:#9ca3af;

text-decoration:line-through;

}

.price-arrow{

font-size:50px;

color:#16a34a;

font-weight:bold;

}

.price-box.active h1{

font-size:74px;

color:#16a34a;

font-weight:800;

line-height:1;

}

.offer-features{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:18px;

margin-bottom:45px;

}

.offer-features span{

padding:12px 18px;

background:#f3f4f6;

border-radius:40px;

font-size:15px;

font-weight:500;

}

.offer-btn{

display:inline-block;

padding:22px 60px;

background:linear-gradient(90deg,#16a34a,#22c55e);

color:#fff;

font-size:22px;

font-weight:700;

text-decoration:none;

border-radius:14px;

transition:.3s;

box-shadow:0 20px 40px rgba(22,163,74,.25);

}

.offer-btn:hover{

transform:translateY(-4px);

}

.offer-note{

margin-top:25px;

color:#777;

font-size:15px;

}

/* Responsive */

@media(max-width:768px){

.offer-wrapper{

padding:35px 25px;

}

.offer-wrapper h2{

font-size:34px;

}

.price-row{

flex-direction:column;

gap:15px;

}

.price-arrow{

transform:rotate(90deg);

font-size:35px;

}

.price-box.active h1{

font-size:52px;

}

.offer-btn{

width:100%;

padding:18px;

font-size:20px;

}

.offer-features{

gap:10px;

}

.offer-features span{

font-size:14px;

}

}
/*=========================
price box Section end
=========================*/

/*=========================================
        WHY CHOOSE US SECTION
==========================================*/

.why-us{
    padding:100px 0;
    background:#f8fafc;
}

.why-us .container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*=============================
        Heading
==============================*/

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    background:#ECFDF5;
    color:#16A34A;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#111827;
    line-height:1.2;
    margin-bottom:18px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    font-size:18px;
    line-height:1.8;
}

/*=============================
        GRID
==============================*/

.feature-grid{
    display:grid;
    gap:30px;
    margin-bottom:30px;
}

.four-column{
    grid-template-columns:repeat(4,1fr);
}

.three-column{
    grid-template-columns:repeat(3,1fr);
    max-width:980px;
    margin:0 auto;
}

/*=============================
        CARD
==============================*/

.feature-card{

    background:#fff;

    border-radius:24px;

    padding:35px 30px;

    border:1px solid #eef2f7;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

    transition:.35s;

    position:relative;

    overflow:hidden;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#16A34A;

    box-shadow:0 20px 50px rgba(22,163,74,.15);

}

/* top green line */

.feature-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#16A34A,#4ADE80);

}

/*=============================
        ICON
==============================*/

.icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#ECFDF5;

    color:#16A34A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

    transition:.35s;

}

.feature-card:hover .icon{

    background:#16A34A;

    color:#fff;

    transform:rotate(10deg) scale(1.08);

}

/*=============================
        TEXT
==============================*/

.feature-card h3{

    font-size:25px;

    color:#111827;

    margin-bottom:15px;

    font-weight:700;

}

.feature-card p{

    color:#6B7280;

    line-height:1.8;

    font-size:16px;

    margin-bottom:25px;

}

/*=============================
        LIST
==============================*/

.feature-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.feature-card ul li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    font-size:15px;

    color:#374151;

}

.feature-card ul li::before{

    content:"✔";

    width:22px;

    height:22px;

    border-radius:50%;

    background:#DCFCE7;

    color:#16A34A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:bold;

}

/*=============================
      HOVER BUTTON EFFECT
==============================*/

.feature-card:hover h3{

    color:#16A34A;

}

/*=============================
      RESPONSIVE
==============================*/

@media(max-width:1200px){

.four-column{

grid-template-columns:repeat(2,1fr);

}

.three-column{

grid-template-columns:repeat(2,1fr);

max-width:100%;

}

}

@media(max-width:768px){

.why-us{

padding:70px 0;

}

.section-title{

margin-bottom:45px;

}

.section-title h2{

font-size:34px;

}

.section-title p{

font-size:16px;

}

.four-column{

grid-template-columns:1fr;

}

.three-column{

grid-template-columns:1fr;

}

.feature-card{

padding:28px;

}

.icon{

width:60px;

height:60px;

font-size:24px;

}

.feature-card h3{

font-size:22px;

}

}

@media(max-width:480px){

.section-title h2{

font-size:28px;

}

.section-title p{

font-size:15px;

}

.feature-card{

padding:24px;

}

.feature-card h3{

font-size:20px;

}

}

/*=================================
        Pricing Section
==================================*/

.pricing-section{

padding:100px 0;

background:#F8FAFC;

}

.pricing-section .container{

max-width:1200px;

margin:auto;

padding:0 20px;

}

/* Heading */

.pricing-heading{

text-align:center;

margin-bottom:60px;

}

.pricing-badge{

display:inline-block;

padding:10px 24px;

background:#ECFDF5;

color:#16A34A;

font-weight:600;

border-radius:50px;

margin-bottom:18px;

}

.pricing-heading h2{

font-size:48px;

font-weight:800;

color:#111827;

margin-bottom:12px;

}

.pricing-heading p{

color:#6B7280;

font-size:18px;

}

/* Card */

.pricing-card{

display:grid;

grid-template-columns:420px 1fr;

gap:60px;

background:#fff;

padding:50px;

border-radius:30px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

align-items:center;

}

/* Image */

.pricing-image{

text-align:center;

}

.pricing-image img{

width:280px;

transition:.4s;

filter:drop-shadow(0 20px 35px rgba(0,0,0,.18));

}

.pricing-card:hover img{

transform:translateY(-8px);

}

/* Price */

.price-box{

margin-bottom:35px;

}

.old-price{

display:inline-block;

text-decoration:line-through;

font-size:28px;

color:#9CA3AF;

margin-right:15px;

}

.discount{

background:#DCFCE7;

padding:8px 14px;

border-radius:40px;

color:#16A34A;

font-weight:600;

font-size:14px;

}

.price-box h3{

font-size:72px;

color:#16A34A;

margin:18px 0 5px;

font-weight:800;

}

.price-box p{

color:#6B7280;

}

/* Features */

.feature-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:40px;

}

.feature-item{

display:flex;

align-items:center;

gap:10px;

font-size:16px;

}

.feature-item i{

color:#16A34A;

font-size:22px;

}

/* Button */

.buy-btn{

display:block;

text-align:center;

padding:20px;

background:#16A34A;

color:#fff;

text-decoration:none;

font-size:22px;

font-weight:700;

border-radius:14px;

transition:.3s;

}

.buy-btn:hover{

background:#15803D;

transform:translateY(-3px);

}

/* Footer */

.secure{

text-align:center;

margin-top:20px;

color:#6B7280;

font-size:15px;

}

/* Responsive */

@media(max-width:991px){

.pricing-card{

grid-template-columns:1fr;

text-align:center;

}

.feature-list{

grid-template-columns:1fr;

}

.pricing-image{

order:-1;

}

}

@media(max-width:768px){

.pricing-heading h2{

font-size:34px;

}

.pricing-card{

padding:30px;

}

.pricing-image img{

width:200px;

}

.price-box h3{

font-size:56px;

}

.buy-btn{

font-size:18px;

padding:18px;

}

}

/*=================================
        Pricing Section end
==================================*/

/*====================================
        TESTIMONIAL SECTION
=====================================*/

/*==================================
        REVIEWS
===================================*/

.reviews{

padding:110px 0;

background:#f8fafc;

}

.reviews .container{

max-width:1200px;

margin:auto;

padding:0 20px;

}

/* Heading */

.reviews .section-title{

text-align:center;

margin-bottom:60px;

}

.reviews .section-badge{

display:inline-block;

padding:10px 22px;

background:#ECFDF5;

color:#16A34A;

border-radius:40px;

font-weight:600;

margin-bottom:20px;

}

.reviews h2{

font-size:48px;

font-weight:800;

color:#111827;

margin-bottom:15px;

}

.reviews p{

max-width:650px;

margin:auto;

font-size:18px;

color:#6B7280;

line-height:1.8;

}

/* Trustpilot */

.trustpilot-summary{

max-width:650px;

margin:0 auto 70px;

border-radius:24px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

background:#fff;

}

.trustpilot-summary img{

width:100%;

display:block;

}

/* Grid */

.review-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

margin-bottom:35px;

}

.review-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.review-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.review-card img{

width:100%;

display:block;

}

/* Bottom */

.bottom-review{

max-width:700px;

margin:40px auto;

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.bottom-review img{

width:100%;

display:block;

}

/* Footer */

.review-footer{

display:flex;

justify-content:center;

gap:40px;

flex-wrap:wrap;

margin-top:50px;

}

.review-footer div{

padding:15px 25px;

background:#fff;

border-radius:50px;

box-shadow:0 8px 25px rgba(0,0,0,.05);

font-weight:600;

}

/* Responsive */

@media(max-width:768px){

.reviews{

padding:70px 0;

}

.reviews h2{

font-size:34px;

}

.review-grid{

grid-template-columns:1fr;

gap:20px;

}

.review-footer{

gap:15px;

}

.review-footer div{

width:100%;

text-align:center;

}

}

/*====================================
        TESTIMONIAL SECTION END
=====================================*/



/*====================================
        BONUS SECTION
====================================*/

.bonus-section{

padding:100px 0;

background:linear-gradient(180deg,#ffffff,#f8fafc);

}

.bonus-header{

text-align:center;

margin-bottom:70px;

}

.bonus-badge{

display:inline-block;

padding:10px 22px;

background:#ECFDF5;

color:#16A34A;

border-radius:50px;

font-weight:600;

margin-bottom:20px;

}

.bonus-header h2{

font-size:48px;

font-weight:800;

line-height:1.2;

margin-bottom:18px;

}

.bonus-header span{

color:#16A34A;

}

.bonus-header p{

font-size:18px;

color:#6B7280;

}

.bonus-wrapper{

display:grid;

grid-template-columns:420px 1fr;

align-items:center;

gap:70px;

max-width:1200px;

margin:auto;

}

.bonus-image{

text-align:center;

}

.bonus-image img{

width:100%;

max-width:380px;

filter:drop-shadow(0 25px 40px rgba(0,0,0,.15));

transition:.4s;

}

.bonus-image:hover img{

transform:translateY(-8px);

}

.bonus-content ul{

list-style:none;

padding:0;

margin:0 0 35px;

}

.bonus-content li{

display:flex;

align-items:center;

gap:12px;

margin-bottom:18px;

font-size:18px;

font-weight:500;

}

.bonus-content li::before{

content:"✔";

width:28px;

height:28px;

background:#16A34A;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:14px;

}

.value-box{

background:#ECFDF5;

padding:25px;

border-radius:18px;

margin-bottom:30px;

}

.value-box h4{

color:#ef4444;

text-decoration:line-through;

margin-bottom:10px;

}

.value-box h2{

font-size:48px;

color:#16A34A;

font-weight:800;

}

.bonus-btn{

display:inline-block;

padding:18px 55px;

background:#16A34A;

color:#fff;

text-decoration:none;

border-radius:12px;

font-size:20px;

font-weight:700;

transition:.3s;

}

.bonus-btn:hover{

background:#15803D;

transform:translateY(-3px);

}

.bonus-note{

margin-top:20px;

color:#6B7280;

font-size:15px;

}

@media(max-width:991px){

.bonus-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.bonus-content li{

justify-content:center;

}

}

@media(max-width:768px){

.bonus-header h2{

font-size:34px;

}

.value-box h2{

font-size:38px;

}

.bonus-btn{

width:100%;

text-align:center;

}

}


/*====================================
        BONUS SECTION end
====================================*/


/*======================================
        GUARANTEE V2
=======================================*/

.guarantee-v2{

    padding:110px 0;

    background:linear-gradient(135deg,#064E3B,#14532D);

    position:relative;

    overflow:hidden;

}

.guarantee-v2::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-120px;

    top:-120px;

}

.guarantee-v2::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    right:-120px;

    bottom:-120px;

}

.guarantee-v2 .container{

    max-width:1200px;

    margin:auto;

    padding:0 20px;

    position:relative;

    z-index:2;

}

.guarantee-top{

    text-align:center;

    margin-bottom:50px;

}

.guarantee-tag{

    display:inline-block;

    background:#FACC15;

    color:#111;

    padding:10px 25px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;

    letter-spacing:1px;

}

.guarantee-top h2{

    font-size:56px;

    color:#fff;

    font-weight:800;

    margin-bottom:20px;

}

.guarantee-top p{

    max-width:720px;

    margin:auto;

    color:#d1fae5;

    font-size:18px;

    line-height:1.8;

}

.guarantee-seal{

    text-align:center;

    margin-bottom:60px;

}

.guarantee-seal img{

    width:220px;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));

    transition:.4s;

}

.guarantee-seal img:hover{

    transform:scale(1.08) rotate(-5deg);

}

.guarantee-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:50px;

}

.g-item{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.g-item:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.15);

}

.g-item i{

    font-size:38px;

    color:#FACC15;

    margin-bottom:18px;

}

.g-item h4{

    color:#fff;

    font-size:20px;

    margin:0;

}

.guarantee-bottom{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}

.trust-box{

    background:#fff;

    color:#14532D;

    padding:15px 24px;

    border-radius:50px;

    font-weight:700;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.guarantee-features{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.guarantee-v2{

padding:80px 0;

}

.guarantee-top h2{

font-size:36px;

}

.guarantee-top p{

font-size:16px;

}

.guarantee-seal img{

width:170px;

}

.guarantee-features{

grid-template-columns:1fr;

}

.g-item{

padding:28px;

}

.trust-box{

width:100%;

text-align:center;

}

}



/*====================================
            FAQ SECTION
====================================*/

.faq-section{

    padding:100px 0;

    background:linear-gradient(180deg,#f8fafc,#ffffff);

}

.faq-section .container{

    max-width:950px;

    margin:auto;

    padding:0 20px;

}

.faq-title{

    text-align:center;

    margin-bottom:60px;

}

.faq-tag{

    display:inline-block;

    padding:10px 24px;

    background:#dcfce7;

    color:#16a34a;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:20px;

}

.faq-title h2{

    font-size:52px;

    font-weight:800;

    color:#111827;

    margin-bottom:15px;

    line-height:1.2;

}

.faq-title h2 span{

    color:#16a34a;

}

.faq-title p{

    color:#6b7280;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/* FAQ ITEMS */

.faq-wrapper{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.faq-item{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid #eef2f7;

}

.faq-item:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.faq-item.active{

    border-left:6px solid #16a34a;

}

/* QUESTION */

.faq-question{

    width:100%;

    background:none;

    border:none;

    outline:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 30px;

    text-align:left;

}

.faq-question span{

    font-size:21px;

    font-weight:700;

    color:#111827;

    line-height:1.5;

}

.faq-question i{

    width:42px;

    height:42px;

    background:#ecfdf5;

    color:#16a34a;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    transition:.3s;

    flex-shrink:0;

}

.faq-item.active .faq-question i{

    background:#16a34a;

    color:#fff;

}

/* ANSWER */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 30px 28px;

    color:#6b7280;

    line-height:1.9;

    font-size:17px;

}

/* BOTTOM */

.faq-bottom{

    text-align:center;

    margin-top:70px;

}

.faq-bottom h3{

    font-size:34px;

    color:#111827;

    margin-bottom:10px;

}

.faq-bottom p{

    color:#6b7280;

    margin-bottom:30px;

}

.faq-bottom a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 50px;

    background:#16a34a;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

    box-shadow:0 15px 35px rgba(22,163,74,.25);

}

.faq-bottom a:hover{

    transform:translateY(-4px);

    background:#15803d;

}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:991px){

.faq-title h2{

font-size:42px;

}

}

@media(max-width:768px){

.faq-section{

padding:70px 0;

}

.faq-title{

margin-bottom:40px;

}

.faq-title h2{

font-size:32px;

}

.faq-title p{

font-size:16px;

}

.faq-question{

padding:22px;

}

.faq-question span{

font-size:17px;

padding-right:15px;

}

.faq-question i{

width:36px;

height:36px;

font-size:15px;

}

.faq-answer p{

padding:0 22px 22px;

font-size:15px;

}

.faq-bottom h3{

font-size:28px;

}

.faq-bottom a{

width:100%;

}

}




/*==================================
            FOOTER
==================================*/

.footer{

    background:#0F172A;

    padding:50px 0;

    color:#CBD5E1;

}

.footer .container{

    max-width:1100px;

    margin:auto;

    padding:0 20px;

    text-align:center;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:25px;

}

.footer-links a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.footer-links a:hover{

    color:#22C55E;

}

.footer-links span{

    color:#64748B;

}

.footer-disclaimer{

    max-width:900px;

    margin:auto;

    color:#94A3B8;

    font-size:14px;

    line-height:1.8;

}

.footer-copy{

    margin-top:25px;

    color:#64748B;

    font-size:14px;

}

@media(max-width:768px){

.footer{

padding:40px 20px;

}

.footer-links{

gap:10px;

font-size:14px;

}

.footer-disclaimer{

font-size:13px;

line-height:1.7;

}

}

/*======================================
     SECONDARY STICKY NAVBAR
======================================*/

.secondary-navbar {
    position: sticky;
    top: 48px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 998;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sub-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sub-nav-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
    text-decoration: none;
}

.sub-nav-logo {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    color: #16a34a;
    display: inline-block;
    vertical-align: middle;
}

.brand-accent {
    color: #16a34a;
}

.sub-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sub-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.sub-nav-link:hover,
.sub-nav-link.active {
    color: #16a34a;
}

.sub-nav-link.active {
    border-bottom-color: #16a34a;
}

.sub-nav-cta {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background-color: #0f172a;
    padding: 10px 22px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.sub-nav-cta:hover {
    background-color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.15);
}

@media (max-width: 991px) {
    .sub-nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .secondary-navbar {
        top: 42px;
        padding: 10px 0;
    }
    
    .sub-nav-brand {
        display: none;
    }
    
    .sub-nav-container {
        justify-content: space-between;
    }
    
    .sub-nav-links {
        flex: 1;
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .sub-nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .sub-nav-link {
        font-size: 13px;
        padding: 2px 0;
    }
    
    .sub-nav-cta {
        padding: 8px 16px;
        font-size: 11px;
        white-space: nowrap;
    }
}