/* =========================================================
   CODES WEBSITE
   MAIN STYLE SHEET
   ========================================================= */


/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --codes-primary: #140129;
    --codes-primary-light: #2b0752;

    --codes-yellow: #f4b400;
    --codes-yellow-hover: #d99d00;

    --codes-dark: #0f1e36;
    --codes-white: #ffffff;

    --codes-text: #222222;
    --codes-text-light: #666666;
    --codes-muted: #888888;

    --codes-border: #e8e8e8;

    --codes-soft: #f6f2f8;

    --codes-container: 1400px;

    --codes-transition: 0.25s ease;

    --codes-header-height: 82px;
}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    background: #ffffff;

    color: var(--codes-text);

    line-height: 1.6;

    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

img {
    display: block;

    max-width: 100%;

    height: auto;
}

a {
    color: inherit;

    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   03. MAIN CONTENT
   ========================================================= */

#main-content {
    width: 100%;
}


/* =========================================================
   04. HEADER
   ========================================================= */

#header {
    position: relative;

    width: 100%;

    height: auto;

    z-index: 1000;

    background: #ffffff;
}


/* =========================================================
   05. HEADER INNER
   ========================================================= */

.codes-header-inner {
    width: 100%;

    min-height: var(--codes-header-height);

    padding: 8px 40px;

    display: flex;

    align-items: center;
    position: relative;

    gap: 25px;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid rgba(20, 1, 41, 0.08);

    box-shadow:
        0 2px 15px rgba(0, 0, 0, 0.04);

    backdrop-filter: blur(12px);
}


/* =========================================================
   06. HEADER LOGO
   ========================================================= */

/* =========================================================
   HEADER LOGO - OVERLAPPING POSITION
   ========================================================= */

.navbar-logo {
    position: absolute;

    left: 40px;
    top: 35px;

    width: 200px;
    height: 170px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 0;

    background: #ffffff;

    z-index: 1100;

    flex-shrink: 0;
}


.navbar-logo img {
    display: block;

    width: auto;
    height: 145px;

    max-width: 175px;

    object-fit: contain;
}


/* =========================================================
   07. DESKTOP NAVIGATION
   ========================================================= */

.codesDesktopNav {
    flex: 1;

    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;
}


/* =========================================================
   08. DESKTOP NAV LINK
   ========================================================= */

.codesDesktopNav .nav-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    flex-shrink: 0;

    padding: 10px 1px;

    background: transparent;

    color: var(--codes-text);

    font-size: 14px;

    font-weight: 600;

    line-height: 1.3;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color var(--codes-transition);
}


/* UNDERLINE */

.codesDesktopNav .nav-link::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 1px;

    width: 0;

    height: 2px;

    border-radius: 10px;

    background: var(--codes-primary);

    transition:
        width var(--codes-transition);
}


/* HOVER */

.codesDesktopNav .nav-link:hover {
    color: var(--codes-primary);
}

.codesDesktopNav .nav-link:hover::after {
    width: 100%;
}


/* ACTIVE */

.codesDesktopNav .nav-link.active {
    color: var(--codes-primary);
}

.codesDesktopNav .nav-link.active::after {
    width: 100%;
}


/* =========================================================
   09. RESOURCES DROPDOWN
   ========================================================= */

.codesNavDropdown {
    position: relative;

    flex-shrink: 0;

    display: flex;

    align-items: center;
}


/* RESOURCES ACTIVE */

.codesNavDropdown.active .codesResourcesTrigger {
    color: var(--codes-primary);
}


/* TRIGGER */

.codesResourcesTrigger {
    appearance: none;

    border: 0;

    outline: none;

    background: transparent;
}


/* CHEVRON */

.codesResourcesTrigger i {
    font-size: 10px;

    transition:
        transform 0.3s ease;
}


/* HOVER CHEVRON */

.codesNavDropdown:hover .codesResourcesTrigger i {
    transform: rotate(180deg);
}


/* =========================================================
   10. RESOURCES MENU
   ========================================================= */

.codesResourcesMenu {
    position: absolute;

    top: calc(100% + 1px);

    left: 50%;

    width: 365px;

    padding: 10px;

    background: #ffffff;

    border: 1px solid rgba(20, 1, 41, 0.08);

    border-radius: 15px;

    box-shadow:
        0 20px 55px rgba(20, 1, 41, 0.16);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%) translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 5000;
}


/* SHOW DROPDOWN */

.codesNavDropdown:hover .codesResourcesMenu,

.codesNavDropdown:focus-within .codesResourcesMenu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%) translateY(0);
}


/* DROPDOWN ARROW */

.codesResourcesMenu::before {
    content: "";

    position: absolute;

    top: -7px;

    left: 50%;

    width: 13px;

    height: 13px;

    background: #ffffff;

    border-left: 1px solid rgba(20, 1, 41, 0.08);

    border-top: 1px solid rgba(20, 1, 41, 0.08);

    transform:
        translateX(-50%) rotate(45deg);
}


/* =========================================================
   11. RESOURCE ITEM
   ========================================================= */

