.hero {
    background: #ffffff;
}
.hero__dark {
    position: relative;
    background: #141414;
    overflow: hidden;
    padding-top: 80px;
}
.hero__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 576px) {
    .hero__container {
        padding: 0 6rem;
    }
}
.hero__content {
    display: flex;
    gap: 3rem;
    flex-direction: column-reverse;
    padding: 3rem 0 1.5rem;
}
@media (min-width: 1024px) {
    .hero__content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 8.125rem 0 3rem;
    }
}
.hero__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    flex: 1;
}
.hero__text br {
    display: none;
}
@media (min-width: 768px) {
    .hero__text br {
        display: inline-block;
    }
}
.hero__heading {
    font-family: var(--font-family);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 125;
    color: #ffffff;
}
.hero__sub {
    font-family: var(--font-family);
    font-size: var(--font-size-big-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-big-body);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: rgba(255, 255, 255, 0.6);
}
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 17px 32px;
    border-radius: var(--radius-full);
    background: linear-gradient(149deg, #ffb432 0%, #ff6200 100%);
    font-family: var(--font-family);
    font-size: var(--font-size-big-body);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-big-body);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: #ffffff;
    text-decoration: none;
    align-self: flex-start;
    transition: opacity var(--transition-fast);
}
.hero__cta:hover {
    opacity: 0.9;
}
.hero__logo {
    width: 100%;
    display: flex;
    justify-content: center;
}
@media (min-width: 1024px) {
    .hero__logo {
        width: auto;
        display: block;
    }
}
.hero__logo img {
    max-width: 17rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 25px;
    filter: drop-shadow(0 10px 50px rgba(255, 98, 0, 0.9));
}
.hero__shelf {
    position: relative;
    height: 60px;
    background: #ffffff;
    border-radius: 48px 48px 0 0;
    z-index: 1;
}
.partners {
    background: #ffffff;
}
.partners__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.partners__heading {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h3);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 125;
    color: #78716d;
    text-align: center;
}
.partners__logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    gap: 2rem;
}
@media (min-width: 576px) {
    .partners__logos {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .partners__logos {
        grid-template-columns: repeat(6, 1fr);
    }
}
.partners__logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.ticker {
    background: linear-gradient(177deg, #ffb432 0%, #ff6200 100%);
    padding: 20px 0;
    overflow: hidden;
}
.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}
.ticker__text {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h3);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 125;
    color: #ffffff;
    white-space: nowrap;
    padding-right: 40px;
}
@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.solutions {
    background: #ffffff;
}
.solutions .section-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sol-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 20px;
}
.sol-card__img-wrap {
    position: relative;
    aspect-ratio: 2/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}
.sol-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sol-card__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
}
.sol-card__arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.sol-card__arrow svg {
    position: relative;
    z-index: 1;
}
.sol-card:hover .sol-card__arrow::before {
    opacity: 1;
}

.sol-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.sol-card__title {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h3);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 125;
    color: var(--color-fg);
    cursor: pointer;
}
.sol-card__desc {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-gray-50);
}
.how-it-works {
    background: #ffffff;
}
.how-it-works .section-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.steps__line {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 0;
    background: linear-gradient(90deg, rgba(230, 230, 230, 0) 0%, #e6e6e6 10%, #e6e6e6 90%, rgba(230, 230, 230, 0) 100%);
}
.step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.step__icon-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2rem;
}
@media (min-width: 768px) {
    .step__icon-wrap {
        justify-content: flex-start;
        height: 128px;
    }
}
.step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    box-shadow: 0 10px 15px -3px rgba(255, 98, 0, 0.2), 0 4px 6px -4px rgba(255, 98, 0, 0.2);
}
.step__label {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    margin-bottom: 8px;
    font-size: var(--font-size-tiny);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tiny);
    letter-spacing: 2.5px;
    color: var(--color-gray-50);
    text-transform: uppercase;
}
.step__title {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h4);
    color: var(--color-fg);
}
.step__desc {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    color: var(--color-gray-50);
    max-width: 75%;
}
@media (min-width: 1024px) {
    .step__desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .how-it-works .steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .how-it-works .steps__line {
        display: none;
    }
    .how-it-works .step__icon {
        width: 64px;
        height: 64px;
    }
}

