    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    :root {
        --dark: #04200f;
        --dark2: #072b14;
        --accent: #38f080;
        --gold: #c9a020;
        --white: #f0f5f1;
        --muted: rgba(240, 245, 241, 0.65);
        --nav-h: 76px;
        --red: #e05252;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: "DM Sans", sans-serif;
        background: var(--dark);
        color: var(--white);
        overflow-x: hidden;
    }
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 500;
        background: rgba(5, 28, 14, 0.97);
        border-top: 1px solid rgba(56, 240, 128, 0.18);
        backdrop-filter: blur(16px);
        padding: 16px 40px;
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }
    .cookie-banner.visible {
        transform: translateY(0);
    }
    .cookie-text {
        flex: 1;
        font-size: 13px;
        color: var(--muted);
        min-width: 200px;
    }
    .cookie-text a {
        color: var(--accent);
        text-decoration: none;
    }
    .cookie-text a:hover {
        text-decoration: underline;
    }
    .cookie-btns {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }
    .cookie-btn {
        padding: 8px 20px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        font-family: "DM Sans", sans-serif;
        transition: all 0.2s;
    }
    .cookie-btn.accept {
        background: var(--accent);
        color: var(--dark);
    }
    .cookie-btn.accept:hover {
        background: #5bffaa;
    }
    .cookie-btn.decline {
        background: transparent;
        color: var(--muted);
        border: 1.5px solid rgba(255, 255, 255, 0.15);
    }
    .cookie-btn.decline:hover {
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.35);
    }
    .acc-trigger {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--white);
        background: rgba(56, 240, 128, 0.1);
        border: 1.5px solid rgba(56, 240, 128, 0.25);
        border-radius: 6px;
        padding: 9px 16px;
        cursor: pointer;
        transition: all 0.2s;
        font-family: "DM Sans", sans-serif;
    }
    .acc-trigger:hover {
        background: rgba(56, 240, 128, 0.18);
        border-color: var(--accent);
    }
    .acc-trigger svg.chevron {
        transition: transform 0.3s;
    }
    .acc-trigger.open svg.chevron {
        transform: rotate(180deg);
    }
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
        margin-left: 12px;
    }
    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .mobile-menu {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(4, 20, 10, 0.98);
        border-bottom: 1px solid rgba(56, 240, 128, 0.15);
        padding: 20px 24px;
        flex-direction: column;
        gap: 4px;
        z-index: 190;
        backdrop-filter: blur(16px);
        transform: translateY(-10px);
        opacity: 0;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }
    .mobile-menu.open {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    .mobile-menu .nav-link {
        padding: 14px 12px;
        border-radius: 8px;
        font-size: 15px;
    }
    .mobile-menu-divider {
        height: 1px;
        background: rgba(56, 240, 128, 0.1);
        margin: 8px 0;
    }
    .mobile-menu-btns {
        display: flex;
        gap: 10px;
        margin-top: 8px;
    }
    .mobile-menu-btn {
        flex: 1;
        padding: 12px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        border: none;
        font-family: "DM Sans", sans-serif;
        transition: all 0.2s;
    }
    .mmb-ghost {
        background: transparent;
        color: var(--white);
        border: 1.5px solid rgba(255, 255, 255, 0.2);
    }
    .mmb-ghost:hover {
        border-color: var(--accent);
        color: var(--accent);
    }
    .mmb-solid {
        background: var(--accent);
        color: var(--dark);
    }
    .mmb-solid:hover {
        background: #5bffaa;
    }
    .acc-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 199;
        background: rgba(0, 0, 0, 0.4);
    }
    .acc-backdrop.visible {
        display: block;
    }
    .acc-panel {
        position: absolute;
        top: calc(var(--nav-h) + 8px);
        right: 40px;
        width: 320px;
        background: rgba(5, 28, 14, 0.97);
        border: 1px solid rgba(56, 240, 128, 0.18);
        border-radius: 14px;
        backdrop-filter: blur(20px);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        transition:
            max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            transform 0.3s ease;
        pointer-events: none;
        z-index: 300;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(56, 240, 128, 0.08);
    }
    .acc-panel.open {
        max-height: min(520px, calc(100vh - var(--nav-h) - 24px));
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .acc-panel::-webkit-scrollbar {
        width: 5px;
    }
    .acc-panel::-webkit-scrollbar-track {
        background: transparent;
    }
    .acc-panel::-webkit-scrollbar-thumb {
        background: rgba(56, 240, 128, 0.25);
        border-radius: 99px;
    }
    .acc-panel::-webkit-scrollbar-thumb:hover {
        background: rgba(56, 240, 128, 0.45);
    }
    .acc-item {
        border-bottom: 1px solid rgba(56, 240, 128, 0.08);
    }
    .acc-item:last-child {
        border-bottom: none;
    }
    .acc-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        cursor: pointer;
        transition: background 0.2s;
        user-select: none;
    }
    .acc-header:hover {
        background: rgba(56, 240, 128, 0.05);
    }
    .acc-header-left {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .acc-icon-wrap {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .acc-icon-wrap.green {
        background: rgba(56, 240, 128, 0.12);
        color: var(--accent);
    }
    .acc-icon-wrap.gold {
        background: rgba(201, 160, 32, 0.12);
        color: var(--gold);
    }
    .acc-header-title {
        font-size: 14.5px;
        font-weight: 600;
        color: var(--white);
    }
    .acc-header-sub {
        font-size: 11.5px;
        color: var(--muted);
        margin-top: 2px;
    }
    .acc-chevron {
        color: var(--muted);
        transition:
            transform 0.3s,
            color 0.2s;
        flex-shrink: 0;
    }
    .acc-item.open .acc-chevron {
        transform: rotate(180deg);
        color: var(--accent);
    }
    .acc-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .acc-item.open .acc-body {
        max-height: 1000px;
    }
    .acc-body-inner {
        padding: 4px 22px 20px;
    }
    .acc-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .acc-field {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .acc-field label {
        font-size: 11px;
        font-weight: 600;
        color: var(--muted);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    .acc-field input {
        width: 100%;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(56, 240, 128, 0.15);
        border-radius: 7px;
        color: var(--white);
        font-size: 13.5px;
        font-family: "DM Sans", sans-serif;
        outline: none;
        transition:
            border-color 0.2s,
            background 0.2s;
    }
    .acc-field input:focus {
        border-color: var(--accent);
        background: rgba(56, 240, 128, 0.07);
    }
    .acc-field input::placeholder {
        color: rgba(240, 245, 241, 0.3);
    }
    .acc-field input.error {
        border-color: var(--red) !important;
        background: rgba(224, 82, 82, 0.07) !important;
    }
    .error-button {
        width: 100%;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--red);
        border-radius: 7px;
        color: var(--red);
        cursor: pointer;
        font-size: 13.5px;
        font-family: "DM Sans", sans-serif;
        outline: none;
        transition:
            border-color 0.2s,
            background 0.2s;
    }
    .error-button:focus {
        border-color: #f00;
        background: rgba(56, 240, 128, 0.07);
    }
    .error-button::placeholder {
        color: rgba(240, 245, 241, 0.3);
        border-color: #f00 !important;
        background: rgba(224, 82, 82, 0.07) !important;
    }
    .acc-field input.success {
        border-color: var(--accent);
    }

    .acc-select {
        position: relative;
        width: 100%;
    }

    .acc-select-trigger {
        padding: 10px 14px;
        border: 1px solid rgba(56,240,128,0.15);
        border-radius: 7px;
        background: rgba(255,255,255,0.05);
        display: flex;
        justify-content: space-between;
        cursor: pointer;
    }

    .acc-select-trigger:hover {
        border-color: var(--accent);
    }

    .acc-select-dropdown {
        position: absolute;
        width: 100%;
        top: 110%;
        background: #04140a;
        border: 1px solid rgba(56,240,128,0.15);
        border-radius: 7px;
        display: none;
        overflow: hidden;
        z-index: 100;
        animation: dropdownAnim .15s ease;
    }

    @keyframes dropdownAnim {
        from {
            opacity:0;
            transform:translateY(-6px);
        }
        to {
            opacity:1;
            transform:translateY(0);
        }
    }

    .acc-select-search {
        width: 100%;
        padding: 10px;
        border: none;
        border-bottom: 1px solid rgba(56,240,128,0.15);
        background: rgba(255,255,255,0.04);
        color: var(--white);
        outline: none;
    }

    .acc-select-options {
        max-height: 220px;
        overflow-y: auto;
    }

    .acc-option {
        padding: 10px 14px;
        cursor: pointer;
        font-size: 13.5px;
    }

    .acc-option:hover,
    .acc-option.active {
        background: rgba(56,240,128,0.08);
    }

    .acc-select-options::-webkit-scrollbar {
        width: 6px;
    }

    .acc-select-options::-webkit-scrollbar-thumb {
        background: rgba(56,240,128,0.4);
        border-radius: 10px;
    }

    .acc-field input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--accent);
        cursor: pointer;
    }
    .acc-field.checkbox {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .acc-field input[type="radio"],
    .radio-option input[type="radio"] {
        width: 16px;
        height: 16px;
        accent-color: var(--accent);
        cursor: pointer;
    }
    /* disabled radio */
    .radio-option input[type="radio"]:disabled {
        opacity: 1;                 /* prevent browser fade */
        cursor: not-allowed;
    }
    /* disabled + checked */
    .radio-option input[type="radio"]:checked:disabled {
        accent-color: var(--accent);
    }
    .radio-option input[type="radio"]:disabled + span {
        opacity: 0.6;
    }
    .acc-radio-group {
        display: flex;
        gap: 25px;
        align-items: center;
        margin-top: 6px;
    }
    .radio-option {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        font-size: 13.5px;
        color: var(--white);
    }
    /* make readonly radios unclickable */
    .radio-option input[type="radio"][readonly] {
        pointer-events: none;   /* prevent mouse clicks */
        cursor: not-allowed;
        opacity: 1;             /* keep color visible */
    }
    .acc-field input[type="file"] {
        width: 100%;
        padding: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px dashed rgba(56, 240, 128, 0.2);
        border-radius: 7px;
        color: var(--muted);
        font-size: 13px;
        cursor: pointer;
    }
    .acc-field input[type="file"]:hover {
        border-color: var(--accent);
    }
    .acc-field input[type="file"]::file-selector-button {
        background: var(--accent);
        border: none;
        padding: 6px 10px;
        border-radius: 5px;
        margin-right: 10px;
        color: #02140a;
        font-size: 12px;
        cursor: pointer;
    }
    .acc-field select.error,
    .acc-field input[type="file"].error {
        border-color: var(--red) !important;
        background: rgba(224, 82, 82, 0.07) !important;
    }

    .acc-field select.success,
    .acc-field input[type="file"].success {
        border-color: var(--accent);
    }
    .field-hint {
        font-size: 11px;
        color: var(--muted);
        margin-top: 3px;
    }
    .field-error {
        font-size: 11px;
        color: var(--red);
        margin-top: 3px;
        display: none;
    }
    .field-error.visible {
        display: block;
    }
    .acc-form-row {
        display: flex;
        gap: 10px;
    }
    .acc-form-row .acc-field {
        flex: 1;
    }
    .acc-submit {
        width: 100%;
        padding: 11px;
        border: none;
        border-radius: 7px;
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
        margin-top: 4px;
    }
    .acc-submit.primary {
        background: var(--accent);
        color: var(--dark);
    }
    .acc-submit.primary:hover {
        background: #5bffaa;
    }
    .acc-submit:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    .acc-foot-text {
        font-size: 12px;
        color: var(--muted);
        text-align: center;
        margin-top: 6px;
    }
    .acc-foot-text a {
        color: var(--accent);
        text-decoration: none;
    }
    .acc-foot-text a:hover {
        text-decoration: underline;
    }
    .acc-success-msg {
        display: none;
        text-align: center;
        padding: 16px 0;
        font-size: 13px;
        color: var(--accent);
        line-height: 1.6;
    }
    .acc-success-msg.visible {
        display: block;
    }
    .acc-success-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }
    .modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 600;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        align-items: center;
        justify-content: center;
    }
    .modal-overlay.visible {
        display: flex;
    }
    .modal {
        background: rgba(5, 28, 14, 0.98);
        border: 1px solid rgba(56, 240, 128, 0.2);
        border-radius: 16px;
        padding: 36px 32px;
        width: 90%;
        max-width: 380px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
        animation: modalIn 0.25s ease;
    }
    @keyframes modalIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }
    .modal h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
    }
    .modal p {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .modal-close {
        position: absolute;
        top: 14px;
        right: 14px;
        background: transparent;
        border: none;
        color: var(--muted);
        cursor: pointer;
        font-size: 20px;
        padding: 4px;
        line-height: 1;
    }
    .modal-inner {
        position: relative;
    }
    .modal-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 16px;
    }
    .modal-field label {
        font-size: 11px;
        font-weight: 600;
        color: var(--muted);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    .modal-field input {
        width: 100%;
        padding: 11px 14px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(56, 240, 128, 0.15);
        border-radius: 8px;
        color: var(--white);
        font-size: 14px;
        font-family: "DM Sans", sans-serif;
        outline: none;
        transition: border-color 0.2s;
    }
    .modal-field input:focus {
        border-color: var(--accent);
    }
    .modal-btn {
        width: 100%;
        padding: 12px;
        background: var(--accent);
        color: var(--dark);
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        font-family: "DM Sans", sans-serif;
        cursor: pointer;
        transition: background 0.2s;
    }
    .modal-btn:hover {
        background: #5bffaa;
    }
    .modal-cancel {
        width: 100%;
        padding: 10px;
        background: transparent;
        color: var(--muted);
        border: none;
        font-size: 13px;
        cursor: pointer;
        margin-top: 8px;
        font-family: "DM Sans", sans-serif;
        transition: color 0.2s;
    }
    .modal-cancel:hover {
        color: var(--white);
    }
    .hero {
        min-height: 100vh;
        padding: calc(var(--nav-h) + 60px) 60px 80px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px
    }


    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 60% at 72% 42%, rgba(34, 197, 94, 0.11) 0%, transparent 70%),
            radial-gradient(ellipse 40% 50% at 15% 80%, rgba(56, 240, 128, 0.07) 0%, transparent 60%);
        pointer-events: none;
    }
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(56, 240, 128, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(56, 240, 128, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        animation: gridShift 22s linear infinite;
    }
    .hero-container {
      width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 20px;
        overflow: hidden;

    }
    @keyframes gridShift {
        from {
            background-position: 0 0;
        }
        to {
            background-position: 60px 60px;
        }
    }
    .hero-text {
        position: relative;
        z-index: 2;
    }
    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 28px;
    }
    .eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--accent);
    }
    h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(46px, 5.5vw, 80px);
        line-height: 1.05;
        font-weight: 900;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
    }
    h1 .line1 {
        display: block;
        overflow: hidden;
    }
    h1 .line2 {
        color: var(--accent);
        display: block;
        overflow: hidden;
    }
    h1 .line1 .inner,
    h1 .line2 .inner {
        display: block;
        transform: translateY(100%);
        animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    h1 .line1 .inner {
        animation-delay: 0.3s;
    }
    h1 .line2 .inner {
        animation-delay: 0.55s;
    }
    @keyframes slideUp {
        to {
            transform: translateY(0);
        }
    }
    .hero-sub {
        font-size: 16px;
        line-height: 1.75;
        color: var(--muted);
        max-width: 440px;
        margin-bottom: 44px;
    }
    .cta-group {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.25s ease;
        border: none;
    }
    .btn-outline {
        background: transparent;
        border: 1.5px solid rgba(240, 245, 241, 0.35);
        color: var(--white);
    }
    .btn-outline:hover {
        border-color: var(--white);
        background: rgba(240, 245, 241, 0.05);
    }
    .btn-primary {
        background: var(--accent);
        color: var(--dark);
    }
    .btn-primary:hover {
        background: #5bffaa;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(56, 240, 128, 0.35);
    }
    .trust-bar {
        border-top: 1px solid rgba(56, 240, 128, 0.08);
        border-bottom: 1px solid rgba(56, 240, 128, 0.08);
        padding: 28px 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
        background: rgba(7, 43, 20, 0.3);
    }
    .trust-stat {
        text-align: center;
    }
    .trust-stat .num {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 900;
        color: var(--accent);
        display: block;
        line-height: 1;
    }
    .trust-stat .label {
        font-size: 12px;
        color: var(--muted);
        margin-top: 4px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .trust-divider {
        width: 1px;
        height: 40px;
        background: rgba(56, 240, 128, 0.15);
    }
    .card-stack {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .card-glow {
        position: absolute;
        width: 80%;
        height: 70%;
        top: 15%;
        left: 10%;
        border-radius: 50%;
        background: radial-gradient(
            ellipse at center,
            rgba(56, 240, 128, 0.22) 0%,
            rgba(201, 160, 32, 0.08) 40%,
            transparent 70%
        );
        pointer-events: none;
        animation: pulseGlow 4.5s ease-in-out infinite;
        filter: blur(28px);
    }
    @keyframes pulseGlow {
        0%,
        100% {
            opacity: 0.7;
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.06);
        }
    }
    .card-flag-glow {
        position: absolute;
        bottom: 8%;
        right: 0;
        width: 60%;
        height: 40%;
        background: radial-gradient(
            ellipse at 80% 80%,
            rgba(206, 17, 38, 0.15) 0%,
            rgba(252, 209, 22, 0.1) 40%,
            rgba(0, 107, 63, 0.12) 70%,
            transparent 90%
        );
        pointer-events: none;
        filter: blur(22px);
        animation: flagGlow 5s ease-in-out infinite;
    }
    @keyframes flagGlow {
        0%,
        100% {
            opacity: 0.6;
        }
        50% {
            opacity: 1;
        }
    }
    .card-img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 480px;
        height: auto;
        display: block;
        mix-blend-mode: normal;
        animation: floatImg 6s ease-in-out infinite;
        filter: drop-shadow(0 12px 40px rgba(56, 240, 128, 0.18)) drop-shadow(0 4px 20px rgba(201, 160, 32, 0.15))
            contrast(1.04) saturate(1.1);
    }
    @keyframes floatImg {
        0%,
        100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-18px);
        }
    }
    .steps-section {
        padding: 80px 60px;
        background: linear-gradient(180deg, rgba(7, 43, 20, 0.4) 0%, transparent 100%);
        border-top: 1px solid rgba(56, 240, 128, 0.1);
    }
    .steps-section h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(24px, 3vw, 36px);
        font-weight: 700;
        text-align: center;
        margin-bottom: 48px;
    }
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    .steps-grid::before {
        content: "";
        position: absolute;
        top: 25px;
        left: calc(16.66% + 18px);
        right: calc(16.66% + 18px);
        height: 1px;
        background: linear-gradient(90deg, var(--accent) 0%, rgba(56, 240, 128, 0.3) 50%, var(--accent) 100%);
        z-index: 0;
    }
    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 24px 32px;
        position: relative;
        z-index: 1;
    }
    .step-icon-wrap {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--dark2);
        border: 2px solid var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        margin-bottom: 20px;
        flex-shrink: 0;
        box-shadow: 0 0 20px rgba(56, 240, 128, 0.2);
        position: relative;
    }
    .step-num-badge {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--dark);
        font-size: 9px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .step h3 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .step p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.65;
    }
    .positions-section {
        padding: 80px 60px;
    }
    .positions-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
        flex-wrap: wrap;
        gap: 16px;
    }
    .positions-header h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(22px, 3vw, 34px);
        font-weight: 700;
    }
    .positions-count {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(56, 240, 128, 0.1);
        border: 1px solid rgba(56, 240, 128, 0.25);
        border-radius: 99px;
        padding: 6px 14px;
        font-size: 13px;
        font-weight: 600;
        color: var(--accent);
    }
    .positions-count::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--accent);
        animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink {
        0%,
        100% {
            opacity: 1;
        }
        50% {
            opacity: 0.3;
        }
    }
    .positions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    .position-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(56, 240, 128, 0.1);
        border-radius: 14px;
        padding: 24px;
        transition:
            border-color 0.25s,
            background 0.25s,
            transform 0.25s;
        cursor: pointer;
    }
    .position-card:hover {
        border-color: rgba(56, 240, 128, 0.35);
        background: rgba(56, 240, 128, 0.04);
        transform: translateY(-3px);
    }
    .pos-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 12px;
        gap: 12px;
    }
    .pos-dept {
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 6px;
    }
    .pos-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.3;
    }
    .pos-badge {
        flex-shrink: 0;
        padding: 4px 10px;
        border-radius: 99px;
        font-size: 11px;
        font-weight: 600;
    }
    .pos-badge.full-time {
        background: rgba(56, 240, 128, 0.12);
        color: var(--accent);
        border: 1px solid rgba(56, 240, 128, 0.2);
    }
    .pos-badge.contract {
        background: rgba(201, 160, 32, 0.12);
        color: var(--gold);
        border: 1px solid rgba(201, 160, 32, 0.2);
    }
    .pos-meta {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 12px;
    }
    .pos-meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        color: var(--muted);
    }
    .pos-meta-item svg {
        opacity: 0.6;
    }
    .pos-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(56, 240, 128, 0.08);
    }
    .pos-deadline {
        font-size: 11.5px;
        color: var(--muted);
    }
    .pos-apply {
        font-size: 13px;
        font-weight: 600;
        color: var(--accent);
        background: transparent;
        border: 1px solid rgba(56, 240, 128, 0.3);
        border-radius: 6px;
        padding: 7px 16px;
        cursor: pointer;
        font-family: "DM Sans", sans-serif;
        transition: all 0.2s;
    }
    .pos-apply:hover {
        background: rgba(56, 240, 128, 0.1);
        border-color: var(--accent);
    }
    .positions-empty {
        grid-column: 1/-1;
        text-align: center;
        padding: 60px 20px;
        color: var(--muted);
        font-size: 15px;
    }
    .positions-empty .empty-icon {
        font-size: 40px;
        margin-bottom: 12px;
        opacity: 0.4;
    }
    .cta-banner {
        margin: 0 40px 80px;
        padding: 64px 60px;
        background: linear-gradient(135deg, rgba(26, 92, 46, 0.55) 0%, rgba(7, 43, 20, 0.8) 100%);
        border: 1px solid rgba(56, 240, 128, 0.2);
        border-radius: 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-banner::before {
        content: "";
        position: absolute;
        top: -50%;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(ellipse, rgba(56, 240, 128, 0.11) 0%, transparent 70%);
        pointer-events: none;
    }
    .cta-banner h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(26px, 3.5vw, 40px);
        font-weight: 700;
        margin-bottom: 14px;
    }
    .cta-banner p {
        color: var(--muted);
        font-size: 16px;
        max-width: 500px;
        margin: 0 auto 36px;
    }
    .cta-banner .cta-group {
        justify-content: center;
    }
    .btn-outline-light {
        background: transparent;
        border: 1.5px solid rgba(240, 245, 241, 0.35);
        color: var(--white);
    }
    .btn-outline-light:hover {
        border-color: var(--white);
        background: rgba(240, 245, 241, 0.07);
    }
    footer {
        border-top: 1px solid rgba(56, 240, 128, 0.12);
        padding: 28px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-brand {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .footer-logo {
        width: 42px;
        height: 42px;
        background: url("https://www.nia.gov.gh/wp-content/uploads/2021/09/NIA-logo.png") center/contain no-repeat;
    }
    .footer-name {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.4;
        color: var(--muted);
    }
    .footer-links {
        display: flex;
        gap: 26px;
        align-items: center;
        flex-wrap: wrap;
    }
    .footer-links a {
        font-size: 13px;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-links a:hover {
        color: var(--accent);
    }
    .footer-copy {
        font-size: 12px;
        color: rgba(240, 245, 241, 0.3);
        width: 100%;
        text-align: right;
    }
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.7s ease forwards;
    }
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .delay-1 {
        animation-delay: 0.1s;
    }
    .delay-2 {
        animation-delay: 0.25s;
    }
    .delay-3 {
        animation-delay: 0.45s;
    }
    @media (max-width: 960px) {
        .body-space {
          margin-top: 60px;
        }
        .nav-links {
            display: none;
        }
        .acc-trigger {
            display: none;
        }
        .nav-logo-text {
            display: none;
        }
        .small-logo-text {
          display: flex;
          flex-direction: column;
          line-height: 1.2;
        }
        .hamburger {
            display: flex;
        }
        .hero-container {
            grid-template-columns: 1fr;
            padding: calc(var(--nav-h) + 30px) 24px 40px;
            text-align: center;
            gap: 0;
        }
        .hero-sub {
            margin: 0 auto 36px;
        }
        .cta-group {
            justify-content: center;
        }
        .card-stack {
            order: -1;
        }
        .card-img {
            max-width: 300px;
        }
        .trust-bar {
            padding: 24px;
            gap: 30px;
        }
        .trust-divider {
            display: none;
        }
        .steps-section {
            padding: 60px 24px;
        }
        .steps-section h2 {
            margin-bottom: 32px;
        }
        .steps-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .steps-grid::before {
            display: none;
        }
        .step {
            flex-direction: row;
            text-align: left;
            padding: 0 0 0 8px;
            align-items: flex-start;
        }
        .step-icon-wrap {
            margin-bottom: 0;
            margin-right: 18px;
            flex-shrink: 0;
        }
        .positions-section {
            padding: 60px 24px;
        }
        .cta-banner {
            margin: 0 20px 60px;
            padding: 44px 24px;
        }
        footer {
            padding: 24px;
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-copy {
            text-align: left;
        }
        .acc-panel {
            right: 16px;
            width: calc(100vw - 32px);
        }
    }

    /* alerts */
    /* base alert */
    .nia-alert {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        border-radius: 8px;
        margin-bottom: 16px;
        font-size: 14px;
        font-family: "DM Sans", sans-serif;
        border: 1px solid;
        backdrop-filter: blur(8px);
    }

    /* icon */
    .alert-icon {
        font-size: 16px;
        font-weight: bold;
    }

    /* content */
    .alert-content {
        flex: 1;
    }

    /* close button */
    .alert-close {
        background: transparent;
        border: none;
        font-size: 18px;
        cursor: pointer;
        color: var(--muted);
        transition: 0.2s;
    }

    .alert-close:hover {
        color: var(--white);
    }

    /* success */
    .nia-success {
        background: rgba(56, 240, 128, 0.08);
        border-color: rgba(56, 240, 128, 0.35);
        color: var(--accent);
    }

    /* warning */
    .nia-warning {
        background: rgba(201, 160, 32, 0.08);
        border-color: rgba(201, 160, 32, 0.35);
        color: var(--gold);
    }

    /* error */
    .nia-error {
        background: rgba(224, 82, 82, 0.08);
        border-color: rgba(224, 82, 82, 0.35);
        color: var(--red);
    }
