:root {
    --color-primary: #F6CE46;
    --color-bg: #16130B;
    --color-text: #FFFFFF;
    --color-text-secondary: #D6C5A0;
    --color-btn-text: #000000;
    --font-main: 'Inter', Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    color: var(--color-primary);
    margin-top: 0;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    position: fixed;
    background: rgba(22, 19, 11, 0.98);
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: 48px;
    border-radius: 12px;
}

.logo__text {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 0.75rem;
    vertical-align: middle;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--color-primary);
}

.cta-button .btn {
    background: var(--color-primary);
    color: var(--color-btn-text);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button .btn:hover,
.cta-button .btn:focus {
    background: #ffe07a;
    color: var(--color-bg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background: linear-gradient(rgba(22, 19, 11, 0.7), rgba(22, 19, 11, 0.7)), url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    min-height: 60vh;
    color: var(--color-text);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(246, 206, 70, 0.18) 0%, rgba(22, 19, 11, 0) 80%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(246, 206, 70, 0.12) 0%, rgba(22, 19, 11, 0) 80%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 600px;
    padding: 5rem 0;
    align-self: flex-start;
}

.btn-primary {
    background: linear-gradient(90deg, #F6CE46 0%, #F6CE46 100%);
    color: var(--color-btn-text);
    border: none;
    border-radius: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2rem;
    display: inline-block;
    transition: background 0.2s, color 0.2s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 0 16px 2px rgba(246, 206, 70, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(90deg, #ffe07a 0%, #F6CE46 100%);
    color: #000;
    box-shadow: 0 0 32px 6px rgba(246, 206, 70, 0.45);
    transform: scale(1.04);
}

.steps {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    padding: 0 0 1.2rem 0;
    margin: 0;
    transition: none;
    overflow: visible;
}

.step::before {
    display: none;
}

.step h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 1.3rem;
    position: relative;
}

#benefits {
    padding: 4rem 0;
    background: linear-gradient(120deg, rgb(38 30 5 / 12%) 0%, rgb(255 238 182 / 10%) 40%, rgba(22, 19, 11, 0.98) 100%);
    padding: 4rem 0 4rem 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 0 1rem 0;
}

.footer-col-left {
    text-align: left;
    flex: 1 1 0;
}

.footer-col-right {
    text-align: right;
    flex: 1 1 0;
}

.footer-col img {
    width: 48px;
    height: 48px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover,
.footer-col ul a:focus {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    padding: 1rem 0 0 0;
    border-top: 1px solid #222;
}

.legal-page {
    max-width: 700px;
    margin: 10rem auto 4rem;
    padding: 2rem;
    background: #222;
    border-radius: 1rem;
    color: var(--color-text-secondary);
}

.legal-page a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.2s;
}

.legal-page a:hover,
.legal-page a:focus {
    color: var(--color-primary);
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #181511;
    color: var(--color-text);
    font-size: 1rem;
}

.legal-page th,
.legal-page td {
    border: 1px solid #3a3322;
    padding: 0.75rem 1rem;
    text-align: left;
}

.legal-page th {
    background: #222;
    color: var(--color-primary);
    font-weight: 700;
}

.legal-page tr:nth-child(even) td {
    background: #201c15;
}

.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.section-animate.visible {
    opacity: 1;
    transform: none;
}

footer {
    position: relative;
    overflow: hidden;
}

.social-links a {
    display: inline-block;
    margin-left: 1rem;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
    color: #ffe07a;
    transform: scale(1.2) rotate(-8deg);
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    scroll-padding-top: 5rem;
}

@media (max-width: 768px) {
    .hero::before,
    .hero::after {
        display: none;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #18140C;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem 0;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}

.how-it-works-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    text-align: left;
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.steps.steps-column {
    flex-direction: column;
    gap: 2.2rem;
}

.how-it-works-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 420px;
    padding: 1.5rem 0 1.5rem 0;
}

.how-it-works-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1024px) {
    .hero-content {
        align-items: flex-start;
        text-align: left;
        padding: 2rem 0;
    }
    .how-it-works-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        text-align: left;
    }
    .how-it-works-image {
        margin: 0 auto;
        max-width: 440px;
        padding: 1rem 0 1rem 0;
    }
    .how-it-works-image img {
        max-width: 440px;
    }
}

#cta {
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(22, 19, 11, 0.7), rgba(22, 19, 11, 0.7)), url('../assets/images/cta-bg.jpg') center/cover no-repeat;
    transform: scaleX(-1);
    z-index: 0;
    pointer-events: none;
}

