/* ----------------------------- */
/* --- 1. FONT DEFINITIONS ----- */
/* ----------------------------- */

@font-face {
    font-family: 'BelfastGrotesk';
    src: url('../fonts/belfast-grotesk-semi-bold.woff') format('woff');
    font-weight: 600; /* Semi-Bold */
    font-style: normal;
}

@font-face {
    font-family: 'BelfastGrotesk';
    src: url('../fonts/belfast-grotesk-bold.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
}

/* ----------------------------- */
/* --- 2. CUSTOM PROPERTIES ---- */
/* ----------------------------- */

:root {
    /* Colors */
    --clr-brand-green: #004C1E;
    --clr-brand-orange: #FF6C29;
    --clr-text-grey: #707070;
    --clr-neutral-white: #FFFFFF;
    --clr-neutral-light-grey: #F8F8F8; /* For dropdown hover */
    --clr-neutral-black: #000000;

    /* Font Families */
    --ff-primary: 'Comfortaa', sans-serif;
    --ff-secondary: 'BelfastGrotesk', sans-serif;

    /* Font Weights */
    --fw-regular: 400;
    --fw-semi-bold: 600;
    --fw-bold: 700;
}

/* ----------------------------- */
/* --- 3. GLOBAL RESETS & DEFAULTS */
/* ----------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    color: var(--clr-text-grey);
    background-color: var(--clr-neutral-white);
    line-height: 1.6;
}

img, svg {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Visually hide content for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ----------------------------- */
/* --- 4. REUSABLE COMPONENTS -- */
/* ----------------------------- */

.container {
    width: 90%;
    max-width: 1280px;
    margin-inline: auto;
}

.btn {
    display: inline-block;
    padding: 0.65rem 1.3rem;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    line-height: 1.5em;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn--primary {
    background-color: var(--clr-brand-orange);
    color: var(--clr-neutral-black);
    border: 2px solid var(--clr-brand-orange);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 108, 41, 0.3);
}


/* ----------------------------- */
/* --- 5. HEADER & NAVIGATION -- */
/* ----------------------------- */

.site-header {
    padding-block: 1rem; /* Spacing above/below header content */
    background-color: var(--clr-neutral-white);
}

.site-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header__logo img {
    height: 48px; 
    width: auto;
}

/* Main Navigation Links (Desktop) */
.main-nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* Space between links */
}

.main-nav__link {
    font-family: var(--ff-primary);
    font-weight: var(--fw-semi-bold);
    font-size: 1rem;
    color: var(--clr-text-grey);
    display: flex;
    align-items: center;
    gap: 0.3rem; /* Space for chevron icon */
    transition: color 0.2s ease-in-out;
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
    color: var(--clr-brand-orange);
}

.main-nav__link--active {
    color: var(--clr-brand-orange);
}

.main-nav__chevron {
    width: 18px;
    height: 18px;
}

/* Solutions Dropdown Menu */
.main-nav__item--dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--clr-neutral-white);
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 220px;
    z-index: 1000;

    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    transform: translateX(-50%) translateY(-10px);
}

.main-nav__item--dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu__link {
    padding: 0.75rem 1rem;
    text-align: center;
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 1rem;
    color: var(--clr-text-grey);
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.dropdown-menu__link:not(:last-child) {
    border-bottom: 1px solid #E8E8E8;
}

.dropdown-menu__link:hover {
    color: var(--clr-brand-orange);
}

/* Mobile Navigation Toggle (Hamburger) */
.mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle__icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--clr-neutral-black);
}

.mobile-nav-toggle__icon--close { display: none; }

.site-header__cta {
    color: #000;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
}


/* ----------------------------- */
/* --- 6. RESPONSIVE STYLES ---- */
/* ----------------------------- */

@media (max-width: 992px) {
    /* Hide desktop-only elements */
    .site-header__cta {
        display: none;
    }

    /* Show mobile-only elements */
    .mobile-nav-toggle {
        display: block;
        z-index: 9999; /* Ensure it's on top */
    }

    /* Style the mobile navigation panel */
    .main-nav {
        position: fixed;
        inset: 0 0 0 30%; /* top, right, bottom, left */
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: min(20vh, 10rem) 2rem;
        gap: 2rem;
        z-index: 9998;

        /* Hide by default */
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
    }

    .main-nav[data-visible="true"] {
        transform: translateX(0);
    }
    
    /* Show the correct icon based on menu state */
    .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__icon--hamburger {
        display: none;
    }
    .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__icon--close {
        display: block;
    }

    /* Style mobile navigation links */
    .main-nav__links {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        width: 100%;
    }
    
    .main-nav__link {
        font-size: 1.1rem;
    }

    /* Mobile Dropdown Adjustments */
    .main-nav__item--dropdown .dropdown-menu {
        /* Reset desktop styles */
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        min-width: unset;
        padding: 0;

        /* Hide by default using max-height for animation */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    /* The state when the mobile dropdown is open */
    .main-nav__item--dropdown.is-open .dropdown-menu {
        margin-top: 1rem; /* Add some space when open */
        max-height: 10rem;
        transform: none !important;
    }

    .main-nav__item--dropdown:hover .dropdown-menu {
        transform: none !important;
    }

    .main-nav__item--dropdown .dropdown-menu__link {
        padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    }

    /* Rotate chevron when dropdown is open */
    .main-nav__item--dropdown.is-open .main-nav__chevron {
        transform: rotate(180deg);
    }
}

/* ----------------------------- */
/* --- 7. UTILITY CLASSES ------ */
/* ----------------------------- */

.text-orange {
    color: var(--clr-brand-orange) !important;
}

/* ----------------------------- */
/* --- 8. HERO SECTION --------- */
/* ----------------------------- */

.hero {
    padding: 9rem 0 0 0;
    position: relative;
    overflow: hidden; /* Prevents bg text from creating scrollbars */
}

body.homepage .hero {
    padding: 20rem 0 6rem 0;
}

.hero__bg-text {
    position: absolute;
    top: 1%;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 1;
    user-select: none;
    pointer-events: none;
}

body.solutions-page__body .hero__bg-text {
    top: 8%;
}

.hero__content {
    z-index: 2;
    width: 85%;
}

.hero__grid {
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
    gap: 3rem;
}

body.homepage .hero__grid  {
    grid-template-columns: unset;
}

.hero__pre-heading {
    display: block;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: 20px;
    color: var(--clr-brand-orange);
}

.hero__heading {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: 58px;
    color: var(--clr-brand-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 16px;
    color: var(--clr-text-grey);
    max-width: 90%;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* New secondary button style */
.btn--secondary {
    background-color: transparent;
    color: var(--clr-brand-orange);
    border: 2px solid var(--clr-brand-orange);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    background-color: var(--clr-brand-orange);
    color: var(--clr-neutral-black);
    transform: translateY(-2px);
    box-shadow: none;
}

.hero__features-list {
    display: flex;
    gap: 12rem;
}

.hero__feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: 16px;
    color: var(--clr-brand-green);
}

.hero__image-wrapper img {
    width: 660px;
    margin-left: -220px;
    max-width: none !important;
}

body.solutions-page__body .hero__image-wrapper img {
    width: 660px;
    margin-left: -180px;
    margin-bottom: -70px;
    margin-top: 70px;
}


/* ----------------------------- */
/* --- 9. HERO RESPONSIVE ------ */
/* ----------------------------- */

@media (max-width: 992px) {
    .hero {
        padding: 6rem 0 0 0;
    }

    body.homepage .hero {
        padding: 6rem 0 4rem 0;
    }

    .hero__content {
        width: 100%;
    }

    .hero__grid {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center;
    }

    .hero__heading {
        font-size: 48px; /* Reduce heading size */
    }

    .hero__description {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center; /* Center buttons */
        margin-bottom: 3rem;
    }

    .hero__features-list {
        justify-content: center;
        flex-wrap: wrap; /* Allow features to wrap */
        gap: 1rem;
    }

    .hero__image-wrapper img {
        width: 100% !important;
        margin: unset !important;
    }
}

@media (max-width: 576px) {
    .hero__heading {
        font-size: 32px; /* Further reduce heading size */
    }

    .hero__actions {
        flex-direction: column; /* Stack buttons vertically */
    }

    .hero__features-list {
        flex-direction: column; /* Stack features vertically */
        align-items: center;
    }

    body.solutions-page__body .hero__grid {
        gap: 0;
    }

    body.solutions-page__body .hero__bg-text {
        top: 4%;
    }
}

/* ----------------------------- */
/* --- 10. WHO WE ARE SECTION -- */
/* ----------------------------- */

.who-we-are .container {
    background-color: var(--clr-brand-green);
    color: var(--clr-neutral-white);
    padding: 4rem 2.5rem;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

/* Background Pattern Overlay */
.who-we-are .container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/Hexagon.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 1;
    z-index: -1;
}

.who-we-are__header {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 4rem;
}

.who-we-are__pre-heading {
    display: block;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: 20px;
}

.who-we-are__heading {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.who-we-are__subheading {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    opacity: 0.9;
    width: 60%;
    margin-inline: auto;
}

.who-we-are__grid {
    display: grid;
    gap: 1.5rem;
    /* This creates the 2-up, 3-up layout */
    grid-template-columns: repeat(6, 1fr);
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 24px;
    padding: 1.2rem;
}

/* Layout for the top two cards */
body.homepage .feature-card:nth-child(1),
body.homepage .feature-card:nth-child(2) {
    grid-column: span 3;
}

/* Layout for the bottom three cards */
body.homepage .feature-card:nth-child(3),
body.homepage .feature-card:nth-child(4),
body.homepage .feature-card:nth-child(5) {
    grid-column: span 2;
}


.feature-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.feature-card__title {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: 22px;
    color: var(--clr-neutral-white);
    margin-bottom: 0.6rem;
}

.feature-card__text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 15px;
    color: #BABABA;
    line-height: 1.7;
}


/* ----------------------------- */
/* --- 11. WHO WE ARE RESPONSIVE */
/* ----------------------------- */

@media (max-width: 1024px) {
    /* Make all cards take up half the width on tablets */
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: span 3;
    }
    .who-we-are__subheading {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .who-we-are .container {
        padding: 3rem 1.5rem;
    }

    .who-we-are__pre-heading {
        font-size: 18px;
    }

    .who-we-are__heading {
        font-size: 24px;
    }
    
    /* Stack all cards vertically on mobile */
    .who-we-are__grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: span 1;
    }

    .who-we-are {
        padding-inline: 15px;
    }

    body.homepage .feature-card:nth-child(3),
    body.homepage .feature-card:nth-child(4),
    body.homepage .feature-card:nth-child(5) {
        grid-column: span 3;
    }
}

/* ----------------------------- */
/* --- 12. SOLUTIONS SECTION --- */
/* ----------------------------- */

.solutions {
    margin-top: 12rem;
    padding: 12rem 0 5rem 0;
    position: relative;
    background-color: var(--clr-neutral-white);
}

.solutions__bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    z-index: 0;
    opacity: 1;
    user-select: none;
}

