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

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Segoe UI, sans-serif;
    background: #eef2f8;
}

.main-content {
    flex: 1 0 auto;
}

.footer-auth-link {
    text-decoration: none;
    color: #ffd76d;
}

a:hover {
    text-decoration: underline;
}

.btn-primary {

    display: inline-block;

    padding: 13px 28px;

    border-radius: 30px;

    background:
        linear-gradient(135deg,
            #dca84d,
            #ffd76d);

    color: #0a1f45;

    font-weight: 700;
    font-size: .95rem;

    text-decoration: none;

    transition:
        transform .25s,
        box-shadow .25s;
}

.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 6px 20px rgba(220, 168, 77, .4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ══════════════════════════════════════
   Shared utilities
══════════════════════════════════════ */

.slide-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffd76d;
    background: rgba(220,168,77,.15);
    border: 1px solid rgba(220,168,77,.4);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #dca84d;
    margin-bottom: 12px;
}

.section-tag--light {
    color: #ffd76d;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    color: #07193d;
    margin-top: 6px;
}

/* ══════════════════════════════════════
   Page Hero (shared across inner pages)
══════════════════════════════════════ */

.page-hero {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #07193d, #0c2b66, #09142c);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dca84d' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    color: white;
    width: 100%;
}

.page-hero__content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.page-hero__content h1 em {
    font-style: normal;
    color: #ffd76d;
}

.page-hero__content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    max-width: 540px;
}

.page-hero__content .btn-primary {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .page-hero__content {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ══════════════════════════════════════
   Footer
══════════════════════════════════════ */


.site-footer {

    background:
        linear-gradient(135deg,
            #07193d,
            #0c2b66,
            #09142c);

    border-top: 3px solid #dca84d;

    padding: 64px 80px 0;
}

.footer-grid {

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;

    gap: 40px;

    padding-bottom: 48px;

    border-bottom: 1px solid rgba(220, 168, 77, .2);
}

.footer-brand img {

    width: 65px;

    margin-bottom: 16px;

    filter: brightness(1.1);
}

.footer-brand p {

    color: rgba(255, 255, 255, .65);

    font-size: .88rem;

    line-height: 1.7;

    max-width: 240px;
}

.footer-col h4 {

    color: #ffd76d;

    font-size: .82rem;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.footer-col ul {

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-col ul li a {

    color: rgba(255, 255, 255, .65);

    text-decoration: none;

    font-size: .9rem;

    transition: color .25s;
}

.footer-col ul li a:hover {

    color: #ffd76d;
}

.footer-col p {

    color: rgba(255, 255, 255, .65);

    font-size: .9rem;

    margin-bottom: 10px;

    line-height: 1.5;
}

.footer-col p svg {

    width: 14px;
    height: 14px;

    stroke: #dca84d;

    vertical-align: middle;

    margin-right: 6px;
}

.footer-bottom {

    padding: 20px 0;

    text-align: center;
}

.footer-bottom p {

    color: rgba(255, 255, 255, .4);

    font-size: .82rem;
}

@media (max-width: 1100px) {

    .site-footer {
        padding: 48px 40px 0;
    }

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

@media (max-width: 768px) {

    .site-footer {
        padding: 40px 24px 0;
    }

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