@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #00081e;
    --primary-container: #1b3a7a;
    --on-primary: #ffffff;
    --on-primary-container: #7687b2;
    --secondary: #1b3a7a;
    --secondary-container: #ffc641;
    --secondary-fixed-dim: #f6be39;
    --on-secondary-container: #715300;
    --surface: #f8f9ff;
    --surface-bright: #ffffff;
    --surface-container-low: #eff4ff;
    --surface-container: #e5eeff;
    --surface-container-high: #dce9ff;
    --on-surface: #0b1c30;
    --on-surface-variant: #44464e;
    --outline: #75777f;
    --outline-variant: #c5c6cf;
    --background: #f8f9ff;
    --error: #ba1a1a;

    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --gutter: clamp(24px, 5vw, 64px);
    --max-width: 1440px;
    --section-py: clamp(64px, 10vw, 120px);
}

html,
body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--background);
    color: var(--on-surface);
    -webkit-font-smoothing: antialiased;
    font-size: clamp(15px, 1.2vw, 17px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 {
    font-size: clamp(32px, 4vw, 48px);
}

h2 {
    font-size: clamp(28px, 3.5vw, 40px);
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
}

h4 {
    font-size: clamp(20px, 2.5vw, 26px);
}

h5 {
    font-size: clamp(18px, 2vw, 22px);
}

h6 {
    font-size: clamp(16px, 1.5vw, 18px);
}

p {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--on-surface-variant);
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

/* Ensure utility classes override paragraph justification */
.text-center p {
    text-align: center !important;
}

.text-start p {
    text-align: left !important;
}

.text-end p {
    text-align: right !important;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

ul {
    list-style: none;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* ===================== LAYOUT HELPERS ===================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes barGrow {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.93);
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s !important;
}

.delay-200 {
    transition-delay: 0.2s !important;
}

.delay-300 {
    transition-delay: 0.3s !important;
}

.delay-400 {
    transition-delay: 0.4s !important;
}

.delay-500 {
    transition-delay: 0.5s !important;
}

/*  
/* ===================== GLASS CARD ===================== */
.glass-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.08);
    border-radius: 10px;
}

/* ===================== SECTION: MISSION/VISION ===================== */
.mission-section {
    padding: var(--section-py) 0;
    background: var(--surface-container-low);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 96px);
    align-items: center;
    margin-bottom: clamp(48px, 8vw, 128px);
}

@media (max-width: 860px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-grid .order-swap {
        order: -1;
    }
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--secondary-fixed-dim);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.accent-bar {
    width: 80px;
    height: 3px;
    background: var(--secondary-fixed-dim);
    border-radius: 2px;
    margin-bottom: 28px;
    /* animated via JS */
}

.section-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--on-surface-variant);
    margin-bottom: 28px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--primary);
}

.checklist li .material-symbols-outlined {
    color: var(--secondary-fixed-dim);
    font-size: 20px;
}

.img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 24px 64px rgba(10, 31, 68, 0.16);
}

.quote-card {
    padding: 32px;
    border-left: 4px solid var(--secondary-fixed-dim);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(10, 31, 68, 0.07);
}

.quote-card p {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-container);
    line-height: 1.6;
}

/* ===================== TIMELINE ===================== */
.timeline-section {
    padding: var(--section-py) 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: 'MUSADO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(100px, 16vw, 220px);
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.timeline-header {
    text-align: center;
    margin-bottom: clamp(40px, 7vw, 96px);
}

.timeline-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-header p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.timeline-track {
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.10);
    transform: translateX(-50%);
}

@media (max-width: 700px) {
    .timeline-track::before {
        left: 20px;
    }

    .img-frame {
        aspect-ratio: 3/3;
    }

    .btn-hero-ghost,
    .btn-hero-primary {

        font-size: 11px !important;
    }
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
    margin-bottom: clamp(40px, 7vw, 100px);
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary-fixed-dim);
    border: 3px solid var(--primary);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(246, 190, 57, 0.2);
    z-index: 2;
}