.solutions__list {
    position: relative;
    z-index: 1;
}

.solution-item {
    display: grid;
    /* Columns: Number | Title | Description | Arrow */
    grid-template-columns: auto minmax(300px, 1.2fr) 1.5fr auto;
    align-items: center;
    gap: 2rem;
    padding-block: 2.5rem;
    position: relative;
    border-bottom: 1px solid #E8E8E8;
    transition: background-color 0.3s ease;
}

.solution-item:first-child {
    border-top: 1px solid #E8E8E8;
}

/* Simple hover effect */
.solution-item:hover {
    background-color: #FDFDFD;
}

.solution-item__title {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: 40px;
    color: var(--clr-brand-green);
    margin-top: -12px;
}

.solution-item__description {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    color: var(--clr-text-grey);
    line-height: 1.7;
    max-width: 45ch;
}

.solution-item__arrow img {
    transition: transform 0.3s ease;
}

/* Arrow hover effect */
.solution-item:hover .solution-item__arrow img {
    transform: translate(5px, -5px);
}


/* ----------------------------- */
/* --- 13. SOLUTIONS RESPONSIVE  */
/* ----------------------------- */

@media (max-width: 1024px) {
    .solution-item {
        grid-template-columns: auto 1fr auto; /* Remove description column */
        gap: 1.5rem;

        /* Define grid areas for easy re-ordering */
        grid-template-areas:
            "number title arrow"
            ".      desc  ."; /* Description spans under title */
    }

    /* Assign elements to their areas */
    .solution-item__number { grid-area: number; }
    .solution-item__title { grid-area: title; }
    .solution-item__arrow { grid-area: arrow; }
    .solution-item__description {
        grid-area: desc;
        margin-top: 0.5rem;
    }

    .solution-item__title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .solutions {
        padding-block: 4rem;
        margin-top: 8rem;
    }

    .solution-item {
        padding-block: 1.5rem;
        /* Redefine grid areas for small mobile */
        grid-template-areas:
            "number title"
            "desc   desc"
            "arrow  arrow"; /* Move arrow to its own row */
    }
    
    .solution-item__arrow {
        justify-self: flex-end; /* Align arrow to the right */
        margin-top: 1rem;
    }

    .solution-item__title {
        font-size: 24px;
    }
    
    .solution-item__description {
        font-size: 16px;
    }
}

/* ----------------------------- */
/* --- 14. ADVANTAGE SECTION --- */
/* ----------------------------- */

.advantage {
    padding-block: 6rem;
    background-color: #fff;
}

.advantage__header {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 4rem;
}

.advantage__pre-heading {
    display: block;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: 18px;
    color: var(--clr-neutral-black);
}

.advantage__heading {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: 40px;
    color: var(--clr-brand-green);
    margin-bottom: 1.5rem;
    line-height: 1.4em;
}

.advantage__subheading {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    color: var(--clr-text-grey);
    width: 60%;
    margin: auto;
}

.advantage__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four equal columns on desktop */
    gap: 1.2rem;
}

.advantage-card {
    background-color: var(--clr-neutral-white);
    border: 1px solid #E8E8E8;
    border-radius: 30px;
    overflow: hidden; /* Ensures image respects the border-radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-top: 20px;
}

/* Minimalist hover effect */
.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.advantage-card__image {
    width: 90%;
    margin: auto;
    height: auto;
}

.advantage-card__content {
    padding: 1.2rem 1.2rem 1.6rem 1.2rem;
}

.advantage-card__title {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: 24px;
    color: var(--clr-brand-green);
    margin-bottom: 1rem;
    line-height: 1.3em;
}

.advantage-card__text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 16px;
    color: var(--clr-text-grey);
    line-height: 1.7;
}

/* ----------------------------- */
/* --- 15. ADVANTAGE RESPONSIVE  */
/* ----------------------------- */

@media (max-width: 1024px) {
    .advantage__grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablet */
    }
}

@media (max-width: 768px) {
    .advantage {
        padding-block: 4rem;
    }
    .advantage__heading {
        font-size: 24px;
        line-height: 1.4em;
        margin-bottom: 1rem;
    }

    .advantage__subheading {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .advantage__grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .advantage-card__title {
        font-size: 20px;
    }
}

/* ----------------------------- */
/* --- 16. ECOSYSTEM SECTION --- */
/* ----------------------------- */

.ecosystem {
    padding: 3rem 0 6rem 0;
}

.ecosystem__blocks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ecosystem-block {
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 2rem;
    padding: 2.6rem;
    border: 1px solid #E8E8E8;
    border-radius: 30px;
}

.ecosystem-block__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    position: relative;
}

.ecosystem-block__icon {
    flex-grow: 1;
    width: 58px;
    position: absolute;
    top: 0;
}

.ecosystem-block__heading {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: 36px;
    color: var(--clr-brand-green);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.ecosystem-block__text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    color: var(--clr-text-grey);
    line-height: 1.7;
    width: 86%;
    margin-bottom: 2rem;
}

.ecosystem-block__image-wrapper {
    max-width: 100%;
}

.btn--dark-text {
    color: var(--clr-neutral-black);
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: 16px;
}

/* ----------------------------- */
/* --- 17. ECOSYSTEM RESPONSIVE  */
/* ----------------------------- */

@media (max-width: 1024px) {
    .ecosystem-block {
        gap: 1rem;
        padding: 2rem 1.2rem;
    }
    .ecosystem-block__heading {
        font-size: 24px;
        width: 100%;
    }
}


