@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    background-image:
    radial-gradient(
        rgba(255,255,255,0.15) 1px,
        transparent 1px
    );

    background-size:24px 24px;

    opacity:0.15;
    pointer-events:none;
}

body{
    font-family:'Inter',sans-serif;
    background:linear-gradient(
        135deg,
        #eef6ff 0%,
	#dbeafe 25%,
	#e0f2fe 50%,
	#f5f3ff 75%,
	#fff1f2 100%
    );

    color:#0f172a;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

/* HERO */
.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#6ee7ff;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.35;

    top:-100px;
    right:-100px;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    align-items:center;
    gap:60px;
}

.logo-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:24px;
}

.logo-row img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.logo-row span{
    font-size:18px;
    font-weight:700;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:24px;
    font-weight:800;
}

.hero h1{
    text-shadow:
    0 4px 20px rgba(0,0,0,0.06);
}

.hero p{
    font-size:20px;
    line-height:1.8;
    color:#334155;
    margin-bottom:36px;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 28px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-primary{
    background:#0f172a;
    color:white;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:rgba(255,255,255,0.5);
    color:#0f172a;
    backdrop-filter:blur(10px);
}

.hero-right{
    display:flex;
    justify-content:center;
}

.hero-image{
    animation:float 6s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

.hero-image{
    width:100%;
    max-width:720px;
    object-fit:contain;

    border-radius:32px;

    box-shadow:
	0 35px 90px rgba(15,23,42,0.28),
	0 10px 30px rgba(59,130,246,0.18);

    animation:float 6s ease-in-out infinite;
}
/* STATS */

.stats{
    display:flex;
    gap:16px;
    margin-top:40px;
    flex-wrap:wrap;
}

.stat-card{
    background:rgba(255,255,255,0.5);
    padding:18px 22px;
    border-radius:20px;
    backdrop-filter:blur(12px);
}

.stat-card h3{
    font-size:26px;
    margin-bottom:6px;
}

.stat-card p{
    margin:0;
    font-size:14px;
}

/* SECTION */

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    font-size:44px;
    margin-bottom:18px;
}

.section-subtitle{
    text-align:center;
    color:#475569;
    max-width:760px;
    margin:auto;
    line-height:1.8;
    margin-bottom:60px;
}

.about-card{
    background:rgba(255,255,255,0.45);
    backdrop-filter:blur(16px);

    border-radius:36px;

    padding:70px 60px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.06);

    max-width:1100px;
    margin:auto;
}

/* PRODUCTS */

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

.product-card{
    background:rgba(255,255,255,0.5);
    border-radius:30px;
    overflow:hidden;
    backdrop-filter:blur(14px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.slider{
    height:520px;
    position:relative;
    overflow:hidden;
    background:#f8fafc;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 0.8s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:18px;
}

.card-content{
    padding:28px;
}

.badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(15,23,42,0.08);
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.card-content h3{
    font-size:28px;
    margin-bottom:16px;
}

.card-content p{
    line-height:1.8;
    color:#475569;
    margin-bottom:24px;
}

.play-btn{
    display:inline-block;
    padding:14px 24px;
    background:#0f172a;
    color:white;
    text-decoration:none;
    border-radius:16px;
    font-weight:700;
}

.policy-link{
    display:inline-block;

    margin-top:18px;

    color:#334155;

    font-size:14px;

    text-decoration:underline;

    transition:0.25s;
}

.policy-link:hover{
    color:#0f172a;
}

/* COMMITMENT */

.commitment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}

.commitment-card{
    background:rgba(255,255,255,0.5);
    padding:32px;
    border-radius:28px;
    backdrop-filter:blur(12px);
}

.commitment-card h3{
    margin-bottom:14px;
}

.commitment-card p{
    color:#475569;
    line-height:1.7;
}

/* CONTACT */

.contact-box{
    background:rgba(255,255,255,0.5);
    padding:50px;
    border-radius:32px;
    text-align:center;
}

.contact-box h2{
    font-size:42px;
    margin-bottom:18px;
}

.contact-box p{
    color:#475569;
    margin-bottom:22px;
}

.contact-box a{
    text-decoration:none;
    color:#0f172a;
    font-weight:700;
}

/* FOOTER */

footer{
    text-align:center;
    padding:40px 20px;
    color:#475569;
}

/* RESPONSIVE */

@media(max-width:980px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .logo-row{
        justify-content:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .stats{
        justify-content:center;
    }

    .hero h1{
        font-size:48px;
    }

    .hero-right{
        margin-top:40px;
    }
}

@media(max-width:600px){

    .hero h1{
        font-size:38px;
    }

    .section-title{
        font-size:32px;
    }

    .slider{
        height:420px;
    }

    .contact-box{
        padding:36px 24px;
    }
}