@media (max-width: 700px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-left: 48px;
    }

    .timeline-item::after {
        left: 20px;
        top: 24px;
        transform: translateY(0);
    }

    .timeline-track::before {
        left: 20px;
    }

    .timeline-year {
        text-align: left !important;
    }

    .timeline-year h3 {
        font-size: 48px !important;
    }

    .timeline-card.flip {
        text-align: left !important;
    }

    .img-frame {
        aspect-ratio: 3/3;
    }

    .btn-hero-ghost,
    .btn-hero-primary {

        font-size: 11px !important;
    }
}

.timeline-year h3 {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 80px);
    font-weight: 800;
    color: var(--secondary-fixed-dim);
    opacity: 0.35;
    letter-spacing: -0.02em;
    line-height: 1;
    transition: opacity 0.4s;
}

.timeline-item.visible .timeline-year h3 {
    opacity: 0.45;
}

.timeline-year {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    order: 2;
}

.timeline-item:nth-child(even) .timeline-card {
    order: 1;
    text-align: right;
}

.timeline-card {
    padding: clamp(24px, 3vw, 40px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    color: #fff;
}

.timeline-card.highlight {
    background: rgba(246, 190, 57, 0.08);
    border-color: rgba(246, 190, 57, 0.25);
}

.timeline-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-card.highlight h4 {
    color: var(--secondary-fixed-dim);
}

.timeline-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.78;
}

/* ===================== VALUES ===================== */
.values-section {
    padding: var(--section-py) 0;
    background: var(--surface-bright);
}

.values-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

.values-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.values-bar {
    width: 64px;
    height: 3px;
    background: var(--secondary-fixed-dim);
    border-radius: 2px;
    margin: 0 auto;
}

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

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card p {
        text-align: justify !important;
        text-justify: inter-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media (max-width: 560px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card p {
        text-align: justify !important;
        text-justify: inter-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

.value-card {
    padding: clamp(28px, 3vw, 40px);
    border-radius: 10px;
    border-top: 4px solid transparent;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid var(--outline-variant);
    box-shadow: 0 4px 24px rgba(10, 31, 68, 0.05);
    transition: transform 0.28s cubic-bezier(.22, 1, .36, 1), box-shadow 0.28s;
    cursor: default;
}



.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 31, 68, 0.12);
}

.value-card.accent-blue {
    border-top: 4px solid var(--primary);
}

.value-card.accent-gold {
    border-top: 4px solid var(--secondary-fixed-dim);
}

.value-card .icon {
    font-size: 38px;
    margin-bottom: 20px;
    display: block;
}

.value-card.accent-blue .icon {
    color: var(--primary);
}

.value-card.accent-gold .icon {
    color: var(--secondary-fixed-dim);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--on-surface-variant);

}

/* ===================== EXECUTIVE ===================== */
.exec-section {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.exec-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

@media (max-width: 860px) {
    .exec-grid {
        grid-template-columns: 1fr;
    }
}

.exec-img-wrap {
    position: relative;
}

.exec-img-wrap::before {
    content: '';
    position: absolute;
    inset: -16px;
    background: rgba(246, 190, 57, 0.15);
    border-radius: 14px;
    z-index: 0;
}

.exec-img-wrap img {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    width: 100%;
    height: 560px;
    object-fit: cover;
    box-shadow: 0 24px 64px rgba(10, 31, 68, 0.18);
}

@media (max-width: 480px) {
    .exec-img-wrap img {
        height: 360px;
    }
}

.exec-content .eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--secondary-fixed-dim);
    margin-bottom: 14px;
}

.exec-content h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.exec-content .body-text {
    font-size: 17px;
    line-height: 1.80;
    color: var(--on-surface-variant);
    margin-bottom: 20px;
}

.exec-sig {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--outline-variant);
}

.sig-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.sig-avatar .material-symbols-outlined {
    font-size: 26px;
}

.sig-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.sig-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--primary);
    color: var(--on-primary);
    padding-top: var(--section-py);
    padding-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: clamp(40px, 6vw, 80px);
}

