:root {
    --bg: #b6a61f;
    --bg2: #c7b44b;
    --text: #000000;
    --muted: rgba(0, 0, 0, .78);
    --muted-white: rgba(255, 255, 255, .78);
    --line: rgba(0, 0, 0, .26);
    --shadow: 0 12px 30px rgba(0, 0, 0, .14);
    --radius: 22px;
    --max: 1100px;
    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px
}

.py-5 {
    padding: 50px 0;
}

.text-center {
    text-align: center;
}

.bg-block {
    background: linear-gradient(135deg, #244240, #112927);
    padding: 50px 0;
    color: #fff
}

.bg-block * {
    color: #fff
}

.bg-block .sub {
    color: var(--muted-white)
}

.bg-block .note {
    color: rgba(255, 255, 255, 0.78);
}

.topbar {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 10;
    backdrop-filter: saturate(120%) blur(10px);
    background: #222a;
    border-bottom: 1px solid rgba(0, 0, 0, .14);
    color: #fff
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 700;
    letter-spacing: .2px;
}

.brand img {
    max-height: 50px;
}

.hero {
    margin: 0;
    padding: 50px 50px 20px;
    background: url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
}

.logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: radial-gradient(circle at 35% 35%, #fff 0%, #ffeaa0 30%, #d9cc65 60%, #9b8f1a 100%);
    box-shadow: var(--shadow);
}

.navlinks {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .16);
    border: 1px solid rgba(0, 0, 0, .2);
}

.pill:hover {
    background: rgba(0, 0, 0, .22)
}

.cta {
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(0, 0, 0, .24);
}

.cta:hover {
    background: rgba(0, 0, 0, .28)
}

.hero {
    text-align: center;
}

.kicker {
    font-weight: 650;
    opacity: .95;
    letter-spacing: .2px;
    font-size: 22px;
}

.h1 {
    font-size: 56px;
    line-height: 1.06;
    margin: 8px 0 12px;
    font-weight: 850;
}

.sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .06) 100%);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .16) 100%);
}

.card h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 800
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(0, 0, 0, .22);
    font-size: 12px;
    letter-spacing: .8px;
    font-weight: 750;
}

.hr {
    height: 1px;
    background: rgba(255, 255, 255, .28);
    margin: 18px 0 18px;
}

.list {
    margin: 0;
    padding: 0;
    list-style: none
}

.list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 12px 0;
    color: rgba(0, 0, 0, .92);
}

.check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(0, 0, 0, .22);
}

.price {
    text-align: center;
    margin: 22px 0 10px;
}

.price .big {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: .2px
}

.price .small {
    font-size: 13px;
    color: var(--muted-white);
    margin-top: -6px
}

.btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .15);
    border: 1px solid rgba(0, 0, 0, .22);
    color: var(--text);
    font-weight: 750;
    cursor: pointer;
    user-select: none;
    background: #c7b44b;
}

.btn:hover {
    background: #c7b44baa;
}

.note {
    font-size: 12px;
    color: rgba(0, 0, 0, .78);
    margin-top: 10px;
    line-height: 1.45;
}

.section {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 22px;
    align-items: start;
}

.panel {
    background: #fffa;
    margin-top: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: var(--radius);
    padding: 22px;
}

.panel h2 {
    margin: 0 0 10px;
    font-size: 22px
}

.logo-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    justify-content: right;
}

.logo-trust a, .logo-trust .age-block {
    padding: 5px;
    border: 1px solid #fff2;
    background: #fff1;
    height: 50px;
    border-radius: 5px;
}

.logo-trust a img, .logo-trust .age-block img {
    height: 100%;
}

.panel p {
    margin: 10px 0;
    color: var(--muted);
    line-height: 1.65
}

.footer {
    border-top: 1px solid rgba(0, 0, 0, .16);
    background: rgba(0, 0, 0, .12);
    padding: 22px 0;
    color: #ffffff;
    background: #222;
}