@media (max-width: 768px) {
    .ecosystem {
        padding-block: 4rem;
    }
    .ecosystem-block {
        grid-template-columns: 1fr; /* Stack into a single column */
        text-align: center;
    }

    .ecosystem-block__image-wrapper {
        order: -1; /* Move the image to the top */
        margin-bottom: 2rem;
        margin-inline: auto; /* Center the image */
    }

    .ecosystem-block__icon {
        margin-inline: auto; /* Center the icon */
    }

    .ecosystem-block__text {
        margin-inline: auto; /* Center the paragraph text */
        width: 100%;
        font-size: 16px;
    }

    .ecosystem-block__icon {
        position: static;
        margin-bottom: 10px;
    }

    .ecosystem-block__content .btn--primary {
        margin: auto;
    }

    .ecosystem-block__image-wrapper img {
        width: 80%;
        margin: auto;
    }
}

/* ----------------------------- */
/* --- 18. ABOUT US SECTION ---- */
/* ----------------------------- */

.about-us {
    padding: 22rem 0 6rem 0;
    background-color: #F3F3F3;
    position: relative;
    overflow: hidden;
}

.about-us__bg-text {
    position: absolute;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    z-index: 0;
    opacity: 1;
    user-select: none;
}

.advantage__subheading.about-us__subheading {
    width: 100%;
}

.about-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 4rem;
    position: relative; /* Sit above background text */
    z-index: 1;
}

/* More space for the button in this section */
.about-us__content .btn {
    margin-top: 1.5rem;
}

.about-us__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-block {
    display: flex;
    align-items: flex-start; /* Align icon to the top */
    gap: 1.5rem;
    border: 1px solid #E8E8E8;
    border-radius: 30px;
    padding: 1.2rem;
}

.feature-block__icon {
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.feature-block__title {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: 28px;
    color: var(--clr-brand-green);
    margin-bottom: 0.5rem;
}

.feature-block__text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 16px;
    color: var(--clr-text-grey);
    line-height: 1.6;
}


/* ----------------------------- */
/* --- 19. ABOUT US RESPONSIVE - */
/* ----------------------------- */

@media (max-width: 992px) {
    .about-us__grid {
        grid-template-columns: 1fr; /* Stack columns on tablet/mobile */
        gap: 3rem;
    }
    .about-us__content {
        text-align: center;
    }
    .about-us__content .advantage__subheading {
        margin-inline: auto; /* Center the paragraph */
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 9rem 0 4rem 0;
    }
    .feature-block__title {
        font-size: 24px;
    }
    .about-us__bg-text {
        top: 4rem;
    }

}

/* ----------------------------- */
/* --- 20. CTA SECTION --------- */
/* ----------------------------- */

.cta {
    padding: 6rem 0 0 0;
    background-color: var(--clr-neutral-white);
}

.cta__grid {
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
    gap: 3rem;
}

.cta__image-wrapper {
    display: flex;
    justify-content: center;
}

.cta__image-wrapper img {
    max-width: 100%;
    height: auto;
}

.advantage__subheading.cta__subheading {
    width: 70%;
    margin: 0;
}

.cta__image-wrapper img {
    width: 490px;
    margin-left: -120px;
    margin-bottom: -60px;
    max-width: none !important;
}

.cta__content {
    z-index: 2;
}

/* ----------------------------- */
/* --- 21. CTA RESPONSIVE ------ */
/* ----------------------------- */

@media (max-width: 992px) {
    .cta__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta__content .advantage__subheading {
        margin-inline: auto;
    }

    .cta__image-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 0 0 0;
    }
    
    .cta__content .advantage__heading {
        font-size: 48px !important;
    }

    .advantage__subheading.cta__subheading {
        width: 100%;
    }

    .cta__image-wrapper img {
        width: 100%;
        margin: unset;
    }

    .cta__grid {
        gap: 0;
    }
}

@media (max-width: 576px) {
    .cta__content .advantage__heading {
        font-size: 24px !important;
        line-height: 1.4em;
    }
}

/* ----------------------------- */
/* --- 22. FOOTER SECTION ------ */
/* ----------------------------- */

.site-footer {
    padding: 0 0 2rem 0;
    background-color: #FAFAFA;
}

.site-footer .container {
    background-color: var(--clr-brand-green);
    color: var(--clr-neutral-white);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

.site-footer .container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/Hexagon\ 2.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 1;
    z-index: -1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 52% 16% 16% 16%;
    gap: 0;
    margin-bottom: 2rem;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer__logo img {
    height: 68px;
}

.footer__about-text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    color: #BABABA;
    line-height: 1.7;
    max-width: 35ch;
    margin-bottom: 2rem;
}

.footer__social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__social-links a {
    display: block;
    transition: opacity 0.3s ease;
}

.footer__social-links a:hover {
    opacity: 0.8;
}

.footer__heading {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: 18px;
    color: var(--clr-neutral-white);
    margin-bottom: 1.5rem;
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link-list a {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 14px;
    color: #BABABA;
    transition: color 0.3s ease;
}

.footer__link-list a:hover {
    color: var(--clr-brand-orange);
}

.footer__address {
    font-style: normal;
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 14px;
    color: #BABABA;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer__contact .btn {
    width: 100%;
    max-width: 200px;
}

.footer__divider {
    border: none;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 14px;
    color: var(--clr-neutral-white);
    text-align: center;
    margin-top: 2rem;
}

body.homepage .site-footer {
    padding: 60px 0 2rem 0;
}


/* ----------------------------- */
/* --- 23. FOOTER RESPONSIVE --- */
/* ----------------------------- */

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer .container {
        padding: 3rem 1.5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 2.5rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .footer__about-text {
        margin-inline: auto; /* Center paragraph */
    }

    .footer__social-links {
        justify-content: center; /* Center icons */
    }

    .footer__contact .btn {
        margin-inline: auto; /* Center button */
    }

    .site-footer {
        padding-inline: 15px !important;
    }

    body.homepage .site-footer {
        padding-top: 0;
    }
}

/* ----------------------------- */
/* --- 24. SOLUTIONS PAGE SPECIFIC */
/* ----------------------------- */

.clarity-section .container::before {
    background-image: url('../images/Hexagon\ 3.png');
}

/* Grid for the four feature cards in the "Clarity" section */
.clarity-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

body.solutions-page__body .who-we-are.clarity-section {
    margin-top: -90px;
}

/* Responsive adjustments for the clarity grid */
@media (max-width: 1024px) {
    .clarity-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clarity-section__grid {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------- */
/* --- 25. HOW IT WORKS SECTION (Solutions Page) */
/* ----------------------------- */

.how-it-works {
    padding-block: 6rem;
    background-color: var(--clr-neutral-white);
}

.how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid #E8E8E8;
    border-radius: 30px;
    padding: 1.2rem;
}

.step-block__icon {
    flex-shrink: 0;
}

.step-block__title {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: 24px;
    color: var(--clr-brand-green);
    margin-bottom: 0.5rem;
}

.step-block__text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 16px;
    color: var(--clr-text-grey);
    line-height: 1.6;
}

.advantage__subheading.how-it-works__subheading {
    width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    .how-it-works {
        padding-block: 4rem;
    }
}

/* ----------------------------- */
/* --- 26. BUSINESS ECOSYSTEM SECTION (Solutions Page) */
/* ----------------------------- */

.business-ecosystem {
    padding-block: 5rem;
    background-color: #F3F3F3;
}

.timeline {
    display: grid;
    /* 4 columns for the items, with empty space between them */
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* Define rows for top items, connector, and bottom items */
    grid-template-rows: auto auto auto;
    gap: 0 2rem; /* Only column gap */
    align-items: start;
    position: relative;
}

/* Placing items in the grid */
.timeline-item:nth-of-type(1) { grid-column: 1 / 2; grid-row: 1 / 2; text-align: left; }
.timeline-item:nth-of-type(2) { grid-column: 3 / 4; grid-row: 1 / 2; text-align: left; }
.timeline-item:nth-of-type(4) { grid-column: 2 / 2; grid-row: 3 / 4; text-align: left; }
.timeline-item:nth-of-type(5) { grid-column: 4 / 4; grid-row: 3 / 4; text-align: left; }

.timeline-item__heading span:first-child {
    display: block;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: 32px;
    color: var(--clr-brand-green);
    line-height: 1.3em;
    text-transform: uppercase;
}

.timeline-item__heading span:last-child {
    display: block;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: 20px;
    color: var(--clr-brand-orange);
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.timeline-item__text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    color: var(--clr-text-grey);
    margin-top: 1rem;
    max-width: 35ch;
}

/* Align text to the right for bottom items */
.timeline-item:nth-of-type(3) .timeline-item__text,
.timeline-item:nth-of-type(4) .timeline-item__text {
    margin-left: auto;
}

/* Styling the connector line */
.timeline-connector {
    grid-column: 1 / 5; /* Span all 4 columns */
    grid-row: 2 / 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 20px;
}

.timeline-connector__line {
    flex-grow: 1;
    width: 100%;
    padding-inline: 0.8rem;
}

/* Vertical Timeline for Mobile */
.timeline--vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem; /* Space for the vertical line */
}

