/* =====================================
   GOOGLE FONT
===================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    transition:.3s ease;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =====================================
   THEME
===================================== */
:root{

    --primary:#ff5a1f;

    --bg:#ffffff;
    --card:#ffffff;

    --text:#111827;
    --text-light:#64748b;

    --border:#e5e7eb;

}

body.dark-mode{

    --bg:#030712;
    --card:#111827;

    --text:#ffffff;
    --text-light:#94a3b8;

    --border:#1e293b;
}

body{

    background:var(--bg);
    color:var(--text);

    transition:.3s ease;
}


.container{

    width:92%;

    max-width:1400px;

    margin:auto;
}

/* SECTION */

section{

    position:relative;

    padding:90px 0;
}

/* PREMIUM BG */

body::before{

    content:"";

    position:fixed;

    width:700px;
    height:700px;

    background:
    radial-gradient(
    circle,
    rgba(255,90,31,.15),
    transparent
    );

    right:-300px;
    top:-300px;

    filter:blur(140px);

    z-index:-1;
}

body::after{

    content:"";

    position:fixed;

    width:700px;
    height:700px;

    background:
    radial-gradient(
    circle,
    rgba(37,99,235,.15),
    transparent
    );

    left:-300px;
    bottom:-300px;

    filter:blur(140px);

    z-index:-1;
}
body{
    font-family:'Manrope',sans-serif;
}

/* =====================================
   BUTTONS
===================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 32px;
    border-radius:14px;
    background: linear-gradient( 135deg, #ff5a1f, #ff7b4d);
    color:#fff;
    font-weight:700;
    transition:.3s;
}
.btn:hover{
    transform:translateY(-4px);
    box-shadow: 0 15px 40px rgba(255,90,31,.35);
}
.btn-outline{
    background:transparent;
    border:1px solid var(--primary);
    color:var(--primary);
}
.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}
/* =====================================
   SECTION TITLE
===================================== */
.section-title{
    text-align:center;
    margin-bottom:70px;
}
.section-title span{
    color:var(--primary);
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}
.section-title h2{
    font-size:clamp(32px,5vw,58px);
    margin-top:15px;
}
.section-title p{
    max-width:700px;
    margin:auto;
    color:var(--text-light);
    margin-top:15px;
}
/* =====================================
   CARD
===================================== */

.service-card,.why-card,.stat-box,.testimonial,.faq-card,.audit-card,.timeline-content{
    background:rgba(255,255,255,.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
    transition:.4s;
}
.service-card:hover,.why-card:hover,.stat-box:hover,.testimonial:hover{
    transform: translateY(-8px);
    border-color: var(--primary);
}
/* =====================================
   HEADER
===================================== */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background: rgba(3,7,18,.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition:.3s;
}
.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:85px;
}
/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}
.logo img{
    height:65px;
    width:auto;
}
/* NAV */
.nav ul{
    display:flex;
    align-items:center;
    gap:35px;
}
.nav ul li a{
    color:var(--text);
    font-size:15px;
    font-weight:600;
    position:relative;
    transition:.3s;
}
.nav ul li a:hover{
    color:var(--primary);
}
.nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}
.nav ul li a:hover::after{
    width:100%;
}
/* RIGHT SIDE */
.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}
/* THEME BUTTON */
.theme-toggle{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:var(--card);
    color:var(--text);
    cursor:pointer;
    font-size:18px;
    border:1px solid var(--border);
}
/* MOBILE BUTTON */
.menu-toggle{
    display:none;
    width:50px;
    height:50px;
    border:none;
    background:var(--primary);
    color:#fff;
    border-radius:12px;
    cursor:pointer;
    font-size:22px;
}
/* =====================================
   PREMIUM HERO SECTION
===================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:180px 0 100px;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.10) 0%,
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(59,130,246,.12) 0%,
    transparent 40%),

    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 55%,
        #ffffff 100%
    );
}

/* Glow Effects */

.hero::before{
    content:'';
    position:absolute;

    width:700px;
    height:700px;

    left:-300px;
    top:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(37,99,235,.12) 0%,
        rgba(37,99,235,0) 70%
    );

    pointer-events:none;
}

.hero::after{
    content:'';
    position:absolute;

    width:650px;
    height:650px;

    right:-250px;
    bottom:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(96,165,250,.15) 0%,
        rgba(96,165,250,0) 70%
    );

    pointer-events:none;
}

/* Container */

.hero .container{
    position:relative;
    z-index:2;
}

/* Grid */

.hero-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:80px;
    align-items:center;
}

/* Badge */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    background:#eff6ff;

    border:1px solid #dbeafe;

    border-radius:999px;

    color:#2563eb;

    font-size:14px;
    font-weight:700;

    letter-spacing:.5px;
}

/* Heading */

.hero h1{
    font-family:'Manrope',sans-serif;

    font-size:clamp(46px,6vw,78px);

    line-height:1.05;

    font-weight:900;

    letter-spacing:-2px;

    color:#0f172a;

    margin:28px 0;
}

.hero h1 span{
    background:
    linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Description */

.hero p{
    font-size:18px;

    line-height:1.9;

    color:#64748b;

    max-width:650px;

    margin-bottom:35px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:15px;
}

.hero-buttons .btn{
    padding:16px 32px;

    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #60a5fa
    );

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;
}

.hero-buttons .btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 20px 40px
    rgba(37,99,235,.20);
}

.hero-buttons .btn-outline{

    background:#fff;

    color:#0f172a;

    border:1px solid #e2e8f0;
}

.hero-buttons .btn-outline:hover{
    border-color:#2563eb;
    color:#2563eb;
}

/* Trust Tags */

.hero-trust{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:35px;
}

