:root {
    --navy: #08275c;
    --navy-deep: #041631;
    --gold: #b77a24;
    --gold-soft: #d7ad68;
    --charcoal: #252b33;
    --ink: #172033;
    --muted: #667085;
    --line: #e6e8ec;
    --paper: #ffffff;
    --surface: #f6f7f9;
    --shadow: 0 18px 45px rgba(8, 39, 92, 0.12);
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Inter, Arial, sans-serif;
    line-height: 1.6;
}

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

img {
    display: block;
    max-width: 100%;
}

/* Skip to main link for accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: var(--paper);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
    font-weight: 700;
}

.skip-to-main:focus {
    top: 0;
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(230, 232, 236, 0.8);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.nav {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    min-height: 76px;
    padding: 0 24px;
}

.brand {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 210px;
    transition: opacity var(--transition);
}

.brand:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.brand-mark {
    height: 48px;
    object-fit: contain;
    width: 80px;
}

.brand-name {
    color: var(--navy);
    display: grid;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-name span {
    color: var(--charcoal);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    margin-top: 4px;
}

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

.nav-links a {
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 700;
    transition: color var(--transition);
    padding: 8px 4px;
    border-radius: 4px;
    outline: none;
}

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

.nav-links a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-cta,
.button {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 44px;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
    outline: none;
}

.nav-cta {
    background: var(--navy);
    color: var(--paper);
    padding: 10px 18px;
}

.nav-cta:hover,
.button.primary:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
}

.nav-cta:focus,
.button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(rgba(10, 25, 47, 0.82), rgba(10, 25, 47, 0.82)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover;
    color: var(--paper);
    min-height: calc(100vh - 76px);
    overflow: hidden;
    position: relative;
}


.hero-inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 920px;
    min-height: calc(100vh - 76px);
    padding: 80px 24px 56px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-copy {
    align-self: center;
}

.eyebrow {
    align-items: center;
    color: var(--gold-soft);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    gap: 12px;
    justify-content: center;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.eyebrow::before {
    background: var(--gold-soft);
    content: "";
    height: 2px;
    width: 36px;
}

h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.7rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
    max-width: 820px;
}

.hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    max-width: 740px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 34px;
}

.button {
    border: 1px solid transparent;
    padding: 12px 22px;
    font-size: 0.95rem;
    cursor: pointer;
}

.whatsapp-connect {
    background: #128c7e;
    border: 1px solid #128c7e;
    color: var(--paper);
    gap: 8px;
}

.whatsapp-connect:hover {
    background: #075e54;
    border-color: #075e54;
    transform: translateY(-1px);
}

.whatsapp-float {
    bottom: 24px;
    box-shadow: 0 14px 32px rgba(18, 140, 126, 0.24);
    min-height: 48px;
    padding: 12px 18px;
    position: fixed;
    right: 24px;
    z-index: 20;
    background: #128c7e;
    color: var(--paper);
    border-radius: 4px;
    transition: background var(--transition), transform var(--transition);
}

.whatsapp-float:hover {
    background: #075e54;
    transform: translateY(-2px);
}

.whatsapp-float:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.home-float {
    background: var(--paper);
    border: 1px solid rgba(8, 39, 92, 0.18);
    bottom: 24px;
    box-shadow: 0 14px 32px rgba(8, 39, 92, 0.14);
    color: var(--navy);
    min-height: 48px;
    padding: 12px 18px;
    position: fixed;
    left: 24px;
    z-index: 20;
    border-radius: 4px;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
    font-weight: 700;
}

.home-float:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.home-float:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.button.primary {
    background: var(--gold);
    color: var(--paper);
}

.button.primary:focus {
    outline: 2px solid var(--paper);
    outline-offset: 2px;
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.38);
    color: var(--paper);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.button.secondary:focus {
    outline: 2px solid var(--paper);
    outline-offset: 2px;
}

.hero-brand {
    align-self: center;
    display: none;
    gap: 20px;
    justify-items: center;
    text-align: center;
}

.hero-logo {
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    box-shadow: var(--shadow);
    max-width: 390px;
    padding: 24px;
    width: 100%;
}

.hero-note {
    border-left: 3px solid var(--gold-soft);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    max-width: 360px;
    padding-left: 16px;
    text-align: left;
}

/* Sections */
section {
    padding: 92px 24px;
}

.section-inner {
    margin: 0 auto;
    max-width: 1180px;
}

.section-kicker {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h2 {
    color: var(--navy-deep);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
    margin-bottom: 18px;
}

.section-lead {
    color: var(--muted);
    font-size: 1.04rem;
    margin-top: 18px;
    max-width: 760px;
}

/* Stats */
.stats {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    padding: 34px 24px;
}

.stats-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    max-width: 1180px;
}

.stat {
    border-left: 3px solid var(--gold);
    padding: 8px 0 8px 18px;
}

.stat strong {
    color: var(--navy);
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.stat span {
    color: var(--muted);
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 7px;
}

/* Services */
.service-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
}

.service-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 230px;
    padding: 28px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    border-color: rgba(183, 122, 36, 0.55);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.service-card:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: 0;
}

.service-card .number {
    color: var(--gold);
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 26px;
}

.service-card h3,
.process-item h3,
.partner-card h3,
.contact-panel h3 {
    color: var(--navy-deep);
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: 12px;
}

.service-card p,
.process-item p {
    color: var(--muted);
    font-size: 0.96rem;
}