.timeline--vertical::before {
    content: '';
    position: absolute;
    left: 8px; /* Position the line */
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #E8E8E8;
}

.timeline--vertical .timeline-item {
    position: relative;
    padding-left: 2rem; /* Space for the circle */
}

.timeline--vertical .timeline-item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 8px;
    width: 20px;
    height: 20px;
    background-color: #E8E8E8;
    border-radius: 50%;
    border: 4px solid #F3F3F3; /* Create a cutout effect */
}


/* ----------------------------- */
/* --- 27. BUSINESS ECOSYSTEM RESPONSIVE */
/* ----------------------------- */

@media (max-width: 768px) {
    .business-ecosystem { padding-block: 4rem 2rem; }

    /* Hide the horizontal timeline and its items */
    .timeline {
        display: none;
    }

    /* We will need JS to add the vertical class, but for now we can style it */
    .timeline--vertical {
        /* This class will be added via JS */
    }

    /* Since we can't use JS, let's just make a simple stacked layout */
    .timeline {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;
    }
    .timeline-item {
        margin-bottom: 30px;
        text-align: center !important;
    }
    .timeline-item__text {
        margin-inline: auto;
    }
    .timeline-connector {
        display: none; /* Hide the connector on mobile */
    }

    .timeline-item__heading span:first-child {
        font-size: 26px;
    }

    .timeline-item__heading span:last-child {
        font-size: 18px;
    }
}

/* ----------------------------- */
/* --- 28. EXCELLENCE SECTION (Solutions Page) */
/* ----------------------------- */

.excellence {
    padding: 18rem 0 5rem 0;
    background-color: var(--clr-neutral-white);
    position: relative;
    overflow: hidden;
}

.excellence__bg-text {
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    z-index: 0;
    opacity: 1;
    user-select: none;
}

.excellence__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Make the first card span 2 of the 4 columns (50%) */
.excellence__grid .advantage-card:nth-child(1) {
    grid-column: span 2;
}

.excellence__grid .advantage-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.excellence__grid .advantage-card__image {
    margin-block: 0;
}

/* ----------------------------- */
/* --- 29. EXCELLENCE RESPONSIVE */
/* ----------------------------- */

@media (max-width: 1024px) {
    .excellence__grid {
        /* Switch to a 2-column grid */
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Make the first card span the full width */
    .excellence__grid .advantage-card:nth-child(1) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .excellence {
        padding: 9rem 0 4rem 0;
    }
    .excellence__grid {
        /* Switch to a single column */
        grid-template-columns: 1fr;
    }
    .excellence__bg-text {
        top: 4rem;
    }
}

/* ----------------------------- */
/* --- 30. CTA SECTION (Solutions Page) */
/* ----------------------------- */

body.solutions-page__body .cta__image-wrapper img {
    margin-bottom: 0;
}

body.solutions-page__body .advantage__subheading.cta__subheading {
    width: 80%;
}

body.solutions-page__body .cta__image-wrapper img {
    margin-top: -20px;
    width: unset;
    margin-left: unset;
    max-width: 100% !important;
}

body.solutions-page__body .cta__grid {
    align-items: flex-start;
    gap: 2rem;
}

body.solutions-page__body .cta {
    padding: 4rem 0 0 0;
}

/* ----------------------------- */
/* --- 31. CTA RESPONSIVE (Solutions Page) ------ */
/* ----------------------------- */

@media (max-width: 768px) {
    body.solutions-page__body .advantage__subheading.cta__subheading {
        width: 100%;
    }
}

/* ----------------------------- */
/* --- 32. CONTACT PAGE -------- */
/* ----------------------------- */

.contact-page {
    padding-block: 6rem;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Make form column slightly wider */
    align-items: flex-start;
    gap: 4rem;
}

.contact-page__info-boxes {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.info-box {
    flex: 1; /* Make both boxes equal width */
    padding: 1rem;
    border: 1px solid #E8E8E8;
    border-radius: 30px;
}

.info-box__title {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: 18px;
    color: var(--clr-brand-green);
    margin-bottom: 1rem;
}

.info-box__text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 16px;
    color: #8C8C8C;
    line-height: 1.6;
}

/* Form Styles */
.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: #F3F3F3;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: 16px;
    color: var(--clr-text-grey);
    transition: border-color 0.3s ease;
}

.contact-form select {
    /* For custom dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23707070'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form ::placeholder {
    color: #A0A0A0;
    font-weight: var(--fw-regular);
}

.contact-form button {
    width: 100%;
}

.advantage__subheading.contact-page__subheading {
    width: 100%;
    margin: 0;
}

.contact-page .advantage__heading {
    line-height: 1.25em;
}

/* ----------------------------- */
/* --- 33. CONTACT PAGE RESPONSIVE */
/* ----------------------------- */

@media (max-width: 992px) {
    .contact-page__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-page__info {
        text-align: center;
    }
    .contact-page__info-boxes {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding-block: 4rem;
    }
    .contact-form__grid {
        grid-template-columns: 1fr;
    }
    .form-group {
        margin-bottom: 1rem;
    }

    .contact-page .advantage__heading {
        font-size: 32px !important;
    }
}

/* ----------------------------- */
/* --- 34. DRIVEN BY PEOPLE SECTION */
/* ----------------------------- */

.driven-by-people {
    padding-block: 6rem;
    background-color: var(--clr-neutral-white);
}

.driven-by-people .advantage__header {
    margin-bottom: 4rem;
}

.approach__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.approach__image-wrapper img {
    max-width: 100%;
    height: auto;
}

.approach__features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.2rem;
    border: 1px solid #E8E8E8;
    border-radius: 30px;
}

.approach-feature-box__icon {
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.approach-feature-box__title {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: 18px;
    color: var(--clr-brand-green);
    margin-bottom: 0.5rem;
}

.approach-feature-box__text {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    color: var(--clr-text-grey);
    line-height: 1.6;
}

.advantage__subheading.driven-by-people__subheading {
    width: 100%;
    margin: 0;
}

/* ----------------------------- */
/* --- 35. DRIVEN BY PEOPLE RESPONSIVE */
/* ----------------------------- */

@media (max-width: 992px) {
    .approach__grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 3rem;
    }
    
    .approach__image-wrapper {
        order: -1; /* Move image to the top */
        max-width: 500px; /* Constrain image size */
        margin-inline: auto; /* Center image */
    }

    .approach__content {
        text-align: center;
    }
    .approach__content .advantage__subheading {
        margin-inline: auto; /* Center paragraph */
    }
    .approach-feature-box {
        text-align: left; /* Keep box text left-aligned */
    }
}

@media (max-width: 768px) {
    .driven-by-people {
        padding-block: 4rem;
    }
}

/* ----------------------------- */
/* --- 36. GLOBAL REACH SECTION */
/* ----------------------------- */

.global-reach {
    padding: 3rem 0 7rem 0;
    background-color: var(--clr-neutral-white);
    overflow: hidden;
}