.codesResourceItem {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    border-radius: 11px;

    background: transparent;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.codesResourceItem:hover {
    background: var(--codes-soft);

    transform: translateX(3px);
}


/* RESOURCE ICON */

.codesResourceIcon {
    width: 42px;

    height: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--codes-soft);

    color: var(--codes-primary);

    font-size: 16px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.codesResourceItem:hover .codesResourceIcon {
    background: var(--codes-primary);

    color: #ffffff;
}


/* RESOURCE CONTENT */

.codesResourceContent {
    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 2px;
}

.codesResourceContent strong {
    display: block;

    color: var(--codes-text);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.4;
}

.codesResourceContent small {
    display: block;

    color: var(--codes-muted);

    font-size: 10px;

    font-weight: 400;

    line-height: 1.5;
}


/* RESOURCE ARROW */

.codesResourceArrow {
    flex-shrink: 0;

    color: #999999;

    font-size: 10px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.codesResourceItem:hover .codesResourceArrow {
    color: var(--codes-primary);

    transform:
        translate(2px, -2px);
}


/* =========================================================
   12. PARTNER BUTTON
   ========================================================= */

.codesPartnerButton {
    flex-shrink: 0;

    display: block;
}


/* BUTTON */

.codesPartnerBtn {
    min-width: 155px;

    height: 46px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 11px;

    background: var(--codes-yellow);

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.codesPartnerBtn:hover {
    background: var(--codes-yellow-hover);

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(244, 180, 0, 0.22);
}

.codesPartnerBtn i {
    font-size: 13px;

    transition:
        transform 0.25s ease;
}

.codesPartnerBtn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   13. MOBILE MENU BUTTON
   ========================================================= */

.codesMobileMenuBtn {
    display: none;

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 10px;

    background: var(--codes-soft);

    color: var(--codes-primary);

    font-size: 19px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.codesMobileMenuBtn:hover {
    background: var(--codes-primary);

    color: #ffffff;

    transform: scale(1.04);
}


/* =========================================================
   14. MOBILE DRAWER
   ========================================================= */

.codesMobileDrawer {
    position: fixed;

    top: 0;

    left: 0;

    width: 325px;

    max-width: 88vw;

    height: 100vh;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    z-index: 9999;

    overflow: hidden;

    transform: translateX(-105%);

    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    box-shadow:
        15px 0 50px rgba(0, 0, 0, 0.18);
}


/* OPEN */

.codesMobileDrawer.is-open {
    transform: translateX(0);
}


/* =========================================================
   15. MOBILE DRAWER HEADER
   ========================================================= */

.codesMobileDrawerHeader {
    min-height: 80px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 18px;

    background: #ffffff;

    border-bottom: 1px solid var(--codes-border);
}


/* MOBILE LOGO */

.codesMobileLogo {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}

.codesMobileLogo img {
    width: auto;

    height: 48px;

    max-width: 150px;

    object-fit: contain;
}


/* =========================================================
   16. MOBILE CLOSE BUTTON
   ========================================================= */

.codesMobileClose {
    width: 41px;

    height: 41px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f4f4f4;

    color: #222222;

    font-size: 18px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.3s ease;
}

.codesMobileClose:hover {
    background: var(--codes-primary);

    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================================
   17. MOBILE MENU SCROLL
   ========================================================= */

.codesMobileMenuScroll {
    flex: 1;

    min-height: 0;

    overflow-x: hidden;

    overflow-y: auto;

    padding: 17px 14px 25px;
}


/* SCROLLBAR */

.codesMobileMenuScroll::-webkit-scrollbar {
    width: 5px;
}

.codesMobileMenuScroll::-webkit-scrollbar-track {
    background: #f6f6f6;
}

.codesMobileMenuScroll::-webkit-scrollbar-thumb {
    background: #c7c7c7;

    border-radius: 20px;
}


/* =========================================================
   18. MOBILE NAVIGATION
   ========================================================= */

.codesMobileMenu {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


/* =========================================================
   19. MOBILE NAV ITEM
   ========================================================= */

.codesMobileNavItem {
    width: 100%;

    min-height: 54px;

    padding: 8px 12px;

    display: flex;

    align-items: center;

    gap: 12px;

    border: 0;

    border-radius: 11px;

    background: transparent;

    color: #252525;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.4;

    text-align: left;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* ICON */

.codesMobileNavIcon {
    width: 38px;

    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: var(--codes-soft);

    color: var(--codes-primary);

    font-size: 15px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


/* HOVER */

.codesMobileNavItem:hover {
    background: #f7f4fa;

    color: var(--codes-primary);

    transform: translateX(3px);
}

.codesMobileNavItem:hover .codesMobileNavIcon {
    background: var(--codes-primary);

    color: #ffffff;
}


/* ACTIVE */

.codesMobileNavItem.active {
    background: var(--codes-primary);

    color: #ffffff;

    box-shadow:
        0 7px 18px rgba(20, 1, 41, 0.14);
}

.codesMobileNavItem.active .codesMobileNavIcon {
    background: rgba(255, 255, 255, 0.14);

    color: #ffffff;
}


/* =========================================================
   20. MOBILE RESOURCES
   ========================================================= */

.codesMobileResourceGroup {
    width: 100%;
}


/* RESOURCE BUTTON */

.codesMobileResourceBtn {
    justify-content: space-between;

    appearance: none;
}


/* LEFT */

.codesMobileNavLeft {
    display: flex;

    align-items: center;

    gap: 12px;
}


/* CHEVRON */

.codesMobileResourceChevron {
    margin-left: auto;

    flex-shrink: 0;

    font-size: 11px;

    transition:
        transform 0.3s ease;
}


/* OPEN */

.codesMobileResourceGroup.is-open .codesMobileResourceChevron {
    transform: rotate(180deg);
}


/* =========================================================
   21. MOBILE RESOURCE SUBMENU
   ========================================================= */

.codesMobileResourceSubmenu {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    padding-left: 10px;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding 0.35s ease;
}


/* OPEN */

.codesMobileResourceGroup.is-open .codesMobileResourceSubmenu {
    max-height: 600px;

    opacity: 1;

    padding-top: 5px;

    padding-bottom: 5px;
}


/* =========================================================
   22. MOBILE RESOURCE SUB ITEM
   ========================================================= */

.codesMobileSubItem {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 10px;

    margin-bottom: 3px;

    border-radius: 9px;

    color: #555555;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.codesMobileSubItem:hover {
    background: #f7f4fa;

    color: var(--codes-primary);

    transform: translateX(3px);
}


/* ACTIVE SUB ITEM */

.codesMobileSubItem.active {
    background: #f4eff8;

    color: var(--codes-primary);
}


/* SUB ICON */

.codesMobileSubIcon {
    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #f4f0f8;

    color: var(--codes-primary);

    font-size: 13px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.codesMobileSubItem:hover .codesMobileSubIcon {
    background: var(--codes-primary);

    color: #ffffff;
}


/* SUB CONTENT */

.codesMobileSubItem>span:last-child {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 1px;
}

.codesMobileSubItem strong {
    display: block;

    color: #222222;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.4;
}

.codesMobileSubItem small {
    display: block;

    color: #888888;

    font-size: 9px;

    font-weight: 400;

    line-height: 1.4;
}


/* =========================================================
   23. MOBILE DRAWER BOTTOM
   ========================================================= */

.codesMobileDrawerBottom {
    flex-shrink: 0;

    padding: 14px 16px 19px;

    background: #ffffff;

    border-top: 1px solid var(--codes-border);
}


/* =========================================================
   24. MOBILE PARTNER BUTTON
   ========================================================= */

.codesMobileJoinBtn {
    width: 100%;

    min-height: 51px;

    padding: 11px 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    border-radius: 11px;

    background: var(--codes-yellow);

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.codesMobileJoinBtn:hover {
    background: var(--codes-yellow-hover);

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(244, 180, 0, 0.22);
}

.codesMobileJoinBtn i {
    transition:
        transform 0.25s ease;
}

.codesMobileJoinBtn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   25. MOBILE OVERLAY
   ========================================================= */

.codesMobileOverlay {
    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 9998;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    backdrop-filter: blur(2px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* OPEN */

.codesMobileOverlay.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   26. DESKTOP RESPONSIVE
   ========================================================= */

@media (min-width: 1280px) {

    .codes-header-inner {
        padding-left: 70px;

        padding-right: 70px;

        gap: 30px;
    }

    .navbar-logo {
        width: 185px;

        min-width: 155px;
    }

    .navbar-logo img {
        height: 67px;

        max-width: 170px;
    }

    .codesDesktopNav {
        gap: 32px;
    }

}


/* =========================================================
   27. LAPTOP
   ========================================================= */

@media (min-width: 1024px) and (max-width: 1279px) {

    .codes-header-inner {
        padding-left: 25px;

        padding-right: 25px;

        gap: 18px;
    }

    .navbar-logo {
        width: 145px;

        min-width: 145px;
    }

    .navbar-logo img {
        height: 56px;

        max-width: 140px;
    }

    .codesDesktopNav {
        gap: 18px;
    }

    .codesDesktopNav .nav-link {
        font-size: 12px;
    }

    .codesPartnerBtn {
        min-width: 132px;

        height: 43px;

        padding: 0 13px;

        font-size: 11px;
    }

}


/* =========================================================
   28. DESKTOP - FORCE MOBILE HIDDEN
   ========================================================= */

@media (min-width: 1024px) {

    #desktopNavigation {
        display: flex;
    }

    .codesPartnerButton {
        display: block;
    }

    .codesMobileMenuBtn {
        display: none !important;
    }

    .codesMobileDrawer {
        display: none !important;
    }

    .codesMobileOverlay {
        display: none !important;
    }

}


/* =========================================================
   29. TABLET / MOBILE
   ========================================================= */

@media (max-width: 1023px) {

    .codes-header-inner {
        min-height: 70px;

        padding: 8px 20px;

        justify-content: space-between;

        gap: 15px;
    }


    /* HIDE DESKTOP NAV */

    #desktopNavigation {
        display: none !important;
    }


    /* HIDE DESKTOP PARTNER */

    .codesPartnerButton {
        display: none !important;
    }


    /* SHOW MOBILE BUTTON */

    .codesMobileMenuBtn {
        display: flex !important;
    }


    /* LOGO */

    .navbar-logo {
        width: auto;

        min-width: 0;
    }

    .navbar-logo img {
        height: 52px;

        max-width: 145px;
    }

}


/* =========================================================
   30. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .codes-header-inner {
        min-height: 67px;

        padding: 7px 17px;
    }

    .navbar-logo img {
        height: 49px;

        max-width: 140px;
    }

    .codesMobileMenuBtn {
        width: 42px;

        height: 42px;

        font-size: 18px;
    }

    .codesMobileDrawer {
        width: 315px;
    }

}


/* =========================================================
   31. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .codes-header-inner {
        min-height: 63px;

        padding: 7px 13px;
    }

    .navbar-logo img {
        height: 44px;

        max-width: 130px;
    }

    .codesMobileMenuBtn {
        width: 40px;

        height: 40px;

        font-size: 17px;
    }

    .codesMobileDrawer {
        width: 300px;

        max-width: 88vw;
    }

    .codesMobileDrawerHeader {
        min-height: 74px;

        padding: 11px 15px;
    }

    .codesMobileLogo img {
        height: 43px;

        max-width: 135px;
    }

    .codesMobileClose {
        width: 39px;

        height: 39px;

        font-size: 17px;
    }

    .codesMobileMenuScroll {
        padding: 14px 11px 20px;
    }

    .codesMobileNavItem {
        min-height: 51px;

        padding: 8px 10px;

        font-size: 13px;
    }

    .codesMobileNavIcon {
        width: 35px;

        height: 35px;

        min-width: 35px;
    }

    .codesMobileSubItem {
        min-height: 49px;

        padding: 7px 9px;
    }

    .codesMobileSubIcon {
        width: 32px;

        height: 32px;

        min-width: 32px;
    }

    .codesMobileSubItem strong {
        font-size: 10px;
    }

    .codesMobileSubItem small {
        font-size: 8.5px;
    }

    .codesMobileDrawerBottom {
        padding: 12px 13px 16px;
    }

    .codesMobileJoinBtn {
        min-height: 48px;

        font-size: 12px;
    }

}


/* =========================================================
   32. VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .navbar-logo img {
        height: 41px;

        max-width: 120px;
    }

    .codesMobileDrawer {
        width: 285px;
    }

    .codesMobileNavItem {
        gap: 9px;

        padding-left: 8px;

        padding-right: 8px;
    }

    .codesMobileNavIcon {
        width: 33px;

        height: 33px;

        min-width: 33px;
    }

}


/* =========================================================
   33. COMMON CONTAINER
   ========================================================= */

.codes-container {
    width: min(calc(100% - 40px),
            var(--codes-container));

    margin-left: auto;

    margin-right: auto;
}


/* =========================================================
   34. HERO
   ========================================================= */

.hero-bg {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    background:
        url("../images/Banner.png") center center / cover no-repeat;

    overflow: hidden;
}

.hero-bg::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(20, 1, 41, 0.92),
            rgba(20, 1, 41, 0.68),
            rgba(20, 1, 41, 0.45));

    z-index: 0;
}

.hero-bg>* {
    position: relative;

    z-index: 1;
}


/* HERO CANVAS */

#heroCanvas {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 0;

    pointer-events: none;
}


/* HERO TITLE */

.hero-title {
    font-size: clamp(36px,
            5vw,
            72px);

    line-height: 1.12;

    font-weight: 700;
}


/* HERO TEXT */

.hero-body {
    font-size: 17px;

    line-height: 1.8;
}

.hero-subbody {
    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   35. COMMON SECTION
   ========================================================= */

.codes-section {
    width: 100%;

    padding: 90px 20px;
}

.codes-section-title {
    color: var(--codes-dark);

    font-size: clamp(30px,
            4vw,
            52px);

    line-height: 1.2;

    font-weight: 700;
}

.codes-section-title span {
    color: var(--codes-primary-light);
}

.codes-section-text {
    color: var(--codes-text-light);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   36. GENERAL BUTTON
   ========================================================= */

.codes-btn {
    min-height: 48px;

    padding: 11px 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 10px;

    background: var(--codes-primary);

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.codes-btn:hover {
    background: var(--codes-primary-light);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 9px 25px rgba(20, 1, 41, 0.18);
}


/* =========================================================
   37. FOOTER
   ========================================================= */

footer {
    width: 100%;

    background: var(--codes-dark);

    color: #ffffff;
}


/* FOOTER LINKS */

footer a {
    transition:
        color 0.25s ease;
}

footer a:hover {
    color: #ffffff;
}


/* FOOTER TEXT */

footer p {
    color: #9ca3af;
}


/* FOOTER HEADINGS */

footer h4 {
    color: #ffffff;
}


/* FOOTER ICONS */

footer .fa-location-dot,
footer .fa-phone,
footer .fa-envelope {
    color: #a855f7;
}


/* =========================================================
   38. FORM ELEMENTS
   ========================================================= */

input,
textarea,
select {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #dddddd;

    border-radius: 9px;

    background: #ffffff;

    color: #222222;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--codes-primary);

    box-shadow:
        0 0 0 3px rgba(20, 1, 41, 0.08);
}

textarea {
    min-height: 150px;

    resize: vertical;
}


/* =========================================================
   39. ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(109, 40, 217, 0.35);

    outline-offset: 3px;
}


/* =========================================================
   40. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

/* =========================================================
   41. FOOTER - MAIN
   ========================================================= */

.codes-footer {
    position: relative;

    width: 100%;

    background: #0f1e36;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   42. FOOTER TOP
   ========================================================= */

.codes-footer-top {
    width: 100%;

    padding: 75px 20px 60px;
}


.codes-footer-container {
    width: min(100%,
            1400px);

    margin: 0 auto;
}


/* =========================================================
   43. FOOTER GRID
   ========================================================= */

.codes-footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.25fr;

    gap: 55px;
}


/* =========================================================
   44. FOOTER BRAND
   ========================================================= */

.codes-footer-brand {
    max-width: 390px;
}


.codes-footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 22px;
}


.codes-footer-logo img {
    width: auto;

    height: 65px;

    max-width: 180px;

    object-fit: contain;
}


.codes-footer-description {
    margin: 0;

    color: #aab3c2;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   45. FOOTER SOCIAL ICONS
   ========================================================= */

.codes-footer-social {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 24px;
}


.codes-footer-social a {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 14px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.codes-footer-social a:hover {
    background: #f4b400;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   46. FOOTER COLUMN
   ========================================================= */

.codes-footer-column {
    min-width: 0;
}


/* =========================================================
   47. FOOTER TITLE
   ========================================================= */

.codes-footer-title {
    position: relative;

    margin: 0 0 22px;

    padding-bottom: 11px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.4;
}


.codes-footer-title::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 32px;

    height: 2px;

    border-radius: 10px;

    background: #f4b400;
}


/* =========================================================
   48. FOOTER LINKS
   ========================================================= */

.codes-footer-links {
    display: flex;

    flex-direction: column;

    gap: 11px;
}


.codes-footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    color: #aab3c2;

    font-size: 12px;

    line-height: 1.6;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.codes-footer-links a i {
    color: #7c3aed;

    font-size: 9px;

    transition:
        transform 0.25s ease;
}


.codes-footer-links a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.codes-footer-links a:hover i {
    transform: translateX(2px);
}


/* =========================================================
   49. FOOTER CONTACT
   ========================================================= */

.codes-footer-contact {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.codes-footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}


.codes-footer-contact-icon {
    width: 35px;

    height: 35px;

    min-width: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: rgba(124, 58, 237, 0.12);

    color: #a855f7;

    font-size: 13px;
}


.codes-footer-contact-content {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 2px;
}


.codes-footer-contact-label {
    color: #ffffff;

    font-size: 11px;

    font-weight: 600;
}


.codes-footer-contact-content a,
.codes-footer-contact-content span {
    color: #aab3c2;

    font-size: 11px;

    line-height: 1.6;

    word-break: break-word;

    transition:
        color 0.25s ease;
}


.codes-footer-contact-content a:hover {
    color: #ffffff;
}


/* =========================================================
   50. FOOTER CTA
   ========================================================= */

.codes-footer-cta {
    margin-top: 25px;

    padding: 20px;

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            rgba(124, 58, 237, 0.16),
            rgba(20, 1, 41, 0.35));

    border: 1px solid rgba(255, 255, 255, 0.08);
}


.codes-footer-cta p {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.6;
}


.codes-footer-cta a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #f4b400;

    font-size: 11px;

    font-weight: 600;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.codes-footer-cta a:hover {
    color: #ffffff;

    gap: 11px;
}


/* =========================================================
   51. FOOTER DIVIDER
   ========================================================= */

.codes-footer-divider {
    width: 100%;

    height: 1px;

    background: rgba(255, 255, 255, 0.1);
}


/* =========================================================
   52. FOOTER BOTTOM
   ========================================================= */

.codes-footer-bottom {
    width: 100%;

    padding: 20px;

    background: rgba(0, 0, 0, 0.12);
}


.codes-footer-bottom-inner {
    width: min(100%,
            1400px);

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.codes-footer-copyright {
    margin: 0;

    color: #8994a5;

    font-size: 10px;

    line-height: 1.6;
}


.codes-footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 20px;
}


.codes-footer-bottom-links a {
    color: #8994a5;

    font-size: 10px;

    transition:
        color 0.25s ease;
}


.codes-footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================================
   53. FOOTER NEWSLETTER
   ========================================================= */

.codes-footer-newsletter {
    margin-top: 20px;
}


.codes-footer-newsletter-form {
    display: flex;

    width: 100%;

    max-width: 350px;

    overflow: hidden;

    border-radius: 9px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.05);
}


.codes-footer-newsletter-form input {
    flex: 1;

    min-width: 0;

    height: 42px;

    padding: 0 12px;

    border: 0;

    border-radius: 0;

    outline: none;

    background: transparent;

    color: #ffffff;

    font-size: 11px;
}


.codes-footer-newsletter-form input::placeholder {
    color: #8994a5;
}


.codes-footer-newsletter-form input:focus {
    border: 0;

    box-shadow: none;
}


.codes-footer-newsletter-form button {
    width: 45px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f4b400;

    color: #ffffff;

    border: 0;

    cursor: pointer;

    transition:
        background 0.25s ease;
}


.codes-footer-newsletter-form button:hover {
    background: #d99d00;
}


/* =========================================================
   54. FOOTER RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .codes-footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 35px;
    }

    .codes-footer-brand {
        max-width: 100%;
    }

}


/* =========================================================
   55. FOOTER RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .codes-footer-top {
        padding: 60px 20px 45px;
    }

    .codes-footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .codes-footer-brand {
        max-width: 100%;
    }

    .codes-footer-logo img {
        height: 58px;

        max-width: 165px;
    }

    .codes-footer-description {
        font-size: 12px;

        line-height: 1.8;
    }

    .codes-footer-title {
        margin-bottom: 18px;

        font-size: 14px;
    }

    .codes-footer-links {
        gap: 9px;
    }

    .codes-footer-links a {
        font-size: 11px;
    }

    .codes-footer-bottom {
        padding: 18px 20px;
    }

    .codes-footer-bottom-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .codes-footer-bottom-links {
        flex-wrap: wrap;

        gap: 12px 18px;
    }

}


/* =========================================================
   56. FOOTER RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .codes-footer-top {
        padding: 50px 16px 40px;
    }

    .codes-footer-grid {
        gap: 32px;
    }

    .codes-footer-contact {
        gap: 13px;
    }

    .codes-footer-contact-item {
        gap: 10px;
    }

    .codes-footer-contact-icon {
        width: 32px;

        height: 32px;

        min-width: 32px;
    }

    .codes-footer-contact-content a,
    .codes-footer-contact-content span {
        font-size: 10px;
    }

    .codes-footer-bottom {
        padding-left: 16px;

        padding-right: 16px;
    }

}

/* =========================================================
   FINAL HEADER LOGO POSITION
   ========================================================= */

@media (min-width: 1024px) {

    .navbar-logo {
        position: absolute;

        left: 70px;
        top: 35px;

        width: 150px;
        height: 120px;

        display: flex;
        align-items: flex-start;
        justify-content: center;

        padding: 0;

        background: #ffffff;

        z-index: 1100;
    }

    .navbar-logo img {
        width: auto;

        height: 145px;

        max-width: 175px;

        object-fit: contain;
    }

    .codesDesktopNav {
        margin-left: 180px;
    }

}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1280px) {

    .navbar-logo {
        left: 70px;
        top: 35px;

        width: 155px;
        height: 125px;
    }

    .navbar-logo img {
        height: 105px;
        max-width: 175px;
    }

    .codesDesktopNav {
        margin-left: 180px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1023px) {

    .navbar-logo {
        position: static;

        width: auto;
        height: auto;

        background: transparent;

        padding: 0;
    }

    .navbar-logo img {
        height: 52px;
        max-width: 145px;
    }

    .codesDesktopNav {
        margin-left: 0;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .navbar-logo img {
        height: 49px;
        max-width: 140px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .navbar-logo img {
        height: 44px;
        max-width: 130px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .navbar-logo img {
        height: 41px;
        max-width: 120px;
    }

}

/* =========================================================
   HOME HERO
   ========================================================= */

.hero-bg {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 82px);
    padding: 100px 70px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("../images/Banner.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-bg::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(20, 1, 41, 0.94) 0%,
            rgba(20, 1, 41, 0.78) 45%,
            rgba(10, 10, 10, 0.58) 100%);
}


/* =========================================================
   CANVAS
   ========================================================= */

#heroCanvas {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-bg>div {
    position: relative;

    z-index: 3;
}


.hero-bg .hero-subbody {
    margin-top: 0;

    margin-bottom: 18px;

    max-width: 700px;

    color: rgba(255, 255, 255, 0.82) !important;

    font-size: clamp(13px,
            1.1vw,
            17px);

    line-height: 1.7;

    font-weight: 500;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero-bg .hero-title {
    margin: 0;

    max-width: 1050px;

    color: #ffffff !important;

    font-size: clamp(42px,
            4vw,
            70px);
    line-height: 1.15;

    font-weight: 700;
}


.hero-bg .hero-title span {
    display: block;

    color: #8b5cf6 !important;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-bg .hero-body {
    margin-top: 28px;

    max-width: 720px;

    color: rgba(255, 255, 255, 0.82) !important;

    font-size: clamp(14px,
            1.15vw,
            18px);

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   HERO BUTTON AREA
   ========================================================= */

.hero-bg .hero-actions {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 34px;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.hero-bg .hero-primary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 8px;

    background: #5809ab;

    color: #ffffff !important;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(0,
            0,
            0,
            0.25);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.hero-bg .hero-primary-btn:hover {
    background: #6d16c7;

    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0,
            0,
            0,
            0.3);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.hero-bg .hero-secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border: 1px solid rgba(255,
            255,
            255,
            0.45);

    border-radius: 8px;

    background: rgba(255,
            255,
            255,
            0.04);

    color: #ffffff !important;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    backdrop-filter: blur(8px);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.hero-bg .hero-secondary-btn:hover {
    background: #ffffff;

    color: #111111 !important;

    transform: translateY(-3px);
}


/* =========================================================
   DESKTOP HERO POSITION
   ========================================================= */

@media (min-width: 1024px) {

    .hero-bg {
        min-height: calc(100vh - 82px);

        align-items: center;
    }

    .hero-bg>div {
        padding-top: 20px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1023px) {

    .hero-bg {
        min-height: 700px;

        align-items: center;

        background-position: center;
    }

    .hero-bg .hero-title {
        font-size: clamp(40px,
                7vw,
                60px);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero-bg {
        min-height: calc(100svh - 70px);

        align-items: center;
        padding: 20px;

        background-position: 60% center;
    }

    .hero-bg::before {
        background:
            linear-gradient(90deg,
                rgba(20, 1, 41, 0.94),
                rgba(20, 1, 41, 0.78));
    }

    .hero-bg .hero-subbody {
        font-size: 12px;

        margin-bottom: 15px;
    }

    .hero-bg .hero-title {
        font-size: clamp(34px,
                10vw,
                48px);

        line-height: 1.12;

        letter-spacing: -0.8px;
    }

    .hero-bg .hero-body {
        margin-top: 20px;

        font-size: 13px;

        line-height: 1.75;
    }

    .hero-bg .hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-top: 26px;
    }

    .hero-bg .hero-primary-btn,
    .hero-bg .hero-secondary-btn {
        width: 100%;

        min-height: 50px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-bg {
        min-height: 650px;
    }

    .hero-bg .hero-title {
        font-size: 34px;
    }

    .hero-bg .hero-subbody {
        font-size: 11px;
    }

    .hero-bg .hero-body {
        font-size: 12px;
    }

}




/* about Section */


.codesAboutSection {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    padding: clamp(55px, 7vw, 80px) 0;
    box-sizing: border-box;
}

.codesAboutSection *,
.codesAboutSection *::before,
.codesAboutSection *::after {
    box-sizing: border-box;
}

.codesAboutContainer {
    width: min(90%, 1400px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: clamp(45px, 6vw, 85px);
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.codesAboutContent {
    width: 100%;
}


/* =========================================================
   TITLE
   ========================================================= */

.codesAboutTitle {
    margin: 0;

    color: #050505;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.12;

    font-weight: 600;


}

.codesAboutTitle span {
    color: #5809ab;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.codesAboutDescription {
    width: 100%;

    margin: clamp(10px, 3.2vw, 5px) 0 clamp(1px, 3.8vw, 21px);

    color: #66716f;

    font-size: clamp(14px, 1.2vw, 18px);

    line-height: 1.6;

    font-weight: 400;
}


/* =========================================================
   STATISTICS
   ========================================================= */

.codesAboutStats {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: clamp(10px, 2vw, 18px);

    margin-bottom: clamp(34px, 4vw, 46px);
}


/* =========================================================
   STAT CARD
   ========================================================= */

.codesAboutStatCard {
    width: 100%;

    min-height: clamp(105px, 10vw, 130px);

    padding: 10px 20px;

    border: 2px solid #5809ab;

    border-radius: 12px;

    background: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.codesAboutStatCard:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(40, 100, 50, 0.10);
}


/* =========================================================
   STAT NUMBER
   ========================================================= */

.codesAboutStatCard strong {
    display: block;

    margin: 0 0 7px;

    color: #5809ab;

    font-size: clamp(20px, 3vw, 25px);

    line-height: 1.1;

    font-weight: 600;
}


/* =========================================================
   STAT LABEL
   ========================================================= */

.codesAboutStatCard span {
    display: block;

    color: #6b6b6b;

    font-size: clamp(13px, 1.25vw, 16px);

    line-height: 1.35;

    font-weight: 400;
}


/* =========================================================
   BUTTON
   ========================================================= */

.codesAboutButton {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: clamp(190px, 18vw, 235px);

    min-height: clamp(48px, 4.5vw, 67px);

    padding: 12px clamp(20px, 2vw, 30px);

    border-radius: 8px;

    background: #5809ab;

    color: #fff;

    text-decoration: none;

    font-size: clamp(14px, 1.2vw, 18px);

    font-weight: 600;

    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.codesAboutButton:hover {
    background: #79b66b;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(60, 120, 60, 0.16);
}


/* =========================================================
   RIGHT SIDE
   ========================================================= */

.codesAboutVisual {
    width: 100%;

    display: flex;
    justify-content: flex-end;

    position: relative;
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.codesAboutImageWrap {
    position: relative;

    width: 100%;

    max-width: 550px;

    overflow: visible;
}


/* =========================================================
   IMAGE
   ========================================================= */

.codesAboutImage {
    display: block;

    width: 100%;

    height: clamp(420px, 43vw, 570px);

    object-fit: cover;

    object-position: center;

    border-radius: 12px 12px 0 18px;

    /*
       Angled bottom-right edge
    */
    clip-path: polygon(0 0,
            100% 0,
            100% 82%,
            82% 100%,
            0 100%);
}


/* =========================================================
   FLOATING LOGO CARD
   ========================================================= */

.codesAboutLogoCard {
    position: absolute;

    top: 16px;
    left: -71px;

    width: clamp(120px, 12vw, 145px);

    height: clamp(120px, 12vw, 145px);

    padding: 14px;

    background: #ffffff;

    border-radius: 0 0 10px 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 5;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   LOGO IMAGE
   ========================================================= */

.codesAboutLogoCard img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    border-radius: 8px;
}


/* =========================================================
   TABLET
   1024px AND BELOW
   ========================================================= */

@media (max-width: 1024px) {

    .codesAboutSection {
        padding: 70px 0;
    }

    .codesAboutContainer {
        width: min(91%, 920px);

        gap: clamp(30px, 4vw, 55px);
    }

    .codesAboutTitle {
        font-size: clamp(36px, 4.7vw, 50px);


    }

    .codesAboutDescription {
        font-size: 15px;

        margin-top: 25px;
        margin-bottom: 32px;
    }

    .codesAboutStats {
        gap: 15px;

        margin-bottom: 32px;
    }

    .codesAboutStatCard {
        min-height: 105px;

        padding: 18px;
    }

    .codesAboutStatCard strong {
        font-size: 31px;
    }

    .codesAboutStatCard span {
        font-size: 14px;
    }

    .codesAboutImage {
        height: 460px;
    }

    .codesAboutLogoCard {
        left: -18px;

        width: 115px;
        height: 115px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   900px AND BELOW
   ========================================================= */

@media (max-width: 900px) {

    .codesAboutContainer {
        width: min(92%, 760px);

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .codesAboutContent {
        max-width: 680px;

        margin: 0 auto;

        text-align: center;
    }

    .codesAboutTitle {
        font-size: clamp(40px, 6vw, 54px);
    }

    .codesAboutDescription {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }

    .codesAboutStats {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }

    .codesAboutButton {
        margin: 0 auto;
    }

    .codesAboutVisual {
        width: min(100%, 620px);

        margin: 0 auto;

        justify-content: center;
    }

    .codesAboutImageWrap {
        max-width: 620px;
    }

    .codesAboutImage {
        height: clamp(450px, 65vw, 570px);
    }

    .codesAboutLogoCard {
        left: -20px;
    }
}


/* =========================================================
   MOBILE
   767px AND BELOW
   ========================================================= */

@media (max-width: 767px) {

    .codesAboutSection {
        padding: 55px 0 65px;
    }

    .codesAboutContainer {
        width: min(90%, 600px);

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .codesAboutContent {
        max-width: 100%;

        text-align: left;
    }

    .codesAboutTitle {
        font-size: clamp(36px, 9vw, 48px);

        line-height: 1.12;


    }

    .codesAboutDescription {
        font-size: 15px;

        line-height: 1.65;

        margin-top: 25px;

        margin-bottom: 30px;
    }

    .codesAboutStats {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 14px;

        margin-bottom: 30px;
    }

    .codesAboutStatCard {
        min-height: 105px;

        padding: 17px 16px;

        border-radius: 10px;
    }

    .codesAboutStatCard strong {
        font-size: clamp(27px, 7vw, 34px);
    }

    .codesAboutStatCard span {
        font-size: 13px;
    }

    .codesAboutButton {
        min-width: 190px;

        min-height: 52px;

        font-size: 14px;
    }

    .codesAboutVisual {
        width: 100%;

        margin: 0;
    }

    .codesAboutImageWrap {
        width: calc(100% - 10px);

        margin-left: auto;

        margin-right: 0;
    }

    .codesAboutImage {
        height: clamp(390px, 100vw, 520px);

        border-radius: 10px 10px 0 15px;

        clip-path: polygon(0 0,
                100% 0,
                100% 83%,
                80% 100%,
                0 100%);
    }

    .codesAboutLogoCard {
        top: 12px;

        left: -12px;

        width: 100px;

        height: 100px;

        padding: 10px;

        border-radius: 0 0 9px 9px;
    }
}


/* =========================================================
   SMALL MOBILE
   575px AND BELOW
   ========================================================= */

@media (max-width: 575px) {

    .codesAboutSection {
        padding: 45px 0 55px;
    }

    .codesAboutContainer {
        width: calc(100% - 36px);

        gap: 38px;
    }

    .codesAboutTitle {
        font-size: clamp(32px, 10vw, 42px);


    }

    .codesAboutDescription {
        font-size: 14px;

        line-height: 1.6;

        margin-top: 22px;

        margin-bottom: 27px;
    }

    .codesAboutStats {
        gap: 10px;
    }

    .codesAboutStatCard {
        min-height: 100px;

        padding: 15px 13px;

        border-width: 1.5px;
    }

    .codesAboutStatCard strong {
        font-size: clamp(25px, 8vw, 31px);

        margin-bottom: 5px;
    }

    .codesAboutStatCard span {
        font-size: 12px;
    }

    .codesAboutButton {
        width: auto;

        min-width: 175px;

        min-height: 50px;
    }

    .codesAboutImageWrap {
        width: calc(100% - 6px);
    }

    .codesAboutImage {
        height: 420px;
    }

    .codesAboutLogoCard {
        left: -8px;

        top: 10px;

        width: 88px;

        height: 88px;

        padding: 8px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   400px AND BELOW
   ========================================================= */

@media (max-width: 400px) {

    .codesAboutContainer {
        width: calc(100% - 28px);
    }

    .codesAboutTitle {
        font-size: 31px;

        line-height: 1.13;
    }

    .codesAboutDescription {
        font-size: 13px;
    }

    .codesAboutStats {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .codesAboutStatCard {
        min-height: 90px;

        padding: 16px;
    }

    .codesAboutStatCard strong {
        font-size: 28px;
    }

    .codesAboutStatCard span {
        font-size: 13px;
    }

    .codesAboutImage {
        height: 390px;
    }

    .codesAboutLogoCard {
        width: 78px;

        height: 78px;

        left: -5px;

        top: 8px;
    }
}


/* =========================================================
   LARGE SCREENS
   1400px+
   ========================================================= */

@media (min-width: 1400px) {

    .codesAboutContainer {
        width: min(88%, 1400px);

        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);

        gap: 90px;
    }

    .codesAboutTitle {
        font-size: 60px;
    }

    .codesAboutDescription {
        font-size: 16px;
    }

    .codesAboutImageWrap {
        max-width: 590px;
    }

    .codesAboutImage {
        height: 590px;
    }
}


@media (prefers-reduced-motion: reduce) {

    .codesAboutStatCard,
    .codesAboutButton {
        transition: none;
    }
}



.codesServicesSection {
    width: 100%;
    padding: clamp(65px, 8vw, 80px) 0;
    background: #5709aa07;
    overflow: hidden;
}

.codesServicesSection *,
.codesServicesSection *::before,
.codesServicesSection *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.codesServicesContainer {
    width: min(91%, 1240px);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.codesServicesHeader {
    max-width: 760px;
    margin: 0 auto clamp(45px, 5vw, 40px);
    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.codesServicesEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 16px;

    border: 1px solid #c8ddd1;
    border-radius: 50px;

    background: #f5faf7;

    color: #5809ab;

    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;

    line-height: 1;
}

.codesServicesEyebrow i {
    font-size: 13px;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.codesServicesTitle {
    margin: 5px 0 18px;

    color: #062b27;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.12;

    font-weight: 600;


}

.codesServicesTitle span {

    color: #000;
}


/* =========================================================
   INTRO
========================================================= */

.codesServicesIntro {
    max-width: 680px;

    margin: 0 auto;

    color: #66716f;

    font-size: clamp(14px, 1.2vw, 16px);

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.codesServicesGrid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: clamp(16px, 2vw, 25px);
}


/* =========================================================
   SERVICE CARD
========================================================= */

.codesServiceCard {
    position: relative;

    padding:
        clamp(25px, 2.5vw, 35px) clamp(22px, 2.4vw, 32px);

    border: 1px solid #cbd8d5;

    border-radius: clamp(22px, 2vw, 30px);

    background-color: #ffff;

    /*
       Subtle grid background like your reference
    */
    background-image:
        linear-gradient(rgba(9, 73, 66, 0.055) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(9, 73, 66, 0.055) 1px,
            transparent 1px);

    background-size: 48px 48px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.codesServiceCard:hover {
    transform: translateY(-8px);

    border-color: #8fbd9d;

    box-shadow:
        0 20px 45px rgba(20, 91, 53, 0.10);
}


/* =========================================================
   ICON
========================================================= */

.codesServiceIcon {
    width: clamp(58px, 5vw, 72px);
    height: clamp(58px, 5vw, 72px);

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #ffd23f1f;

    border: 1px solid #ffd23f;

    color: #ffd23f;

    font-size: clamp(22px, 2vw, 29px);

    box-shadow:
        0 8px 20px rgba(20, 91, 53, 0.06);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.codesServiceCard:hover .codesServiceIcon {
    background: #ffd23f;

    color: #ffffff;

    transform: translateY(-3px) rotate(-3deg);
}


/* =========================================================
   NUMBER
========================================================= */

.codesServiceNumber {
    margin-top: clamp(30px, 3vw, 42px);

    color: #9ba9a5;

    font-size: 12px;

    font-weight: 600;


}


/* =========================================================
   CARD TITLE
========================================================= */

.codesServiceTitle {
    margin: 8px 0 16px;

    color: #000;

    font-size: clamp(24px, 2.1vw, 30px);

    line-height: 1.15;

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.codesServiceDescription {
    margin: 0;

    color: #697572;

    font-size: clamp(13px, 1.05vw, 15px);

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   LEARN MORE
========================================================= */

.codesServiceLearnMore {
    margin-top: auto;

    padding-top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    color: #5809ab;

    text-decoration: none;

    font-size: clamp(13px, 1vw, 15px);

    font-weight: 600;

    position: relative;
}


/* underline */

.codesServiceLearnMore::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #5809ab;

    transition: width 0.3s ease;
}


/* arrow */

.codesServiceLearnMore i {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #a9c7b5;

    border-radius: 50%;

    font-size: 10px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.codesServiceLearnMore:hover::after {
    width: calc(100% - 38px);
}


.codesServiceLearnMore:hover i {
    transform: translateX(5px);

    background: #5809ab;

    color: #ffffff;

    border-color: #5809ab;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .codesServicesContainer {
        width: min(88%, 1400px);
    }

    .codesServicesGrid {
        gap: 28px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .codesServicesContainer {
        width: min(92%, 1000px);
    }

    .codesServicesGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .codesServiceCard {
        min-height: 360px;
    }

    .codesServiceTitle {
        font-size: 28px;
    }

    .codesServiceDescription {
        max-width: 470px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .codesServicesSection {
        padding: 60px 0 70px;
    }

    .codesServicesContainer {
        width: min(90%, 620px);
    }

    .codesServicesHeader {
        margin-bottom: 38px;
    }

    .codesServicesTitle {
        margin-top: 18px;

        font-size: clamp(32px, 8vw, 44px);


    }

    .codesServicesIntro {
        font-size: 14px;

        line-height: 1.65;
    }

    .codesServicesGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .codesServiceCard {
        min-height: 350px;

        padding: 22px 20px;

        border-radius: 22px;

        background-size: 40px 40px;
    }

    .codesServiceIcon {
        width: 58px;
        height: 58px;

        border-radius: 15px;

        font-size: 22px;
    }

    .codesServiceNumber {
        margin-top: 24px;
    }

    .codesServiceTitle {
        margin-top: 7px;

        font-size: 23px;
    }

    .codesServiceDescription {
        font-size: 13px;

        line-height: 1.6;
    }

    .codesServiceLearnMore {
        padding-top: 20px;

        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .codesServicesSection {
        padding: 50px 0 60px;
    }

    .codesServicesContainer {
        width: calc(100% - 32px);
    }

    .codesServicesHeader {
        margin-bottom: 32px;
    }

    .codesServicesEyebrow {
        padding: 7px 13px;

        font-size: 11px;
    }

    .codesServicesTitle {
        font-size: clamp(30px, 9vw, 39px);

        line-height: 1.15;


    }

    .codesServicesIntro {
        font-size: 13px;

        line-height: 1.65;
    }

    .codesServicesGrid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .codesServiceCard {
        min-height: 330px;

        padding: 25px 23px;

        border-radius: 22px;
    }

    .codesServiceIcon {
        width: 58px;
        height: 58px;
    }

    .codesServiceNumber {
        margin-top: 25px;
    }

    .codesServiceTitle {
        font-size: 25px;

        margin-bottom: 13px;
    }

    .codesServiceDescription {
        font-size: 14px;

        line-height: 1.65;
    }

    .codesServiceLearnMore {
        font-size: 14px;

        padding-top: 22px;
    }

    .codesServiceLearnMore i {
        width: 27px;
        height: 27px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .codesServicesContainer {
        width: calc(100% - 26px);
    }

    .codesServicesTitle {
        font-size: 29px;
    }

    .codesServiceCard {
        min-height: 320px;

        padding: 22px 20px;
    }

    .codesServiceTitle {
        font-size: 23px;
    }

    .codesServiceDescription {
        font-size: 13px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .codesServiceCard,
    .codesServiceIcon,
    .codesServiceLearnMore,
    .codesServiceLearnMore i {
        transition: none;
    }
}



.codesContactSection {
    width: 100%;
    padding: clamp(60px, 7vw, 80px) 0;
    background: #ffffff;
    overflow: hidden;
}

.codesContactSection *,
.codesContactSection *::before,
.codesContactSection *::after {
    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.codesContactContainer {
    width: min(91%, 1180px);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(270px, 330px);

    gap: clamp(18px, 2vw, 25px);

    align-items: stretch;
}


/* =========================================================
   FORM BOX
========================================================= */

.codesContactFormBox {
    width: 100%;

    padding:
        clamp(25px, 3vw, 34px) clamp(24px, 3vw, 32px);

    background: #f7f7f7;

    border-radius: 12px;
}


/* =========================================================
   FORM
========================================================= */

.codesContactForm {
    width: 100%;
}


/* =========================================================
   TWO COLUMN ROW
========================================================= */

.codesContactFormRow {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: clamp(16px, 2vw, 22px);

    margin-bottom: 18px;
}


/* =========================================================
   FIELD
========================================================= */

.codesContactField {
    width: 100%;

    margin-bottom: 18px;
}


/* =========================================================
   LABEL
========================================================= */

.codesContactField label {
    display: block;

    margin-bottom: 6px;

    color: #082d29;

    font-size: clamp(10px, 1.3vw, 20px);

    line-height: 1.3;

    font-weight: 600;
}


/* =========================================================
   INPUT
========================================================= */

.codesContactField input,
.codesContactField textarea {
    width: 100%;

    border: 1px solid #c9d8d6;

    border-radius: 6px;

    background: #ffffff;

    color: #153632;

    font-family: inherit;

    font-size: clamp(11px, 0.9vw, 13px);

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* INPUT */

.codesContactField input {
    height: clamp(40px, 3.2vw, 46px);

    padding: 0 12px;
}


/* TEXTAREA */

.codesContactField textarea {
    height: clamp(120px, 8vw, 145px);

    padding: 12px;

    resize: vertical;

    min-height: 100px;
}


/* PLACEHOLDER */

.codesContactField input::placeholder,
.codesContactField textarea::placeholder {
    color: #9ca8a6;

    opacity: 1;

    font-size: 16px;
}


/* FOCUS */

.codesContactField input:focus,
.codesContactField textarea:focus {
    border-color: #0a5c54;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(10, 92, 84, 0.08);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.codesContactSubmit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 125px;

    min-height: 42px;

    padding: 10px 17px;

    border: none;

    border-radius: 25px;

    background: #5809ab;

    color: #ffffff;

    font-family: inherit;

    font-size: clamp(11px, 0.9vw, 13px);

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.codesContactSubmit i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.codesContactSubmit:hover {
    background: #5809ab;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0, 80, 75, 0.18);
}

.codesContactSubmit:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT INFO
========================================================= */

.codesContactInfo {
    width: 100%;

    padding:
        clamp(25px, 3vw, 31px) clamp(22px, 2.8vw, 29px);

    border-radius: 11px;

    background: #ffd23f;

    color: #ffffff;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   INFO TITLE
========================================================= */

.codesContactInfoTitle {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: clamp(22px, 2vw, 30px);

    line-height: 1.2;

    font-weight: 600;
}


/* =========================================================
   INFO INTRO
========================================================= */

.codesContactInfoIntro {
    margin: 0 0 clamp(25px, 3vw, 35px);

    color: #000;

    font-size: clamp(10px, 1.1vw, 21px);

    line-height: 1.55;
}


/* =========================================================
   INFO ITEM
========================================================= */

.codesContactInfoItem {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: clamp(16px, 1.6vw, 21px);
}


/* =========================================================
   INFO ICON
========================================================= */

.codesContactInfoIcon {
    flex: 0 0 17px;

    width: 17px;
    height: 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #000;

    font-size: 17px;
}


/* =========================================================
   INFO TEXT
========================================================= */

.codesContactInfoText {
    display: flex;

    flex-direction: column;

    gap: 2px;

    color: #000;

    font-size: clamp(9px, 1vw, 18px);

    line-height: 1.4;

    font-weight: 400;
}


/* =========================================================
   SOCIAL
========================================================= */

.codesContactSocial {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: auto;

    padding-top: 18px;
}


.codesContactSocial a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: rgb(0, 0, 105);

    text-decoration: none;

    font-size: 18px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.codesContactSocial a:hover {
    color: #b8df62;

    transform: translateY(-3px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .codesContactContainer {
        width: min(88%, 1400px);

        grid-template-columns:
            minmax(0, 1fr) 420px;
    }

    .codesContactFormBox {
        padding: 38px;
    }

    .codesContactInfo {
        padding: 34px;
    }
}


/* =========================================================
   TABLET / LAPTOP
========================================================= */

@media (max-width: 900px) {

    .codesContactContainer {
        width: min(92%, 760px);

        grid-template-columns:
            minmax(0, 1fr) 290px;

        gap: 16px;
    }

    .codesContactFormBox {
        padding: 25px;
    }

    .codesContactInfo {
        padding: 25px 22px;
    }

    .codesContactInfoTitle {
        font-size: 22px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .codesContactSection {
        padding: 55px 0 65px;
    }

    .codesContactContainer {
        width: min(90%, 600px);

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .codesContactFormBox {
        padding: 25px 22px;

        border-radius: 12px;
    }

    .codesContactInfo {
        padding: 28px 24px;

        min-height: 330px;
    }

    .codesContactInfoTitle {
        font-size: 24px;
    }

    .codesContactInfoIntro {
        max-width: 420px;

        font-size: 11px;
    }

    .codesContactInfoItem {
        margin-bottom: 17px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .codesContactSection {
        padding: 45px 0 55px;
    }

    .codesContactContainer {
        width: calc(100% - 32px);
    }

    .codesContactFormBox {
        padding: 22px 18px;

        border-radius: 11px;
    }

    .codesContactFormRow {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }

    .codesContactField {
        margin-bottom: 16px;
    }

    .codesContactField label {
        font-size: 11px;
    }

    .codesContactField input {
        height: 43px;
    }

    .codesContactField textarea {
        height: 125px;
    }

    .codesContactSubmit {
        width: auto;

        min-width: 130px;

        min-height: 42px;
    }

    .codesContactInfo {
        padding: 25px 20px;

        border-radius: 11px;

        min-height: 340px;
    }

    .codesContactInfoTitle {
        font-size: 23px;
    }

    .codesContactInfoIntro {
        font-size: 10px;

        margin-bottom: 27px;
    }

    .codesContactInfoText {
        font-size: 10px;
    }

    .codesContactSocial {
        padding-top: 12px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .codesContactContainer {
        width: calc(100% - 24px);
    }

    .codesContactFormBox {
        padding: 20px 16px;
    }

    .codesContactInfo {
        padding: 23px 18px;
    }

    .codesContactInfoTitle {
        font-size: 21px;
    }

    .codesContactField input {
        height: 41px;
    }

    .codesContactField textarea {
        height: 115px;
    }

    .codesContactSubmit {
        min-width: 125px;

        font-size: 11px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .codesContactSubmit,
    .codesContactSubmit i,
    .codesContactSocial a,
    .codesContactField input,
    .codesContactField textarea {
        transition: none;
    }
}

.codesAboutHero {
    --codes-purple: #5809AB;
    --codes-dark: #3F087A;
    --codes-bright: #6512C4;
    --codes-light: #F3EAFE;
    --codes-border: #E4D8F2;
    --codes-text: #111111;

    --codes-muted: #5F5F5F;
    --codes-white: #FFFFFF;

    position: relative;

    width: 100%;
    min-height: clamp(650px, 48vw, 790px);


    background: #FAF7FE;

    overflow: hidden;

    font-family:
        "Poppins",
        "Montserrat",
        Arial,
        sans-serif;
}


.codesAboutHero *,
.codesAboutHero *::before,
.codesAboutHero *::after {
    box-sizing: border-box;
}


/* =========================================================
   GRID BACKGROUND
========================================================= */

.codesAboutHeroGrid {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.65;

    background-image:
        linear-gradient(rgba(88, 9, 171, 0.045) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(88, 9, 171, 0.045) 1px,
            transparent 1px);

    background-size:
        55px 55px;

    mask-image:
        linear-gradient(to right,
            transparent 0%,
            black 25%,
            black 75%,
            transparent 100%);
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.codesAboutHeroGlow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

    opacity: 0.16;
}

/* =========================================================
   CONTAINER
========================================================= */

.codesAboutHeroContainer {
    position: relative;

    z-index: 2;

    width: min(91%, 1280px);

    min-height: 100%;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.6fr) minmax(0, 0.4fr);

    align-items: center;

    gap: clamp(35px, 3vw, 90px);
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.codesAboutHeroContent {
    margin-top: 90px;

    animation:
        codesAboutHeroContentIn 0.9s cubic-bezier(.22, 1, .36, 1) both;
}


@keyframes codesAboutHeroContentIn {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   BADGE
========================================================= */

.codesAboutHeroBadge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        9px 17px;

    border: 1px solid rgba(88, 9, 171, 0.18);
    background: rgba(243, 234, 254, 0.75);
    color: var(--codes-purple);

    border-radius: 50px;

    font-size:
        clamp(11px, 0.9vw, 13px);

    font-weight: 600;

    backdrop-filter: blur(10px);
}


.codesAboutHeroBadge i {
    color: var(--codes-bright);

    font-size: 13px;
}


/* =========================================================
   TITLE
========================================================= */

.codesAboutHeroTitle {

    color: var(--codes-text);

    font-size:
        clamp(41px, 2vw, 78px);



    font-weight: 600;
}


.codesAboutHeroTitle span {
    color: #111111;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.codesAboutHeroDescription {
    max-width: 650px;

    margin:
        clamp(25px, 3vw, 35px) 0 0;

    color: #5f6d68;

    font-size:
        clamp(14px, 1.15vw, 17px);

    line-height: 1.75;

    font-weight: 400;
}


/* =========================================================
   ACTIONS
========================================================= */

.codesAboutHeroActions {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top:
        clamp(30px, 3vw, 42px);
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.codesAboutHeroPrimaryBtn,
.codesAboutHeroSecondaryBtn {
    min-height: 50px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 8px;

    text-decoration: none;

    font-size:
        clamp(12px, 1vw, 14px);

    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.codesAboutHeroPrimaryBtn {
    background: var(--codes-purple);

    color: #ffffff;
}


.codesAboutHeroPrimaryBtn i {
    transition:
        transform 0.3s ease;
}


.codesAboutHeroPrimaryBtn:hover {
    background: var(--codes-dark);

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px rgba(88, 9, 171, 0.20);
}


.codesAboutHeroPrimaryBtn:hover i {
    transform:
        translateX(4px);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.codesAboutHeroSecondaryBtn {
    border: 1px solid #DCC9F2;
    background: rgba(255, 255, 255, 0.8);
    color: var(--codes-dark);
}


.codesAboutHeroSecondaryBtn i {
    font-size: 11px;

    transition:
        transform 0.3s ease;
}


.codesAboutHeroSecondaryBtn:hover {
    border-color: var(--codes-purple);
    color: var(--codes-purple);
    transform: translateY(-3px);
}


.codesAboutHeroSecondaryBtn:hover i {
    transform:
        translateY(3px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.codesAboutHeroVisual {
    position: relative;

    width: 100%;

    min-height:
        clamp(500px, 43vw, 650px);

    display: flex;

    align-items: center;

    justify-content: center;
}


.codesAboutHeroVisualInner {
    position: relative;

    width:
        min(100%, 610px);

    aspect-ratio: 1 / 1;
}


/* =========================================================
   DECORATIVE RINGS
========================================================= */

.codesAboutHeroRing {
    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(88, 9, 171, 0.13);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    pointer-events: none;
}


.codesAboutHeroRingOne {
    width: 68%;
    height: 68%;

    animation:
        codesHeroRingPulse 5s ease-in-out infinite;
}


.codesAboutHeroRingTwo {
    width: 91%;
    height: 91%;

    border-color: rgba(88, 9, 171, 0.07);

    animation:
        codesHeroRingPulse 7s ease-in-out infinite reverse;
}


@keyframes codesHeroRingPulse {

    0%,
    100% {
        opacity: 0.45;

        transform:
            translate(-50%, -50%) scale(0.97);
    }

    50% {
        opacity: 1;

        transform:
            translate(-50%, -50%) scale(1);
    }
}


/* =========================================================
   CONNECTION SVG
========================================================= */

.codesAboutHeroConnections {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: visible;

    pointer-events: none;
}


.codesAboutHeroLine {
    fill: none;

    stroke: rgba(88, 9, 171, 0.28);
    stroke-width: 1.4;

    stroke-dasharray: 7 8;

    animation:
        codesHeroLineMove 5s linear infinite;
}


@keyframes codesHeroLineMove {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -60;
    }
}


/* =========================================================
   CONNECTION DOTS
========================================================= */

.codesAboutHeroConnectionDot {
    fill: var(--codes-lime);

    filter:
        drop-shadow(0 0 6px rgba(101, 18, 196, 0.55));
    animation:
        codesHeroDotPulse 2.5s ease-in-out infinite;
}


@keyframes codesHeroDotPulse {

    0%,
    100% {
        opacity: 0.55;

        r: 3;
    }

    50% {
        opacity: 1;

        r: 5;
    }
}


/* =========================================================
   CENTRAL HUB
========================================================= */

.codesAboutHeroHub {
    position: absolute;

    left: 50%;
    top: 50%;

    width:
        clamp(155px, 17vw, 180px);

    height:
        clamp(155px, 17vw, 180px);

    display: flex;

    align-items: center;
    justify-content: center;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        linear-gradient(145deg,
            #6512C4,
            #3F087A);

    box-shadow:
        0 25px 60px rgba(88, 9, 171, 0.25);

    z-index: 4;

    animation:
        codesHeroHubFloat 5s ease-in-out infinite;
}


@keyframes codesHeroHubFloat {

    0%,
    100% {
        transform:
            translate(-50%, -50%) translateY(0);
    }

    50% {
        transform:
            translate(-50%, -50%) translateY(-8px);
    }
}


/* =========================================================
   HUB PULSE
========================================================= */

.codesAboutHeroHubPulse {
    position: absolute;

    inset: -12px;

    border:
        1px solid rgba(88, 9, 171, 0.45);

    border-radius: 50%;

    animation:
        codesHeroHubPulse 2.8s ease-out infinite;
}


@keyframes codesHeroHubPulse {

    0% {
        opacity: 0.8;

        transform: scale(0.95);
    }

    100% {
        opacity: 0;

        transform: scale(1.18);
    }
}


/* =========================================================
   HUB CONTENT
========================================================= */

.codesAboutHeroHubInner {
    position: relative;

    z-index: 2;

    text-align: center;

    color: #ffffff;
}


.codesAboutHeroHubName {
    display: block;

    color: #FFFFFF;
    font-size:
        clamp(27px, 3vw, 38px);

    line-height: 1;

    font-weight: 700;


}


.codesAboutHeroHubFullName {
    display: block;

    margin-top: 12px;

    color:
        rgba(255, 255, 255, 0.76);

    font-size:
        clamp(7px, 0.65vw, 9px);

    line-height: 1.5;


}


/* =========================================================
   STAKEHOLDER NODES
========================================================= */

.codesAboutHeroNode {
    position: absolute;

    width:
        clamp(155px, 16vw, 205px);

    min-height: 72px;

    padding:
        12px 14px;

    display: flex;

    align-items: center;

    gap: 11px;

    border:
        1px solid rgba(88, 9, 171, 0.13);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);

    z-index: 5;

    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.codesAboutHeroNode:hover {
    border-color:
        rgba(88, 9, 171, 0.35);

    box-shadow:
        0 18px 38px rgba(88, 9, 171, 0.14);
}


/* =========================================================
   NODE ICON
========================================================= */

.codesAboutHeroNodeIcon {
    flex:
        0 0 43px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #ffd23f21;
    color: #ffd23f;

    font-size: 18px;
}


/* =========================================================
   NODE TEXT
========================================================= */

.codesAboutHeroNodeText {
    display: flex;

    flex-direction: column;

    min-width: 0;
}


.codesAboutHeroNodeText strong {
    color: #3F087A;

    font-size:
        clamp(11px, 0.9vw, 14px);

    line-height: 1.25;

    font-weight: 600;
}


.codesAboutHeroNodeText span {
    margin-top: 4px;

    color: #75837e;

    font-size:
        clamp(8px, 0.72vw, 10px);

    line-height: 1.3;
}


/* =========================================================
   NODE POSITIONS
========================================================= */

.codesAboutHeroNodeIndividuals {
    top: 7%;
    left: 0;

    animation:
        codesHeroNodeFloatOne 4.5s ease-in-out infinite;
}


.codesAboutHeroNodeOrganizations {
    top: 7%;
    right: 0;

    animation:
        codesHeroNodeFloatTwo 5s ease-in-out infinite;
}


.codesAboutHeroNodeGovernment {
    bottom: 7%;
    left: 0;

    animation:
        codesHeroNodeFloatTwo 5.5s ease-in-out infinite;
}


.codesAboutHeroNodeInvestors {
    right: 0;
    bottom: 7%;

    animation:
        codesHeroNodeFloatOne 4.8s ease-in-out infinite;
}


@keyframes codesHeroNodeFloatOne {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-9px);
    }
}


@keyframes codesHeroNodeFloatTwo {

    0%,
    100% {
        transform:
            translateY(-4px);
    }

    50% {
        transform:
            translateY(8px);
    }
}


/* =========================================================
   PARTICLES
========================================================= */

.codesAboutHeroParticle {
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--codes-bright);

    box-shadow:
        0 0 10px rgba(101, 18, 196, 0.55);
    animation:
        codesHeroParticleFloat 4s ease-in-out infinite;
}


.codesAboutHeroParticleOne {
    top: 28%;
    left: 28%;
}


.codesAboutHeroParticleTwo {
    top: 35%;
    right: 25%;

    animation-delay: -1.2s;
}


.codesAboutHeroParticleThree {
    bottom: 28%;
    left: 27%;

    animation-delay: -2s;
}


.codesAboutHeroParticleFour {
    bottom: 30%;
    right: 28%;

    animation-delay: -2.8s;
}


@keyframes codesHeroParticleFloat {

    0%,
    100% {
        transform:
            translateY(0);

        opacity: 0.5;
    }

    50% {
        transform:
            translateY(-12px);

        opacity: 1;
    }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .codesAboutHeroContainer {
        width:
            min(88%, 1400px);
    }

    .codesAboutHeroTitle {
        font-size: clamp(48px, 6vw, 70px);
        font-weight: 700;
        line-height: 1.1;

    }

    .codesAboutHeroVisualInner {
        max-width: 450px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .codesAboutHeroContainer {
        width: min(92%, 1000px);

        gap: 35px;
    }

    .codesAboutHeroTitle {
        font-size:
            clamp(40px, 5.4vw, 57px);


    }

    .codesAboutHeroVisual {
        min-height: 530px;
    }

    .codesAboutHeroNode {
        width: 175px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .codesAboutHero {
        padding:
            70px 0 80px;
    }

    .codesAboutHeroContainer {
        grid-template-columns: 1fr;

        max-width: 680px;

        gap: 60px;
    }

    .codesAboutHeroContent {
        max-width: 680px;

        text-align: center;

        margin: 0 auto;
    }

    .codesAboutHeroDescription {
        margin-left: auto;
        margin-right: auto;
    }

    .codesAboutHeroActions {
        justify-content: center;
    }

    .codesAboutHeroVisual {
        min-height: 580px;
    }

    .codesAboutHeroVisualInner {
        width:
            min(100%, 590px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .codesAboutHero {
        min-height: auto;

        padding:
            55px 0 60px;
    }

    .codesAboutHeroContainer {
        width:
            calc(100% - 32px);

        gap: 45px;
    }

    .codesAboutHeroContent {
        text-align: left;
    }

    .codesAboutHeroBadge {
        font-size: 11px;
    }

    .codesAboutHeroTitle {
        font-size:
            clamp(34px, 10vw, 45px);

        line-height: 1.08;


    }

    .codesAboutHeroDescription {
        font-size: 13px;

        line-height: 1.7;
    }

    .codesAboutHeroActions {
        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 10px;
    }

    .codesAboutHeroPrimaryBtn,
    .codesAboutHeroSecondaryBtn {
        min-height: 46px;

        padding:
            0 16px;

        font-size: 12px;
    }

    .codesAboutHeroVisual {
        min-height: 400px;

        width: 100%;
    }

    .codesAboutHeroVisualInner {
        width: 100%;

        max-width: 420px;
    }

    .codesAboutHeroHub {
        width: 125px;
        height: 125px;
    }

    .codesAboutHeroHubName {
        font-size: 25px;
    }

    .codesAboutHeroHubFullName {
        font-size: 6px;

        margin-top: 8px;
    }

    .codesAboutHeroNode {
        width: 132px;

        min-height: 59px;

        padding:
            8px 9px;

        gap: 7px;

        border-radius: 12px;
    }

    .codesAboutHeroNodeIcon {
        flex-basis: 33px;

        width: 33px;
        height: 33px;

        border-radius: 9px;

        font-size: 14px;
    }

    .codesAboutHeroNodeText strong {
        font-size: 9px;
    }

    .codesAboutHeroNodeText span {
        font-size: 7px;
    }

    .codesAboutHeroNodeIndividuals,
    .codesAboutHeroNodeGovernment {
        left: 0;
    }

    .codesAboutHeroNodeOrganizations,
    .codesAboutHeroNodeInvestors {
        right: 0;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .codesAboutHeroContainer {
        width:
            calc(100% - 24px);
    }

    .codesAboutHeroTitle {
        font-size: 32px;
    }

    .codesAboutHeroVisual {
        min-height: 350px;
    }

    .codesAboutHeroNode {
        width: 116px;
    }

    .codesAboutHeroNodeIcon {
        width: 30px;
        height: 30px;

        flex-basis: 30px;
    }

    .codesAboutHeroNodeText strong {
        font-size: 8px;
    }

    .codesAboutHeroNodeText span {
        font-size: 6.5px;
    }

    .codesAboutHeroHub {
        width: 110px;
        height: 110px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .codesAboutHeroContent,
    .codesAboutHeroRing,
    .codesAboutHeroLine,
    .codesAboutHeroConnectionDot,
    .codesAboutHeroHub,
    .codesAboutHeroHubPulse,
    .codesAboutHeroNode,
    .codesAboutHeroParticle {
        animation: none !important;
    }

    .codesAboutHeroPrimaryBtn,
    .codesAboutHeroSecondaryBtn {
        transition: none;
    }
}






/* =========================================================
   ARTICLE DETAIL PAGE
   ========================================================= */

.codesArticleDetailHero {
    position: relative;

    padding: 90px 20px 75px;

    background:
        linear-gradient(135deg,
            #140129,
            #3f087a);

    color: #ffffff;

    overflow: hidden;
}


.codesArticleDetailHero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    background: rgba(139,
            92,
            246,
            .18);

    filter: blur(20px);
}


.codesArticleDetailContainer {
    width: min(92%,
            1000px);

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


.codesArticleDetailCategory {
    display: inline-flex;

    padding: 7px 12px;

    border-radius: 50px;

    background: #ffd23f;

    color: #111111;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .1em;
}


.codesArticleDetailTitle {
    margin: 25px 0 22px;

    max-width: 900px;

    color: #ffffff;

    font-size: clamp(38px,
            5vw,
            68px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2px;
}


.codesArticleDetailMeta {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 20px;

    color: rgba(255,
            255,
            255,
            .72);

    font-size: 12px;
}


.codesArticleDetailMeta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}


.codesArticleDetailMeta i {
    color: #a855f7;
}


/* =========================================================
   ARTICLE BODY
   ========================================================= */

.codesArticleDetailSection {
    padding: 70px 20px 80px;

    background: #ffffff;
}


.codesArticleDetailImage {
    width: 100%;

    max-height: 560px;

    margin-bottom: 45px;

    overflow: hidden;

    border-radius: 20px;
}


.codesArticleDetailImage img {
    display: block;

    width: 100%;

    max-height: 560px;

    object-fit: cover;
}


.codesArticleDetailExcerpt {
    margin-bottom: 35px;

    padding-left: 25px;

    border-left: 4px solid #5809ab;

    color: #3f087a;

    font-size: 20px;

    line-height: 1.7;

    font-weight: 500;
}


.codesArticleDetailContent {
    max-width: 850px;

    margin: 0 auto;

    color: #333333;

    font-size: 16px;

    line-height: 1.9;
}


.codesArticleDetailContent h2 {
    margin: 45px 0 18px;

    color: #111111;

    font-size: 30px;

    line-height: 1.3;
}


.codesArticleDetailContent h3 {
    margin: 35px 0 15px;

    color: #111111;

    font-size: 23px;
}


.codesArticleDetailContent p {
    margin: 0 0 22px;
}


.codesArticleDetailContent ul,
.codesArticleDetailContent ol {
    margin: 20px 0 25px;

    padding-left: 25px;
}


.codesArticleDetailContent li {
    margin-bottom: 9px;
}


.codesArticleDetailContent a {
    color: #5809ab;

    text-decoration: underline;
}


.codesArticleDetailContent img {
    width: 100%;

    height: auto;

    margin: 30px 0;

    border-radius: 12px;
}


/* =========================================================
   BACK BUTTON
   ========================================================= */

.codesArticleDetailBack {
    max-width: 850px;

    margin: 55px auto 0;

    padding-top: 25px;

    border-top: 1px solid #e4d8f2;
}


.codesArticleDetailBack a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #5809ab;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: gap .3s ease;
}


.codesArticleDetailBack a:hover {
    gap: 14px;
}


/* =========================================================
   RELATED ARTICLES
   ========================================================= */

.codesRelatedArticles {
    padding: 75px 20px;

    background: #faf7fe;
}


.codesRelatedArticlesContainer {
    width: min(92%,
            1200px);

    margin: 0 auto;
}


.codesRelatedArticlesHeading {
    margin-bottom: 35px;
}


.codesRelatedArticlesHeading span {
    color: #5809ab;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;
}


.codesRelatedArticlesHeading h2 {
    margin: 10px 0 0;

    color: #111111;

    font-size: 34px;

    font-weight: 600;
}


.codesRelatedArticlesGrid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;
}


/* =========================================================
   ARTICLE PAGINATION
   ========================================================= */

.codesArticlesPagination {
    display: flex;

    justify-content: center;

    margin-top: 45px;
}


.codesArticlesPagination nav {
    display: flex;

    align-items: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .codesArticleDetailHero {
        padding: 60px 20px 55px;
    }


    .codesArticleDetailTitle {
        margin-top: 20px;

        font-size: 36px;

        letter-spacing: -1px;
    }


    .codesArticleDetailMeta {
        gap: 10px 16px;

        font-size: 10px;
    }


    .codesArticleDetailSection {
        padding: 45px 20px 55px;
    }


    .codesArticleDetailImage {
        margin-bottom: 30px;

        border-radius: 12px;
    }


    .codesArticleDetailExcerpt {
        padding-left: 16px;

        font-size: 16px;
    }


    .codesArticleDetailContent {
        font-size: 14px;

        line-height: 1.8;
    }


    .codesArticleDetailContent h2 {
        font-size: 25px;
    }


    .codesArticleDetailContent h3 {
        font-size: 20px;
    }


    .codesRelatedArticles {
        padding: 55px 20px;
    }


    .codesRelatedArticlesGrid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}