.benefits {
    background: #ffffff;
}
.benefits .section-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 24px;
}
.ben-card {
    border-radius: 32px;
    overflow: hidden;
}
.ben-card--white {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 33px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
}
.ben-card--hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-column: 1/3;
    grid-row: 1/3;
    min-height: 616px;
    padding: 40px;
}
.ben-card--wide {
    grid-column: 1/3;
}
.ben-card__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.ben-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ben-card__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.ben-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: #fff0e6;
    z-index: 1;
}
.ben-card__icon--hero {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: rgba(255, 240, 230, 0.2);
}
.ben-card__title {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    font-size: 21px;
    font-weight: var(--font-weight-bold);
    line-height: 24px;
    color: var(--color-fg);
    z-index: 1;
}
.ben-card__title--light {
    color: #ffffff;
}
.ben-card__desc {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    color: #737373;
    z-index: 1;
}
.ben-card__desc--light {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .ben-card--hero {
        grid-column: 1/3;
        grid-row: 1/3;
        min-height: 460px;
    }
    .ben-card--wide {
        grid-column: 1/2;
    }
}
@media (max-width: 767px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    .ben-card--hero {
        grid-column: 1;
        grid-row: auto;
        min-height: 280px;
    }
    .ben-card--wide {
        grid-column: 1;
    }
}

.industries {
    background: #ffffff;
}
.industries .section-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.industries__header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
.industries__sub {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-gray-50);
}
.industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ind-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    background: #f5f5f5;
    border-radius: 32px;
    padding: 32px;
}
.ind-card--cta {
    background: linear-gradient(135.77deg, rgb(255, 180, 50) 0%, rgb(255, 98, 0) 100%);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 8px;
    padding: 36px;
}
.ind-card__top {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
.ind-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgb(255, 180, 50) 0%, rgb(255, 98, 0) 100%);
    flex-shrink: 0;
}
.ind-card__cta-circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 88px;
    width: 64px;
    padding-bottom: 24px;
}
.ind-card__cta-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
}
.ind-card__title {
    font-family: var(--font-family);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h4);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-fg);
    margin-top: 12px;
}
.ind-card__title--white {
    color: #ffffff;
    text-align: center;
    margin-top: 0;
}
.ind-card__desc {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-gray-50);
}
.ind-card__desc--white {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}
.ind-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-small);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}
.ind-card__link:hover {
    opacity: 0.75;
}

.geos {
    background: transparent;
}
.geos .section-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.geos__card {
    background: #141414;
    border-radius: 32px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    min-height: 570px;
    overflow: hidden;
    align-items: start;
}
.geos__map-col {
    display: flex;
    flex-direction: column;
}
.geos__card-heading {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h2);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 125, "opsz" 12;
    color: #ffffff;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}
.geos__map {
    display: block;
    width: 100%;
    height: auto;
}