.global-reach .advantage__header {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.global-reach__image-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.global-reach__image-wrapper img {
    width: 100%;
    max-width: 1000px;
    height: auto;
}


/* ----------------------------- */
/* --- 37. GLOBAL REACH RESPONSIVE */
/* ----------------------------- */

@media (max-width: 768px) {
    .global-reach {
        padding: 3rem 0 6rem 0;
    }
    .global-reach__image-wrapper {
        margin-top: 3rem;
    }
}

.ecosystem-block__text {
    margin-bottom: 0.5rem; /* Reduce margin when followed by list */
}

.ecosystem-block__list {
    width: 86%;
    margin-bottom: 2rem;
}

.ecosystem-block__list li {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    color: var(--clr-text-grey);
    line-height: 1.7;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.3rem;
}

.ecosystem-block__list li::before {
    content: "•";
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .ecosystem-block__list {
        width: 100%;
        text-align: left;
        margin-inline: auto;
    }
}

.ecosystem-block__content {
    padding-top: 70px; /* Make room for the icon */
}

/*updated below*/

/* ===================================================
   GLOBUS PAYMENTS - MAIN STYLESHEET
   Modern Corporate Design
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors from Guidelines */
    --globus-green: #034C24;
    --globus-green-dark: #022a15;
    --globus-green-light: #065a2d;
    --globus-orange: #EC6C32;
    --globus-orange-hover: #d85a22;
    
    /* Neutral Colors */
    --dark: #141414;
    --dark-secondary: #1a1a1a;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --grey-text: #6b7280;
    --grey-border: #e5e7eb;
    --grey-muted: #9ca3af;
    
    /* Typography - Manrope from Brand Guidelines */
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

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

.text-orange {
    color: var(--globus-orange);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 16px;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.heading-sm {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-text);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--globus-orange);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--globus-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 108, 50, 0.35);
}

.btn--secondary {
    background: var(--dark);
    color: var(--white);
}

.btn--secondary:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--grey-border);
}

.btn--outline:hover {
    border-color: var(--dark);
    background: var(--light);
}

.btn--white {
    background: var(--white);
    color: var(--dark);
}

.btn--white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.nav--scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    height: 36px;
}

.nav__logo img {
    height: 100%;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--grey-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--dark);
    background: var(--light);
}

.nav__link--active {
    color: var(--dark);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.nav__mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    position: relative;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle span::before,
.nav__mobile-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark);
    left: 0;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle span::before { top: -6px; }
.nav__mobile-toggle span::after { bottom: -6px; }

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(3, 76, 36, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero__card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.hero__circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero__circle--1 {
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero__circle--1 svg {
    width: 60%;
    height: 60%;
    color: var(--white);
}

.hero__circle--2 {
    background: var(--globus-orange);
    margin-left: -30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__circle--2::before {
    content: '';
    width: 60%;
    height: 60%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.hero__title {
    margin-bottom: 20px;
}

.hero__subtitle {
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
    overflow: hidden;
}

.marquee__track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.marquee__item:hover {
    opacity: 1;
}

.marquee__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee__icon svg {
    width: 20px;
    height: 20px;
    color: var(--globus-green);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURE CARDS ===== */
.features__header {
    max-width: 600px;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-card--dark {
    background: var(--dark);
    color: var(--white);
}

.feature-card--dark .feature-card__title {
    color: var(--white);
}

.feature-card--dark .feature-card__text {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card--green {
    background: var(--globus-green);
    color: var(--white);
}

.feature-card--green .feature-card__title {
    color: var(--white);
}

.feature-card--green .feature-card__text {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card--video {
    position: relative;
}

.feature-card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.feature-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.3) 0%, rgba(20, 20, 20, 0.85) 100%);
    z-index: 1;
}

.feature-card__content {
    position: relative;
    z-index: 2;
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--globus-green);
}

.feature-card--dark .feature-card__icon,
.feature-card--green .feature-card__icon {
    background: rgba(255, 255, 255, 0.15);
}

.feature-card--dark .feature-card__icon svg,
.feature-card--green .feature-card__icon svg {
    color: var(--white);
}

.feature-card__eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 12px;
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--globus-orange);
    margin-top: auto;
}

.feature-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.feature-card:hover .feature-card__link svg {
    transform: translateX(4px);
}

/* ===== SERVICES CARDS ===== */
.services {
    background: var(--light);
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.service-card__content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: var(--white);
}

.service-card__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card__text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ===== VALUE PROPS ===== */
.value-props__list {
    max-width: 800px;
    margin: 0 auto;
}

.value-prop {
    padding: 48px 0;
    border-bottom: 1px solid var(--grey-border);
}

.value-prop:last-child {
    border-bottom: none;
}

.value-prop__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--grey-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-prop__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--grey-text);
    max-width: 600px;
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.ecosystem-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--grey-border);
}

.ecosystem-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ecosystem-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.ecosystem-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.ecosystem-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-text);
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 76, 36, 0.92) 0%, rgba(2, 42, 21, 0.95) 100%);
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta__text {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--dark);
    color: var(--white);
}

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

.stat {
    text-align: center;
}

.stat__value {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--globus-orange);
}

.stat__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGE HERO (Solutions/Contact) ===== */
.page-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--globus-green);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(236, 108, 50, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero__content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.page-hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 20px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* ===== SOLUTION ROWS ===== */
.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--grey-border);
}

.solution-row:last-child {
    border-bottom: none;
}

.solution-row--reverse {
    direction: rtl;
}

.solution-row--reverse > * {
    direction: ltr;
}

.solution__content {
    max-width: 520px;
}

.solution__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.solution__icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.solution__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.solution__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
    margin-bottom: 28px;
}

.solution__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.solution__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.solution__feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(3, 76, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution__feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--globus-green);
}

.solution__feature-text {
    font-size: 1rem;
    color: var(--grey-text);
}

.solution__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light);
}

.solution__visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    background: var(--light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__info {
    position: sticky;
    top: 120px;
}

.contact__header {
    margin-bottom: 48px;
}

.contact__title {
    margin-bottom: 16px;
}

.contact__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-method__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-method__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.contact-method__content p {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-bottom: 8px;
}

.contact-method__content a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--globus-green);
}

.contact-method__content a:hover {
    color: var(--globus-orange);
}

.contact__office {
    padding: 32px;
    background: var(--globus-green);
    border-radius: var(--radius-xl);
    color: var(--white);
    margin-bottom: 24px;
}

.contact__office h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact__office p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 32px;
    margin-bottom: 20px;
}

.footer__logo img {
    height: 100%;
    width: auto;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--globus-orange);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.footer__column-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer__link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features__grid,
    .services__grid {
        gap: 20px;
    }
    
    .ecosystem__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .solution-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-row--reverse {
        direction: ltr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact__info {
        position: static;
    }
    
    .footer__top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
    
    .nav__mobile-toggle {
        display: flex;
    }
    
    .hero__card {
        padding: 40px 24px;
    }
    
    .hero__circle {
        width: 100px;
        height: 100px;
    }
    
    .features__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: 400px;
    }
    
    .ecosystem__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__brand {
        max-width: 100%;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===================================================
   GLOBUS PAYMENTS - MAIN STYLESHEET
   Modern Corporate Design
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors from Guidelines */
    --globus-green: #034C24;
    --globus-green-dark: #022a15;
    --globus-green-light: #065a2d;
    --globus-orange: #EC6C32;
    --globus-orange-hover: #d85a22;
    
    /* Neutral Colors */
    --dark: #141414;
    --dark-secondary: #1a1a1a;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --grey-text: #6b7280;
    --grey-border: #e5e7eb;
    --grey-muted: #9ca3af;
    
    /* Typography - Manrope from Brand Guidelines */
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

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

.text-orange {
    color: var(--globus-orange);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 16px;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.heading-sm {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-text);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--globus-orange);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--globus-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 108, 50, 0.35);
}

.btn--secondary {
    background: var(--dark);
    color: var(--white);
}

.btn--secondary:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--grey-border);
}

.btn--outline:hover {
    border-color: var(--dark);
    background: var(--light);
}

.btn--white {
    background: var(--white);
    color: var(--dark);
}

.btn--white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.nav--scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    height: 36px;
}

.nav__logo img {
    height: 100%;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--grey-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--dark);
    background: var(--light);
}

.nav__link--active {
    color: var(--dark);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.nav__mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    position: relative;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle span::before,
.nav__mobile-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark);
    left: 0;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle span::before { top: -6px; }
