* {
  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,
input,
textarea,
select {
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,.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: white;

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: .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: white;

font-size: 13px;
font-weight: 700;

transition: .3s;

}

.nav-button:hover {
background: #c49a5a;
}

.menu-toggle {
display: none;

border: none;
background: none;

color: #102a43;

font-size: 25px;

cursor: pointer;

}

/* =====================================================
PAGE HERO
===================================================== */

.page-hero {
min-height: 500px;

display: flex;
align-items: center;

padding-top: 82px;

background:
    linear-gradient(
        115deg,
        #0b2237,
        #163851,
        #24475f
    );

color: white;

}

.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;

}

/* =====================================================
SERVICES INTRO
===================================================== */

.services-intro {
background: white;
}

.intro-grid {
display: grid;

grid-template-columns: 1fr 1fr;

gap: 90px;

align-items: center;

}

.intro-grid p {
color: #6d7782;

font-size: 14px;

line-height: 1.9;

margin-bottom: 18px;

}

/* =====================================================
MAIN SERVICES
===================================================== */

.services-main {
background: #f7f8f9;
}

.service-list {
display: flex;
flex-direction: column;

gap: 18px;

}

.service-detail {
display: grid;

grid-template-columns: 60px 80px 1fr;

gap: 25px;

padding: 38px;

background: white;

border: 1px solid #e3e7ea;

transition: .3s;

}

.service-detail:hover {
border-color: #c49a5a;

transform: translateY(-3px);

box-shadow: 0 15px 40px rgba(16,42,67,.07);

}

.service-number {
color: #c49a5a;

font-size: 12px;

font-weight: 800;

}

.service-icon {
width: 70px;
height: 70px;

display: flex;
align-items: center;
justify-content: center;

background: #102a43;

color: #d8b476;

font-size: 11px;

font-weight: 800;

letter-spacing: 1px;

}

.service-category {
color: #c49a5a;

font-size: 10px;

font-weight: 800;

letter-spacing: 2px;

}

.service-content h3 {
font-size: 25px;

margin: 7px 0 12px;

}

.service-content > p {
max-width: 800px;

color: #6d7782;

font-size: 14px;

line-height: 1.8;

}

.service-columns {
display: grid;

grid-template-columns: 1fr 1fr;

gap: 20px;

max-width: 700px;

margin: 20px 0;

}

.service-columns ul {
list-style: none;
}

.service-columns li {
position: relative;

padding-left: 18px;

margin-bottom: 8px;

color: #4f5b67;

font-size: 12px;

}

.service-columns li::before {
content: "✓";

position: absolute;

left: 0;

color: #c49a5a;

font-weight: 800;

}

.service-link {
color: #102a43;

font-size: 12px;

font-weight: 800;

transition: .3s;

}

.service-link:hover {
color: #c49a5a;
}

/* =====================================================
INDIVIDUAL SERVICES
===================================================== */

.audience-section {
background: white;
}

.audience-grid {
display: grid;

grid-template-columns: repeat(4,1fr);

gap: 18px;

}

.audience-card {
padding: 32px 25px;

border: 1px solid #e3e7ea;

transition: .3s;

}

.audience-card:hover {
border-color: #c49a5a;

transform: translateY(-5px);

}

.audience-card > span {
color: #c49a5a;

font-size: 11px;

font-weight: 800;

}

.audience-card h3 {
font-size: 18px;

margin: 22px 0 10px;

}

.audience-card p {
color: #707a85;

font-size: 13px;

line-height: 1.8;

}

/* =====================================================
BUSINESS SECTION
===================================================== */

.business-section {
background: #102a43;

color: white;

}

.business-grid {
display: grid;

grid-template-columns: .9fr 1.1fr;

gap: 90px;

align-items: center;

}

.business-content h2 {
max-width: 600px;
}

.business-content > p {
max-width: 600px;

color: #c2ced8;

font-size: 14px;

line-height: 1.9;

margin: 20px 0;

}

.primary-btn {
display: inline-flex;

align-items: center;
justify-content: center;

gap: 12px;

margin-top: 15px;

padding: 15px 23px;

background: #c49a5a;

color: white;

font-size: 13px;

font-weight: 800;

transition: .3s;

}

.primary-btn:hover {
background: #d8b476;

transform: translateY(-2px);

}

.business-list {
display: grid;

grid-template-columns: 1fr 1fr;

gap: 0 30px;

}

.business-list > div {
padding: 25px 0;

border-bottom: 1px solid rgba(255,255,255,.15);

}