.geos__overlay {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    max-height: 490px;
}
.geos__tabs {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.geos__tab {
    padding: 9px 21px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.geos__tab--active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    padding: 9px 20px;
}
.geos__tab:not(.geos__tab--active):hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.geos__panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.geos__country {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.geos__country-hd {
    display: flex;
    align-items: center;
    gap: 8px;
}
.geos__country-name {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    line-height: 24px;
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: #ffffff;
}
.geos__methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.geos__method {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 3px 11px;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: var(--font-weight-normal);
    line-height: 16px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}
.geos__regions {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}
@media screen and (min-width: 1025px) {
    .geos__regions {
        grid-template-columns: repeat(3, 1fr);
    }
}
.geos__region {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.geos__region-heading {
    font-family: var(--font-family);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h4);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-fg);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 13px;
}
.geos__region-link {
    color: inherit;
    text-decoration: none;
}
.geos__region-link:hover {
    text-decoration: underline;
}
.geos__country-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.geos__country-entry {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.geos__country-entry-hd {
    display: flex;
    align-items: center;
    gap: 8px;
}
.geos__country-link {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    line-height: 24px;
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-fg);
    text-decoration: none;
}
.geos__country-link:hover {
    text-decoration: underline;
}
.geos__entry-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.geos__entry-method {
    background: var(--color-secondary);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    line-height: 18px;
    color: #737373;
    white-space: nowrap;
}
.explore-cta {
    background: var(--color-gray-5);
}
.explore-cta__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
.explore-cta__illustration {
    flex-shrink: 0;
    width: 312px;
    object-fit: contain;
}
.explore-cta__content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}
.explore-cta__heading {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-size: 30px;
    font-weight: var(--font-weight-extrabold);
    line-height: 36px;
    font-variation-settings: "YTLC" 540, "wdth" 125, "opsz" 12;
    color: var(--color-fg);
}
.explore-cta__sub {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    max-width: 512px;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    font-variation-settings: "wdth" 100;
    color: rgba(20, 20, 20, 0.7);
}
.explore-cta__btn {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 32px;
    border-radius: var(--radius-full);
    background: linear-gradient(139.84deg, rgb(255, 180, 50) 0%, rgb(255, 98, 0) 100%);
    font-size: 21px;
    font-weight: var(--font-weight-normal);
    line-height: 28px;
    font-variation-settings: "wdth" 100;
    color: #ffffff;
    text-decoration: none;
    transition: opacity var(--transition-fast);
    width: 100%;
}
@media (min-width: 768px) {
    .explore-cta__btn {
        width: auto;
        align-self: flex-start;
    }
}
.explore-cta__btn:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .explore-cta__inner {
        gap: 40px;
    }
    .explore-cta__illustration {
        width: 240px;
    }
}
@media (max-width: 767px) {
    .explore-cta__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .explore-cta__illustration {
        width: 160px;
    }
    .explore-cta__heading, .explore-cta__sub {
        text-align: center;
    }
}

.trust {
    position: relative;
    z-index: 1;
    background: #ffffff;
}
.trust .section-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.trust__header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    text-align: center;
}
.trust__sub {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-gray-50);
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 33px;
    border: 1px solid #e6e6e6;
    border-radius: 32px;
    text-align: center;
    gap: 4px;
}
.trust-card__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    padding-bottom: 20px;
}
.trust-card__logo-wrap img {
    height: 64px;
    width: auto;
    object-fit: contain;
}
.trust-card__title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-extrabold);
    line-height: 28px;
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-fg);
}
.trust-card__sub {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    line-height: 21px;
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: #737373;
}
.newsletter {
    position: relative;
    z-index: 2;
    background: #f5f5f5;
    overflow: visible;

    clip-path: inset(-2.5rem 0 0 0);
}
.newsletter .section-container {
    padding-top: 0;
    padding-bottom: 0;
}
.newsletter__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, clamp(240px, 36vw, 596px));
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    width: 100%;
}
.newsletter__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    min-width: 0;
    padding: 60px 0;
    justify-content: center;
}
.newsletter__heading {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h3);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 125, "opsz" 12;
    color: var(--color-fg);
    text-align: right;
}
.newsletter__heading--accent {
    color: var(--color-primary);
}
.newsletter__sub {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: #737373;
    text-align: right;
}
.newsletter__cta {
    padding-top: 24px;
}
.newsletter__linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15.5px 32px;
    border-radius: var(--radius-full);
    background: var(--color-fg);
    font-family: var(--font-family);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
    line-height: 24px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}
.newsletter__linkedin-btn:hover {
    opacity: 0.85;
}
.newsletter__image-wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 596px;
    min-width: 0;
    height: 400px;
    position: relative;
    overflow: visible;
    grid-column: 2;
    align-self: start;
    justify-self: stretch;
}
.newsletter__image-card {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(442px, 100%);
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.newsletter__image-card img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .newsletter__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, clamp(200px, 40vw, 380px));
    }
}

@media (max-width: 767px) {
    .newsletter {
        clip-path: inset(0);
    }
    .newsletter .section-container {
        padding-left: 0;
        padding-right: 0;
    }
    .newsletter__inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }
    .newsletter__content {
        align-items: flex-start;
        padding: 40px 20px 32px;
        gap: 16px;
    }
    .newsletter__heading {
        text-align: left;
        font-size: 26px;
    }
    .newsletter__sub {
        text-align: left;
    }
    .newsletter__image-wrap {
        grid-column: auto;
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 0;
        align-self: stretch;
        justify-self: stretch;
        padding: 32px 20px 16px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .newsletter__image-card {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        width: min(380px, 100%);
        max-width: 100%;
        margin: 0 auto;
    }
}