.nav__mobile-toggle span::after { bottom: -6px; }

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(3, 76, 36, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero__card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.hero__circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero__circle--1 {
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero__circle--1 svg {
    width: 60%;
    height: 60%;
    color: var(--white);
}

.hero__circle--2 {
    background: var(--globus-orange);
    margin-left: -30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__circle--2::before {
    content: '';
    width: 60%;
    height: 60%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.hero__title {
    margin-bottom: 20px;
}

.hero__subtitle {
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Video Hero Variant */
.hero--video {
    padding: 0;
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero--video::before {
    display: none;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(3, 76, 36, 0.7) 0%,
        rgba(20, 20, 20, 0.8) 100%
    );
    z-index: 2;
}

.hero__content--video {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 160px 20px 100px;
}

.hero__content--video .hero__subtitle {
    max-width: 640px;
}

@media (max-width: 768px) {
    .hero--video {
        min-height: 90vh;
    }
    
    .hero__content--video {
        padding: 140px 20px 80px;
    }
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
    overflow: hidden;
}

.marquee__track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.marquee__item:hover {
    opacity: 1;
}

.marquee__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee__icon svg {
    width: 20px;
    height: 20px;
    color: var(--globus-green);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURE CARDS ===== */
.features__header {
    max-width: 600px;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-card--dark {
    background: var(--dark);
    color: var(--white);
}

.feature-card--dark .feature-card__title {
    color: var(--white);
}

.feature-card--dark .feature-card__text {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card--green {
    background: var(--globus-green);
    color: var(--white);
}

.feature-card--green .feature-card__title {
    color: var(--white);
}

.feature-card--green .feature-card__text {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card--video {
    position: relative;
}

.feature-card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.feature-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.3) 0%, rgba(20, 20, 20, 0.85) 100%);
    z-index: 1;
}

.feature-card__content {
    position: relative;
    z-index: 2;
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--globus-green);
}

.feature-card--dark .feature-card__icon,
.feature-card--green .feature-card__icon {
    background: rgba(255, 255, 255, 0.15);
}

.feature-card--dark .feature-card__icon svg,
.feature-card--green .feature-card__icon svg {
    color: var(--white);
}

.feature-card__eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 12px;
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--globus-orange);
    margin-top: auto;
}

.feature-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.feature-card:hover .feature-card__link svg {
    transform: translateX(4px);
}

/* ===== SERVICES CARDS ===== */
.services {
    background: var(--light);
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.service-card__content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: var(--white);
}

.service-card__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card__text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ===== VALUE PROPS ===== */
.value-props__list {
    max-width: 800px;
    margin: 0 auto;
}

.value-prop {
    padding: 48px 0;
    border-bottom: 1px solid var(--grey-border);
}

.value-prop:last-child {
    border-bottom: none;
}

.value-prop__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--grey-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-prop__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--grey-text);
    max-width: 600px;
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.ecosystem-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--grey-border);
}

.ecosystem-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ecosystem-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.ecosystem-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.ecosystem-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-text);
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 76, 36, 0.92) 0%, rgba(2, 42, 21, 0.95) 100%);
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta__text {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--dark);
    color: var(--white);
}

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

.stat {
    text-align: center;
}

.stat__value {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--globus-orange);
}

.stat__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGE HERO (Solutions/Contact) ===== */
.page-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--globus-green);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(236, 108, 50, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero__content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.page-hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 20px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* ===== SOLUTION ROWS ===== */
.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--grey-border);
}

.solution-row:last-child {
    border-bottom: none;
}

.solution-row--reverse {
    direction: rtl;
}

.solution-row--reverse > * {
    direction: ltr;
}

.solution__content {
    max-width: 520px;
}

.solution__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.solution__icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.solution__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.solution__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
    margin-bottom: 28px;
}

.solution__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.solution__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.solution__feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(3, 76, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution__feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--globus-green);
}

.solution__feature-text {
    font-size: 1rem;
    color: var(--grey-text);
}

.solution__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light);
}

.solution__visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    background: var(--light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__info {
    position: sticky;
    top: 120px;
}

.contact__header {
    margin-bottom: 48px;
}

.contact__title {
    margin-bottom: 16px;
}

.contact__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-method__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-method__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.contact-method__content p {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-bottom: 8px;
}

.contact-method__content a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--globus-green);
}

.contact-method__content a:hover {
    color: var(--globus-orange);
}

.contact__office {
    padding: 32px;
    background: var(--globus-green);
    border-radius: var(--radius-xl);
    color: var(--white);
    margin-bottom: 24px;
}

.contact__office h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact__office p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 32px;
    margin-bottom: 20px;
}

.footer__logo img {
    height: 100%;
    width: auto;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--globus-orange);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.footer__column-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer__link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features__grid,
    .services__grid {
        gap: 20px;
    }
    
    .ecosystem__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .solution-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-row--reverse {
        direction: ltr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact__info {
        position: static;
    }
    
    .footer__top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
    
    .nav__mobile-toggle {
        display: flex;
    }
    
    .hero__card {
        padding: 40px 24px;
    }
    
    .hero__circle {
        width: 100px;
        height: 100px;
    }
    
    .features__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: 400px;
    }
    
    .ecosystem__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__brand {
        max-width: 100%;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===================================================
   GLOBUS PAYMENTS - MAIN STYLESHEET
   Modern Corporate Design
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors from Guidelines */
    --globus-green: #034C24;
    --globus-green-dark: #022a15;
    --globus-green-light: #065a2d;
    --globus-orange: #EC6C32;
    --globus-orange-hover: #d85a22;
    
    /* Neutral Colors */
    --dark: #141414;
    --dark-secondary: #1a1a1a;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --grey-text: #6b7280;
    --grey-border: #e5e7eb;
    --grey-muted: #9ca3af;
    
    /* Typography - Manrope from Brand Guidelines */
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

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

.text-orange {
    color: var(--globus-orange);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 16px;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.heading-sm {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-text);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--globus-orange);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--globus-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 108, 50, 0.35);
}

.btn--secondary {
    background: var(--dark);
    color: var(--white);
}

.btn--secondary:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--grey-border);
}

.btn--outline:hover {
    border-color: var(--dark);
    background: var(--light);
}

.btn--white {
    background: var(--white);
    color: var(--dark);
}

.btn--white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.nav--scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    height: 36px;
    flex-shrink: 0;
}

.nav__logo img {
    height: 100%;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--grey-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--dark);
    background: var(--light);
}

.nav__link--active {
    color: var(--dark);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: 20px;
}

.nav__mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.nav__mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    position: relative;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle span::before,
.nav__mobile-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark);
    left: 0;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle span::before { top: -6px; }
.nav__mobile-toggle span::after { bottom: -6px; }

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(3, 76, 36, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero__card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.hero__circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero__circle--1 {
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero__circle--1 svg {
    width: 60%;
    height: 60%;
    color: var(--white);
}

.hero__circle--2 {
    background: var(--globus-orange);
    margin-left: -30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__circle--2::before {
    content: '';
    width: 60%;
    height: 60%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.hero__title {
    margin-bottom: 20px;
}

.hero__subtitle {
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Video Hero Variant */
.hero--video {
    padding: 0;
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero--video::before {
    display: none;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(3, 76, 36, 0.7) 0%,
        rgba(20, 20, 20, 0.8) 100%
    );
    z-index: 2;
}

.hero__content--video {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 160px 20px 100px;
}

.hero__content--video .hero__subtitle {
    max-width: 640px;
}

@media (max-width: 768px) {
    .hero--video {
        min-height: 90vh;
    }
    
    .hero__content--video {
        padding: 140px 20px 80px;
    }
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
    overflow: hidden;
}

.marquee__track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.marquee__item:hover {
    opacity: 1;
}

.marquee__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee__icon svg {
    width: 20px;
    height: 20px;
    color: var(--globus-green);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURE CARDS ===== */
.features__header {
    max-width: 600px;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-card--dark {
    background: var(--dark);
    color: var(--white);
}

.feature-card--dark .feature-card__title {
    color: var(--white);
}

.feature-card--dark .feature-card__text {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card--green {
    background: var(--globus-green);
    color: var(--white);
}

.feature-card--green .feature-card__title {
    color: var(--white);
}

.feature-card--green .feature-card__text {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card--video {
    position: relative;
}

.feature-card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.feature-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.3) 0%, rgba(20, 20, 20, 0.85) 100%);
    z-index: 1;
}

.feature-card__content {
    position: relative;
    z-index: 2;
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--globus-green);
}

.feature-card--dark .feature-card__icon,
.feature-card--green .feature-card__icon {
    background: rgba(255, 255, 255, 0.15);
}

.feature-card--dark .feature-card__icon svg,
.feature-card--green .feature-card__icon svg {
    color: var(--white);
}

.feature-card__eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 12px;
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--globus-orange);
    margin-top: auto;
}

.feature-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.feature-card:hover .feature-card__link svg {
    transform: translateX(4px);
}

/* ===== SERVICES CARDS ===== */
.services {
    background: var(--light);
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.service-card__content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: var(--white);
}

.service-card__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card__text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ===== VALUE PROPS ===== */
.value-props__list {
    max-width: 800px;
    margin: 0 auto;
}

.value-prop {
    padding: 48px 0;
    border-bottom: 1px solid var(--grey-border);
}

.value-prop:last-child {
    border-bottom: none;
}

.value-prop__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--grey-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-prop__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--grey-text);
    max-width: 600px;
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.ecosystem-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--grey-border);
}