.hero-trust span{

    padding:12px 18px;

    border-radius:50px;

    background:#fff;

    border:1px solid #e2e8f0;

    color:#475569;

    font-size:14px;

    font-weight:600;

    transition:.3s;
}

.hero-trust span:hover{

    border-color:#2563eb;

    color:#2563eb;

    transform:translateY(-2px);
}

/* Dashboard Card */

.audit-card{

    position:relative;

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    border:1px solid #e2e8f0;

    border-radius:32px;

    padding:40px;

    box-shadow:
    0 30px 80px rgba(15,23,42,.08);
}

/* Performance Circle */

.score-circle{

    width:190px;
    height:190px;

    margin:0 auto;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #60a5fa
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:52px;

    font-weight:900;

    box-shadow:
    0 25px 60px
    rgba(37,99,235,.25);
}

.audit-card h3{

    text-align:center;

    margin:25px 0;

    font-size:26px;

    color:#0f172a;

    font-weight:800;
}

/* List */

.audit-card ul{
    list-style:none;
    margin:0;
    padding:0;
}

.audit-card ul li{

    padding:16px 0;

    border-bottom:
    1px solid #edf2f7;

    color:#475569;

    font-size:15px;

    font-weight:500;
}

.audit-card ul li:last-child{
    border-bottom:none;
}

/* Responsive */

@media(max-width:1100px){

    .hero-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .hero{
        padding:140px 0 80px;
    }

    .audit-card{
        max-width:600px;
        margin:auto;
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }

    .score-circle{
        width:150px;
        height:150px;
        font-size:42px;
    }

    .audit-card{
        padding:30px;
    }
}
/* ==========================================
   HOW SUPERPAGESPEEDY WORKS
========================================== */

.process{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
    radial-gradient(circle at top right,
    rgba(37,99,235,.08) 0%,
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(96,165,250,.08) 0%,
    transparent 35%),

    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 50%,
    #ffffff 100%);
}

.process .container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* Section Heading */

.process .section-title{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.process .section-title span{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:#eff6ff;

    border:1px solid #dbeafe;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;
}

.process .section-title h2{

    font-size:58px;

    line-height:1.1;

    font-weight:800;

    color:#0f172a;

    margin:25px 0;

    letter-spacing:-1px;
}

.process .section-title p{

    color:#64748b;

    font-size:18px;

    line-height:1.9;
}

/* Timeline */

.timeline{

    max-width:1100px;

    margin:0 auto;

    position:relative;
}

.timeline::before{

    content:'';

    position:absolute;

    left:36px;

    top:0;

    width:2px;

    height:100%;

    background:
    linear-gradient(
    to bottom,
    #2563eb,
    #dbeafe);
}

.timeline-item{

    display:flex;

    gap:35px;

    margin-bottom:35px;

    position:relative;
}

.timeline-item:last-child{
    margin-bottom:0;
}

/* Number */

.timeline-number{

    width:72px;
    height:72px;

    min-width:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    color:#fff;

    font-size:18px;

    font-weight:800;

    box-shadow:
    0 15px 35px rgba(37,99,235,.20);

    position:relative;

    z-index:2;
}

/* Content Card */

.timeline-content{

    flex:1;

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:24px;

    padding:35px;

    transition:.35s ease;

    box-shadow:
    0 10px 30px rgba(15,23,42,.04);
}

.timeline-content:hover{

    transform:translateY(-6px);

    border-color:#2563eb;

    box-shadow:
    0 25px 60px rgba(37,99,235,.08);
}

.timeline-content h3{

    font-size:24px;

    color:#0f172a;

    margin-bottom:15px;

    font-weight:700;
}

.timeline-content p{

    color:#64748b;

    line-height:1.9;

    font-size:15px;
}

/* Responsive */

@media(max-width:1024px){

    .process .section-title h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .process{
        padding:80px 0;
    }

    .process .section-title h2{
        font-size:34px;
    }

    .timeline::before{
        left:24px;
    }

    .timeline-item{
        gap:20px;
    }

    .timeline-number{
        width:50px;
        height:50px;
        min-width:50px;
        border-radius:14px;
        font-size:14px;
    }

    .timeline-content{
        padding:25px;
    }

    .timeline-content h3{
        font-size:20px;
    }

    .process .section-title p{
        font-size:16px;
    }
}





/* ==========================================
   SUPPORTED PLATFORMS
========================================== */

.supported-platforms{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.08) 0%,
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(96,165,250,.08) 0%,
    transparent 35%),

    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 50%,
    #ffffff 100%);
}

.supported-platforms .container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* Heading */

.supported-platforms .section-title{
    text-align:center;
    max-width:900px;
    margin:0 auto 80px;
}

.supported-platforms .section-title span{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:#eff6ff;
    border:1px solid #dbeafe;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.supported-platforms .section-title h2{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    color:#0f172a;
    margin:25px 0;
    letter-spacing:-1px;
}

.supported-platforms .section-title p{
    color:#64748b;
    font-size:18px;
    line-height:1.9;
}

/* Grid */

.platform-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.platform-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    transition:.35s ease;

    box-shadow:
    0 10px 30px rgba(15,23,42,.04);
}

.platform-card:hover{
    transform:translateY(-8px);
    border-color:#2563eb;

    box-shadow:
    0 25px 60px rgba(37,99,235,.08);
}

.platform-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:20px;
}

.platform-card h3{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:12px;
}

.platform-card p{
    color:#64748b;
    line-height:1.8;
    font-size:14px;
}

/* Highlight */

.platform-highlight{
    margin-top:70px;
    border-radius:30px;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    padding:50px;
    color:#fff;
}

.platform-highlight h3{
    font-size:34px;
    margin-bottom:15px;
    font-weight:800;
}