@media (max-width: 860px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-fixed-dim);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.60);
    max-width: 240px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: background 0.22s, color 0.22s;
}

.footer-socials a:hover {
    background: var(--secondary-fixed-dim);
    color: var(--primary);
    border-color: var(--secondary-fixed-dim);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.60);
    transition: color 0.22s;
}

.footer-col ul li a:hover {
    color: var(--secondary-container);
}

.footer-newsletter p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.22s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
    border-color: var(--secondary-fixed-dim);
}

.newsletter-form button {
    background: var(--secondary-container);
    color: var(--on-secondary-container);
    border: none;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    transform: scale(1.08);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.40);
}

.footer-cities {
    display: flex;
    gap: 28px;
}

.footer-cities span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary-fixed-dim);
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-scale {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-bg img {
        animation: none;
    }

    .hero-badge,
    .hero-title,
    .hero-sub,
    .hero-btns {
        animation: none;
        opacity: 1;
        transform: none;
    }
}



/* indexpage */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ===================== KEYFRAMES ===================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-48px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(48px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes pulseRing {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(246, 190, 57, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(246, 190, 57, 0);
    }
}

@keyframes barWidth {
    from {
        width: 0;
    }

    to {
        width: var(--bar-w, 100%);
    }
}

@keyframes counterUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.left {
    transform: translateX(-40px);
}

.reveal.right {
    transform: translateX(40px);
}

.reveal.scale {
    transform: scale(0.93);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .1s !important;
}

.d2 {
    transition-delay: .2s !important;
}

.d3 {
    transition-delay: .3s !important;
}

.d4 {
    transition-delay: .4s !important;
}

.d5 {
    transition-delay: .5s !important;
}

.d6 {
    transition-delay: .6s !important;
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background .4s, box-shadow .4s, padding .3s;
}

.nav-top {
    background: rgba(0, 8, 30, 0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background .4s, backdrop-filter .4s, border-color .4s;
}

#nav.scrolled .nav-top {
    background: rgba(0, 8, 30, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 32px rgba(0, 8, 30, 0.25);
}

/* announcement bar */
.nav-announce {
    background: var(--secondary-fixed-dim);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 8px var(--gutter);
    letter-spacing: .04em;
}

.nav-announce a {
    text-decoration: underline;
    color: var(--primary);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: padding .3s;
}

#nav.scrolled .nav-inner {
    padding: 12px 0;
}

/* logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 85px;
    height: 73px;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1;
}

.nav-logo-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px;
}

/* links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    padding: 8px 14px;
    border-radius: 4px;
    transition: color .22s, background .22s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.nav-links a.active {
    color: var(--secondary-fixed-dim);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn-ghost {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 9px 20px;
    border-radius: 4px;
    transition: border-color .22s, background .22s;
    white-space: nowrap;
}

.nav-btn-ghost:hover {
    border-color: var(--secondary-fixed-dim);
    background: rgba(246, 190, 57, .08);
    color: var(--secondary-fixed-dim);
}

.nav-btn-cta {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--secondary-fixed-dim);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 4px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(246, 190, 57, .35);
    white-space: nowrap;
}

.nav-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246, 190, 57, .45);
}

.hamburger {
    display: none;
    padding: 8px;
    border-radius: 6px;
    color: #fff;
    transition: background .2s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, .1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 8, 30, .98);
    backdrop-filter: blur(20px);
    padding: 20px var(--gutter) 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    gap: 4px;
    height: 100vh;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    padding: 12px 14px;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--secondary-fixed-dim);
    background: rgba(246, 190, 57, .08);
}

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.mobile-menu-btns button {
    flex: 1;
    min-width: 120px;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media(max-width:1199px) {
    .nav-links {
        display: none;
    }

    .nav-btn-ghost {
        display: none;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media(max-width:600px) {
    .nav-btn-cta {
        display: none;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* bg layers */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 8, 30, .97) 0%, rgba(0, 8, 30, .75) 50%, rgba(10, 31, 68, .60) 100%),
        url('https://lh3.googleusercontent.com/aida-public/AB6AXuCdli2b_QgGZWHzMKtBo4O3zMW0nC6H5R_dlU8K9X6v3qwxKU3AbQII0t8gq3f_2-BR743VTbQ6L1sSR64rh6aUmrhtts8TrS8MtITaE1Zqcy1es5QqxzN0B1Mm4EsmdND8c5reUU9txLZalEMg4LgbAMNZMHhC0DvUDaylECAAXMJaY7tpFTYedxux9fynMzFR2IoQPi5ZqydRfqDDrY8UU5anYksjD6bPhHBcz2SkXTPPqcqDWEQkm734mUJOUwVSPm9YUw4ai4KN') center/cover no-repeat;
    animation: scaleIn 1.4s ease both;
}