.ecosystem-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ecosystem-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.ecosystem-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.ecosystem-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-text);
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 76, 36, 0.92) 0%, rgba(2, 42, 21, 0.95) 100%);
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta__text {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--dark);
    color: var(--white);
}

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

.stat {
    text-align: center;
}

.stat__value {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--globus-orange);
}

.stat__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGE HERO (Solutions/Contact) ===== */
.page-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--globus-green);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(236, 108, 50, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero__content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.page-hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 20px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* ===== SOLUTION ROWS ===== */
.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--grey-border);
}

.solution-row:last-child {
    border-bottom: none;
}

.solution-row--reverse {
    direction: rtl;
}

.solution-row--reverse > * {
    direction: ltr;
}

.solution__content {
    max-width: 520px;
}

.solution__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.solution__icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.solution__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.solution__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
    margin-bottom: 28px;
}

.solution__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.solution__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.solution__feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(3, 76, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution__feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--globus-green);
}

.solution__feature-text {
    font-size: 1rem;
    color: var(--grey-text);
}

.solution__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light);
}

.solution__visual video,
.solution__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    background: var(--light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__info {
    position: sticky;
    top: 120px;
}

.contact__header {
    margin-bottom: 48px;
}

.contact__title {
    margin-bottom: 16px;
}

.contact__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-method__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-method__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.contact-method__content p {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-bottom: 8px;
}

.contact-method__content a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--globus-green);
}

.contact-method__content a:hover {
    color: var(--globus-orange);
}

.contact__office {
    padding: 32px;
    background: var(--globus-green);
    border-radius: var(--radius-xl);
    color: var(--white);
    margin-bottom: 24px;
}

.contact__office h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact__office p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 32px;
    margin-bottom: 20px;
}

.footer__logo img {
    height: 100%;
    width: auto;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--globus-orange);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.footer__column-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer__link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features__grid,
    .services__grid {
        gap: 20px;
    }
    
    .ecosystem__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .solution-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-row--reverse {
        direction: ltr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact__info {
        position: static;
    }
    
    .footer__top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
    
    .nav__mobile-toggle {
        display: flex;
    }
    
    .nav__actions {
        gap: 8px;
    }
    
    .nav__actions .btn--sm {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero__card {
        padding: 40px 24px;
    }
    
    .hero__circle {
        width: 100px;
        height: 100px;
    }
    
    .features__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: 400px;
    }
    
    .ecosystem__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__brand {
        max-width: 100%;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav__actions .btn--sm {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .nav__actions {
        gap: 6px;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== SOLUTIONS PAGE SPECIFIC ===== */

/* Page Hero Updates */
.page-hero .heading-xl {
    color: var(--white);
}

.page-hero .eyebrow {
    color: var(--globus-orange);
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
}

/* Section Header */
.section__header {
    margin-bottom: 60px;
    max-width: 720px;
}

/* Clarity Cards Grid */
.clarity__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.clarity-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

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

.clarity-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.clarity-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.clarity-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.clarity-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--grey-text);
}

/* Solutions Grid (Video Cards) */
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.solution-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.solution-card__video-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.solution-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.solution-card__content {
    padding: 28px;
}

.solution-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.solution-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--grey-text);
}

/* How It Works Section */
.how-it-works__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.how-it-works__content {
    max-width: 480px;
}

.how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--globus-green);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__content {
    flex: 1;
    padding-top: 8px;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-text);
}

/* Ecosystem Features (Dark Section) */
.ecosystem-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.ecosystem-feature {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.ecosystem-feature:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.ecosystem-feature__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.ecosystem-feature__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

/* Excellence Cards */
.excellence__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.excellence-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition-base);
}

.excellence-card:hover {
    box-shadow: var(--shadow-lg);
}

.excellence-card--large {
    grid-column: 1;
    grid-row: 1 / 3;
    background: var(--globus-green);
    display: flex;
    align-items: center;
}

.excellence-card--large .excellence-card__title {
    color: var(--white);
}

.excellence-card--large .excellence-card__text {
    color: rgba(255,255,255,0.85);
}

.excellence-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.excellence-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-text);
}

/* Solutions Page Responsive */
@media (max-width: 1024px) {
    .clarity__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .how-it-works__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .ecosystem-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .excellence__grid {
        grid-template-columns: 1fr;
    }
    
    .excellence-card--large {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .clarity__grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-features__grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================================
   GLOBUS PAYMENTS - MAIN STYLESHEET
   Modern Corporate Design
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors from Guidelines */
    --globus-green: #034C24;
    --globus-green-dark: #022a15;
    --globus-green-light: #065a2d;
    --globus-orange: #EC6C32;
    --globus-orange-hover: #d85a22;
    
    /* Neutral Colors */
    --dark: #141414;
    --dark-secondary: #1a1a1a;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --grey-text: #6b7280;
    --grey-border: #e5e7eb;
    --grey-muted: #9ca3af;
    
    /* Typography - Manrope from Brand Guidelines */
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

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

.text-orange {
    color: var(--globus-orange);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 16px;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.heading-sm {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-text);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--globus-orange);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--globus-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 108, 50, 0.35);
}

.btn--secondary {
    background: var(--dark);
    color: var(--white);
}

.btn--secondary:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--grey-border);
}

.btn--outline:hover {
    border-color: var(--dark);
    background: var(--light);
}

.btn--white {
    background: var(--white);
    color: var(--dark);
}

.btn--white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.nav--scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    height: 36px;
    flex-shrink: 0;
}

.nav__logo img {
    height: 100%;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--grey-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--dark);
    background: var(--light);
}

.nav__link--active {
    color: var(--dark);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: 20px;
}

.nav__mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.nav__mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    position: relative;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle span::before,
.nav__mobile-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark);
    left: 0;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle span::before { top: -6px; }
