/* =====================================================
   Funnel Ok Premium SaaS UI
   Version 1.0
===================================================== */

:root{
    --primary:#2563EB;
    --secondary:#06B6D4;
    --dark:#0F172A;
    --light:#F8FAFC;
    --white:#ffffff;
    --text:#475569;
    --border:#E2E8F0;
    --shadow:0 20px 60px rgba(15,23,42,.08);
    --radius:20px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
}

section{
    position:relative;
}

.container{
    max-width:1280px;
}

/* =========================
        Buttons
========================= */

.btn-primary-custom{

display:inline-flex;
align-items:center;
gap:10px;
padding:16px 34px;
background:var(--primary);
color:#fff;
border-radius:12px;
font-weight:600;
text-decoration:none;
transition:.35s;
box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.btn-primary-custom:hover{

transform:translateY(-5px);
color:#fff;

}

.btn-outline-custom{

display:inline-flex;
align-items:center;
padding:16px 34px;
border:2px solid var(--primary);
border-radius:12px;
font-weight:600;
text-decoration:none;
color:var(--primary);
transition:.35s;

}

.btn-outline-custom:hover{

background:var(--primary);
color:#fff;

}

/* =========================
        Hero
========================= */

.hero-section{

padding:130px 0 90px;
background:linear-gradient(180deg,#F8FBFF,#FFFFFF);
overflow:hidden;

}

.hero-bg-shape{

position:absolute;
border-radius:50%;
filter:blur(80px);

}

.shape-1{

width:380px;
height:380px;
background:#DBEAFE;
top:-150px;
left:-100px;

}

.shape-2{

width:350px;
height:350px;
background:#CFFAFE;
right:-100px;
top:120px;

}

.shape-3{

width:280px;
height:280px;
background:#E0E7FF;
left:45%;
bottom:-120px;

}

.hero-badge{

display:inline-flex;
align-items:center;
gap:10px;
padding:10px 20px;
border-radius:50px;
background:#EFF6FF;
color:var(--primary);
font-weight:600;
margin-bottom:30px;

}

.hero-title{

font-size:62px;
font-weight:800;
line-height:1.1;
margin-bottom:25px;
color:var(--dark);

}

.hero-title span{

display:block;
background:linear-gradient(90deg,#2563EB,#06B6D4);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.hero-description{

font-size:18px;
line-height:1.8;
color:var(--text);
max-width:620px;
margin-bottom:35px;

}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:45px;
flex-wrap:wrap;

}

/* Users */

.hero-users{

display:flex;
align-items:center;
gap:18px;

}

.user-images{

display:flex;

}

.user-images img{

width:48px;
height:48px;
border-radius:50%;
border:3px solid #fff;
margin-left:-12px;
box-shadow:0 10px 20px rgba(0,0,0,.12);

}

.user-images img:first-child{

margin-left:0;

}

.hero-users h5{

margin:0;
font-size:16px;
font-weight:700;

}

.hero-users p{

margin:0;
font-size:14px;
color:#64748B;

}

/* Dashboard */

.dashboard-preview{

position:relative;
text-align:center;

}

.dashboard-img{

width:100%;
border-radius:24px;
box-shadow:0 30px 80px rgba(15,23,42,.18);

}
/* ==========================================
   FLOATING DASHBOARD CARDS
========================================== */

.floating-card{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:16px 18px;
    box-shadow:0 20px 45px rgba(15,23,42,.12);
    display:flex;
    align-items:center;
    gap:12px;
    min-width:220px;
    animation:float 4s ease-in-out infinite;
    z-index:5;
}

.floating-card h6{
    margin:0;
    font-size:14px;
    color:#64748B;
}

.floating-card h3{
    margin:4px 0;
    font-size:24px;
    font-weight:700;
    color:#0F172A;
}

.floating-card strong{
    font-size:20px;
    color:#0F172A;
}

.floating-card p{
    margin:0;
    font-size:13px;
    color:#16A34A;
}

.floating-card i{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#EFF6FF;
    color:#2563EB;
    font-size:22px;
}

.revenue-card{
    top:-25px;
    left:-60px;
}

.crm-card{
    top:120px;
    right:-60px;
}

.whatsapp-card{
    bottom:80px;
    left:-40px;
}

.automation-card{
    bottom:-20px;
    right:20px;
}

/* ==========================================
   STATS SECTION
========================================== */

.stats-section{
    padding:100px 0;
    background:#F8FAFC;
}

.stats-card{
    background:#fff;
    padding:40px 25px;
    border-radius:22px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    height:100%;
}

.stats-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.10);
}