.platform-highlight p{
    font-size:17px;
    line-height:1.9;
    max-width:900px;
}

/* CTA */

.custom-platform{
    margin-top:40px;

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:24px;

    padding:40px;

    text-align:center;
}

.custom-platform h3{
    font-size:30px;
    color:#0f172a;
    margin-bottom:15px;
}

.custom-platform p{
    color:#64748b;
    line-height:1.9;
    max-width:700px;
    margin:0 auto 25px;
}

.platform-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 32px;

    border-radius:14px;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    color:#fff;
    text-decoration:none;
    font-weight:700;

    transition:.3s;
}

.platform-btn:hover{
    transform:translateY(-3px);
}

/* Note */

.platform-note{
    margin-top:35px;
    text-align:center;
    color:#64748b;
}

.platform-note strong{
    display:block;
    color:#0f172a;
    margin-bottom:10px;
    font-size:18px;
}

/* Responsive */

@media(max-width:1200px){

    .platform-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){

    .platform-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .supported-platforms .section-title h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .supported-platforms{
        padding:80px 0;
    }

    .platform-grid{
        grid-template-columns:1fr;
    }

    .supported-platforms .section-title h2{
        font-size:34px;
    }

    .platform-highlight{
        padding:35px;
    }

    .platform-highlight h3{
        font-size:26px;
    }
}







/* ==========================================
   OPTIMIZATION ENGINE
========================================== */

.optimization-engine{
    padding:120px 0;
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.08) 0%,
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(96,165,250,.08) 0%,
    transparent 35%),

    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 50%,
    #ffffff 100%);
}

.optimization-engine .container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* Heading */

.optimization-engine .section-title{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.optimization-engine .section-title span{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:#eff6ff;

    border:1px solid #dbeafe;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;
}

.optimization-engine .section-title h2{

    font-size:58px;

    font-weight:900;

    color:#0f172a;

    line-height:1.1;

    margin:25px 0;
}

.optimization-engine .section-title p{

    color:#64748b;

    font-size:18px;

    line-height:1.9;
}

/* Grid */

.optimization-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.optimization-card{

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:24px;

    padding:30px;

    transition:.35s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(15,23,42,.04);
}

.optimization-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:
    0 25px 60px rgba(37,99,235,.08);
}

.optimization-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
    90deg,
    #2563eb,
    #60a5fa);
}

.optimization-card h3{

    font-size:22px;

    color:#0f172a;

    margin-bottom:15px;

    font-weight:700;
}

.optimization-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;
}

/* CTA */

.optimization-banner{

    margin-top:80px;

    padding:50px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;
}

.banner-left h3{

    color:#fff;

    font-size:34px;

    margin-bottom:15px;
}

.banner-left p{

    color:rgba(255,255,255,.95);

    line-height:1.9;

    max-width:750px;
}

.banner-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:14px;

    background:#fff;

    color:#2563eb;

    text-decoration:none;

    font-weight:700;

    min-width:220px;
}

/* Responsive */

@media(max-width:1200px){

    .optimization-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){

    .optimization-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .optimization-banner{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:768px){

    .optimization-engine{
        padding:80px 0;
    }

    .optimization-grid{
        grid-template-columns:1fr;
    }

    .optimization-engine .section-title h2{
        font-size:36px;
    }

    .banner-left h3{
        font-size:28px;
    }
}




/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{
    padding:120px 0;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.08) 0%,
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(96,165,250,.08) 0%,
    transparent 35%),

    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 50%,
    #ffffff 100%);
}

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:70px;
}

.testimonial{

    position:relative;

    padding:35px;

    border-radius:28px;

    background:#fff;

    border:1px solid #e2e8f0;

    transition:.35s ease;

    overflow:hidden;

    box-shadow:
    0 10px 35px rgba(15,23,42,.04);
}

.testimonial::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
    90deg,
    #2563eb,
    #60a5fa);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;
}

.testimonial:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:
    0 25px 60px rgba(37,99,235,.10);
}

.testimonial:hover::before{
    transform:scaleX(1);
}

/* Quote */

.quote-icon{

    width:60px;
    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    color:#fff;

    font-size:24px;

    margin-bottom:25px;
}

/* Review Text */

.testimonial p{

    color:#64748b;

    line-height:1.9;

    font-size:15px;

    margin-bottom:25px;
}

/* User */

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:auto;
}

.testimonial-user img{

    width:55px;
    height:55px;

    border-radius:50%;

    object-fit:cover;
}

.testimonial-user h4{

    margin:0;

    color:#0f172a;

    font-size:17px;

    font-weight:700;
}

.testimonial-user span{

    display:block;

    color:#64748b;

    font-size:14px;

    margin-top:3px;
}

/* Rating */

.testimonial-rating{

    display:flex;

    gap:4px;

    margin-bottom:18px;

    color:#f59e0b;

    font-size:15px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

    .testimonial-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:991px){

    .testimonials{
        padding:100px 0;
    }

    .testimonial-grid{
        gap:24px;
    }

    .testimonial{
        padding:30px;
    }

}

@media(max-width:767px){

    .testimonials{
        padding:80px 0;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:45px;
    }

    .testimonial{
        padding:25px;
        border-radius:22px;
    }

    .quote-icon{

        width:50px;
        height:50px;

        font-size:20px;

        border-radius:14px;

        margin-bottom:18px;
    }

    .testimonial p{

        font-size:14px;

        line-height:1.8;
    }

    .testimonial-user img{

        width:48px;
        height:48px;
    }

    .testimonial-user h4{
        font-size:16px;
    }

}

@media(max-width:480px){

    .testimonials{
        padding:70px 0;
    }

    .testimonial{
        padding:22px;
    }

    .testimonial p{
        font-size:13px;
    }

}