.nav__mobile-toggle span::after { bottom: -6px; }

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(3, 76, 36, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero__card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.hero__circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero__circle--1 {
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero__circle--1 svg {
    width: 60%;
    height: 60%;
    color: var(--white);
}

.hero__circle--2 {
    background: var(--globus-orange);
    margin-left: -30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__circle--2::before {
    content: '';
    width: 60%;
    height: 60%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.hero__title {
    margin-bottom: 20px;
}

.hero__subtitle {
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Video Hero Variant */
.hero--video {
    padding: 0;
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero--video::before {
    display: none;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(3, 76, 36, 0.7) 0%,
        rgba(20, 20, 20, 0.8) 100%
    );
    z-index: 2;
}

.hero__content--video {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 160px 20px 100px;
}

.hero__content--video .hero__subtitle {
    max-width: 640px;
}

@media (max-width: 768px) {
    .hero--video {
        min-height: 90vh;
    }
    
    .hero__content--video {
        padding: 140px 20px 80px;
    }
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
    overflow: hidden;
}

.marquee__track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.marquee__item:hover {
    opacity: 1;
}

.marquee__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee__icon svg {
    width: 20px;
    height: 20px;
    color: var(--globus-green);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURE CARDS ===== */
.features__header {
    max-width: 600px;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-card--dark {
    background: var(--dark);
    color: var(--white);
}

.feature-card--dark .feature-card__title {
    color: var(--white);
}

.feature-card--dark .feature-card__text {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card--green {
    background: var(--globus-green);
    color: var(--white);
}

.feature-card--green .feature-card__title {
    color: var(--white);
}

.feature-card--green .feature-card__text {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card--video {
    position: relative;
}

.feature-card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.feature-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.3) 0%, rgba(20, 20, 20, 0.85) 100%);
    z-index: 1;
}

.feature-card__content {
    position: relative;
    z-index: 2;
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--globus-green);
}

.feature-card--dark .feature-card__icon,
.feature-card--green .feature-card__icon {
    background: rgba(255, 255, 255, 0.15);
}

.feature-card--dark .feature-card__icon svg,
.feature-card--green .feature-card__icon svg {
    color: var(--white);
}

.feature-card__eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 12px;
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--globus-orange);
    margin-top: auto;
}

.feature-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.feature-card:hover .feature-card__link svg {
    transform: translateX(4px);
}

/* ===== SERVICES CARDS ===== */
.services {
    background: var(--light);
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.service-card__content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: var(--white);
}

.service-card__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card__text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ===== VALUE PROPS ===== */
.value-props__list {
    max-width: 800px;
    margin: 0 auto;
}

.value-prop {
    padding: 48px 0;
    border-bottom: 1px solid var(--grey-border);
}

.value-prop:last-child {
    border-bottom: none;
}

.value-prop__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--grey-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-prop__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--grey-text);
    max-width: 600px;
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.ecosystem-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--grey-border);
}

.ecosystem-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ecosystem-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.ecosystem-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.ecosystem-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-text);
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 76, 36, 0.92) 0%, rgba(2, 42, 21, 0.95) 100%);
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta__text {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--dark);
    color: var(--white);
}

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

.stat {
    text-align: center;
}

.stat__value {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--globus-orange);
}

.stat__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGE HERO (Solutions/Contact) ===== */
.page-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--globus-green);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(236, 108, 50, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero__content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.page-hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--globus-orange);
    margin-bottom: 20px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* ===== SOLUTION ROWS ===== */
.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--grey-border);
}

.solution-row:last-child {
    border-bottom: none;
}

.solution-row--reverse {
    direction: rtl;
}

.solution-row--reverse > * {
    direction: ltr;
}

.solution__content {
    max-width: 520px;
}

.solution__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.solution__icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.solution__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.solution__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
    margin-bottom: 28px;
}

.solution__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.solution__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.solution__feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(3, 76, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution__feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--globus-green);
}

.solution__feature-text {
    font-size: 1rem;
    color: var(--grey-text);
}

.solution__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light);
}

.solution__visual video,
.solution__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    background: var(--light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__info {
    position: sticky;
    top: 120px;
}

.contact__header {
    margin-bottom: 48px;
}

.contact__title {
    margin-bottom: 16px;
}

.contact__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--grey-text);
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-method__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-method__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.contact-method__content p {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-bottom: 8px;
}

.contact-method__content a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--globus-green);
}

.contact-method__content a:hover {
    color: var(--globus-orange);
}

.contact__office {
    padding: 32px;
    background: var(--globus-green);
    border-radius: var(--radius-xl);
    color: var(--white);
    margin-bottom: 24px;
}

.contact__office h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact__office p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 32px;
    margin-bottom: 20px;
}

.footer__logo img {
    height: 100%;
    width: auto;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--globus-orange);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.footer__column-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer__link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__regulatory {
    padding: 24px 0;
    margin-top: 40px;
}

.footer__regulatory p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 900px;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features__grid,
    .services__grid {
        gap: 20px;
    }
    
    .ecosystem__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .solution-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-row--reverse {
        direction: ltr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact__info {
        position: static;
    }
    
    .footer__top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
    
    .nav__mobile-toggle {
        display: flex;
    }
    
    .nav__actions {
        gap: 8px;
    }
    
    .nav__actions .btn--sm {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero__card {
        padding: 40px 24px;
    }
    
    .hero__circle {
        width: 100px;
        height: 100px;
    }
    
    .features__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: 400px;
    }
    
    .ecosystem__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__brand {
        max-width: 100%;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav__actions .btn--sm {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .nav__actions {
        gap: 6px;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== SOLUTIONS PAGE SPECIFIC ===== */

/* Page Hero Updates */
.page-hero .heading-xl {
    color: var(--white);
}

.page-hero .eyebrow {
    color: var(--globus-orange);
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
}

/* Section Header */
.section__header {
    margin-bottom: 60px;
    max-width: 720px;
}

/* Clarity Cards Grid */
.clarity__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.clarity-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

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

.clarity-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--globus-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.clarity-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.clarity-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.clarity-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--grey-text);
}

/* Solutions Grid (Video Cards) */
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.solution-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.solution-card__video-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.solution-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.solution-card__content {
    padding: 28px;
}

.solution-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.solution-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--grey-text);
}

/* How It Works Section */
.how-it-works__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.how-it-works__content {
    max-width: 480px;
}

.how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--globus-green);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__content {
    flex: 1;
    padding-top: 8px;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-text);
}

/* Ecosystem Features (Dark Section) */
.ecosystem-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.ecosystem-feature {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.ecosystem-feature:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.ecosystem-feature__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.ecosystem-feature__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

/* Excellence Cards */
.excellence__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.excellence-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition-base);
}

.excellence-card:hover {
    box-shadow: var(--shadow-lg);
}

.excellence-card--large {
    grid-column: 1;
    grid-row: 1 / 3;
    background: var(--globus-green);
    display: flex;
    align-items: center;
}

.excellence-card--large .excellence-card__title {
    color: var(--white);
}

.excellence-card--large .excellence-card__text {
    color: rgba(255,255,255,0.85);
}

.excellence-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.excellence-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-text);
}

/* Solutions Page Responsive */
@media (max-width: 1024px) {
    .clarity__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .how-it-works__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .ecosystem-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .excellence__grid {
        grid-template-columns: 1fr;
    }
    
    .excellence-card--large {
        grid-column: 1;
        grid-row: auto;
    }
}

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

.footnote-ref {
    color: var(--globus-orange);
    text-decoration: none;
    font-size: 0.75em;
    margin-left: 2px;
}

.footnote-ref:hover {
    text-decoration: underline;
}

.footnote {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ===== COUNTRY SELECTOR ===== */
.country-selector {
    position: relative;
}

.country-selector__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.country-selector__toggle:hover {
    background: var(--light);
    border-color: var(--dark);
}

.country-selector__flag {
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.country-selector__chevron {
    color: var(--grey-text);
    transition: transform var(--transition-fast);
}

.country-selector.active .country-selector__chevron {
    transform: rotate(180deg);
}

.country-selector__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 100;
    min-width: 120px;
}

.country-selector.active .country-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-selector__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: background var(--transition-fast);
}

.country-selector__option:hover {
    background: var(--light);
}

/* Mobile country selector - hidden on desktop */
.country-selector--mobile {
    display: none;
}

@media (max-width: 768px) {
    /* Hide desktop country selector */
    .nav__actions .country-selector {
        display: none;
    }
    
    /* Show mobile country selector */
    .country-selector--mobile {
        display: flex;
    }
    
    .country-selector--mobile .country-selector__toggle {
        padding: 6px 10px;
    }
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid var(--grey-border);
        box-shadow: var(--shadow-lg);
        display: none;
        z-index: 999;
    }
    
    .nav__menu--open {
        display: flex;
    }
    
    .nav__menu .nav__link {
        padding: 14px 0;
        border-bottom: 1px solid var(--grey-border);
        width: 100%;
    }
    
    .nav__menu li:last-child .nav__link {
        border-bottom: none;
    }
    
    /* Hamburger animation */
    .nav__mobile-toggle.active span {
        background: transparent;
    }
    
    .nav__mobile-toggle.active span::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav__mobile-toggle.active span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}