/*======================================
            GOOGLE FONT
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F7F9FC;
    color:#1F2937;
    overflow-x:hidden;
    transition:.3s;
}

/*======================================
            COLORS
======================================*/

:root{

    --primary:#019787;
    --primary-dark:#01796D;

    --secondary:#0F172A;

    --background:#F7F9FC;

    --card:#FFFFFF;

    --border:#E5E7EB;

    --text:#1F2937;

    --subtext:#6B7280;

    --shadow:
    0 10px 30px rgba(0,0,0,.08);

    --radius:18px;

}

body.dark{

    --background:#0F172A;

    --card:#1E293B;

    --border:#334155;

    --text:#F8FAFC;

    --subtext:#CBD5E1;

    --shadow:
    0 10px 30px rgba(0,0,0,.45);

}

/*======================================
            GENERAL
======================================*/

body{

    background:var(--background);

    color:var(--text);

}

.container{

    width:min(1180px,92%);

    margin:auto;

}

section{

    padding:90px 0;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    cursor:pointer;

    font-family:inherit;

}

/*======================================
            HEADER
======================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.75);

    border-bottom:1px solid rgba(255,255,255,.2);

}

body.dark .header{

    background:rgba(15,23,42,.85);

}

.header .container{

    height:80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:22px;

    font-weight:700;

    color:var(--primary);

}

.logo .material-symbols-rounded{

    font-size:34px;

}

/*======================================
            NAVBAR
======================================*/

.navbar{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    color:var(--text);

    font-weight:500;

    transition:.25s;

}

.navbar a:hover{

    color:var(--primary);

}

/*======================================
        HEADER ACTION
======================================*/

.header-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

#themeToggle{

    width:45px;

    height:45px;

    border-radius:50%;

    background:var(--card);

    color:var(--primary);

    box-shadow:var(--shadow);

    display:grid;

    place-items:center;

}

#themeToggle:hover{

    transform:rotate(180deg);

    transition:.4s;

}

/*======================================
            BUTTONS
======================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:999px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*======================================
            HERO
======================================*/

.hero{

    padding-top:150px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.badge{

    display:inline-block;

    padding:10px 18px;

    background:rgba(1,151,135,.12);

    color:var(--primary);

    border-radius:999px;

    font-weight:600;

}

.hero h1{

    margin-top:20px;

    font-size:62px;

    line-height:1.1;

    font-weight:800;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    margin:28px 0;

    color:var(--subtext);

    font-size:18px;

    line-height:1.8;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.stats{

    display:flex;

    gap:50px;

    margin-top:55px;

}

.stats h3{

    color:var(--primary);

    font-size:34px;

}

.stats p{

    margin-top:8px;

    color:var(--subtext);

}

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:420px;

    animation:float 4s ease-in-out infinite;

    filter:drop-shadow(0 25px 40px rgba(0,0,0,.15));

}

/*======================================
        FLOAT ANIMATION
======================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*======================================
            SECTION TITLE
======================================*/

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:14px;
}

.section-subtitle{
    text-align:center;
    color:var(--subtext);
    max-width:700px;
    margin:0 auto 60px;
    line-height:1.7;
}

/*======================================
            FEATURES
======================================*/

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.feature-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px;

    transition:.35s;

    box-shadow:var(--shadow);

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:rgba(1,151,135,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.feature-icon .material-symbols-rounded{

    font-size:34px;

    color:var(--primary);

}

.feature-card h3{

    margin-bottom:14px;

    font-size:24px;

}

.feature-card p{

    color:var(--subtext);

    line-height:1.8;

}

/*======================================
            SCREENSHOTS
======================================*/

.screenshot-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.screenshot{

    background:var(--card);

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.screenshot:hover{

    transform:translateY(-10px);

}

.screenshot img{

    display:block;

    width:100%;

}

.screenshot p{

    padding:20px;

    text-align:center;

    font-weight:600;

}

/*======================================
                FAQ
======================================*/

.faq{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:var(--card);

    margin-bottom:18px;

    border-radius:18px;

    border:1px solid var(--border);

    overflow:hidden;

}

.faq-question{

    width:100%;

    background:none;

    padding:22px;

    text-align:left;

    font-size:18px;

    font-weight:600;

    color:var(--text);

}

.faq-answer{

    padding:0 22px 22px;

    color:var(--subtext);

    line-height:1.8;

}

/*======================================
            DOWNLOAD
======================================*/

.download{

    text-align:center;

    background:linear-gradient(135deg,#019787,#0FC2AF);

    color:white;

    border-radius:30px;

    padding:70px 30px;

}

.download h2{

    font-size:42px;

    margin-bottom:20px;

}

.download p{

    max-width:650px;

    margin:auto auto 35px;

    line-height:1.8;

}

.download .btn{

    background:white;

    color:var(--primary);

}

.download .btn:hover{

    background:#f5f5f5;

}

/*======================================
            FOOTER
======================================*/

.footer{

    margin-top:80px;

    background:var(--secondary);

    color:white;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

}

.footer h3{

    margin-bottom:20px;

}

.footer p{

    color:#CBD5E1;

    line-height:1.8;

}

.footer a{

    display:block;

    margin-bottom:12px;

    color:#CBD5E1;

    transition:.25s;

}

.footer a:hover{

    color:white;

}

.footer-bottom{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:20px;

    text-align:center;

    color:#CBD5E1;

}

/*======================================
            SCROLLBAR
======================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:var(--background);

}

/*======================================
            RESPONSIVE
======================================*/

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-image{

order:-1;

}

.stats{

justify-content:center;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.navbar{

display:none;

}

}

@media(max-width:768px){

.hero{

padding-top:120px;

}

.hero h1{

font-size:42px;

}

.section-title{

font-size:34px;

}

.download h2{

font-size:34px;

}

.stats{

gap:25px;

flex-wrap:wrap;

}

.hero-buttons{

justify-content:center;

}

.hero-image img{

width:300px;

}

.feature-card{

padding:25px;

}

}

@media(max-width:480px){

.container{

width:94%;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.btn{

width:100%;

}

.btn-outline{

width:100%;

}

.download{

padding:50px 20px;

}

.download h2{

font-size:28px;

}

}

/*======================================
            ANIMATION
======================================*/

.fade-up{

opacity:0;

transform:translateY(30px);

transition:1s;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/*==========================
Back To Top
==========================*/

.top-button{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#019787;

color:white;

font-size:24px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.top-button.show{

opacity:1;

visibility:visible;

}

.top-button:hover{

transform:translateY(-5px);

}

.navbar a.active{

color:#019787;

font-weight:700;

}