
/* =========================
   PAGE
========================= */

body{
    background:#f5f7fb;
}



/* HERO */

.hero-section{
    background:linear-gradient(135deg,#0d6efd,#4f46e5,#198754);
    border-radius:28px;
    padding:70px 30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-180px;
    right:-120px;
}

.hero-title{
    font-size:3rem;
    font-weight:900;
    line-height:1.1;
}

.hero-subtitle{
    max-width:760px;
    margin:auto;
    opacity:.92;
    font-size:1.08rem;
}

.hero-badges{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-top:25px;
}

.hero-badges span{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    padding:10px 16px;
    border-radius:999px;
    backdrop-filter:blur(10px);
    font-weight:700;
}

/* =========================
   TRUST BOX
========================= */

.trust-box{
    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-top:-40px;
    position:relative;
    z-index:10;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.trust-box h3{
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
    color:#0f172a;
}

.trust-box p{
    color:#64748b;
    margin:0;
    line-height:1.8;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:900;
    margin-bottom:15px;
    color:#0f172a;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

/* =========================
   PRICING
========================= */

.pricing-wrapper{
    padding:80px 0;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:35px;
}

.pricing-card{
    background:#fff;
    border-radius:30px;
    padding:40px 35px;
    position:relative;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    border:1px solid #eef2f7;
}

.pricing-card:hover{
    transform:translateY(-8px);
}

.featured-plan{
    border:3px solid #2563eb;
    transform:scale(1.03);
}

.enterprise-plan{
    border:3px solid #16a34a;
    background:
    linear-gradient(180deg,#ffffff,#f0fdf4);
}

.popular-badge{
    position:absolute;
    top:18px;
    right:-42px;
    background:linear-gradient(135deg,#16a34a,#2563eb);
    color:#fff;
    padding:10px 55px;
    font-size:13px;
    font-weight:800;
    transform:rotate(35deg);
}

.enterprise-badge{
    position:absolute;
    top:18px;
    right:-42px;
    background:linear-gradient(135deg,#f59e0b,#ea580c);
    color:#fff;
    padding:10px 55px;
    font-size:13px;
    font-weight:800;
    transform:rotate(35deg);
}

.plan-name{
    font-size:30px;
    font-weight:900;
    margin-bottom:12px;
    color:#0f172a;
}

.plan-desc{
    color:#64748b;
    margin-bottom:25px;
}

.price{
    font-size:46px;
    font-weight:900;
    color:#2563eb;
    line-height:1;
}

.enterprise-plan .price{
    color:#16a34a;
}

.price span{
    font-size:20px;
    color:#64748b;
    font-weight:600;
}

.price-small{
    color:#94a3b8;
    margin-top:10px;
    margin-bottom:30px;
}

.features{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.features li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#334155;
    font-size:16px;
}

.features li i{
    width:30px;
    height:30px;
    border-radius:10px;
    background:#dcfce7;
    color:#16a34a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.plan-btn{
    width:100%;
    border:none;
    border-radius:16px;
    padding:16px;
    font-weight:800;
    font-size:16px;
    text-decoration:none;
    display:inline-block;
    text-align:center;
    background:linear-gradient(135deg,#16a34a,#2563eb);
    color:#fff;
    transition:.3s;
}

.plan-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(37,99,235,.25);
    color:#fff;
}

/* =========================
   EXTRA SERVICES
========================= */

.extra-services{
    margin-top:100px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-icon{
    width:70px;
    height:70px;
    margin:auto auto 20px;
    border-radius:20px;
    background:linear-gradient(135deg,#16a34a,#2563eb);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.service-card h4{
    font-weight:800;
    margin-bottom:12px;
    color:#0f172a;
}

.service-card p{
    color:#64748b;
    line-height:1.7;
}

/* =========================================
   CTA SECTION
========================================= */

.cta-section{

    margin-top:100px;

    background:
    linear-gradient(
        135deg,
        rgba(2,6,23,.90),
        rgba(37,99,235,.88)
    ),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600')
    center/cover;

    padding:90px 40px;

    border-radius:36px;

    color:#fff;

    text-align:center;

    position:relative;

    overflow:hidden;
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.cta-section::before{

    content:'';

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-120px;

    right:-120px;
}

/* =========================================
   BADGE
========================================= */

.cta-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.1);

    border:1px solid rgba(255,255,255,.15);

    margin-bottom:25px;

    font-weight:700;

    backdrop-filter:blur(10px);
}

/* =========================================
   TITLE
========================================= */

.cta-section h2{

    font-size:48px;

    font-weight:900;

    margin-bottom:20px;

    position:relative;

    z-index:2;
}

/* =========================================
   DESCRIPTION
========================================= */

.cta-section p{

    max-width:760px;

    margin:auto;

    line-height:1.9;

    opacity:.92;

    margin-bottom:35px;

    font-size:18px;

    position:relative;

    z-index:2;
}

/* =========================================
   FEATURES
========================================= */

.cta-features{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:40px;

    position:relative;

    z-index:2;
}

.cta-feature{

    background:rgba(255,255,255,.1);

    border:1px solid rgba(255,255,255,.12);

    padding:12px 18px;

    border-radius:16px;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    backdrop-filter:blur(10px);
}

.cta-feature i{

    color:#25D366;
}

/* =========================================
   BUTTONS
========================================= */

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;
}

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    border-radius:18px;

    text-decoration:none;

    font-weight:800;

    font-size:17px;

    transition:.3s ease;
}

/* WhatsApp */

.whatsapp-btn{

    background:#25D366;

    color:#fff;
}

.whatsapp-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(37,211,102,.35);
}

/* Contact */

.contact-btn{

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    backdrop-filter:blur(10px);
}

.contact-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    background:rgba(255,255,255,.18);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .cta-section{

        padding:70px 25px;
    }

    .cta-section h2{

        font-size:34px;
    }

    .cta-section p{

        font-size:16px;
    }

    .cta-btn{

        width:100%;

        justify-content:center;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .section-title h2,
    .banner-content h2,
    .cta-section h2{
        font-size:32px;
    }

    .price{
        font-size:46px;
    }

    .featured-plan{
        transform:none;
    }

}

.pricing-card:hover .plan-btn{
    background: linear-gradient(135deg,#2563eb,#16a34a);
}

/*banner*/
/* =========================================
   BANNER ADS GRID
========================================= */

.banner-ads-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:40px;
}

/* =========================================
   BANNER CARD
========================================= */

.banner-ad-card{

    background:#fff;

    border-radius:28px;

    padding:40px 35px;

    position:relative;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

    border:1px solid #eef2f7;
}

.banner-ad-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(37,99,235,.12);
}

/* =========================================
   ICON
========================================= */

.banner-ad-icon{

    width:75px;

    height:75px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#fff;

    margin-bottom:25px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #16a34a
    );
}

/* =========================================
   TITLE
========================================= */

.banner-ad-card h3{

    font-size:28px;

    font-weight:900;

    margin-bottom:18px;

    color:#0f172a;
}

/* =========================================
   PRICE
========================================= */

.banner-ad-price{

    font-size:42px;

    font-weight:900;

    color:#2563eb;

    margin-bottom:18px;
}

/* =========================================
   TEXT
========================================= */

.banner-ad-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;
}

/* =========================================
   FEATURES
========================================= */

.banner-ad-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;
}