.news {
    background: #ffffff;
}
.news .section-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.news__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news__heading {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h2);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 125, "opsz" 12;
    color: var(--color-fg);
}
.news__see-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 33px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: var(--font-size-big-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-big-body);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-fg);
    text-decoration: none;
    transition: border-color var(--transition-fast);
}
.news__see-all:hover {
    border-color: var(--color-fg);
}
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    overflow: hidden;
    padding: 1px;
    text-decoration: none;
    transition: box-shadow var(--transition-base);
}
.news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.news-card__img-wrap {
    width: 100%;
    aspect-ratio: 387/242;
    overflow: hidden;
    border-radius: 23px 23px 0 0;
}
.news-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}
.news-card:hover .news-card__img {
    transform: scale(1.03);
}
.news-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 32px 34px;
    flex: 1;
}
.news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-card__tag {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-fg);
}
.news-card__date-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}
.news-card__date {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: var(--font-weight-normal);
    line-height: 16px;
    color: #737373;
}
.news-card__title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-extrabold);
    line-height: 28px;
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 100;
    color: var(--color-fg);
    padding-top: 4px;
}
.news-card__desc {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    line-height: 26px;
    color: #737373;
}
.news-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: 21px;
    color: var(--color-fg);
    margin-top: auto;
}

@media (max-width: 1024px) {
    :root {
        --font-size-h1: 46px;
        --font-size-h2: 36px;
        --font-size-h3: 26px;
        --font-size-h4: 22px;
        --font-size-h5: 20px;
        --font-size-big-body: 18px;
    }
    .section-container {
        padding: 56px 48px;
    }

    .solutions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ind-card {
        height: auto;
        min-height: 260px;
    }

    .geos__card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .geos__overlay {
        max-height: none;
    }
    .geos__regions {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --font-size-h1: 32px;
        --font-size-h2: 26px;
        --font-size-h3: 22px;
        --font-size-h4: 18px;
        --font-size-h5: 16px;
        --font-size-big-body: 17px;
        --font-size-body: 16px;
    }

    .section-container {
        padding: 48px 20px;
    }

    .hero__dark {
        padding-top: 73px;
    }
    .hero__text {
        gap: 16px;
    }
    .hero__heading {
        font-size: 32px;
        line-height: 1.1;
    }
    .hero__sub {
        font-size: 16px;
    }
    .hero__cta {
        font-size: 16px;
        padding: 13px 24px;
    }
    .hero__shelf {
        height: 28px;
        border-radius: 20px 20px 0 0;
    }

    .partners__inner {
        gap: 20px;
        padding: 24px 20px;
    }
    .partners__heading {
        font-size: 14px;
        text-align: center;
    }

    .ticker {
        padding: 14px 0;
    }

    .solutions__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industries__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ind-card {
        height: auto;
        min-height: 0;
        padding: 24px;
    }

    .geos__card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
        min-height: auto;
        border-radius: 24px;
    }
    .geos__overlay {
        max-height: none;
        backdrop-filter: none;
    }
    .geos__tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    .geos__regions {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .trust-card {
        padding: 24px 16px;
    }
    .trust__header {
        padding: 0;
    }

    .news__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
    position: absolute;
    left: 0;
    top: 0;
}
.leaflet-container {
    overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.leaflet-tile::selection {
    background: transparent;
}

.leaflet-safari .leaflet-tile {
    image-rendering: -webkit-optimize-contrast;
}

.leaflet-safari .leaflet-tile-container {
    width: 1600px;
    height: 1600px;
    -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
    display: block;
}

.leaflet-container .leaflet-overlay-pane svg {
    max-width: none !important;
    max-height: none !important;
}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
    max-width: none !important;
    max-height: none !important;
    width: auto;
    padding: 0;
}

.leaflet-container img.leaflet-tile {

    mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
    -ms-touch-action: pan-x pan-y;
    touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
    -ms-touch-action: pinch-zoom;

    touch-action: none;
    touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    -ms-touch-action: none;
    touch-action: none;
}
.leaflet-container {
    -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
    -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
    filter: inherit;
    visibility: hidden;
}
.leaflet-tile-loaded {
    visibility: inherit;
}
.leaflet-zoom-box {
    width: 0;
    height: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 800;
}