/* ==========================================
   FAQ SECTION
========================================== */

.faq-section{
    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 50%,
    #ffffff 100%);
}

.faq-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;

    margin-top:70px;
}

.faq-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:20px;

    overflow:hidden;

    transition:.3s;

    box-shadow:
    0 10px 30px rgba(15,23,42,.04);
}

.faq-item:hover{

    border-color:#2563eb;

    box-shadow:
    0 20px 50px rgba(37,99,235,.08);
}

.faq-question{

    width:100%;

    background:none;

    border:none;

    cursor:pointer;

    text-align:left;

    padding:24px 28px;

    font-size:18px;

    font-weight:700;

    color:#0f172a;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.faq-question span{

    color:#2563eb;

    font-size:24px;

    font-weight:700;
}

.faq-answer{

    padding:0 28px 28px;

    color:#64748b;

    line-height:1.9;

    font-size:15px;
}

.faq-answer p{
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .faq-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .faq-section{
        padding:80px 0;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer{
        padding:0 20px 20px;
    }
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-question span{
    transition:.3s;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}



/* ==========================================
   PREMIUM PRICING SECTION
========================================== */

.pricing-section{
    position:relative;
    padding:140px 0;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.10) 0%,
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(96,165,250,.10) 0%,
    transparent 35%),

    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 50%,
    #ffffff 100%);
}

/* Heading */

.pricing-section .section-title{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.pricing-section .section-title span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    background:#eff6ff;

    border:1px solid #dbeafe;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;
}

.pricing-section .section-title h2{

    font-size:64px;

    line-height:1.05;

    font-weight:900;

    color:#0f172a;

    margin:25px 0 20px;
}

.pricing-section .section-title p{

    color:#64748b;

    font-size:18px;

    line-height:1.9;
}

/* ==========================================
   TOGGLE
========================================== */

.billing-toggle{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-bottom:70px;
}

.billing-label{

    font-size:16px;

    font-weight:700;

    color:#94a3b8;

    transition:.3s;
}

.billing-label.active{
    color:#0f172a;
}

.toggle-switch{

    width:72px;

    height:38px;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    border-radius:999px;

    position:relative;

    cursor:pointer;
}

.toggle-circle{

    width:28px;
    height:28px;

    background:#fff;

    border-radius:50%;

    position:absolute;

    top:5px;
    left:5px;

    transition:.35s;
}

body.yearly .toggle-circle{
    left:39px;
}

.save-badge{

    padding:8px 14px;

    border-radius:999px;

    background:#dcfce7;

    color:#166534;

    font-size:13px;

    font-weight:700;
}

/* ==========================================
   GRID
========================================== */

.pricing-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:28px;

    align-items:stretch;
}

/* ==========================================
   CARD
========================================== */

.pricing-card{

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

    padding:40px 32px;

    border-radius:32px;

    background:
    rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    border:1px solid #e2e8f0;

    transition:.4s ease;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(15,23,42,.05);
}

.pricing-card:hover{

    transform:
    translateY(-12px);

    border-color:#2563eb;

    box-shadow:
    0 35px 80px rgba(37,99,235,.12);
}

/* Featured */

.pricing-card.featured{

    border:2px solid #2563eb;

    transform:scale(1.04);

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #f5f9ff);
}

.pricing-card.featured:hover{

    transform:
    scale(1.04)
    translateY(-10px);
}

/* Glow */

.pricing-card.featured::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #2563eb,
    #60a5fa);
}

/* Badges */

.popular-badge{

    position:absolute;

    top:18px;
    right:18px;

    padding:8px 14px;

    border-radius:999px;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    color:#fff;

    font-size:12px;

    font-weight:700;
}

.trial-badge{

    display:inline-flex;

    width:max-content;

    padding:10px 16px;

    border-radius:999px;

    background:#eff6ff;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    margin-bottom:25px;
}

/* Title */

.pricing-card h3{

    font-size:28px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:25px;
}

/* Price */

.price{

    margin-bottom:30px;
}

.price .monthly-price,
.price .yearly-price{

    font-size:72px;

    line-height:1;

    font-weight:900;

    color:#0f172a;
}

.price .yearly-price{
    display:none;
}

body.yearly .monthly-price{
    display:none;
}

body.yearly .yearly-price{
    display:block;
}

.duration{

    display:block;

    margin-top:8px;

    color:#64748b;

    font-size:16px;
}

/* Info */

.pricing-info{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

    margin-bottom:30px;
}

.info-row{

    text-align:center;

    padding:15px;

    border-radius:16px;

    background:#f8fafc;

    border:1px solid #e2e8f0;
}

.info-row strong{

    display:block;

    font-size:24px;

    color:#2563eb;

    margin-bottom:5px;
}

/* Features */

.pricing-card ul{

    margin:0;
    padding:0;

    list-style:none;
}

.pricing-card ul li{

    position:relative;

    padding:12px 0 12px 26px;

    color:#475569;

    border-bottom:
    1px solid #edf2f7;
}

.pricing-card ul li:last-child{
    border-bottom:none;
}

.pricing-card ul li::before{

    content:'✓';

    position:absolute;

    left:0;

    color:#2563eb;

    font-weight:700;
}

/* Button */

.pricing-btn{

    margin-top:auto;

    width:100%;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    text-decoration:none;

    font-weight:700;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    color:#fff;

    transition:.3s;
}

.pricing-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 15px 35px rgba(37,99,235,.20);
}

/* Note */

.pricing-note{

    text-align:center;

    margin-top:40px;

    color:#64748b;
}