.footer * {
    color: #fff
}

.footer .cols {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 18px;
    align-items: start;
}

.flinks {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.smallprint {
    font-size: 12px;
    color: rgba(0, 0, 0, .72);
    line-height: 1.55;
    margin-top: 15px;
}

.form {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.field label {
    display: block;
    font-size: 12px;
    opacity: .9;
    margin-bottom: 6px
}

.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .22);
    background: rgba(0, 0, 0, .12);
    color: var(--text);
    outline: none;
}

.field input::placeholder, .field textarea::placeholder {
    color: rgba(0, 0, 0, .55)
}

.flash {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .25);
    background: rgba(0, 0, 0, .18);
    color: rgba(0, 0, 0, .95);
}

.flash.show {
    display: block
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px
}

.table th, .table td {
    border-bottom: 1px solid rgba(0, 0, 0, .18);
    padding: 10px 8px;
    text-align: left;
}

.tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .22);
    background: rgba(0, 0, 0, .12);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .h1 {
        font-size: 44px
    }

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

    .section {
        grid-template-columns:1fr
    }

    .footer .cols {
        grid-template-columns:1fr
    }

    .flinks {
        justify-content: flex-start
    }
}

.hero2 {
    padding: 140px 0 100px;
    background: url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
}

.bg-2 {
    background: #cdc8b9;
    padding: 50px 0;
}

.hero2__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px;
    align-items: stretch;
}

.hero2__copy,
.hero2__stat {
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, .28);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero2__copy {
    padding: 30px 30px;
    background: #fffa;
    backdrop-filter: blur(5px);
}

.hero2__copy::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(520px 240px at 70% 30%, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, 0) 55%),
    radial-gradient(420px 220px at 30% 80%, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.hero2__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .6px;
    opacity: .95;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .14);
    border: 1px solid rgba(0, 0, 0, .22);
}

.hero2__title {
    margin: 14px 0 10px;
    font-size: 46px;
    line-height: 1.06;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.hero2__text {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.65;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.hero2__actions {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero2__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 14px;
    font-weight: 850;
    border: 1px solid rgba(0, 0, 0, .28);
    background: #c7b44b;
}

.hero2__btn:hover {
    background: #c7b44baa;
}

.hero2__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .22);
    background: rgba(0, 0, 0, .12);
    color: rgba(0, 0, 0, .92);
}

.hero2__link:hover {
    background: rgba(0, 0, 0, .18);
}

.hero2__stat {
    padding: 24px 22px;
    background: #fffa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.hero2__statLabel {
    font-weight: 800;
    letter-spacing: .3px;
    color: rgba(0, 0, 0, .92);
}

.hero2__statValue {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    line-height: 1;
}

.hero2__currency {
    font-weight: 900;
    font-size: 20px;
    opacity: .95;
    transform: translateY(-10px);
}

.hero2__amount {
    font-weight: 950;
    font-size: 56px;
    letter-spacing: .6px;
}

.hero2__statHint {
    font-size: 12px;
    color: rgba(0, 0, 0, .72);
}

@media (max-width: 900px) {
    .hero2__grid {
        grid-template-columns: 1fr;
    }

    .hero2__title {
        font-size: 40px;
    }

    .hero2__amount {
        font-size: 48px;
    }
}

/* ===== Mobile burger nav ===== */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .92);
    border-radius: 2px;
    transition: transform .22s ease, opacity .22s ease;
}

.burger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    opacity: 0;
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mnav {
    margin: 10px 0 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(0, 0, 0, .14);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.mnav__link {
    display: block;
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-weight: 800;
}

.mnav__link:last-of-type {
    border-bottom: none;
}

.mnav__auth {
    padding: 12px 14px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Hide desktop links on mobile */
@media (max-width: 900px) {
    .navlinks {
        display: none;
    }

    .burger {
        display: inline-flex;
        flex-wrap: wrap
    }

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