.leaflet-overlay-pane svg {
    -moz-user-select: none;
}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
    width: 1px;
    height: 1px;
}
.lvml {
    behavior: url(#default#VML);
    display: inline-block;
    position: absolute;
}

.leaflet-control {
    position: relative;
    z-index: 800;
    pointer-events: visiblePainted;
    pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
}
.leaflet-top {
    top: 0;
}
.leaflet-right {
    right: 0;
}
.leaflet-bottom {
    bottom: 0;
}
.leaflet-left {
    left: 0;
}
.leaflet-control {
    float: left;
    clear: both;
}
.leaflet-right .leaflet-control {
    float: right;
}
.leaflet-top .leaflet-control {
    margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
    margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
    margin-left: 10px;
}
.leaflet-right .leaflet-control {
    margin-right: 10px;
}

.leaflet-fade-anim .leaflet-popup {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
    opacity: 1;
}
.leaflet-zoom-animated {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}
svg.leaflet-zoom-animated {
    will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
    -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
    transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
    visibility: hidden;
}

.leaflet-interactive {
    cursor: pointer;
}
.leaflet-grab {
    cursor: -webkit-grab;
    cursor:    -moz-grab;
    cursor:         grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
    cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
    cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor:    -moz-grabbing;
    cursor:         grabbing;
}

.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
    pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
    pointer-events: visiblePainted;
    pointer-events: auto;
}

.leaflet-container {
    background: #ddd;
    outline-offset: 1px;
}
.leaflet-container a {
    color: #0078A8;
}
.leaflet-zoom-box {
    border: 2px dotted #38f;
    background: rgba(255,255,255,0.5);
}

.leaflet-container {
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.5;
}

.leaflet-bar {
    box-shadow: 0 1px 5px rgba(0,0,0,0.65);
    border-radius: 4px;
}
.leaflet-bar a {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
    background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
    cursor: default;
    background-color: #f4f4f4;
    color: #bbb;
}

.leaflet-touch .leaflet-bar a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font: bold 18px "Lucida Console", Monaco, monospace;
    text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
    font-size: 22px;
}

.leaflet-control-layers {
    box-shadow: 0 1px 5px rgba(0,0,0,0.4);
    background: #fff;
    border-radius: 5px;
}
.leaflet-control-layers-toggle {
    background-image: url(../assets/layers.png);
    width: 36px;
    height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
    background-image: url(../assets/layers-2x.png);
    background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
    width: 44px;
    height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
    display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
    display: block;
    position: relative;
}
.leaflet-control-layers-expanded {
    padding: 6px 10px 6px 6px;
    color: #333;
    background: #fff;
}
.leaflet-control-layers-scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 5px;
}
.leaflet-control-layers-selector {
    margin-top: 2px;
    position: relative;
    top: 1px;
}
.leaflet-control-layers label {
    display: block;
    font-size: 13px;
    font-size: 1.08333em;
}
.leaflet-control-layers-separator {
    height: 0;
    border-top: 1px solid #ddd;
    margin: 5px -10px 5px -6px;
}

.leaflet-default-icon-path {
    background-image: url(../assets/marker-icon.png);
}

.leaflet-container .leaflet-control-attribution {
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
    padding: 0 5px;
    color: #333;
    line-height: 1.4;
}
.leaflet-control-attribution a {
    text-decoration: none;
}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
    text-decoration: underline;
}
.leaflet-attribution-flag {
    display: inline !important;
    vertical-align: baseline !important;
    width: 1em;
    height: 0.6669em;
}
.leaflet-left .leaflet-control-scale {
    margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
    margin-bottom: 5px;
}
.leaflet-control-scale-line {
    border: 2px solid #777;
    border-top: none;
    line-height: 1.1;
    padding: 2px 5px 1px;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px #fff;
}
.leaflet-control-scale-line:not(:first-child) {
    border-top: 2px solid #777;
    border-bottom: none;
    margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
    border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    border: 2px solid rgba(0,0,0,0.2);
    background-clip: padding-box;
}