.pricing-note strong{

    color:#0f172a;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1300px){

    .pricing-grid{
        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .pricing-section{
        padding:90px 0;
    }

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .pricing-card.featured{
        transform:none;
    }

    .pricing-card.featured:hover{
        transform:translateY(-8px);
    }

    .pricing-section .section-title h2{
        font-size:38px;
    }

    .price .monthly-price,
    .price .yearly-price{
        font-size:54px;
    }
}


/* =====================================
   CTA
===================================== */

.cta-box{

    padding:90px 50px;

    border-radius:35px;

    text-align:center;

    background:
    linear-gradient(
    135deg,
    #ff5a1f,
    #ff7b4d
    );
}

.cta-box h2{

    font-size:
    clamp(36px,5vw,64px);

    margin:20px 0;
}

.cta-box p{

    max-width:700px;

    margin:auto;

    margin-bottom:30px;
}

.cta-box .btn{

    background:#fff;

    color:#ff5a1f;
}

/* =====================================
   FOOTER
===================================== */
/* ==========================================
   PREMIUM FOOTER
========================================== */

.footer{

    position:relative;

    overflow:hidden;

    padding:100px 0 35px;

    background:

    radial-gradient(
    circle at top left,
    rgba(59,130,246,.25) 0%,
    transparent 35%),

    radial-gradient(
    circle at bottom right,
    rgba(96,165,250,.20) 0%,
    transparent 40%),

    linear-gradient(
    135deg,
    #020617 0%,
    #0f172a 25%,
    #172554 60%,
    #1e3a8a 100%);

    color:#fff;
}

/* Top Glow */

.footer::before{

    content:'';

    position:absolute;

    top:-200px;
    left:-150px;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(96,165,250,.18);

    filter:blur(120px);
}

.footer::after{

    content:'';

    position:absolute;

    right:-180px;
    bottom:-180px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(37,99,235,.20);

    filter:blur(140px);
}

/* Grid */

.footer-top{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr 1fr;

    gap:50px;
}

/* Logo */

.footer-logo{

    max-width:220px;

    margin-bottom:25px;

    filter:
    drop-shadow(
    0 10px 25px rgba(255,255,255,.15));
}

/* Description */

.footer-brand p{

    color:
    rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:25px;

    font-size:15px;
}

/* Social */

.footer-social{

    display:flex;

    gap:12px;
}

.footer-social a{

    width:46px;
    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    text-decoration:none;

    color:#fff;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.35s;
}

.footer-social a:hover{

    transform:
    translateY(-4px);

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    box-shadow:
    0 15px 30px rgba(37,99,235,.30);
}

/* Headings */

.footer-links h3{

    color:#fff;

    font-size:18px;

    font-weight:700;

    margin-bottom:22px;
}

/* Links */

.footer-links ul{

    list-style:none;

    margin:0;
    padding:0;
}

.footer-links li{

    margin-bottom:14px;
}

.footer-links a{

    color:
    rgba(255,255,255,.70);

    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:#93c5fd;

    padding-left:5px;
}

/* Divider */

.footer-divider{

    height:1px;

    margin:55px 0 30px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.20),
    transparent);
}

/* Bottom */

.footer-bottom{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    position:relative;

    z-index:2;
}

.footer-copy{

    color:
    rgba(255,255,255,.65);

    font-size:14px;
}

.footer-bottom-links{

    display:flex;

    gap:25px;
}

.footer-bottom-links a{

    text-decoration:none;

    color:
    rgba(255,255,255,.65);

    transition:.3s;
}

.footer-bottom-links a:hover{

    color:#93c5fd;
}

/* Responsive */

@media(max-width:1200px){

    .footer-top{

        grid-template-columns:
        repeat(3,1fr);
    }
}

@media(max-width:768px){

    .footer{

        padding:70px 0 30px;
    }

    .footer-top{

        grid-template-columns:1fr;

        gap:35px;
    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;
    }

    .footer-bottom-links{

        justify-content:center;

        flex-wrap:wrap;
    }
}



/* ==========================================
   FOOTER CTA
========================================== */

.footer-cta{

    position:relative;

    margin:0px auto 80px;

    max-width:1300px;

    padding:55px 60px;

    border-radius:32px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #2563eb 0%,
    #3b82f6 50%,
    #60a5fa 100%);

    box-shadow:
    0 30px 80px rgba(37,99,235,.30);
}

/* Glow Effects */

.footer-cta::before{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    top:-180px;
    right:-120px;

    border-radius:50%;

    background:
    rgba(255,255,255,.15);

    filter:blur(60px);
}

.footer-cta::after{

    content:'';

    position:absolute;

    width:280px;
    height:280px;

    bottom:-120px;
    left:-80px;

    border-radius:50%;

    background:
    rgba(255,255,255,.10);

    filter:blur(60px);
}

.footer-cta-content,
.footer-cta-action{

    position:relative;
    z-index:2;
    /* margin-top: 50px; */
}

.footer-cta-content h2{

    color:#fff;

    font-size:48px;

    line-height:1.1;

    font-weight:900;

    margin:0 0 15px;
}

.footer-cta-content p{

    color:
    rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin:0;
}

/* Button */

.footer-cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:62px;

    padding:0 35px;

    border-radius:16px;

    background:#fff;

    color:#2563eb;

    text-decoration:none;

    font-weight:800;

    font-size:16px;

    white-space:nowrap;

    transition:.35s;
}

.footer-cta-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px rgba(255,255,255,.20);
}

/* Responsive */

@media(max-width:991px){

    .footer-cta{

        flex-direction:column;

        text-align:center;

        padding:45px 30px;

        margin:-120px auto 60px;
    }

    .footer-cta-content h2{

        font-size:36px;
    }

    .footer-cta-content p{

        font-size:16px;
    }
}

