:root {
    --info-lighter: #d9edfe;
    --info-light: #8dbffb;
    --info-main: #4285f4;
    --info-dark: #214baf;
    --info-darker: #101f31;
    --info-contrast: #ffffff;
    --success-lighter: #dcfad8;
    --success-light: #86e48d;
    --success-main: #34a853;
    --success-dark: #46a370;
    --success-darker: #095038;
    --success-contrast: #ffffff;
    --warning-lighter: #fef9cc;
    --warning-light: #fde768;
    --warning-main: #fbcc05;
    --warning-dark: #b48b02;
    --warning-darker: #785800;
    --warning-contrast: #1c252e;
    --error-lighter: #fde6d6;
    --error-light: #f8a185;
    --error-main: #ea4335;
    --error-dark: #a81a27;
    --error-darker: #700a23;
    --error-contrast: #ffffff;
    --grey-50: #f6fbfb;
    --grey-100: #edf7f7;
    --grey-200: #ddefef;
    --grey-300: #b9cfd1;
    --grey-400: #8ca0a4;
    --grey-500: #546368;
    --grey-600: #3d5059;
    --grey-700: #2a3e4a;
    --grey-800: #1a2c3c;
    --grey-900: #101f31;
    --common-black: #000000;
    --common-white: #ffffff;
    --brand-primary: var(--success-darker);
    --brand-secondary: var(--grey-800);
    --brand-accent: var(--success-main);
    --brand-blue: var(--success-main);
    --text-heading: var(--grey-900);
    --text-body: var(--grey-600);
    --text-light: var(--grey-400);
    --white: var(--common-white);
    --bg-body: var(--grey-50);
    --bg-light: var(--grey-100);
    --bg-white: var(--common-white);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md:
        0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg:
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(66, 133, 244, 0.5);
    --container-width: 1200px;
    --nav-height: 90px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--success-main) var(--bg-light);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--success-main);
    border-radius: 20px;
    border: 3px solid var(--bg-light);
}

:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 4px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

p {
    text-align: justify;
    hyphens: auto;
    word-break: break-word;

}

h1,
h2,
h3,
h4 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-gap {
    padding: 100px 0;
}

.bg-light {
    background: linear-gradient(180deg,
            var(--grey-50) 0%,
            var(--info-lighter) 100%);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg,
            var(--success-main) 0%,
            var(--info-main) 100%);
    color: var(--white);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.4);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
    color: var(--white);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--brand-secondary);
    color: var(--white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-glass {
    background: linear-gradient(135deg,
            var(--info-main) 0%,
            var(--success-main) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1100;

    height: var(--nav-height);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-menu .btn {
    display: none;

}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-body);
    letter-spacing: 0.02em;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: radial-gradient(circle at 10% 20%,
            var(--green-lighter) 0%,
            var(--grey-50) 40%);
    color: var(--white);
    padding: 5vw 0 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, var(--success-light) 0%, transparent 60%);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    animation: drift 10s infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, var(--info-main) 0%, transparent 60%);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    animation: drift 12s infinite alternate-reverse;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(30px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 24px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--grey-900);
}

.text-gradient {
    background: linear-gradient(135deg,
            var(--success-darker) 0%,
            var(--success-dark) 30%,
            var(--success-main) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(134, 228, 141, 0.3);
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--grey-700);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;

}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.subtitle {
    color: var(--brand-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
    text-align: center;

}

.section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    color: var(--text-body);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(52, 168, 83, 0.15);
    border-color: var(--success-light);
    background: white;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    color: var(--brand-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.roadmap-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.roadmap-card.highlight {
    border-top-color: var(--info-main);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-width: 6px;
}

.phase-badge {
    background: var(--brand-accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.badge-blue {
    background: var(--brand-blue);
}

.badge-dark {
    background: var(--brand-primary);
}

.phase-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--brand-accent);
    font-size: 0.8rem;
}

.governance-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-light);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.legal-item label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.legal-item code {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--brand-primary);
    font-weight: 600;
    background: var(--bg-light);
    padding: 4px 8px;
    border-radius: 4px;
}

