:root {
    --bg-main: #c0f5c3;
    --bg-alt: #e2dfdd;
    --bg-dark: #2e2a27;

    --text-main: #2b2b2b;
    --text-muted: #6b6b6b;
    --text-light: #ada9a9;

    --accent: #7a3838;
    --accent-soft: #a56767;

    --border-radius: 14px;
    --container-width: 1100px;
}

/* Reset */

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

/* Base */

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

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

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

/* Header */

.site-header {
    background: #fbfcfa;
    border-bottom: 1px solid #e5e0dc;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo {
    font-weight: 700;
    font-size: 28px;
}

.logo span {
    color: var(--accent);
}

.main-nav a {
    margin-left: 24px;
    font-weight: 500;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 20px;
    font-weight: 600;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
}

.btn-outline {
    border: 4px solid var(--accent);
    color: var(--accent);
}

.btn-link {
    padding: 0;
    color: var(--accent);
}

/* Hero */

.hero {
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-actions a {
    margin-right: 20px;
}

.visual-card {
    background: #a1c9ec;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.visual-card h3 {
    margin-bottom: 16px;
}

.visual-card ul {
    list-style: none;
}

.visual-card li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Sections */

.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 36px;
}


/* Age gate */

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-box {
    background: #ffffff;
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.age-gate-box h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.age-gate-box p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.age-gate-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.age-gate-actions .btn {
    flex: 1;
}


/* Steps */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-number {
    color: var(--accent);
    font-weight: 700;
}

.step h3 {
    margin: 10px 0;
}

/* Features */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature h3 {
    margin-bottom: 10px;
}

/* Image feature blocks */

.image-feature {
    padding: 60px 0;
}

.hero + .image-feature,
.section + .image-feature {
    padding-top: 40px;
}

.image-feature-alt {
    background: var(--bg-alt);
}

.image-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-feature-media img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.image-feature-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.image-feature-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 480px;
}

.image-feature-list {
    list-style: none;
    padding-left: 0;
}

.image-feature-list li {
    position: static;
}

.image-feature-list li::before,
.image-feature-list li::marker {
    content: none !important;
    display: none !important;
}

/* CTA */

.cta {
    padding: 70px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.cta-box {
    text-align: center;
    max-width: 700px;
}

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.cta-box p {
    color: #d1d1d1;
    margin-bottom: 28px;
}

/* Footer */

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e0dc;
    padding: 30px 0;
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    margin: 0 6px;
}

.disclaimer {
    margin-top: 10px;
    font-size: 8px;
}
/* Support button */

.support-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 1000;
}

/* Modal base */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.modal-small {
    max-width: 360px;
    text-align: center;
}

.modal h2 {
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Close button */

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-muted);
}

/* Form */

.modal form label {
    display: block;
    font-size: 14px;
    margin-bottom: 14px;
}

.modal input,
.modal textarea {
    width: 100%;
    margin-top: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-family: inherit;
    font-size: 14px;
}

.modal textarea {
    resize: vertical;
    min-height: 90px;
}

.modal button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

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

@media (max-width: 900px) {

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Header */
    .header-inner {
        height: auto;
        padding: 16px 0;
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        font-size: 22px;
    }

    .main-nav {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav a {
        margin-left: 0;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 48px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 30px;
        text-align: center;
    }

    .hero p {
        font-size: 15px;
        text-align: center;
        max-width: none;
    }

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

    .hero-actions a {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    /* Visual card */
    .visual-card {
        padding: 24px;
    }

    /* Sections */
    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

    /* Steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Features */
    .features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Image feature blocks */
    .image-feature {
        padding: 48px 0;
    }

    .image-feature-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .image-feature-text h2 {
        font-size: 26px;
        text-align: center;
    }

    .image-feature-text p {
        font-size: 15px;
        text-align: center;
        max-width: none;
    }

    .image-feature-list {
        margin-top: 16px;
    }

    .image-feature-media img {
        max-width: 100%;
    }

    /* CTA */
    .cta {
        padding: 56px 0;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box p {
        font-size: 15px;
    }

    .cta-box .btn {
        width: 100%;
    }

    /* Footer */
    .site-footer {
        padding: 24px 0;
    }

    .footer-links {
        font-size: 13px;
    }

    /* Support button */
    .support-button {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 14px;
    }

    /* Modals */
    .modal {
        padding: 24px;
        margin: 0 16px;
    }

    .modal h2 {
        font-size: 20px;
    }

    .modal-subtitle {
        font-size: 13px;
    }

    /* Age gate */
    .age-gate-box {
        padding: 28px 20px;
        margin: 0 16px;
    }

    .age-gate-box h2 {
        font-size: 22px;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .age-gate-actions .btn {
        width: 100%;
    }
}