@media(max-width:768px){

    .footer-cta{

        border-radius:24px;

        padding:35px 25px;
    }

    .footer-cta-content h2{

        font-size:28px;
    }

    .footer-cta-btn{

        width:100%;
    }
}


.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:#fff;

    border-bottom:1px solid #e5e7eb;

    z-index:9999;
}

.container{

    width:92%;

    max-width:1400px;

    margin:auto;
}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:85px;
}

.logo img{

    height:60px;
}

.nav ul{

    display:flex;

    gap:35px;

    list-style:none;
}

.nav ul li a{

    text-decoration:none;

    color:#111827;

    font-weight:600;
}

.header-right{

    display:flex;

    align-items:center;

    gap:15px;
}

.theme-toggle{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#f3f4f6;
}

.menu-toggle{

    display:none;

    width:50px;

    height:50px;

    border:none;

    border-radius:10px;

    background:#ff5a1f;

    color:#fff;

    font-size:22px;

    cursor:pointer;
}

@media(max-width:991px){

    .menu-toggle{

        display:flex;

        align-items:center;

        justify-content:center;
    }

    .nav{

        position:fixed;

        top:85px;

        left:-100%;

        width:320px;

        max-width:90%;

        height:calc(100vh - 85px);

        background:#fff;

        overflow-y:auto;

        transition:.4s ease;

        border-right:
        1px solid #e5e7eb;
    }

    .nav.active{

        left:0;
    }

    .nav ul{

        flex-direction:column;

        gap:0;

        padding:20px;
    }

    .nav ul li{

        width:100%;
    }

    .nav ul li a{

        display:block;

        padding:16px 0;

        border-bottom:
        1px solid #eee;
    }

}

@media(max-width:768px){

    .header-right .btn{

        display:none;
    }

    .logo img{

        height:50px;
    }
}

.header.scrolled{

    background:
    rgba(255,255,255,.95);

    backdrop-filter:
    blur(20px);

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

body.dark-mode .header.scrolled{

    background:
    rgba(3,7,18,.95);
}

.fade-up{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    all .8s ease;
}

.fade-up.show{

    opacity:1;

    transform:
    translateY(0);
}

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#ff5a1f;

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;
}

#backToTop.show{

    opacity:1;

    visibility:visible;
}




.sps-showcase{
    padding:120px 0;
    background:#f8fafc;
}

.container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.sps-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.sps-label{
    display:inline-block;
    padding:10px 20px;
    background:#eef4ff;
    color:#2563eb;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.sps-header h2{
    font-size:60px;
    line-height:1.15;
    margin:25px 0;
    color:#0f172a;
    font-weight:800;
}

