:root {
    --navy: #0D1E35;
    --navy-light: #1A2F4A;
    --navy-mid: #142845;
    --gold: #B8973A;
    --gold-light: #D4AF6A;
    --platinum: #E8E6E0;
    --off-white: #F5F4F0;
    --white: #FFFFFF;
    --text-dark: #0D1E35;
    --text-mid: #3A4A5C;
    --text-muted: #6B7A8D;
    --border: rgba(13, 30, 53, 0.12);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

/* ─── NAV ─── */
nav {
    background: var(--navy);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo-icon {
    height: 36px;
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--navy) !important;
}

/* ─── PAGES ─── */
/* .page {
    display: none;
} */


.page.active {
    display: block;
}

/* ─── HEROES ─── */

.hero-wrapper {
    background: linear-gradient(#142845, rgba(0, 0, 0, .45)), url(../images/hero-main-page.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-wrapper {
    background: var(--navy-mid);
}

.hero {
    padding: 100px 60px 80px;
    position: relative;
    overflow: hidden;
}


.hero-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    max-width: 680px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

/* ─── SECTIONS ─── */

section {
    max-width: 1400px;
    margin: 0 auto;
}

section.hero-wrapper {
    background: var(--navy);
}

.section {
    padding: 80px 60px;
}

.section-alt {
    background: var(--off-white);
}

/*
.section-navy {
    background: var(--navy);
}
*/
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-title.light {
    color: var(--white);
}

.section-desc {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 48px;
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.65);
}

/* ─── GRID ─── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ─── CARDS ─── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(13, 30, 53, 0.08);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 151, 58, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--gold);
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}

.card-navy {
    background: var(--navy-light);
    border-color: rgba(255, 255, 255, 0.08);
}

.card-navy h3 {
    color: var(--white);
}

.card-navy p {
    color: rgba(255, 255, 255, 0.65);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    cursor: pointer;
    text-decoration: none;
}

/* ─── STATS ─── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 60px 0;
}

.stat-item {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 44px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-unit {
    font-size: 24px;
    color: var(--gold);
}

/* ─── VALUE PROPS ─── */
.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.value-prop:last-child {
    border-bottom: none;
}

.value-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    min-width: 28px;
    padding-top: 3px;
}

.value-prop h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.value-prop p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ─── CTA BAND ─── */
.cta-band {
    background: var(--navy);
    padding: 72px 60px;
    text-align: center;
}

.cta-band h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-band p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── INDUSTRIES ─── */
.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 6px;
    transition: border-color 0.2s, color 0.2s;
    cursor: default;
}

.industry-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── TABLE ─── */
.process-steps {
    counter-reset: steps;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.process-step:last-child {
    border-bottom: none;
}

.step-num {
    counter-increment: steps;
    min-width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ─── TEAM ─── */
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.team-photo {
    background: var(--navy-light);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold-light);
    font-weight: 700;
}

.team-info {
    padding: 24px;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-title {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ─── SERVICE PAGE ─── */
.service-hero {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.breadcrumb span {
    cursor: pointer;
    transition: color 0.2s;
}

.breadcrumb span:hover {
    color: var(--gold-light);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.two-col-aside {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.sidebar {
    background: var(--off-white);
    border-radius: 8px;
    padding: 32px;
    border: 1px solid var(--border);
}

.sidebar h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.sidebar li:hover {
    color: var(--gold);
}

.sidebar li:last-child {
    border-bottom: none;
}

.sidebar li.active {
    color: var(--navy);
    font-weight: 600;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ─── CONTACT FORM ─── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ─── ACCORDION ─── */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-q:hover {
    color: var(--gold);
}

.faq-a {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    display: none;
}

.faq-a.open {
    display: block;
}

/* ─── BADGE ─── */
.badge {
    display: inline-block;
    background: rgba(184, 151, 58, 0.12);
    color: var(--gold);
    border: 1px solid rgba(184, 151, 58, 0.3);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
    background: var(--navy);
    border-radius: 8px;
    padding: 40px;
    margin: 48px 0;
}

.highlight-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.highlight-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* ─── LEAD MAGNET ─── */
.lead-magnet {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 1px solid rgba(184, 151, 58, 0.3);
    border-radius: 8px;
    padding: 40px;
    margin-top: 40px;
}

.lead-magnet h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.lead-magnet p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    line-height: 1.65;
}

/* ─── GOLDEN CIRCLE ─── */
.golden-circle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin: 40px 0;
}

.gc-panel {
    padding: 40px;
    border-right: 1px solid var(--border);
}

.gc-panel:last-child {
    border-right: none;
}

.gc-panel:nth-child(1) {
    background: var(--navy);
}

.gc-panel:nth-child(2) {
    background: var(--navy-light);
}

.gc-panel:nth-child(3) {
    background: var(--off-white);
}

.gc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.gc-panel:nth-child(3) .gc-label {
    color: var(--gold);
}

.gc-panel h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.gc-panel:nth-child(1) h3,
.gc-panel:nth-child(2) h3 {
    color: var(--white);
}

.gc-panel:nth-child(3) h3 {
    color: var(--text-dark);
}

.gc-panel p {
    font-size: 15px;
    line-height: 1.7;
}

.gc-panel:nth-child(1) p,
.gc-panel:nth-child(2) p {
    color: rgba(255, 255, 255, 0.65);
}

.gc-panel:nth-child(3) p {
    color: var(--text-mid);
}

/* ─── FOOTER ─── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 60px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.35);
}

/* ─── RESPONSIVENESS ─── */
@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    .hero,
    .section,
    .cta-band,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2,
    .two-col,
    .two-col-aside,
    .golden-circle {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 600px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

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

/* ─── SERVICES NAV ─── */
.services-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 8px;
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.services-nav-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--text-mid);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.services-nav-btn:hover {
    background: var(--white);
    color: var(--text-dark);
}

.services-nav-btn.active {
    background: var(--navy);
    color: var(--white);
}

/* ─── VALUES ─── */
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    border-left: 4px solid var(--gold);
    transition: box-shadow 0.2s;
}

.value-card:hover {
    box-shadow: 0 8px 32px rgba(13, 30, 53, 0.08);
}

.value-card .value-num-large {
    font-size: 48px;
    font-weight: 700;
    color: rgba(184, 151, 58, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.value-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.value-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
}

.impact-box {
    background: var(--off-white);
    border-radius: 6px;
    padding: 18px 20px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
}

.impact-box strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* map placeholder */
.map-placeholder {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.map-placeholder span {
    font-size: 36px;
}

/* contact info */
.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(184, 151, 58, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* active service tab */
.service-tab {
    display: none;
}

.service-tab.active {
    display: block;
}