.stats-card i{
    font-size:38px;
    color:#2563EB;
    margin-bottom:20px;
}

.stats-card h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:8px;
}

.stats-card p{
    color:#64748B;
    margin:0;
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:#DBEAFE;
    color:#2563EB;
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
    color:#0F172A;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#64748B;
    line-height:1.8;
    font-size:18px;
}

/* ==========================================
   PROBLEM SECTION
========================================== */

.problem-section{
    padding:100px 0;
}

.problem-card{
    background:#fff;
    border:1px solid #E2E8F0;
    border-radius:22px;
    padding:35px;
    transition:.35s;
    height:100%;
}

.problem-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(15,23,42,.08);
}

.problem-card .icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#EFF6FF;
    color:#2563EB;
    font-size:30px;
    margin-bottom:25px;
}

.problem-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.problem-card p{
    color:#64748B;
    line-height:1.8;
    margin:0;
}

/* ==========================================
   TRUSTED LOGOS
========================================== */

.trusted-section{
    padding:80px 0;
    background:#F8FAFC;
}

.trusted-title{
    text-align:center;
    font-size:18px;
    color:#64748B;
    margin-bottom:45px;
}

.logo-slider{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:60px;
}

.logo-slider img{
    height:38px;
    opacity:.65;
    transition:.3s;
    filter:grayscale(100%);
}

.logo-slider img:hover{
    opacity:1;
    filter:none;
    transform:scale(1.08);
}

/* ==========================================
   FLOAT ANIMATION
========================================== */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}
/* ==========================================================
   NAVBAR
========================================================== */

.navbar{
    padding:18px 0;
    transition:.35s ease;
    z-index:999;
}

.navbar.scrolled{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:30px;
    font-weight:800;
    color:#0F172A !important;
}

.navbar-brand span{
    color:#2563EB;
}

.navbar-nav{
    gap:10px;
}

.navbar-nav .nav-link{
    color:#475569;
    font-weight:600;
    padding:12px 18px !important;
    border-radius:10px;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    background:#EFF6FF;
    color:#2563EB;
}

.navbar .btn-login{
    color:#2563EB;
    font-weight:600;
    margin-right:15px;
    text-decoration:none;
}

.navbar .btn-demo{
    background:#2563EB;
    color:#fff;
    padding:13px 26px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.navbar .btn-demo:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(37,99,235,.25);
}

/* ==========================================================
   FOOTER
========================================================== */

.footer-area{
    background:#0F172A;
    color:#fff;
    padding:90px 0 25px;
}

.footer-area h5{
    font-size:20px;
    margin-bottom:25px;
    font-weight:700;
}

.footer-area p{
    color:#CBD5E1;
    line-height:1.9;
}

.footer-area ul li a:hover{
    color:#fff;
    padding-left:6px;
}

.footer-area .footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    text-align:center;
    color:#94A3B8;
}
.footer-logo img{
    max-width:180px;
    height:auto;
    margin-bottom:25px;
}

.footer-text{
    color:#CBD5E1;
    line-height:1.8;
    margin-bottom:30px;
}
/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#F1F5F9;
}

::-webkit-scrollbar-thumb{
    background:#2563EB;
    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
    background:#1D4ED8;
}

/* ==========================================================
   BACK TO TOP
========================================================== */

.back-to-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#2563EB;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(37,99,235,.30);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

.back-to-top.active{
    opacity:1;
    visibility:visible;
}

/* ==========================================================
   ANIMATION
========================================================== */

.fade-up{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* ==========================================================
   SOLUTION SECTION
========================================================== */

.solution-section{

padding:110px 0;

background:#ffffff;

}

.solution-list{

display:flex;

flex-direction:column;

gap:28px;

}

.solution-item{

display:flex;

align-items:flex-start;

gap:20px;

padding:22px;

border-radius:18px;

transition:.35s;

border:1px solid #E2E8F0;

}

.solution-item:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(15,23,42,.08);

}