#cta .container,
#cta .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.benefits-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.benefits-center h2,
.benefits-center p {
    text-align: center;
}

.benefits-stars {
    width: 312px;
    height: 45px;
    margin-bottom: 2rem;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1rem 2rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.cookie-consent-content span {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 960px;
    text-align: left;
    flex: 1 1 320px;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    background: #F6CE46;
    color: #000;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-consent-btn.settings {
    background: #444;
    color: #fff;
}

.cookie-consent-btn.decline {
    background: #fff;
    color: #000;
}

.cookie-consent-btn.accept {
    background: #F6CE46;
    color: #000;
}

.cookie-consent-btn:hover {
    background: #ffe07a;
    color: #000;
}

@media (max-width: 700px) {
    .cookie-consent-banner {
        border-radius: 1.2rem 1.2rem 0 0;
        box-shadow: 0 2px 16px rgba(0,0,0,0.12);
        padding: 1.1rem 1rem 1.2rem 1rem;
        margin: 0 auto;
        max-width: 480px;
        width: auto;
        display: block;
        font-size: 1.05rem;
    }
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .cookie-consent-content span {
        font-size: 1.05rem;
        text-align: left;
        line-height: 1.6;
        flex: 0;
    }
    .cookie-consent-actions {
        flex-direction: row;
        gap: 0.7rem;
        justify-content: flex-start;
    }
    .cookie-consent-btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 0.9rem 0;
        border-radius: 1.8rem;
        font-weight: 600;
        border: 2px solid transparent;
        transition: background 0.18s, color 0.18s, border 0.18s;
    }
    .cookie-consent-btn.accept {
        background: #F6CE46;
        color: #222;
        border: 2px solid #F6CE46;
    }
    .cookie-consent-btn.accept:hover {
        background: #ffe07a;
        border-color: #ffe07a;
        color: #222;
    }
    .cookie-consent-btn.decline {
        background: #fff;
        color: #222;
        border: 2px solid #d1d5db;
    }
    .cookie-consent-btn.decline:hover {
        background: #f3f4f6;
        color: #222;
        border-color: #bdbdbd;
    }
    .nav-links {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .nav-links a {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        display: block;
    }
    .footer-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
    }
    .footer-col-left {
        text-align: left;
        margin-bottom: 0.5rem;
    }
    .footer-col-right {
        text-align: right;
        margin-bottom: 0.5rem;
    }
    .footer-col ul {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    .footer-col ul li {
        margin: 0;
    }
    .footer-col ul li a {
        font-size: 1.1rem;
    }
    .footer-bottom {
        margin-top: 1.2rem;
        font-size: 0.98rem;
        text-align: center;
    }
}

@media (min-width: 700px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-col {
        text-align: left;
        margin-bottom: 0;
    }
    .footer-col ul {
        flex-direction: row;
        gap: 1.2rem;
        align-items: center;
        justify-content: flex-end;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#cta .container,
#cta .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#cta .hero-content h2,
#cta .hero-content p {
    text-align: center;
}

footer .container {
    text-align: left;
}

@media (min-width: 1025px) {
    .hero-content {
        padding-top: 5rem;
    }
}

.header-spacer {
    height: 72px;
}

@media (max-width: 768px) {
    .header-spacer {
        height: 64px;
    }
}