.banner-ad-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

    color:#334155;

    font-weight:500;
}

.banner-ad-card ul li i{

    width:28px;

    height:28px;

    border-radius:10px;

    background:#dcfce7;

    color:#16a34a;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;
}

/* =========================================
   BUTTON
========================================= */

.banner-ad-btn{

    width:100%;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #16a34a,
        #2563eb
    );

    color:#fff;

    font-weight:800;

    text-decoration:none;

    transition:.3s ease;
}

.banner-ad-btn:hover{

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

/* =========================================
   BADGE
========================================= */

.banner-ad-badge{

    position:absolute;

    top:18px;

    right:-38px;

    background:linear-gradient(
        135deg,
        #f59e0b,
        #ea580c
    );

    color:#fff;

    padding:10px 50px;

    transform:rotate(35deg);

    font-size:12px;

    font-weight:900;
}

/* =========================================
   SPECIAL COLORS
========================================= */

.homepage-banner{

    border:3px solid #2563eb;
}

.sidebar-banner{

    border:3px solid #16a34a;
}

.inside-banner{

    border:3px solid #f59e0b;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .banner-ad-card{

        padding:30px 25px;
    }

    .banner-ad-card h3{

        font-size:24px;
    }

    .banner-ad-price{

        font-size:36px;
    }
}