/* animated grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(246, 190, 57, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246, 190, 57, .04) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: fadeIn 2s ease 0.5s both;
}

/* floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: floatY 7s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -80px;
    background: rgba(246, 190, 57, .06);
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 320px;
    height: 320px;
    bottom: 80px;
    right: 25%;
    background: rgba(76, 94, 134, .12);
    animation-delay: 3.5s;
}

/* content */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-inner {
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 190, 57, .12);
    border: 1px solid rgba(246, 190, 57, .30);
    color: var(--secondary-fixed-dim);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
    animation: fadeIn .8s ease .4s both;
}

.hero-badge span.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-fixed-dim);
    display: inline-block;
    animation: pulseRing 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 3.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 12px;
    animation: fadeUp .9s ease .55s both;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--secondary-fixed-dim), var(--secondary-container));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.6vw, 19px);
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .04em;
    margin-bottom: 28px;
    animation: fadeUp .9s ease .65s both;
}

.hero-divider {
    width: 64px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--secondary-fixed-dim), transparent);
    margin-bottom: 28px;
    animation: fadeIn .8s ease .7s both;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, .7);
    max-width: 680px;
    margin-bottom: 44px;
    animation: fadeUp .9s ease .75s both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
    animation: fadeUp .9s ease .85s both;
}

.btn-hero-primary {
    background: var(--secondary-fixed-dim);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    border: none;
    padding: 16px 36px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(246, 190, 57, .35);
    transition: transform .22s, box-shadow .22s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(246, 190, 57, .50);
}

.btn-hero-ghost {
    border: 1.5px solid rgba(255, 255, 255, .30);
    background: none !important;
    color: #ffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    transition: border-color .22s, background .22s;
}

.btn-hero-ghost:hover {
    border-color: rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .08);
}

/* stats row */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .10);

    animation: fadeUp .9s ease .95s both;
}

.hero-stat {
    flex: 1;
    min-width: 140px;
    padding: 0 32px 0 0;
    border-right: 1px solid rgba(255, 255, 255, .10);
}

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

.hero-stat:first-child {
    padding-left: 0;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-num span {
    color: var(--secondary-fixed-dim);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

/* right panel */
.hero-right {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(60px, 8vw, 100px);
    z-index: 2;
    width: clamp(240px, 28vw, 360px);
    animation: slideLeft .9s ease 1.1s both;
}

.hero-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 28px;
}

.hero-card h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--secondary-fixed-dim);
    margin-bottom: 16px;
}

.hero-card-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hci {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .80);
}

.hci .material-symbols-outlined {
    font-size: 16px;
    color: var(--secondary-fixed-dim);
}

@media(max-width:1100px) {
    .hero-right {
        display: none;
    }
}

@media(max-width:600px) {
    .hero-stats {
        gap: 20px;
    }

    .hero-stat {
        border-right: none;
        padding: 0;
    }

    .hero-badge {
        font-size: 10px;
    }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
    background: var(--secondary-fixed-dim);
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(246, 190, 57, .3);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 0 40px;
    white-space: nowrap;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .4;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--secondary-fixed-dim);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.accent-bar {
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--secondary-fixed-dim), transparent);
    margin-bottom: 24px;
    width: 72px;
}