/* Advisory Section */
.advisory {
    background: var(--navy-deep);
    color: var(--paper);
}

.advisory h2 {
    color: var(--paper);
}

.advisory .section-lead {
    color: rgba(255, 255, 255, 0.72);
}

.advisory-layout {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
    margin-top: 36px;
}

.check-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin-top: 32px;
}

.check-list li {
    align-items: start;
    color: rgba(255, 255, 255, 0.86);
    display: grid;
    gap: 12px;
    grid-template-columns: 22px 1fr;
}

.check-list li::before {
    color: var(--gold-soft);
    content: "✓";
    font-weight: 900;
    line-height: 1.5;
}

.process-list {
    display: grid;
    gap: 16px;
}

.process-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 24px;
    transition: background var(--transition);
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.process-item:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: 0;
}

.process-item h3 {
    color: var(--paper);
}

.process-item p {
    color: rgba(255, 255, 255, 0.68);
}

/* About Section */
.about-layout {
    align-items: start;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    margin-top: 36px;
}

.principles {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
}

.principle {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 18px;
    grid-template-columns: 92px 1fr;
    padding: 22px 0;
    transition: background var(--transition);
}

.principle:focus-within {
    background: var(--surface);
}

.principle strong {
    color: var(--gold);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.principle h3 {
    color: var(--navy-deep);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.principle p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Partner Section */
.partner {
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.partner-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
}




.partner-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(8, 39, 92, 0.08);
    padding: 34px;
}

.partner-title {
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.partner-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    font-weight: 800;
    line-height: 1.15;
}

.partner-card .credential {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.partner-card p {
    color: var(--muted);
}

.partner-highlights {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin-top: 26px;
}

.partner-highlights li {
    border-left: 3px solid var(--gold);
    color: var(--charcoal);
    font-weight: 800;
    padding: 8px 0 8px 14px;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background:
        linear-gradient(180deg, var(--surface), #ffffff);
    border-top: 1px solid var(--line);
}

.contact-layout {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    margin-top: 36px;
}

.contact-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-panel h3 {
    margin-bottom: 24px;
}

.contact-list {
    display: grid;
    gap: 18px;
    list-style: none;
    margin-top: 22px;
}

.contact-list span {
    color: var(--muted);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-list a,
.contact-list p {
    color: var(--navy-deep);
    font-weight: 800;
    margin-top: 4px;
}

.contact-list a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.contact-list a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Forms */
.form {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

label {
    color: var(--charcoal);
    font-size: 0.82rem;
    font-weight: 800;
}

label span {
    color: #e74c3c;
}

input,
textarea,
select {
    background: var(--paper);
    border: 1px solid #cfd4dc;
    border-radius: 5px;
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    min-height: 46px;
    padding: 11px 13px;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
    min-height: 124px;
    resize: vertical;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(183, 122, 36, 0.15);
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--muted);
}

.form .button {
    background: var(--navy);
    border: 0;
    color: var(--paper);
    cursor: pointer;
    margin-top: 4px;
    width: fit-content;
    font-size: 0.95rem;
}

.form .button:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
}

.form .button:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.72);
    padding: 28px 24px;
    margin-top: 60px;
}

.footer-inner {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
}

.footer-inner strong {
    color: var(--paper);
}

/* Responsive Design */
@media (max-width: 920px) {
    .nav {
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        min-height: 70px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 10px;
        padding: 16px;
        background: linear-gradient(180deg, rgba(8, 39, 92, 0.98), rgba(4, 22, 49, 0.99));
        border: 1px solid rgba(215, 173, 104, 0.55);
        border-radius: 12px;
        box-shadow: 0 16px 28px rgba(4, 22, 49, 0.35);
    }

    .nav.menu-open .nav-links {
        display: flex;
    }

    .nav.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        display: block;
        padding: 14px 16px;
        border: 1px solid rgba(215, 173, 104, 0.4);
        border-radius: 10px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
        color: var(--paper);
        line-height: 1.4;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(183, 122, 36, 0.22);
        border-color: var(--gold-soft);
        color: var(--paper);
    }

    .nav-cta {
        display: none;
    }

    .nav.menu-open {
        align-items: stretch;
    }

    .hero-inner,
    .advisory-layout,
    .about-layout,
    .partner-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        position: static;
        top: auto;
    }

    .hero-brand {
        justify-items: start;
        text-align: left;
    }

    .hero-logo {
        max-width: 330px;
    }

    .stats-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 620px) {
    body.menu-open {
        overflow: hidden;
    }

    .nav {
        gap: 10px;
    }

    .nav-links {
        gap: 10px;
        padding: 14px;
    }

    .nav-links a {
        font-size: 0.98rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .brand-mark {
        height: 42px;
        width: 70px;
    }

    .brand {
        min-width: 0;
    }

    .brand-name {
        font-size: 0.82rem;
    }

    .brand-name span {
        font-size: 0.58rem;
    }

    .hero-inner {
        gap: 34px;
        min-height: calc(100vh - 76px);
        padding: 60px 20px 44px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 360px);
        margin-left: auto;
        margin-right: auto;
        gap: 12px;
    }

    .hero-actions .button {
        width: 100%;
        min-height: 48px;
    }

    section {
        padding: 66px 20px;
    }

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

    .principle {
        grid-template-columns: 58px 1fr;
    }

    .partner-card {
        padding: 24px;
    }

    .partner-highlights {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }

    .home-float {
        bottom: 16px;
        left: 16px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
