:root {
    --navy: #07264f;
    --navy-dark: #041a35;
    --gold: #f3a11a;
    --white: #ffffff;
    --muted: #6b788b;
    --card-bg: #fbfbfd;
    --rounded: 14px;
    --container: 1100px;
    --glass: rgba(255, 255, 255, 0.06);
    --shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    color: #0b1b2b
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
}


/* Header */

.site-header {
    background: var(--white);
    position: fixed;
    padding-top: 6px;
    height: 60px;
    width: 100%;
    justify-content: space-between;
    padding-inline: 10%;
    z-index: 3;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-badge {
    width: auto;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    display: flex;
}

.main-nav a {
    padding: 16px 20px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700
}


/* Hero */

.hero {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(0.95) saturate(0.95)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 22, 42, 0.55), rgba(3, 22, 42, 0.65));
    mix-blend-mode: multiply
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    max-width: 1100px;
}

.hero-title {
    font-size: 48px;
    margin: 0 0 6px;
    font-weight: 800
}

.hero-subtitle {
    font-size: 64px;
    margin: 0;
    line-height: 0.9;
    color: var(--gold);
    font-weight: 800
}

.hero-tag {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.9)
}

.hero-ctas {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700
}


/* Hero stats */

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    list-style: none;
}

.hero-stats li {
    color: var(--gold);
    text-align: center
}

.hero-stats li strong {
    display: block;
    font-size: 28px;
    color: var(--gold)
}

.hero-stats li span {
    display: block;
    color: white;
    font-weight: 600
}


/* Sections */

.section {
    padding-inline: 10%;
}

.section-title {
    font-size: 40px;
    color: var(--navy);
    text-align: center;
    margin: 6px 0
}

.section-lead {
    color: var(--muted);
    text-align: center;
    margin-bottom: 28px
}


/* Cards grid */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 24px
}

.card {
    background: var(--card-bg);
    padding: 22px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-height: 160px
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px
}

.card h4 {
    margin: 0 0 8px;
    color: var(--navy)
}

.card p {
    color: var(--muted);
    margin: 0
}


/* About split */

.section-split {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 80px;
}

.about-left {
    flex: 1
}

.about-right {
    width: 420px
}

.benefits {
    padding-left: 18px
}

.benefits li {
    margin-bottom: 10px;
    color: var(--muted)
}

.stats-block {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.stat {
    padding: 22px;
    border-radius: 14px;
    color: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.stat strong {
    font-size: 28px
}

.stat span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9)
}

.stat.navy {
    background: linear-gradient(180deg, var(--navy), var(--navy-dark))
}

.stat.gold {
    background: linear-gradient(180deg, var(--gold), #d68912);
    color: var(--navy)
}


/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    margin-top: 18px;
    align-items: start;
}

.info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--card-bg);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 12px
}

.info-icon {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 8px
}

.contact-action .contact-box {
    background: linear-gradient(180deg, var(--navy), var(--navy-dark));
    padding: 28px;
    border-radius: 14px;
    color: #fff;
    box-shadow: var(--shadow)
}

.contact-box-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 28px
}

.btn-cta.big {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800
}

.btn-outline.big {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #fff;
    text-decoration: none;
}


/* Footer */

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 40px 0;
    margin-top: 30px;
    padding-inline: clamp(16px, 10vw, 120px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.logo-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px
}

.logo-badge.small {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800
}

.brand.small {
    font-weight: 700
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85)
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px
}

.whatsapp-icon {
    position: fixed;
    cursor: pointer;
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 0;
    margin: 2%;
}


/* Responsive */

@media(max-width:1000px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .section-split {
        flex-direction: column
    }

    .about-right {
        width: 100%
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .header-inner {
        justify-content: center;
    }

    .logo-badge {
        display: none
    }

    .btn-primary {
        display: none
    }
}

@media(max-width:640px) {
    .hero-subtitle {
        font-size: 36px
    }

    .hero-title {
        font-size: 28px
    }

    .cards-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .btn-primary {
        padding: 8px 12px
    }

    .site-header {
        padding: 6px 0
    }
}

@media(max-width:420px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}