.section-body {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.80;
    color: var(--on-surface-variant);
}

/* ============================================================
   WELCOME / INTRO SECTION
   ============================================================ */
.welcome-section {
    padding: var(--section-py) 0;
    background: var(--surface-bright);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

@media(max-width:860px) {
    .welcome-grid {
        grid-template-columns: 1fr;
    }
}

.welcome-text {}

.welcome-text p {
    margin-bottom: 20px;
}

.welcome-text p:last-child {
    margin-bottom: 0;
}

.welcome-visual {
    position: relative;
}

.welcome-img-box {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 24px 64px rgba(10, 31, 68, .14);
    position: relative;
}

.welcome-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(0, 8, 30, .88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(246, 190, 57, .25);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wib-icon {
    width: 44px;
    height: 44px;
    background: var(--secondary-fixed-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wib-icon .material-symbols-outlined {
    font-size: 22px;
    color: var(--primary);
}

.wib-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.wib-text span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

/* decorative ring */
.welcome-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px dashed rgba(246, 190, 57, .20);
    pointer-events: none;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section {
    padding: var(--section-py) 0;
    background: var(--surface-container-low);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-fixed-dim), var(--secondary-container), var(--secondary-fixed-dim));
}

.why-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 72px);
}

.why-header .section-eyebrow {
    justify-content: center;
}

.why-header .section-eyebrow::before {
    display: none;
}

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

@media(max-width:1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: var(--surface-bright);
    border: 1px solid var(--outline-variant);
    border-radius: 12px;
    padding: clamp(22px, 2.5vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s, border-color .3s;
    cursor: default;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10, 31, 68, .10);
    border-color: var(--secondary-fixed-dim);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-container);
    transition: background .3s;
    flex-shrink: 0;
}

.why-card:hover .why-icon {
    background: rgba(246, 190, 57, .15);
}

.why-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--primary);
}

.why-card:hover .why-icon .material-symbols-outlined {
    color: var(--secondary);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.why-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--on-surface-variant);
}

/* end indexpage */

/* services */
/* ── SECTION HEADER ── */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header--centered {
    align-items: center;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary);
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary-container);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--on-surface-variant);
    max-width: 560px;
    line-height: 1.75;
}

/* ── SERVICES GRID ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--outline-variant);
    border: 2px solid var(--outline-variant);
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--surface-bright);
    padding: clamp(32px, 4vw, 52px);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(32px);
}

.service-card.visible {
    animation: fadeUp 0.6s ease forwards;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-container);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    background: var(--surface-container-low);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--surface-container);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: var(--primary-container);
    transform: scale(1.08);
}

.service-icon {
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--secondary-container);
}

.service-name {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.25;
}

.service-desc {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.75;
    margin-bottom: 28px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--surface-container);
    color: var(--on-surface-variant);
    border: 1px solid var(--outline-variant);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.service-card:hover .tag {
    background: var(--primary-container);
    color: var(--on-primary);
    border-color: var(--primary-container);
}

/* ── SECTION WRAPPER ── */
.section {
    padding: var(--section-py) var(--gutter);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* end services */

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

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    background: var(--surface-bright);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 8, 30, 0.04);
    border: 1px solid var(--outline-variant);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 8, 30, 0.08);
}

.industry-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-img img {
    transform: scale(1.05);
}

.industry-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.industry-icon {
    position: absolute;
    top: -28px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--secondary-fixed-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 8, 30, 0.15);
    border: 2px solid var(--surface-bright);
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.industry-icon .material-symbols-outlined {
    font-size: 28px;
}

.industry-card:hover .industry-icon {
    transform: translateY(-4px) rotate(5deg);
    background: var(--secondary-fixed-dim);
    color: var(--primary);
}

.industry-content h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    margin-top: 8px;
    line-height: 1.3;
}

.industry-content p {
    font-size: 15px;
    color: var(--on-surface-variant);
    line-height: 1.65;
    margin: 0;
}