.leaflet-popup {
    position: absolute;
    text-align: center;
    margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
    padding: 1px;
    text-align: left;
    border-radius: 12px;
}
.leaflet-popup-content {
    margin: 13px 24px 13px 20px;
    line-height: 1.3;
    font-size: 13px;
    font-size: 1.08333em;
    min-height: 1px;
}
.leaflet-popup-content p {
    margin: 17px 0;
    margin: 1.3em 0;
}
.leaflet-popup-tip-container {
    width: 40px;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-top: -1px;
    margin-left: -20px;
    overflow: hidden;
    pointer-events: none;
}
.leaflet-popup-tip {
    width: 17px;
    height: 17px;
    padding: 1px;

    margin: -10px auto 0;
    pointer-events: auto;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: white;
    color: #333;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-container a.leaflet-popup-close-button {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    text-align: center;
    width: 24px;
    height: 24px;
    font: 16px/24px Tahoma, Verdana, sans-serif;
    color: #757575;
    text-decoration: none;
    background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
    color: #585858;
}
.leaflet-popup-scrolled {
    overflow: auto;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
    -ms-zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
    width: 24px;
    margin: 0 auto;

    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
    border: 1px solid #999;
}

.leaflet-div-icon {
    background: #fff;
    border: 1px solid #666;
}

.leaflet-tooltip {
    position: absolute;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #222;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.leaflet-tooltip.leaflet-interactive {
    cursor: pointer;
    pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    position: absolute;
    pointer-events: none;
    border: 6px solid transparent;
    background: transparent;
    content: "";
}

.leaflet-tooltip-bottom {
    margin-top: 6px;
}
.leaflet-tooltip-top {
    margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
    left: 50%;
    margin-left: -6px;
}
.leaflet-tooltip-top:before {
    bottom: 0;
    margin-bottom: -12px;
    border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
    top: 0;
    margin-top: -12px;
    margin-left: -6px;
    border-bottom-color: #fff;
}
.leaflet-tooltip-left {
    margin-left: -6px;
}
.leaflet-tooltip-right {
    margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    top: 50%;
    margin-top: -6px;
}
.leaflet-tooltip-left:before {
    right: 0;
    margin-right: -12px;
    border-left-color: #fff;
}
.leaflet-tooltip-right:before {
    left: 0;
    margin-left: -12px;
    border-right-color: #fff;
}

@media print {

    .leaflet-control {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

.geos-page {
    --geos-bg: #141414;
    --geos-map-height: 650px;
    --geos-sidebar-width: 340px;
    --geos-card-padding: 40px;
    --geos-card-gap: 32px;
    --geos-map-pad-top: 56px;
    --geos-map-gap-sidebar: 32px;
    --geos-list-max-height: 360px;
}
@media (max-width: 1023px) {
    .geos-page {
        --geos-map-height: clamp(260px, 52vw, 380px);
        --geos-map-pad-top: 12px;
        --geos-map-gap-sidebar: 16px;
        --geos-card-padding: 24px;
        --geos-card-gap: 20px;
        --geos-list-max-height: min(420px, 50vh);
    }
}
@media (max-width: 767px) {
    .geos-page {
        --geos-map-height: clamp(220px, 58vw, 320px);
        --geos-card-padding: 20px;
        --geos-card-gap: 16px;
        --geos-list-max-height: min(380px, 48vh);
    }
}
.geos-page .geos-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr var(--geos-sidebar-width);
    grid-template-rows: minmax(var(--geos-map-height), auto);
    gap: var(--geos-card-gap);
    align-items: start;
    min-height: calc(var(--geos-map-height) + var(--geos-card-padding) * 2);
    padding: var(--geos-card-padding);
    border-radius: 32px;
    background: var(--geos-bg);
    overflow: hidden;
}
@media (max-width: 1023px) {
    .geos-page .geos-panel {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        align-items: stretch;
        min-height: 0;
        border-radius: 24px;
    }
}
@media (max-width: 767px) {
    .geos-page .geos-panel {
        border-radius: 20px;
    }
}
.geos-page .geos-panel--stacked {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
}
.geos-page .geos-panel__heading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    grid-column: 1/-1;
    grid-row: 1;
    margin: 0;
    pointer-events: none;
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-size: var(--font-size-h2, clamp(2rem, 4vw, 3rem));
    font-weight: var(--font-weight-extrabold, 800);
    line-height: var(--line-height-h2, 1.1);
    font-variation-settings: "wdth" 125, "opsz" 12;
    color: #ffffff;
}
@media (max-width: 1023px) {
    .geos-page .geos-panel__heading {
        position: static;
        grid-column: 1;
        grid-row: 1;
        pointer-events: auto;
        margin-bottom: 4px;
    }
}
.geos-page .geos-panel__map-col {
    grid-column: 1/-1;
    grid-row: 1;
    min-width: 0;
    height: var(--geos-map-height);
    background: var(--geos-bg);
}
@media (max-width: 1023px) {
    .geos-page .geos-panel__map-col {
        grid-row: 2;
        height: auto;
    }
}
.geos-page .geos-panel__map {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: var(--geos-map-height);
    overflow: hidden;
    background: var(--geos-bg);
}
.geos-page .geos-panel__map:empty::before {
    content: "";
    display: block;
    min-height: inherit;
}
@media (max-width: 1023px) {
    .geos-page .geos-panel__map {
        min-height: var(--geos-map-height);
        height: var(--geos-map-height);
    }
}
.geos-page .geos-panel__map svg.datamap {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--geos-bg);
}
.geos-page .geos-panel__map .datamaps-subunit {
    outline: none;
}
.geos-page .geos-panel__overlay {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
    flex-direction: column;
    gap: 20px;
    width: var(--geos-sidebar-width);
    height: var(--geos-map-height);
    max-height: var(--geos-map-height);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}