.sps-header p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.sps-content{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.sps-dashboard{
    background:#fff;
    border-radius:30px;
    padding:35px;
    box-shadow:0 20px 70px rgba(0,0,0,.08);
}

.dashboard-top{
    display:flex;
    gap:8px;
    margin-bottom:30px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
}

.red{background:#ff5f57;}
.yellow{background:#febc2e;}
.green{background:#28c840;}

.score-section{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:35px;
}

.score-circle{
    width:120px;
    height:120px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    display:flex;
    align-items:center;
    justify-content:center;
}

.score-circle span{
    color:#fff;
    font-size:42px;
    font-weight:800;
}

.score-info h4{
    font-size:24px;
    margin-bottom:8px;
}

.score-info p{
    color:#64748b;
}

.metric-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.metric-card{
    background:#f8fafc;
    border-radius:18px;
    padding:20px;
}

.metric-card h5{
    color:#64748b;
    margin-bottom:10px;
}

.metric-card strong{
    font-size:28px;
    color:#0f172a;
}

.sps-features{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.feature-item{
    background:#fff;
    padding:25px;
    border-radius:22px;
    display:flex;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.feature-item:hover{
    transform:translateY(-5px);
}

.feature-icon{
    width:60px;
    height:60px;
    background:#eef4ff;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon svg{
    width:28px;
    height:28px;
    fill:#2563eb;
}

.feature-item h3{
    margin-bottom:10px;
    color:#0f172a;
}

.feature-item p{
    color:#64748b;
}

.stats-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:80px;
}

.stat-box{
    background:#fff;
    border-radius:22px;
    text-align:center;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.stat-box h3{
    font-size:48px;
    color:#2563eb;
    margin-bottom:10px;
}

.stat-box span{
    color:#64748b;
}
/* ==========================================
   1400px
========================================== */

@media(max-width:1400px){

    .sps-header h2{
        font-size:54px;
    }

    .sps-content{
        gap:50px;
    }

}

/* ==========================================
   1200px
========================================== */

@media(max-width:1200px){

    .sps-showcase{
        padding:100px 0;
    }

    .sps-content{
        gap:40px;
    }

    .sps-header h2{
        font-size:48px;
    }

    .stats-row{
        gap:15px;
    }

    .stat-box{
        padding:30px 20px;
    }

    .stat-box h3{
        font-size:40px;
    }

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px){

    .sps-showcase{
        padding:90px 0;
    }

    .sps-content{
        grid-template-columns:1fr;
        gap:35px;
    }

    .sps-header{
        margin-bottom:50px;
    }

    .sps-header h2{
        font-size:42px;
        line-height:1.2;
    }

    .sps-header p{
        font-size:17px;
    }

    .sps-dashboard{
        padding:30px;
    }

    .score-circle{
        width:100px;
        height:100px;
    }

    .score-circle span{
        font-size:34px;
    }

    .score-info h4{
        font-size:22px;
    }

    .metric-card strong{
        font-size:24px;
    }

    .feature-item{
        padding:22px;
    }

    .stats-row{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:767px){

    .sps-showcase{
        padding:80px 0;
    }

    .container{
        padding:0 15px;
    }

    .sps-header{
        margin-bottom:40px;
    }

    .sps-label{
        padding:8px 16px;
        font-size:12px;
    }

    .sps-header h2{
        font-size:32px;
        margin:18px 0;
        line-height:1.25;
    }

    .sps-header p{
        font-size:15px;
        line-height:1.7;
    }

    .sps-dashboard{
        padding:22px;
        border-radius:24px;
    }

    .dashboard-top{
        margin-bottom:20px;
    }

    .score-section{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .score-circle{
        width:90px;
        height:90px;
    }

    .score-circle span{
        font-size:30px;
    }

    .score-info h4{
        font-size:20px;
    }

    .score-info p{
        font-size:14px;
    }

    .metric-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .metric-card{
        padding:16px;
    }

    .metric-card strong{
        font-size:22px;
    }

    .feature-item{
        padding:20px;
        gap:15px;
        border-radius:18px;
    }

    .feature-icon{
        width:50px;
        height:50px;
        min-width:50px;
    }

    .feature-icon svg{
        width:22px;
        height:22px;
    }

    .feature-item h3{
        font-size:18px;
        margin-bottom:8px;
    }

    .feature-item p{
        font-size:14px;
        line-height:1.7;
    }

    .stats-row{
        grid-template-columns:1fr;
        gap:15px;
        margin-top:50px;
    }

    .stat-box{
        padding:25px;
        border-radius:18px;
    }

    .stat-box h3{
        font-size:36px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

    .sps-showcase{
        padding:70px 0;
    }

    .sps-header h2{
        font-size:28px;
    }

    .sps-header p{
        font-size:14px;
    }

    .sps-dashboard{
        padding:18px;
    }

    .feature-item{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .feature-icon{
        margin-bottom:5px;
    }

    .stat-box h3{
        font-size:32px;
    }

    .stat-box span{
        font-size:14px;
    }

}




.why-us-section{
    padding:120px 0;
    background:#fff;
}

.container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.section-header{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:10px 20px;
    border:1px solid #dbeafe;
    background:#eff6ff;
    color:#2563eb;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.section-header h2{
    font-size:58px;
    line-height:1.15;
    color:#111827;
    margin:25px 0;
    font-weight:800;
}

.section-header p{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:40px;
    transition:.35s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#2563eb;
    box-shadow:0 15px 40px rgba(37,99,235,.10);
}

.card-number{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#eff6ff;
    color:#2563eb;
    font-weight:700;
    margin-bottom:25px;
}

.why-card h3{
    font-size:24px;
    color:#111827;
    margin-bottom:15px;
}

.why-card p{
    color:#6b7280;
    line-height:1.8;
}
/* ==========================================
   LARGE LAPTOP
========================================== */

@media (max-width:1200px){

    .section-header h2{
        font-size:48px;
    }

    .why-card{
        padding:35px;
    }

}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .section-header{
        margin-bottom:60px;
    }

    .section-header h2{
        font-size:42px;
        line-height:1.2;
    }

    .section-header p{
        font-size:17px;
    }

    .why-card{
        padding:30px;
    }

    .why-card h3{
        font-size:22px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px){

    .why-us-section{
        padding:80px 0;
    }

    .container{
        padding:0 15px;
    }

    .section-header{
        margin-bottom:45px;
    }

    .section-tag{
        font-size:12px;
        padding:8px 16px;
    }

    .section-header h2{
        font-size:32px;
        line-height:1.25;
        margin:18px 0;
    }

    .section-header p{
        font-size:15px;
        line-height:1.7;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .why-card{
        padding:25px;
        border-radius:20px;
    }

    .card-number{
        width:50px;
        height:50px;
        font-size:16px;
        margin-bottom:18px;
    }

    .why-card h3{
        font-size:20px;
        margin-bottom:10px;
    }

    .why-card p{
        font-size:14px;
        line-height:1.7;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .why-us-section{
        padding:70px 0;
    }

    .section-header h2{
        font-size:28px;
    }

    .section-header p{
        font-size:14px;
    }

    .why-card{
        padding:22px;
    }

}




/* ==========================================
   PREMIUM SERVICES SECTION
   SuperPageSpeedy
========================================== */

.services{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,0.10) 0%,
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(59,130,246,0.12) 0%,
    transparent 35%),

    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 50%,
        #ffffff 100%
    );
}

/* Background Glow */

.services::before{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(37,99,235,.12) 0%,
        rgba(37,99,235,0) 70%
    );

    top:-280px;
    left:-250px;

    pointer-events:none;
}

.services::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(59,130,246,.10) 0%,
        rgba(59,130,246,0) 70%
    );

    right:-250px;
    bottom:-280px;

    pointer-events:none;
}

/* Container */

.services .container{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* Heading */

.section-title{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;

    background:#eff6ff;

    border:1px solid #dbeafe;

    border-radius:50px;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.2px;

    text-transform:uppercase;
}

.section-title h2{
    font-family:'Manrope',sans-serif;

    font-size:58px;

    line-height:1.1;

    font-weight:800;

    color:#0f172a;

    margin:25px 0;

    letter-spacing:-1.5px;
}

.section-title h2 span{
    background:none;
    border:none;
    padding:0;

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    display:inline;
}

.section-title p{
    font-size:18px;

    line-height:1.9;

    color:#64748b;

    max-width:800px;

    margin:auto;
}

/* Services Grid */

.service-grid{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* Service Card */

.service-card{
    position:relative;

    background:
    rgba(255,255,255,.90);

    backdrop-filter:blur(12px);

    border:1px solid
    rgba(37,99,235,.08);

    border-radius:28px;

    padding:35px;

    transition:.4s ease;

    overflow:hidden;

    box-shadow:
    0 10px 40px
    rgba(15,23,42,.04);
}

.service-card::before{
    content:'';

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{

    transform:
    translateY(-10px);

    border-color:#2563eb;

    box-shadow:
    0 30px 80px
    rgba(37,99,235,.12);
}

/* Number */

.service-number{

    width:62px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #60a5fa
    );

    color:#fff;

    font-size:18px;

    font-weight:800;

    margin-bottom:25px;
}

/* Card Title */

.service-card h3{

    font-size:24px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:15px;

    line-height:1.35;
}

/* Card Text */

.service-card p{

    font-size:15px;

    line-height:1.9;

    color:#64748b;
}

/* Technologies */

.technology-section{

    margin-top:90px;

    text-align:center;
}

.technology-section h4{

    font-size:30px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:35px;
}

.tech-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;
}

.tech-list span{

    padding:12px 22px;

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:50px;

    color:#334155;

    font-size:14px;

    font-weight:600;

    transition:.3s ease;
}

.tech-list span:hover{

    background:#eff6ff;

    border-color:#2563eb;

    color:#2563eb;

    transform:
    translateY(-3px);
}
/* ==========================================
   LARGE DESKTOP
========================================== */

@media (max-width:1400px){

    .services .container{
        max-width:1200px;
    }

    .section-title h2{
        font-size:52px;
    }

}

/* ==========================================
   LAPTOP
========================================== */

@media (max-width:1200px){

    .service-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .section-title{
        margin-bottom:60px;
    }

    .section-title h2{
        font-size:46px;
    }

    .service-card{
        padding:30px;
    }

}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .services{
        padding:100px 0;
    }

    .section-title{
        max-width:100%;
        margin-bottom:55px;
    }

    .section-title h2{
        font-size:40px;
        line-height:1.2;
    }

    .section-title p{
        font-size:17px;
        line-height:1.8;
    }

    .service-grid{
        gap:24px;
    }

    .service-card h3{
        font-size:22px;
    }

    .technology-section{
        margin-top:70px;
    }

    .technology-section h4{
        font-size:28px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px){

    .services{
        padding:80px 0;
    }

    .services .container{
        padding:0 15px;
    }

    .service-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-title{
        margin-bottom:45px;
    }

    .section-title span{
        font-size:11px;
        padding:8px 16px;
    }

    .section-title h2{
        font-size:32px;
        line-height:1.25;
        letter-spacing:-0.5px;
        margin:18px 0;
    }

    .section-title p{
        font-size:15px;
        line-height:1.7;
    }

    .service-card{
        padding:25px;
        border-radius:22px;
    }

    .service-number{
        width:55px;
        height:55px;
        font-size:16px;
        margin-bottom:18px;
    }

    .service-card h3{
        font-size:20px;
        margin-bottom:10px;
    }

    .service-card p{
        font-size:14px;
        line-height:1.7;
    }

    .technology-section{
        margin-top:55px;
    }

    .technology-section h4{
        font-size:22px;
        margin-bottom:25px;
    }

    .tech-list{
        gap:10px;
    }

    .tech-list span{
        padding:10px 16px;
        font-size:13px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .services{
        padding:70px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:14px;
    }

    .service-card{
        padding:22px;
    }

    .service-card h3{
        font-size:18px;
    }

    .service-card p{
        font-size:13px;
    }

    .technology-section h4{
        font-size:20px;
    }

    .tech-list span{
        width:100%;
        text-align:center;
    }

}




.results{
    padding:120px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 50%,
        #ffffff 100%
    );
}

.experience-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:70px;
}

.experience-card{

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:24px;

    padding:35px;

    transition:.35s ease;

    position:relative;
}

.experience-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:
    0 25px 60px rgba(37,99,235,.10);
}

.experience-number{

    width:60px;
    height:60px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #60a5fa
    );

    color:#fff;

    font-size:18px;

    font-weight:800;

    margin-bottom:25px;
}

.experience-card h3{

    font-size:24px;

    color:#0f172a;

    margin-bottom:15px;

    font-weight:700;
}

.experience-card p{

    color:#64748b;

    line-height:1.9;
}

/* ==========================================
   LARGE DESKTOP
========================================== */

@media (max-width:1400px){

    .experience-grid{
        gap:25px;
    }

}

/* ==========================================
   LAPTOP
========================================== */

@media (max-width:1200px){

    .experience-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .experience-card{
        padding:30px;
    }

    .experience-card h3{
        font-size:22px;
    }

}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .results{
        padding:100px 0;
    }

    .experience-grid{
        margin-top:55px;
        gap:22px;
    }

    .experience-card{
        padding:28px;
    }

    .experience-number{
        width:55px;
        height:55px;
        font-size:17px;
        margin-bottom:20px;
    }

    .experience-card h3{
        font-size:21px;
        margin-bottom:12px;
    }

    .experience-card p{
        font-size:15px;
        line-height:1.8;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px){

    .results{
        padding:80px 0;
    }

    .experience-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:45px;
    }

    .experience-card{

        padding:25px;

        border-radius:20px;
    }

    .experience-number{

        width:50px;
        height:50px;

        font-size:16px;

        border-radius:14px;

        margin-bottom:18px;
    }

    .experience-card h3{

        font-size:20px;

        margin-bottom:10px;

        line-height:1.4;
    }

    .experience-card p{

        font-size:14px;

        line-height:1.7;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .results{
        padding:70px 0;
    }

    .experience-card{
        padding:22px;
    }

    .experience-number{

        width:46px;
        height:46px;

        font-size:15px;
    }

    .experience-card h3{
        font-size:18px;
    }

    .experience-card p{
        font-size:13px;
        line-height:1.7;
    }

}