.solution-item i{

font-size:28px;

color:#22C55E;

margin-top:5px;

}

.solution-item h5{

font-weight:700;

margin-bottom:8px;

}

.solution-item p{

margin:0;

color:#64748B;

}

.solution-image{

position:relative;

text-align:center;

}

.solution-image img{

width:100%;

border-radius:25px;

box-shadow:0 35px 80px rgba(0,0,0,.12);

}
/* =====================================
FEATURES
=====================================*/

.features-section{

padding:120px 0;

background:#F8FAFC;

}

.feature-card{

background:#fff;

border-radius:22px;

padding:35px;

height:100%;

text-align:center;

transition:.35s;

border:1px solid #E2E8F0;

}

.feature-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.feature-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

}

.feature-card h4{

font-size:24px;

font-weight:700;

margin-bottom:15px;

}

.feature-card p{

color:#64748B;

line-height:1.8;

margin:0;

}
/* ==========================================
        DASHBOARD SECTION
========================================== */

.dashboard-section{

padding:120px 0;

background:#ffffff;

}

.dashboard-wrapper{

position:relative;

margin-top:70px;

}

.dashboard-main-img{

width:100%;

border-radius:30px;

box-shadow:0 35px 90px rgba(15,23,42,.18);

}

.dashboard-box{

position:absolute;

background:#fff;

padding:18px 22px;

border-radius:18px;

display:flex;

gap:15px;

align-items:center;

box-shadow:0 20px 45px rgba(15,23,42,.10);

animation:float 4s ease-in-out infinite;

}

.dashboard-box h6{

margin:0;

font-size:14px;

color:#64748B;

}

.dashboard-box h2{

font-size:30px;

font-weight:800;

margin:5px 0;

}

.dashboard-box strong{

font-size:20px;

}

.dashboard-box span{

color:#22C55E;

font-weight:700;

}

.dashboard-box i{

width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

background:#EFF6FF;

border-radius:50%;

font-size:24px;

color:#2563EB;

}

/* Position */

.revenue-box{

left:-60px;

top:40px;

}

.lead-box{

right:-60px;

top:120px;

}

.order-box{

left:40px;

bottom:-30px;

}

.message-box{

right:30px;

bottom:-50px;

}
/* =====================================
        PRICING SECTION
===================================== */

.pricing-section{

padding:120px 0;

background:#F8FAFC;

}

.pricing-card{

background:#fff;

padding:45px;

border-radius:25px;

border:1px solid #E2E8F0;

position:relative;

transition:.35s;

height:100%;

box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.pricing-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 70px rgba(0,0,0,.10);

}

.active-plan{

border:2px solid #2563EB;

transform:scale(1.04);

}

.popular-tag{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#2563EB;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:700;

}

.pricing-header{

text-align:center;

margin-bottom:30px;

}

.pricing-header h5{

font-size:22px;

font-weight:700;

}

.pricing-header h2{

font-size:54px;

font-weight:800;

margin:10px 0;

}

.pricing-header p{

color:#64748B;

}

.pricing-card ul{

list-style:none;

padding:0;

margin:30px 0;

}

.pricing-card ul li{

padding:12px 0;

font-size:17px;

color:#475569;

}

.pricing-card ul li i{

color:#22C55E;

margin-right:10px;

}
/* =====================================
        TESTIMONIALS
===================================== */

.testimonial-section{

padding:120px 0;

background:#ffffff;

}

.testimonial-card{

background:#fff;

padding:40px;

border-radius:24px;

border:1px solid #E2E8F0;

height:100%;

transition:.35s;

box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 70px rgba(15,23,42,.10);

}

.stars{

margin-bottom:20px;

}

.stars i{

color:#FBBF24;

font-size:18px;

margin-right:4px;

}

.testimonial-card p{

font-size:17px;

line-height:1.9;

color:#475569;

margin-bottom:30px;

}

.testimonial-user{

display:flex;

align-items:center;

gap:15px;

}

.testimonial-user img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

}

.testimonial-user h5{

margin:0;

font-size:18px;

font-weight:700;

}

.testimonial-user span{

color:#64748B;

font-size:14px;

}
/* =====================================
        TRUST BAR
===================================== */