.gov-note {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
}

.gov-note i {
    color: var(--brand-primary);
    font-size: 1.5rem;
}

footer {
    background: var(--brand-primary);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    height: 40px;
    width: auto;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1rem;
}

.footer-col a,
.contact-address {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
}

.footer-col a:hover {
    color: var(--brand-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    color: var(--white);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--brand-accent);
}

.page-header {
    background: var(--bg-white);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--bg-light);
}

.page-header h1 {
    font-size: 3rem;
    margin: 16px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 24px;
}

.card-icon.blue {
    background: var(--brand-blue);
}

.card-icon.green {
    background: var(--brand-accent);
}

.mission-list li {
    margin-bottom: 16px;
    padding-left: 0;
}

.mission-list strong {
    color: var(--brand-primary);
    display: block;
    margin-bottom: 4px;
}

.phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.phase-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border-top: 6px solid #ddd;
    position: relative;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.phase-1 {
    border-color: var(--success-light);
}

.phase-2 {
    border-color: var(--success-main);
}

.phase-3 {
    border-color: var(--success-dark);
}

.badge-phase {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bg-green {
    background: var(--success-main);
}

.bg-blue {
    background: var(--success-dark);
}

.bg-red {
    background: var(--success-darker);
}

.phase-title {
    text-align: center;
    margin-top: 15px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.phase-duration {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.skill-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.skill-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-heading);
}

.skill-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-light);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--success-light);
}

.mv-header {
    padding: 20px 25px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-blue {
    background: var(--success-darker);
}

.header-green {
    background: var(--success-main);
}

.mv-body {
    padding: 30px;
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 20, 30, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    padding: 24px;
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-modal.error {
    background: rgba(45, 10, 10, 0.45);
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.contact-modal-inner {
    background: var(--white);
    color: var(--text-heading);
    max-width: 440px;
    width: 100%;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-modal.active .contact-modal-inner {
    transform: scale(1) translateY(0);
}

.contact-modal.error.active .contact-modal-inner {
    animation: modalShake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    border: 1px solid rgba(234, 67, 53, 0.2);
    box-shadow: 0 25px 50px -12px rgba(234, 67, 53, 0.15);
}

@keyframes modalShake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}


@media (max-width: 320px) {
    :root {
        --nav-height: 70px;
    }

    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.75rem !important;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .section-gap {
        padding: 60px 0;
    }

    .logo img {
        width: 110px;
        height: auto;
    }
}


@media (max-width: 280px) {
    p {
        font-size: 0.85rem;
    }

    .nav-wrapper {
        gap: 8px;
    }
}

.contact-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.contact-modal .modal-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 8px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.contact-modal.success .modal-icon {
    color: var(--success-contrast);
    background: linear-gradient(135deg, var(--success-main), var(--success-dark));
}

.contact-modal.error .modal-icon {
    color: var(--error-contrast);
    background: linear-gradient(135deg, #ea4335, #700a23);
    box-shadow: 0 10px 25px -5px rgba(234, 67, 53, 0.4);
}

.contact-modal .modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
}

.contact-modal .modal-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

.contact-modal .modal-actions {
    margin-top: 8px;
    display: flex;
    gap: 12px;
    width: 100%;
}

.contact-modal .modal-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 14px;
}

.contact-modal.error .modal-actions .btn-outline {
    border-color: #ea4335;
    color: #ea4335;
}

.contact-modal.error .modal-actions .btn-outline:hover {
    background: #ea4335;
    color: white;
}

.contact-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.contact-modal .modal-close:hover {
    background: var(--error-lighter);
    color: var(--error-main);
    transform: rotate(90deg);
}

.mv-body ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-body);
}

.mv-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--success-main);
}

.legal-gallery-wrapper {
    margin-top: 60px;
    border-top: 1px solid var(--bg-light);
    padding-top: 40px;
}

