html {
    scroll-behavior: smooth;
}

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

body {
    font-family: system-ui, sans-serif;
    background: #f6f6f4;
    color: #222;
}

/* =========================
   Header
========================= */

.nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(12px);
}

nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

a {
    text-decoration: none;
    color: #222;
}

/* =========================
   Language
========================= */
.lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang a {
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
    color: #222;
    text-decoration: none;
    line-height: 1;
    transition: .2s;
}

.lang a:hover {
    background: #f5f5f5;
}

.lang a.on {
    background: #222;
    color: #fff;
    border-color: #222;
}

/* =========================
   Hero
========================= */

.hero {
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ddd url("../images/hero.jpg") center/cover no-repeat;
}

.overlay {
    padding: 40px;
    background: rgba(255,255,255,.65);
    border-radius: 20px;
    text-align: center;
}

/* =========================
   Layout
========================= */

.wrap {
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
}

h2 {
    margin-bottom: 25px;
	text-align:center;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 30px;
    background: #222;
    color: #fff;
	margin-top: 30px;
}

/* =========================
   Slider
========================= */

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.slider img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    background: #ddd;
    border-radius: 20px;
}

.slider button {
    padding: 8px 12px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background: #222;
    color: #fff;
    cursor: pointer;
}

.slider button:hover {
    opacity: .85;
}

/* =========================
   Cards
========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 18px;
}

.card {
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* =========================
   Mobile
========================= */

@media (max-width:768px) {

    .nav {
        display: block;
    }

    .grid2 {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 55vh;
    }

    .slider img {
               height: auto;
        width: 80%;
    }

}

.desc {
    margin-top: 30px;
    font-size: 1.2rem;
text-align:center;
    line-height: 1.6; 
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}



.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s ease;
    user-select: none;
}

.logo:hover {
    color: #666;
    transform: scale(1.03);
}



@media (max-width: 768px) {

    nav {
        display: flex;
        align-items: center;
justify-content: flex-end;
    }

    .logo {
        text-align: center;
        margin-bottom: 30px;
    }

}



.nav {
    transition: transform .3s ease;
}

@media (max-width: 768px) {
    .nav.hide {
        transform: translateY(-100%);
    }
}



.checkout {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f8f8, #ececec);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.checkout h2 {
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.checkout h2 span {
    display: block;
    margin-top: 8px;
    font-size: 1.6rem;
    color: #666;
}

.checkout p {
    font-size: 1rem;
    line-height: 2;
    color: #555;
}