.trust-bar{

padding:80px 0;

background:#2563EB;

color:#fff;

text-align:center;

}

.trust-bar h2{

font-size:46px;

font-weight:800;

margin-bottom:10px;

}

.trust-bar p{

margin:0;

font-size:18px;

opacity:.9;

}
/* =====================================
        FAQ
===================================== */

.faq-section{

padding:120px 0;

background:#F8FAFC;

}

.accordion-item{

border:none;

margin-bottom:18px;

border-radius:18px!important;

overflow:hidden;

box-shadow:0 12px 35px rgba(15,23,42,.05);

}

.accordion-button{

padding:24px;

font-size:20px;

font-weight:700;

background:#fff;

}

.accordion-button:not(.collapsed){

background:#2563EB;

color:#fff;

}

.accordion-button:focus{

box-shadow:none;

}

.accordion-body{

padding:24px;

font-size:17px;

line-height:1.8;

}
/* =====================================
        CTA
===================================== */

.cta-section{

padding:120px 0;

background:#fff;

}

.cta-box{

padding:80px;

border-radius:30px;

background:linear-gradient(135deg,#2563EB,#06B6D4);

text-align:center;

color:#fff;

}

.cta-box h2{

font-size:52px;

font-weight:800;

margin-bottom:20px;

}

.cta-box p{

font-size:20px;

opacity:.9;

margin-bottom:40px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.cta-box .btn-outline-custom{

border-color:#fff;

color:#fff;

}

.cta-box .btn-outline-custom:hover{

background:#fff;

color:#2563EB;

}
.social-links{
display:flex;
gap:15px;
margin-top:25px;
}

.social-links a{
width:48px;
height:48px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:#1E293B;
color:#fff;
font-size:18px;
transition:.35s;
text-decoration:none;
}

.social-links a:hover{
background:#2563EB;
transform:translateY(-6px);
}
.footer-area ul{
padding:0;
margin:0;
list-style:none;
}

.footer-area ul li{
margin-bottom:14px;
}

.footer-area ul li a{
color:#CBD5E1;
text-decoration:none;
transition:.3s;
}

.footer-area ul li a:hover{
color:#fff;
padding-left:6px;
}
.contact-list li{

display:flex;
gap:12px;
margin-bottom:18px;
color:#CBD5E1;

}

.contact-list i{

color:#2563EB;
width:20px;

}
.copyright{

padding-top:30px;
font-size:15px;
color:#94A3B8;

}
.footer-area h5{
font-size:20px;
font-weight:700;
margin-bottom:22px;
}
.newsletter-box{

margin-top:60px;
padding:40px;
background:#1E293B;
border-radius:20px;

}

.newsletter-box h4{

color:#fff;
margin-bottom:10px;

}

.newsletter-box p{

color:#CBD5E1;

}

.newsletter-form .form-control{

height:56px;
border-radius:12px;

}

.newsletter-form .btn{

border-radius:12px;
padding:0 30px;

}
/* ==========================================================
   RESPONSIVE
========================================================== */

/* Tablet */

@media (max-width:991px){

.hero-section{
padding:110px 0 70px;
text-align:center;
}

.hero-title{
font-size:46px;
}

.hero-description{
margin:auto;
}

.hero-buttons{
justify-content:center;
}

.hero-users{
justify-content:center;
margin-bottom:50px;
}

.dashboard-preview{
margin-top:40px;
}

.floating-card{

position:relative;
left:auto;
right:auto;
top:auto;
bottom:auto;
margin:15px auto;

}

.dashboard-box{

position:relative;
left:auto !important;
right:auto !important;
top:auto !important;
bottom:auto !important;
margin:20px auto;
max-width:320px;

}

.dashboard-wrapper{

text-align:center;

}

.section-title{
font-size:38px;
}

.logo-slider{
gap:30px;
}

}

/* Mobile */

@media (max-width:767px){

.hero-title{
font-size:34px;
}

.section-title{
font-size:30px;
}

.btn-primary-custom,
.btn-outline-custom{

width:100%;
justify-content:center;

}

.logo-slider img{

height:28px;

}

.stats-card{

padding:28px;

}

.problem-card{

padding:28px;

}

.footer-area{

text-align:center;

}

.social-links{

justify-content:center;

}

}