:root {
    --boostify-navy: #003672;
    --boostify-blue: #003672;
    --boostify-sky: #d9ad63;
    --boostify-teal: #d9ad63;
    --boostify-gold: #d9ad63;
    --boostify-cream: #f7f2ea;
    --boostify-ice: #f4f6fb;
    --boostify-text: #162033;
    --boostify-muted: #697386;
    --boostify-border: rgba(0, 54, 114, 0.1);
    --boostify-shadow: 0 24px 70px rgba(0, 54, 114, 0.1);
}

body {
    color: var(--boostify-text);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.boostify-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid rgba(0, 54, 114, 0.09);
}

.boostify-header-top {
    background: var(--boostify-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 9px 0;
}

.boostify-header-top__inner,
.boostify-header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.boostify-header-top a {
    color: #fff;
    text-decoration: none;
}

.boostify-header-main {
    padding: 14px 0;
}

.boostify-brand img {
    max-height: 58px;
    width: auto;
}

.boostify-main-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.boostify-main-nav li {
    position: relative;
}

.boostify-main-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 0;
    color: var(--boostify-navy);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.boostify-main-nav a:hover,
.boostify-main-nav a:focus,
.boostify-main-nav .current-menu-item > a {
    background: transparent;
    color: var(--boostify-gold);
}

.boostify-main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--boostify-border);
    border-radius: 0;
    background: #fff;
    box-shadow: var(--boostify-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.2s ease;
}

.boostify-main-nav li:hover > .sub-menu,
.boostify-main-nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.boostify-main-nav .sub-menu a {
    border-radius: 0;
    justify-content: flex-start;
}

.boostify-header-cta,
.boostify-btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: var(--boostify-gold);
    color: var(--boostify-navy);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: none;
}

.boostify-header-cta:hover,
.boostify-header-cta:focus,
.boostify-btn-brand:hover,
.boostify-btn-brand:focus {
    background: var(--boostify-navy);
    color: #fff;
    text-decoration: none;
}

.boostify-mobile-toggle {
    display: none;
    border: 0;
    background: var(--boostify-cream);
    color: var(--boostify-navy);
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
}

.boostify-page-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    background: radial-gradient(circle at 80% 20%, rgba(217, 173, 99, 0.32), transparent 26%), linear-gradient(120deg, rgba(0, 54, 114, 0.95), rgba(0, 54, 114, 0.78)), var(--boostify-navy);
    color: #fff;
}

.boostify-page-hero:before,
.boostify-page-hero:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.boostify-page-hero:before {
    width: 280px;
    height: 280px;
    right: 8%;
    top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.boostify-page-hero:after {
    width: 380px;
    height: 380px;
    left: -120px;
    bottom: -160px;
    background: rgba(217, 173, 99, 0.22);
    filter: blur(4px);
}

.boostify-page-hero .container {
    position: relative;
    z-index: 2;
}

.boostify-page-hero h1 {
    color: #fff;
    max-width: 900px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    margin: 0 0 16px;
    letter-spacing: -0.05em;
}

.boostify-page-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 1.8;
    margin: 0;
}

.boostify-common-section {
    padding: 96px 0;
    background: #fff;
}

.boostify-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.boostify-info-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 34px;
    border: 1px solid var(--boostify-border);
    border-radius: 0;
    background: #fff;
    box-shadow: var(--boostify-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.boostify-info-card:before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--boostify-gold);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.boostify-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(16, 32, 51, 0.14);
}

.boostify-info-card:hover:before {
    opacity: 1;
}

.boostify-info-card i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(217, 173, 99, 0.16);
    color: var(--boostify-gold);
    font-size: 22px;
    margin-bottom: 22px;
}

.boostify-info-card h3 {
    color: var(--boostify-navy);
    font-size: 22px;
    margin-bottom: 12px;
}

.boostify-info-card p {
    color: var(--boostify-muted);
    line-height: 1.75;
    margin: 0;
}

.boostify-site-footer {
    background: var(--boostify-navy);
    color: rgba(255, 255, 255, 0.76);
    padding: 72px 0 0;
}

.boostify-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 34px;
}

.boostify-footer-logo img {
    max-width: 180px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 20px;
}

.boostify-site-footer h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.boostify-site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.boostify-site-footer li {
    margin-bottom: 10px;
}

.boostify-site-footer a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.boostify-site-footer a:hover,
.boostify-site-footer a:focus {
    color: var(--boostify-gold);
}

.boostify-footer-bottom {
    margin-top: 54px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

@media (max-width: 991px) {
    .boostify-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .boostify-main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 14px 20px 24px;
        background: #fff;
        border-bottom: 1px solid var(--boostify-border);
    }

    .boostify-site-header.is-open .boostify-main-nav {
        display: block;
    }

    .boostify-main-nav ul {
        display: block;
    }

    .boostify-main-nav a {
        justify-content: space-between;
    }

    .boostify-main-nav .sub-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding-left: 18px;
    }

    .boostify-header-cta {
        display: none;
    }

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