* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e8ebef;
}

.navbar {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #102a43;
    color: #ffffff;

    font-size: 22px;
    font-weight: 800;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 14px;
    letter-spacing: 1px;
}

.logo-text small {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: #8a929d;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;

    color: #596472;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #102a43;
}

.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 2px;

    background: #c49a5a;
}

.nav-button {
    padding: 12px 20px;

    background: #102a43;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-button:hover {
    background: #c49a5a;
}

.menu-toggle {
    display: none;

    border: none;
    background: none;

    color: #102a43;

    font-size: 25px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.page-hero {
    min-height: 500px;

    display: flex;
    align-items: center;

    padding-top: 82px;

    background:
        linear-gradient(
            115deg,
            #0b2237,
            #163851,
            #24475f
        );

    color: #ffffff;
}

.page-hero-content {
    max-width: 850px;
}

.hero-label {
    display: block;

    margin-bottom: 20px;

    color: #d8b476;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.page-hero h1 {
    max-width: 850px;

    font-size: clamp(45px, 6vw, 70px);

    line-height: 1.08;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.page-hero h1 span {
    color: #d8b476;
}

.page-hero p {
    max-width: 680px;

    color: #d5dfe7;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 28px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #aebdca;

    font-size: 12px;
}

.breadcrumb a {
    color: #d8b476;
}


/* =====================================================
   GENERAL
===================================================== */

.section {
    padding: 110px 0;
}

.section-label {
    display: block;

    color: #c49a5a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

h2 {
    font-size: 45px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

h2 span {
    color: #c49a5a;
}

.section-heading {
    margin-bottom: 60px;
}

.centered {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.centered p {
    max-width: 680px;

    margin: 20px auto 0;

    color: #707a85;

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   INTRO
===================================================== */

.intro {
    background: #ffffff;
}

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.intro-content p {
    color: #6d7782;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 18px;
}


/* =====================================================
   DIFFERENTIATORS
===================================================== */

.differentiators {
    background: #f7f8f9;
}

.difference-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.difference-card {
    position: relative;

    padding: 38px 30px;

    background: #ffffff;

    border: 1px solid #e3e7ea;

    transition: 0.3s;
}

.difference-card:hover {
    transform: translateY(-6px);

    border-color: #c49a5a;

    box-shadow: 0 15px 35px rgba(16, 42, 67, 0.08);
}

.difference-card .number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: #c49a5a;

    font-size: 11px;
    font-weight: 800;
}

.icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background: #102a43;

    color: #d8b476;

    font-size: 15px;
    font-weight: 800;
}

.difference-card h3 {
    font-size: 19px;

    margin-bottom: 12px;
}

.difference-card p {
    color: #707a85;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   APPROACH
===================================================== */

.approach {
    background: #ffffff;
}

.approach-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.approach-visual {
    position: relative;

    min-height: 500px;
}

.visual-main {
    min-height: 500px;

    padding: 50px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #102a43,
            #24475f
        );

    color: #ffffff;
}

.visual-main span {
    color: #d8b476;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.visual-main strong {
    font-size: 45px;

    line-height: 1.25;

    letter-spacing: -1px;
}

.visual-small {
    position: absolute;

    right: -25px;
    bottom: -25px;

    width: 155px;
    height: 155px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: #c49a5a;

    color: #ffffff;

    text-align: center;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.approach-content > p {
    color: #707a85;

    font-size: 14px;

    line-height: 1.9;

    margin: 20px 0 30px;
}

.approach-list {
    display: flex;
    flex-direction: column;
}

.approach-list > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid #e1e5e8;
}

.approach-list > div:first-child {
    border-top: 1px solid #e1e5e8;
}

.approach-list > div > span {
    color: #c49a5a;

    font-size: 11px;
    font-weight: 800;
}

.approach-list h3 {
    font-size: 17px;

    margin-bottom: 5px;
}

.approach-list p {
    color: #707a85;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   CLIENT FIRST
===================================================== */

.client-first {
    background: #f7f8f9;
}

.client-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.client-card {
    padding: 35px 27px;

    background: #ffffff;

    border: 1px solid #e3e7ea;

    transition: 0.3s;
}

.client-card:hover {
    transform: translateY(-5px);

    border-color: #c49a5a;
}

.client-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #f0e5d4;

    color: #a4793f;

    font-size: 11px;
    font-weight: 800;
}

.client-card h3 {
    font-size: 18px;

    margin-bottom: 10px;
}

.client-card p {
    color: #707a85;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   BUSINESS TRUST
===================================================== */

.business-trust {
    background: #102a43;

    color: #ffffff;
}

.business-trust-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.business-trust-content p {
    max-width: 600px;

    color: #c3ced7;

    font-size: 14px;

    line-height: 1.9;

    margin: 20px 0;
}

.trust-points {
    display: flex;
    flex-direction: column;
}

.trust-point {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 23px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-point:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-point > span {
    color: #d8b476;

    font-size: 11px;
    font-weight: 800;
}

.trust-point h3 {
    font-size: 17px;

    margin-bottom: 5px;
}

.trust-point p {
    color: #aebdca;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   COMMITMENT
===================================================== */

.commitment {
    background: #f7f8f9;
}

.commitment-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.commitment-box > div:last-child p {
    color: #707a85;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 20px;
}


/* =====================================================
   STATS
===================================================== */

.stats {
    padding: 85px 0;

    background: #102a43;

    color: #ffffff;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.stats-grid > div {
    text-align: center;

    padding: 10px 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-grid > div:last-child {
    border-right: none;
}

.stats-grid strong {
    display: block;

    color: #ffffff;

    font-size: 43px;

    line-height: 1.2;
}

.stats-grid span {
    display: block;

    margin-top: 8px;

    color: #aebdca;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =====================================================
   FAQ
===================================================== */

.faq {
    background: #ffffff;
}

.faq-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

.faq-grid > div:first-child p {
    color: #707a85;

    font-size: 14px;

    line-height: 1.9;

    margin-top: 20px;
}

.faq-list {
    border-top: 1px solid #e1e5e8;
}

.faq-item {
    border-bottom: 1px solid #e1e5e8;
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 22px 5px;

    border: none;

    background: #ffffff;

    color: #172033;

    text-align: left;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.faq-question span {
    color: #c49a5a;

    font-size: 20px;

    transition: 0.3s;
}

.faq-answer {
    display: none;

    padding: 0 5px 22px;

    color: #707a85;

    font-size: 13px;

    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}


/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 90px 0;

    background:
        linear-gradient(
            110deg,
            #163852,
            #0b2237
        );

    color: #ffffff;
}

.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.cta h2 {
    max-width: 700px;
}

.cta p {
    max-width: 650px;

    margin-top: 18px;

    color: #c5d1da;

    font-size: 14px;
}

.cta-button {
    white-space: nowrap;

    padding: 16px 25px;

    background: #c49a5a;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    transition: 0.3s;
}

.cta-button:hover {
    background: #d8b476;

    transform: translateY(-2px);
}

.cta-button span {
    margin-left: 10px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #0a1d2e;

    color: #aebac5;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding: 65px 0;
}

.footer-logo {
    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.footer-grid p {
    max-width: 280px;

    font-size: 12px;

    line-height: 1.8;
}

.footer-grid h4 {
    color: #ffffff;

    font-size: 13px;

    margin-bottom: 18px;
}

.footer-grid a {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;

    transition: 0.3s;
}

.footer-grid a:hover {
    color: #d8b476;
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 11px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 15px;
    }

    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   MOBILE NAV
===================================================== */

@media (max-width: 800px) {

    .nav-menu,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu.show {
        display: flex;

        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: #ffffff;

        flex-direction: column;

        gap: 20px;

        border-bottom: 1px solid #e5e8eb;
    }

    .intro-grid,
    .approach-grid,
    .business-trust-grid,
    .commitment-box,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

    .stats-grid > div {
        border-right: none;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .navbar {
        height: 72px;
    }

    .page-hero {
        min-height: 470px;

        padding-top: 72px;
    }

    .page-hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .section {
        padding: 75px 0;
    }

    h2 {
        font-size: 35px;
    }

    .difference-grid,
    .client-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .visual-main {
        min-height: 400px;

        padding: 35px;
    }

    .visual-main strong {
        font-size: 36px;
    }

    .visual-small {
        right: 10px;
        bottom: -15px;

        width: 130px;
        height: 130px;
    }

    .cta {
        padding: 70px 0;
    }
}
/* Reduce spacing in Footer Contact section */
.footer-grid > div:last-child p {
    margin: 0 0 10px;
    line-height: 1.5;
}

.footer-grid > div:last-child a {
    display: inline;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid #e8ebef;
}

/* ================================
   HEADER - DESKTOP
================================ */
/* DESKTOP */
.navbar {
    height: 82px;
    display: flex;
    align-items: center;
}
/* LOGO ONLY */
.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-shrink: 0;
}

.logo img {
    width: 80px;
    height: 58px;
    object-fit: contain;
    display: block;
    transform: scale(4);
    transform-origin: left center;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-button {
    display: block;
    margin-left: 28px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
}

/* ================================
   MOBILE MENU
================================ */

@media (max-width: 800px) {

    .nav-menu {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        padding: 20px 25px;
        box-sizing: border-box;
        z-index: 9999;
    }

    /* OPEN MENU */
    .nav-menu.show {
        display: flex !important;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 0;
        color: #102a43;
    }

    /* Hide Book Consultation on mobile */
    .nav-button {
        display: none;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        margin-left: auto;
        background: none;
        border: none;
        font-size: 30px;
        color: #102a43;
        cursor: pointer;
        z-index: 10000;
    }
}
.copyright {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 13px;
    color: #8a929d;
}