* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Segoe UI, Arial, sans-serif;
    color: #222;
    line-height: 1.7;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.logo,
.footer-logo {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.gold {
    color: #c8a15c;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
}

.hero {
    position: relative;
    min-height: 100vh;
    background:
        url("../img/hero.jpg")
        center center / cover
        no-repeat;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 120px 40px;
}

.badges span {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.35);
}

h1 {
    font-size: 58px;
    line-height: 1.15;
}

section {
    padding: 90px 40px;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
}

.buttons {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin: 10px 10px 0 0;
}

.gold-btn {
    background: #c8a15c;
    color: #111;
}

.dark-btn {
    background: #222;
    color: white;
}

.cards {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

.card {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    font-size: 40px;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
}

.steps {
    display: grid;
    gap: 20px;
}

.step {
    padding: 25px;
    background: #f5f5f5;
    border-radius: 15px;
}

.about {
    max-width: 900px;
    margin: auto;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 30px;
}

@media (max-width: 800px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    h1 {
        font-size: 38px;
    }

    section {
        padding: 70px 25px;
    }

    .card {
        font-size: 32px;
    }
}