:root {
    --teal: #3a8fa3;
    --teal-dark: #2c7089;
    --teal-light: #e8f5f8;
    --gold: #e8a838;
    --gold-light: #fdf3e0;
    --white: #ffffff;
    --gray-light: #f7f9fa;
    --gray: #6b7a84;
    --dark: #1e3040;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(58, 143, 163, 0.10);

    /* Layout */
    --max-w: 1200px;
    --gutter: clamp(20px, 5vw, 80px);
    --section-v: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ══════════════════════════════════════════════
    CONTAINER
══════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ══════════════════════════════════════════════
    SECTION
══════════════════════════════════════════════ */
section {
    padding-top: var(--section-v);
    padding-bottom: var(--section-v);
}

.section-label {
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(1rem, 2.8vw, 1.25rem);
    font-weight: 900;
    color: var(--teal-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    max-width: 620px;
    font-weight: 600;
}

/* ══════════════════════════════════════════════
    BUTTONS
══════════════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}


/* ══════════════════════════════════════════════
    STATS STRIP
══════════════════════════════════════════════ */
.stats-strip {
    background: var(--gold);
    padding: 28px var(--gutter);
}

.stats-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: clamp(24px, 6vw, 80px);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: .83rem;
    font-weight: 700;
    opacity: .9;
    margin-top: 4px;
}

/* ══════════════════════════════════════════════
    ANIMATION
══════════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════
    FOOTER
══════════════════════════════════════════════ */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .45);
    text-align: center;
    padding: 32px var(--gutter);
    font-size: .86rem;
    font-weight: 600;
}

footer strong {
    color: var(--white);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .55);
    transition: background .2s, color .2s;
}

.footer-social-link:hover {
    background: var(--teal);
    color: var(--white);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}