/* ── CALL TO ACTION (CTA) ── */
.cta-section {
    padding: clamp(60px, 8vw, 100px) var(--gutter);
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--primary);
    border-radius: 24px;
    padding: clamp(40px, 6vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 8, 30, 0.12);
}

.cta-bg-glow {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 190, 57, 0.15) 0%, rgba(246, 190, 57, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--surface-bright);
    line-height: 1.2;
    margin: 0;
}

.cta-desc {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-fixed-dim);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(246, 190, 57, 0.3);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(246, 190, 57, 0.4);
    color: var(--primary);
}

.cta-btn .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* ── MISSION & VISION ── */
.mission-vision-section {
    padding: clamp(60px, 8vw, 100px) var(--gutter);
    background: var(--surface-container-low);
    position: relative;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background: var(--surface-bright);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 48px);
    box-shadow: 0 16px 40px rgba(0, 8, 30, 0.06);
    border: 1px solid var(--outline-variant);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 8, 30, 0.1);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--secondary-fixed-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 8, 30, 0.15);
}

.mv-icon .material-symbols-outlined {
    font-size: 32px;
}

.mv-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.mv-title span {
    color: var(--secondary);
}

.mv-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--on-surface-variant);
    margin-bottom: 16px;
}

.mv-content p:last-child {
    margin-bottom: 0;
}

/* ── GLOBAL PRESENCE CARDS ── */
.country-card {
    background: var(--surface-bright);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 8, 30, 0.05);
    border: 1px solid var(--outline-variant);
    transition: all 0.3s ease;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 8, 30, 0.1);
    border-color: var(--secondary-fixed-dim);
}

.country-icon {
    width: 48px;
    height: 48px;
    background: rgba(246, 190, 57, 0.15);
    color: var(--secondary-fixed-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.country-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0;
}

.country-region {
    font-size: 0.85rem;
    color: var(--on-surface-variant);
    margin: 0;
}

/* ── PARTNERSHIP CARDS ── */
.partner-card {
    background: var(--surface-bright);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--outline-variant);
    box-shadow: 0 4px 15px rgba(0, 8, 30, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 8, 30, 0.1);
    border-color: transparent;
}

.partner-card:hover::before {
    opacity: 1;
}

.pc-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(246, 190, 57, 0.15);
    color: var(--secondary-fixed-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.3s ease;
}

.partner-card:hover .pc-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--surface-bright);
    transform: scale(1.1);
}

.pc-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.partner-card:hover .pc-title {
    color: var(--surface-bright);
}

/* ── SUSTAINABILITY CARDS ── */
.sus-card {
    background: var(--surface-bright);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--outline-variant);
    box-shadow: 0 4px 15px rgba(0, 8, 30, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-fixed-dim);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 8, 30, 0.08);
}

.sus-card:hover::after {
    transform: scaleX(1);
}

.sus-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    background: rgba(246, 190, 57, 0.15);
    color: var(--secondary-fixed-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.sus-card:hover .sus-icon {
    background: var(--primary);
    color: var(--on-primary);
    transform: rotate(5deg) scale(1.05);
}

.sus-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* ===================== SCROLL TOP BUTTON ===================== */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: -60px;
    width: 44px;
    height: 44px;
    background: var(--secondary-fixed-dim);
    color: var(--primary);
    border-radius: 50%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 4px 12px rgba(0, 8, 30, 0.15);
}

.scroll-top:hover {
    background: var(--primary);
    color: var(--on-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 8, 30, 0.25);
}

.scroll-top i {
    font-size: 24px;
    line-height: 0;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}

@media (max-width: 768px) {
    .scroll-top {
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-top.active {
        bottom: 15px;
    }

    .scroll-top i {
        font-size: 20px;
    }
}


.email-text {
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    text-align: center;
}


.hamburger {
    background: none;
}

/* Fix justified text word spacing on mobile */
@media (max-width: 768px) {
    p {
        text-align: left !important;
    }
}