@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* Brand Colors */
    --gentleman-base-dark: #0f172a;      /* Deep Slate */
    --gentleman-surface-alt: #1e293b;    /* Lighter Slate */
    --gentleman-highlight: #38bdf8;      /* Light Blue Accent */
    --gentleman-accent-warm: #f59e0b;    /* Warm Amber */
    --gentleman-text-main: #f8fafc;
    --gentleman-text-muted: #94a3b8;
    
    /* Typography */
    --font-heading-accent: 'Montserrat', sans-serif;
    --font-body-read: 'Roboto', sans-serif;

    /* Gradients */
    --gentleman-gradient-primary: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
    --gentleman-gradient-overlay: linear-gradient(to top, #0f172a 0%, transparent 100%);
    --gentleman-gradient-highlight: linear-gradient(90deg, #38bdf8 0%, #2563eb 100%);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body-read);
    background-color: var(--gentleman-base-dark);
    color: var(--gentleman-text-main);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading-accent);
}

/* Unique Structural Classes */
.vitality-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.masculine-header-block {
    background-color: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
}

.nav-link-item {
    color: var(--gentleman-text-main);
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link-item:hover {
    color: var(--gentleman-highlight);
}

.intro-visual-zone {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.intro-content-layer {
    position: relative;
    z-index: 10;
}

.action-trigger-btn {
    display: inline-block;
    background: var(--gentleman-gradient-highlight);
    color: #ffffff;
    font-family: var(--font-heading-accent);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.action-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.5);
}

.insight-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-module {
    background-color: var(--gentleman-surface-alt);
    border-radius: 1rem;
    padding: 2.5rem;
    border-top: 4px solid var(--gentleman-highlight);
    transition: transform 0.3s ease;
}

.insight-module:hover {
    transform: translateY(-5px);
}

.step-flow-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .step-flow-area {
        flex-direction: row;
        justify-content: space-between;
    }
}

.step-node {
    flex: 1;
    position: relative;
    padding: 2rem;
    background: var(--gentleman-surface-alt);
    border-radius: 1rem;
    text-align: center;
}

.step-indicator {
    width: 60px;
    height: 60px;
    background: var(--gentleman-accent-warm);
    color: var(--gentleman-base-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading-accent);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
}

/* Forms & Inputs */
.info-registry-form {
    background: var(--gentleman-surface-alt);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.input-field-custom {
    width: 100%;
    background: var(--gentleman-base-dark);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--gentleman-text-main);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    font-family: var(--font-body-read);
}

.input-field-custom:focus {
    outline: none;
    border-color: var(--gentleman-highlight);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

/* Numbered lists for Reserve */
.methodology-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.methodology-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gentleman-text-muted);
}

.methodology-list li::before {
    content: counter(my-counter);
    counter-increment: my-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--gentleman-highlight);
    color: var(--gentleman-base-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--font-heading-accent);
}

.methodology-wrapper {
    counter-reset: my-counter;
}

/* FAQ Accordion mimic */
.faq-block-wrap {
    background: var(--gentleman-surface-alt);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-title-bar {
    padding: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading-accent);
    color: var(--gentleman-highlight);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-response {
    padding: 1.5rem;
    color: var(--gentleman-text-muted);
    line-height: 1.6;
}

/* Mobile Menu Toggle */
.mobile-nav-panel {
    display: none;
    background: var(--gentleman-base-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-panel.active {
    display: flex;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gentleman-base-dark);
    border-top: 2px solid var(--gentleman-highlight);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -10px 25px rgba(0,0,0,0.5);
    display: none; /* Controlled by JS */
}

.cookie-content-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .cookie-content-wrap {
        flex-direction: row;
    }
}

.btn-cookie-accept {
    background: var(--gentleman-highlight);
    color: var(--gentleman-base-dark);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

.btn-cookie-decline {
    background: #4B5563;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

/* Footer layout */
.base-footer-zone {
    background-color: var(--gentleman-base-dark);
    border-top: 1px solid var(--gentleman-surface-alt);
    padding: 4rem 0 2rem 0;
    margin-top: auto;
}

.legal-page-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.legal-content-area {
    flex-grow: 1;
    padding: 4rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content-area p {
    margin-bottom: 1.5rem;
    color: var(--gentleman-text-muted);
    line-height: 1.8;
}

/* Stats */
.stat-figure-box {
    text-align: center;
    padding: 2rem;
    background: var(--gentleman-surface-alt);
    border-radius: 1rem;
}

.stat-number-huge {
    font-size: 3.5rem;
    font-family: var(--font-heading-accent);
    color: var(--gentleman-accent-warm);
    font-weight: 800;
    margin-bottom: 0.5rem;
}