.legal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
}

.legal-doc-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.legal-doc-card:hover {
    transform: translateY(-5px);
}

.legal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    gap: 4px;
}

.legal-card:hover {
    transform: translateY(-6px);
}

@media (max-width: 480px) {
    .contact-modal-inner {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .contact-modal .modal-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }
}

.legal-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #999;
    margin: 0;
    line-height: 1.2;
}

.legal-code {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #34a853;
    line-height: 1.3;
    margin: 0;
}

.doc-thumb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-light);
    aspect-ratio: 1/1.4;
    margin-bottom: 12px;
}

.doc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.legal-doc-card:hover .doc-thumb img {
    transform: scale(1.05);
}

.doc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 168, 83, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-doc-card:hover .doc-overlay {
    opacity: 1;
}

.doc-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.doc-caption {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-heading);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 85vh;
    animation-name: zoom;
    animation-duration: 0.4s;
    position: relative;
    text-align: center;
}

#lightboxImage {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--brand-accent);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 95%;
    }
}

.exec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.exec-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.quotemark {
    font-size: 2rem;
    color: var(--brand-accent);
    opacity: 0.3;
    margin-bottom: 20px;
}

.exec-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-heading);
    margin-bottom: 30px;
}

.exec-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--bg-light);
    padding-top: 20px;
}

.exec-img-placeholder {
    width: 50px;
    height: 50px;
    background: var(--success-lighter);
    color: var(--success-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.exec-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.exec-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 100%;
}

@media (max-width: 768px) {
    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.board-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--bg-light);
    transition: transform 0.3s ease;
}

.board-card:hover {
    transform: translateY(-8px);
    border-color: var(--success-main);
    box-shadow: var(--shadow-lg);
}

.board-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

.board-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.board-card span {
    font-size: 0.85rem;
    color: var(--brand-primary);
    font-weight: 600;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-accent);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--success-lighter);
    color: var(--success-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-details h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.info-details p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-details a {
    color: var(--text-body);
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: var(--brand-accent);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light);
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--text-heading);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--bg-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-body);
    background: var(--bg-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--success-lighter);
}

.contact-form button {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.success-message {
    background: var(--success-lighter);
    color: var(--success-darker);
    border: 1px solid var(--success-light);
}

.success-message i {
    font-size: 1.2rem;
}

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

    .contact-form-container {
        padding: 30px;
    }
}

.faq-search-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 16px 20px;
    padding-left: 50px;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    border-color: var(--brand-accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(52, 168, 83, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.faq-question:hover {
    background-color: var(--grey-50);
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: var(--brand-accent);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

.faq-box.hidden {
    display: none;
}

.hero-investor {
    background: radial-gradient(circle at 50% 120%, var(--info-lighter), var(--bg-white));
    padding-top: 150px;
    padding-bottom: 100px;
}

.roi-box h3 {
    margin-bottom: 10px;
    color: var(--success-darker);
}

.contact-box h3 {
    margin-bottom: 10px;
}

.text-link {
    color: var(--brand-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.text-link:hover {
    text-decoration: underline;
    gap: 8px;
}

@media (max-width: 992px) {
    .governance-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 1100px) {
    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;

        padding: 100px 32px;
        display: flex;

        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1100;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1050;

    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-end;

        width: 100%;
        gap: 12px;
        margin-bottom: 40px;
    }

    .nav-links a {
        display: block !important;
        width: auto;
        text-align: right;

        padding: 12px 0;
        border-bottom: none;

        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-heading) !important;
    }

    .nav-actions .btn {
        display: none;

    }

    .nav-menu .btn {
        display: flex;
        width: 100%;
    }

    .mobile-toggle {
        display: block;
        padding: 10px;
        position: relative;
        z-index: 1200;

        color: var(--text-heading);
    }

    .nav-menu.active~.nav-actions .mobile-toggle {
        color: var(--text-heading);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        max-width: 400px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}