.business-list strong {
color: #d8b476;

font-size: 11px;

}

.business-list h3 {
font-size: 17px;

margin: 10px 0 7px;

}

.business-list p {
color: #aebdca;

font-size: 12px;

line-height: 1.7;

}

/* =====================================================
BENEFITS
===================================================== */

.service-benefits {
background: #f7f8f9;
}

.benefit-grid {
display: grid;

grid-template-columns: repeat(4,1fr);

gap: 18px;

}

.benefit-card {
padding: 35px 27px;

background: white;

border-top: 2px solid #c49a5a;

}

.benefit-number {
color: #c49a5a;

font-size: 11px;

font-weight: 800;

margin-bottom: 25px;

}

.benefit-card h3 {
font-size: 18px;

margin-bottom: 12px;

}

.benefit-card p {
color: #707a85;

font-size: 13px;

line-height: 1.8;

}

/* =====================================================
PROCESS
===================================================== */

.process {
background: white;
}

.process-grid {
display: grid;

grid-template-columns: repeat(4,1fr);

gap: 18px;

}

.process-card {
padding: 35px 25px;

border: 1px solid #e3e7ea;

}

.process-number {
color: #c49a5a;

font-size: 11px;

font-weight: 800;

margin-bottom: 25px;

}

.process-card h3 {
font-size: 18px;

margin-bottom: 10px;

}

.process-card p {
color: #707a85;

font-size: 13px;

line-height: 1.8;

}

/* =====================================================
FAQ
===================================================== */

.faq {
background: #f7f8f9;
}

.faq-grid {
display: grid;

grid-template-columns: .8fr 1.2fr;

gap: 80px;

}

.faq-grid > div:first-child p {
color: #707a85;

font-size: 14px;

line-height: 1.9;

margin-top: 20px;

}

.faq-item {
background: white;

border-bottom: 1px solid #e2e6e9;

}

.faq-question {
width: 100%;

display: flex;

align-items: center;
justify-content: space-between;

padding: 22px 5px;

border: none;

background: white;

color: #172033;

text-align: left;

font-size: 14px;

font-weight: 700;

cursor: pointer;

}

.faq-question span {
color: #c49a5a;

font-size: 20px;

}

.faq-answer {
display: none;

padding: 0 5px 22px;

color: #707a85;

font-size: 13px;

line-height: 1.8;

}

.faq-item.open .faq-answer {
display: block;
}

/* =====================================================
CTA
===================================================== */

.cta {
padding: 90px 0;

background:
    linear-gradient(
        110deg,
        #163852,
        #0b2237
    );

color: white;

}

.cta-content {
display: flex;

align-items: center;
justify-content: space-between;

gap: 50px;

}

.cta h2 {
max-width: 650px;
}

.cta p {
max-width: 650px;


margin-top: 18px;

color: #c5d1da;

font-size: 14px;


}

.cta-button {
white-space: nowrap;

padding: 16px 25px;

background: #c49a5a;

color: white;

font-size: 13px;

font-weight: 800;

}

.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: white;

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: white;


font-size: 13px;

margin-bottom: 18px;


}

.footer-grid a {
display: block;


margin-bottom: 10px;

font-size: 12px;

}

.footer-grid a:hover {
color: #d8b476;
}

.footer-bottom {
padding: 20px 0;


border-top: 1px solid rgba(255,255,255,.08);


}

.footer-bottom p {
font-size: 11px;
}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .nav-menu {
    gap: 15px;
}

.audience-grid,
.benefit-grid,
.process-grid {
    grid-template-columns: repeat(2,1fr);
}

.footer-grid {
    grid-template-columns: repeat(2,1fr);
}


}

@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: white;

    flex-direction: column;

    gap: 20px;

    border-bottom: 1px solid #e5e8eb;
}

.intro-grid,
.business-grid,
.faq-grid {
    grid-template-columns: 1fr;

    gap: 50px;
}

.service-detail {
    grid-template-columns: 50px 70px 1fr;

    gap: 18px;

    padding: 30px;
}

.cta-content {
    flex-direction: column;

    align-items: flex-start;
}


}

@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;
}

.service-detail {
    display: block;

    padding: 28px;
}

.service-number {
    margin-bottom: 18px;
}

.service-icon {
    margin-bottom: 25px;
}

.service-columns {
    grid-template-columns: 1fr;

    gap: 0;
}

.audience-grid,
.benefit-grid,
.process-grid,
.business-list,
.footer-grid {
    grid-template-columns: 1fr;
}


}
.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;
    }
}