@media (max-width: 1023px) {
    .geos-page .geos-panel__overlay {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        height: auto;
        max-height: none;
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .geos-page .geos-panel__overlay {
        padding: 16px;
        gap: 16px;
    }
}
.geos-page .geos-tabs {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 6px;
}
.geos-page .geos-tab {
    padding: 9px 17px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full, 999px);
    background: transparent;
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-size: 14px;
    font-weight: var(--font-weight-semibold, 600);
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.geos-page .geos-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Regions */
.geos__region--europe {
    grid-column: 1 / -1;
}

.geos__region--europe .geos__country-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .geos__region--europe .geos__country-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media screen and (max-width: 767px) {
    .geos__region--europe .geos__country-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.geos__region--europe .geos__country-entry {
    margin-bottom: 0;
}

.geos__region {
    min-width: 0;
}

.geos-page .geos-tab__arrow {
    color: inherit;
    text-decoration: none;
    opacity: .7;
    transition: .2s;
}

.geos-page .geos-tab__arrow:hover {
    opacity: 1;
    color: #ff6200;
}
@media (hover: hover) and (pointer: fine) {
    .geos-page .geos-tab:hover:not(.geos-page .geos-tab--active) {
        border-color: rgba(255, 255, 255, 0.4);
        color: rgba(255, 255, 255, 0.8);
    }
}
.geos-page .geos-tab--active {
    padding: 9px 16px;
    border-color: transparent;
    background: var(--gradient-primary, linear-gradient(135deg, #ffb432 0%, #ff6200 100%));
    color: #ffffff;
}
.geos-page .geos-country-list {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    list-style: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
@media (max-width: 1023px) {
    .geos-page .geos-country-list {
        max-height: var(--geos-list-max-height);
    }
}
.geos-page .geos-country-list::-webkit-scrollbar {
    width: 4px;
}
.geos-page .geos-country-list::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
}
.geos-page .geos-country {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.geos-page .geos-country__head {
    display: flex;
    gap: 8px;
    align-items: center;
}
.geos-page .geos-country__flag {
    flex-shrink: 0;
    display: block;
    width: 16px;
    height: 12px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.geos-page .geos-country__flag img {
    display: block;
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}
.geos-page .geos-country__name {
    flex: 1;
    min-width: 0;
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-size: 18px;
    font-weight: var(--font-weight-bold, 700);
    line-height: 24px;
    font-variation-settings: "wdth" 100;
    color: #ffffff;
}
.geos-country__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.geos-country__link:hover .geos-country__name {
    color: #ff6200;
}
@media (max-width: 767px) {
    .geos-page .geos-country__name {
        font-size: 16px;
        line-height: 22px;
    }
}
.geos-page .geos-country__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
}
.geos-page .geos-country__tag {
    padding: 3px 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full, 999px);
    background: rgba(255, 255, 255, 0.1);
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature);
    font-size: 12px;
    font-weight: var(--font-weight-normal, 400);
    line-height: 16px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}
