/* =====================================
   HK Ultra Landing Page
   ===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f7f8fc;
    color:#222;
    line-height:1.7;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ===========================
   Header
=========================== */

header{

    position:sticky;
    top:0;
    background:#ffffff;
    z-index:999;
    box-shadow:0 3px 10px rgba(0,0,0,.08);

}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;

}

.logo{

    font-size:30px;
    font-weight:800;
    color:#0d6efd;

}

.btn{

    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-block;
    padding:16px 34px;
    border:2px solid #0d6efd;
    color:#0d6efd;
    border-radius:50px;
    margin-left:15px;
    font-weight:600;
    transition:.3s;

}

.btn-outline:hover{

    background:#0d6efd;
    color:#fff;

}

/* ===========================
Hero
=========================== */

.hero{

    padding:90px 0;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.tag{

    display:inline-block;
    background:#e7f1ff;
    color:#0d6efd;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:25px;

}

.hero h1{

    font-size:56px;
    line-height:1.1;
    margin-bottom:25px;

}

.hero p{

    font-size:18px;
    color:#555;
    margin-bottom:35px;

}

.hero-buttons{

    margin-bottom:40px;

}

.hero-image{

    text-align:center;

}

.hero-image img{

    max-width:470px;
    margin:auto;
    animation:float 4s ease-in-out infinite;

}

.trust{

    display:flex;
    flex-wrap:wrap;
    gap:20px;
    font-size:15px;
    color:#444;

}

/* ===========================
Benefits
=========================== */

.benefits{

    background:#ffffff;
    padding:90px 0;

}

.benefits h2{

    text-align:center;
    font-size:42px;
    margin-bottom:20px;

}

.section-text{

    text-align:center;
    max-width:700px;
    margin:auto;
    color:#666;
    margin-bottom:60px;

}

.cards{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.card{

    background:#f7f8fc;
    padding:35px;
    border-radius:18px;
    transition:.3s;
    text-align:center;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    margin-bottom:15px;
    color:#0d6efd;

}

/* ===========================
Features
=========================== */

.features{

    padding:90px 0;

}

.features h2{

    text-align:center;
    margin-bottom:60px;
    font-size:42px;

}

.feature-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.feature{

    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);

}

.feature h3{

    margin-bottom:15px;
    color:#0d6efd;

}

/* ===========================
How It Works
=========================== */

.how{

    background:#fff;
    padding:90px 0;

}

.how h2{

    text-align:center;
    margin-bottom:60px;
    font-size:42px;

}

.steps{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.step{

    text-align:center;
    padding:30px;

}

.number{

    width:70px;
    height:70px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:20px;
    font-size:28px;
    font-weight:700;

}

/* ===========================
Testimonials
=========================== */

.testimonial{

    padding:90px 0;

}

.testimonial h2{

    text-align:center;
    margin-bottom:50px;
    font-size:42px;

}

.reviews{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.review{

    background:#fff;
    border-radius:15px;
    padding:35px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.review p{

    margin:20px 0;

}

/* Floating Image */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}