.team-loading-skeleton {
    padding: 80px 0;
    min-height: 400px
}

.team-loading-content {
    max-width: 1200px;
    padding: 0 65px;
    gap: 60px
}

.desktop-team {
    background: var(--secondary-color);
    padding: 80px 0;
    width: 100%
}

.desktop-team-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.desktop-team-header {
    text-align: center
}

.desktop-team-title {
    font-family: var(--font-inria-sans);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-green);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 16px
}

.desktop-team-subtitle {
    font-family: var(--font-inria-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--accent-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto
}

.desktop-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 60px;
    gap: 60px;
    padding: 40px 0;
    justify-items: center;
    align-items: start
}

.desktop-team-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%
}

.desktop-member-image-container {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center
}

.desktop-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-green);
    background-color: var(--primary-color)
}

.desktop-member-info {
    width: 100%
}

.desktop-member-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px
}

.desktop-member-designation,
.desktop-member-name {
    font-family: var(--font-inria-sans);
    color: var(--accent-color)
}

.desktop-member-designation {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0
}

@media(max-width:1024px) {
    .desktop-team-container {
        padding: 0 40px
    }
    .desktop-team-title {
        font-size: 32px
    }
    .desktop-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 32px
    }
    .desktop-member-image-container {
        width: 100px;
        height: 100px
    }
    .team-loading-skeleton {
        padding: 60px 0;
        min-height: 350px
    }
    .team-loading-content {
        padding: 0 40px;
        gap: 50px
    }
}

@media(max-width:768px) {
    .desktop-team {
        padding: 60px 0
    }
    .desktop-team-container {
        padding: 0 24px
    }
    .desktop-team-title {
        font-size: 32px
    }
    .desktop-team-subtitle {
        font-size: 14px
    }
    .desktop-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 24px
    }
    .desktop-member-image-container {
        width: 80px;
        height: 80px
    }
    .team-loading-skeleton {
        padding: 50px 0;
        min-height: 300px
    }
    .team-loading-content {
        padding: 0 24px;
        gap: 40px
    }
}

.faq-loading-skeleton {
    padding: 80px 0;
    min-height: 400px
}

.faq-loading-content {
    max-width: 1200px;
    padding: 0 65px;
    gap: 60px
}

.desktop-faq {
    background: var(--background);
    padding: 80px 0;
    width: 100%
}

.desktop-faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 65px
}

.desktop-faq-header {
    text-align: center;
    margin-bottom: 60px
}

.desktop-faq-title {
    font-family: var(--font-inria-sans);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 16px
}

.desktop-faq-subtitle {
    font-family: var(--font-inria-sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto
}

.desktop-faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto
}

.desktop-faq-item {
    border-bottom: 1px solid var(--accent-color);
    overflow: hidden;
    background: var(--background);
    transition: all .3s ease
}

.desktop-faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background-color .2s ease
}

.desktop-faq-question-text {
    font-family: var(--font-inria-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    flex: 1 1
}

.desktop-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transition: all .3s ease
}

.desktop-faq-icon-closed,
.desktop-faq-icon-open {
    transition: transform .3s ease
}

.desktop-faq-item.open .desktop-faq-icon {
    background-color: rgba(0, 0, 0, 0);
    color: var(--primary-color);
    border: 1px solid var(--accent-color)
}

.desktop-faq-item.open .desktop-faq-icon-closed {
    transform: rotate(180deg)
}

.desktop-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease
}

.desktop-faq-answer.open {
    max-height: 500px;
    padding: 0 0 24px
}

.desktop-faq-answer-text {
    font-family: var(--font-inria-sans);
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0
}

@media(max-width:1024px) {
    .desktop-faq-container {
        padding: 0 40px
    }
    .desktop-faq-title {
        font-size: 32px
    }
    .desktop-faq-subtitle {
        font-size: 16px
    }
    .faq-loading-skeleton {
        padding: 60px 0;
        min-height: 350px
    }
    .faq-loading-content {
        padding: 0 40px;
        gap: 50px
    }
}

@media(max-width:768px) {
    .desktop-faq {
        padding: 60px 0
    }
    .desktop-faq-container {
        padding: 0 24px
    }
    .desktop-faq-title {
        font-size: 32px
    }
    .desktop-faq-subtitle {
        font-size: 14px
    }
    .desktop-faq-question {
        padding: 20px 24px
    }
    .desktop-faq-question-text {
        font-size: 16px
    }
    .desktop-faq-answer.open {
        padding: 0 24px 20px
    }
    .desktop-faq-answer-text {
        font-size: 14px
    }
    .faq-loading-skeleton {
        padding: 50px 0;
        min-height: 300px
    }
    .faq-loading-content {
        padding: 0 24px;
        gap: 40px
    }
}

.team-loading-skeleton {
    background: var(--secondary-color);
    padding: 60px 0;
    width: 100%;
    min-height: 350px;
    opacity: 0;
    animation: fadeIn .3s ease-in-out .1s forwards
}

.team-loading-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.mobile-team {
    background: var(--secondary-color);
    padding: 64px 0;
    width: 100%
}

.mobile-team-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px
}

.mobile-team-header {
    text-align: center;
    margin-bottom: 32px
}

.mobile-team-title {
    font-family: var(--font-inria-sans);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-green);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 8px
}

.mobile-team-subtitle {
    font-family: var(--font-inria-sans);
    font-size: 16px;
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1.5;
    margin: 0;
    text-align: center
}

.mobile-team-staggered-layout {
    width: 100%;
    margin-top: 40px
}

.mobile-team-row {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: flex-end
}

.mobile-team-row.top-row {
    margin-bottom: 20px;
    justify-content: center;
    gap: 32px
}

.mobile-team-row.bottom-row {
    z-index: 1;
    justify-content: center
}

.mobile-team-spacer {
    width: 120px;
    flex-shrink: 0
}

.mobile-team-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 120px;
    flex-shrink: 0
}

.mobile-team-stagger-1 {
    transform: translateX(-60px);
    margin-right: -40px
}

.mobile-team-stagger-2 {
    transform: translateX(60px);
    margin-left: -40px
}

.mobile-member-image-container {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--secondary-green);
    background-color: var(--primary-color)
}

.mobile-member-info {
    width: 100%
}

.mobile-member-name {
    font-weight: 700;
    margin: 0 0 2px
}

.mobile-member-designation,
.mobile-member-name {
    font-family: var(--font-inria-sans);
    font-size: 14px;
    color: var(--accent-color)
}

.mobile-member-designation {
    font-weight: 300;
    margin: 0
}

@media(max-width:480px) {
    .mobile-team {
        padding: 64px 0
    }
    .mobile-team-container {
        padding: 0 16px
    }
    .mobile-team-title {
        font-size: 24px
    }
    .mobile-team-subtitle {
        font-size: 14px
    }
    .mobile-team-staggered-layout {
        margin-top: 30px
    }
    .mobile-team-row.top-row {
        margin-bottom: 32px
    }
    .mobile-member-image-container {
        width: 70px;
        height: 70px;
        margin-bottom: 12px
    }
    .mobile-member-image {
        border: 2px solid var(--secondary-green)
    }
    .mobile-member-name {
        font-size: 14px;
        letter-spacing: -.3px
    }
    .mobile-member-designation {
        font-size: 14px
    }
    .mobile-team-stagger-1 {
        transform: translateX(-50px);
        margin-right: -35px
    }
    .mobile-team-stagger-2 {
        transform: translateX(50px);
        margin-left: -35px
    }
    .team-loading-skeleton {
        padding: 40px 0;
        min-height: 300px
    }
    .team-loading-content {
        padding: 0 16px;
        gap: 30px
    }
}

.faq-loading-skeleton {
    background: var(--background);
    padding: 60px 0;
    width: 100%;
    min-height: 350px;
    opacity: 0;
    animation: fadeIn .3s ease-in-out .1s forwards
}

.faq-loading-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.mobile-faq {
    background: var(--background);
    padding: 60px 0;
    width: 100%
}

.mobile-faq-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px
}

.mobile-faq-header {
    text-align: center;
    margin-bottom: 40px
}

.mobile-faq-title {
    font-family: var(--font-inria-sans);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 12px
}

.mobile-faq-subtitle {
    font-family: var(--font-inria-sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    text-align: center
}

.mobile-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.mobile-faq-item {
    border-bottom: 1px solid var(--accent-color);
    overflow: hidden;
    background: var(--background);
    transition: all .3s ease
}

.mobile-faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background-color .2s ease
}

.mobile-faq-question-text {
    font-family: var(--font-inria-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    flex: 1 1
}

.mobile-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transition: all .3s ease
}

.mobile-faq-icon-closed,
.mobile-faq-icon-open {
    transition: transform .3s ease
}

.mobile-faq-item.open .mobile-faq-icon {
    background-color: rgba(0, 0, 0, 0);
    color: var(--primary-color);
    border: 1px solid var(--accent-color)
}

.mobile-faq-item.open .mobile-faq-icon-closed {
    transform: rotate(180deg)
}

.mobile-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease
}

.mobile-faq-answer.open {
    max-height: 500px;
    padding: 0 0 20px
}

.mobile-faq-answer-text {
    font-family: var(--font-inria-sans);
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0
}

@media(max-width:480px) {
    .mobile-faq {
        padding: 40px 0
    }
    .mobile-faq-container {
        padding: 0 16px
    }
    .mobile-faq-title {
        font-size: 24px
    }
    .mobile-faq-subtitle {
        font-size: 16px
    }
    .mobile-faq-question {
        padding: 16px 0
    }
    .mobile-faq-question-text {
        font-size: 16px
    }
    .mobile-faq-icon {
        width: 32px;
        height: 32px
    }
    .mobile-faq-answer.open {
        max-height: 500px;
        padding: 0 0 16px
    }
    .mobile-faq-answer-text {
        font-size: 16px
    }
    .faq-loading-skeleton {
        padding: 40px 0;
        min-height: 300px
    }
    .faq-loading-content {
        padding: 0 16px;
        gap: 30px
    }
}

.desktop-banner {
    background: var(--background);
    width: 100%;
    position: relative;
    overflow: hidden
}

.desktop-banner-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 80px 0
}

.desktop-banner-content {
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 600px
}

.desktop-banner-left {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 40px
}

.desktop-banner-left.glp-landing {
    gap: 20px
}

.desktop-banner-text {
    width: 462px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.desktop-banner-text.glp-landing {
    width: 520px
}

.desktop-banner-title {
    font-family: var(--font-inria-sans);
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    color: var(--secondary-color);
    position: relative;
    margin: 0
}

.desktop-title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--secondary-green);
    border-radius: 2px
}

.desktop-banner-subtitle {
    width: 440px;
    font-family: var(--font-inria-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--primary-color);
    opacity: .8;
    max-width: 520px;
    margin: 0
}

.desktop-banner-features {
    display: flex;
    margin-top: 20px;
    justify-content: space-between
}

.desktop-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 48px;
    width: 102px
}

.desktop-feature-icon-container {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--accent-color);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative
}

.desktop-feature-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: var(--primary-color)
}

.desktop-feature-content {
    flex: 1 1;
    min-width: 0
}

.desktop-feature-title {
    font-family: var(--font-inria-sans);
    font-size: 10px;
    font-weight: 300;
    color: var(--secondary-color);
    margin: 0;
    line-height: normal
}

.desktop-banner-features-2 {
    max-width: 412px;
    padding: 16px 8px;
    border-radius: 16px;
    background: linear-gradient(164.462deg, rgba(71, 144, 163, 0) 18.641%, rgba(71, 144, 163, .1) 76.266%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    flex-direction: row;
    gap: 16px;
    text-align: center
}

.desktop-banner-feature-2-item,
.desktop-banner-features-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap
}

.desktop-banner-feature-2-item {
    flex-direction: column;
    gap: 4px;
    flex: 1 1
}

.desktop-banner-feature-2-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: var(--primary-color);
    font-family: var(--font-inria-sans);
    text-transform: uppercase;
    margin: 0
}

.desktop-banner-feature-2-subtitle {
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    margin: 0;
    max-width: 120px
}

.desktop-banner-cta {
    margin-top: 20px
}

.desktop-banner-cta.glp-landing {
    margin-top: unset
}

.desktop-banner-button {
    width: 243px;
    background: var(--secondary-color);
    color: var(--accent-color);
    font-family: var(--font-inria-sans);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 16px 32px;
    border-radius: 999px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(17, 33, 37, .2)
}

.desktop-banner-button.glp-landing {
    width: 328px
}

.desktop-banner-button-below-text {
    width: 334px;
    padding: 8px 4px;
    font-size: 10px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans)
}

.desktop-banner-button:hover {
    background: #0a1a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 33, 37, .3)
}

.desktop-banner-button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

.desktop-banner-right {
    flex: 1 1
}

.desktop-banner-image-container,
.desktop-banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.desktop-banner-image-container {
    width: 100%;
    max-width: 600px;
    height: 500px
}

.desktop-banner-background-ellipse {
    position: absolute;
    background: linear-gradient(180deg, var(--background) 58.37%, var(--accent-color) 100%);
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 130px;
    border-radius: 50%;
    z-index: 1;
    will-change: transform
}

.desktop-banner-background-ellipse.glp-landing {
    display: none
}

.desktop-banner-image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.desktop-banner-image {
    width: auto;
    height: auto;
    max-width: 500px;
    max-height: 400px;
    object-fit: contain;
    border-radius: 16px
}

@media(max-width:1200px) {
    .desktop-banner-container {
        padding: 40px 40px 0
    }
    .desktop-banner-content {
        gap: 60px
    }
    .desktop-banner-title {
        font-size: 42px
    }
}

@media(max-width:968px) {
    .desktop-banner {
        display: none
    }
}

:root {
    --background: #ffffff;
    --foreground: #171717;
    --primary-color: #106278;
    --secondary-color: #112125;
    --tertiary-color: #07171b;
    --accent-color: #eee9e5;
    --secondary-green: #a9fcb3;
    --light-blue: #4790a3;
    --gray-shade1: #8c8c8c;
    --error-color: #dc3545;
    --error-bg: #f8d7da;
    --error-border: #f5c6cb;
    --button-hover: #2a3a3f;
    --button-disabled-bg: #ccc;
    --button-disabled-text: #999;
    --placeholder-color: rgba(112, 103, 95, 0.6);
    --display-bg: rgba(16, 98, 120, 0.1)
}

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

html {
    font-family: var(--font-inria-sans), system-ui, -apple-system, sans-serif
}

body,
html {
    max-width: 100vw;
    overflow-x: hidden
}

body {
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem
}

@media screen and (max-width:767px) {
    .zsiq-float {
        bottom: 6rem !important
    }
}

body.mobile-menu-open .zsiq-float {
    display: none !important
}

.text-primary {
    color: var(--primary-color)
}

.text-secondary {
    color: var(--secondary-color)
}

.text-accent {
    color: var(--accent-color)
}

.bg-primary {
    background-color: var(--primary-color)
}

.bg-secondary {
    background-color: var(--secondary-color)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-inria-sans);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
    border-radius: .5rem;
    min-height: 48px
}

.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

.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
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.main-content {
    flex: 1 1;
    display: flex;
    flex-direction: column
}

.global-loader-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 9999;
    min-height: 100vh
}

.global-loader,
.global-loader-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.global-loader {
    gap: 32px;
    padding: 2rem;
    text-align: center
}

.loader-gif-container {
    display: flex;
    justify-content: center;
    align-items: center
}

.loader-text {
    font-size: 22px;
    font-family: var(--font-inria-sans);
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color)
}

.loader-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .8
}

@media(max-width:767px) {
    .global-loader {
        padding: 1.5rem;
        gap: 24px
    }
    .loader-gif-container img {
        width: 150px !important;
        height: 106px !important
    }
    .loader-text {
        font-size: 22px;
        font-family: var(--font-inria-sans);
        font-weight: 300;
        line-height: normal;
        color: var(--secondary-color)
    }
    .loader-logo img {
        width: 47px !important;
        height: 20px !important
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.global-loader {
    animation: fadeIn .3s ease-out
}

@supports(-webkit-touch-callout:none) {
    input[type=email],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none
    }
}

@media screen and (max-width:768px)and (-webkit-min-device-pixel-ratio:2) {
    input[type=email],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    select,
    textarea {
        font-size: 16px !important
    }
}

@media screen and (max-width:767px) {
    input[type=email],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    select,
    textarea {
        font-size: 16px !important;
        text-size-adjust: 100%
    }
}

elevenlabs-convai {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    right: 10px
}

@media screen and (max-width:767px) {
    elevenlabs-convai {
        bottom: 0;
        right: 0
    }
    .mobile-sticky-button.sticky elevenlabs-convai,
    .mobile-sticky-button.sticky~elevenlabs-convai {
        bottom: 80px !important
    }
}

@media screen and (max-width:767px) {
    body:has(.mobile-sticky-button.sticky) elevenlabs-convai {
        bottom: 80px !important
    }
}

.mobile-banner {
    background: var(--background);
    padding: 60px 0 40px;
    width: 100%;
    position: relative
}

.mobile-banner.glp-landing {
    padding: 0 0 40px
}

.mobile-banner.glp-landing .mobile-banner-image-section {
    margin: unset
}

.mobile-banner.glp-landing .mobile-banner-image-section .mobile-banner-image-container {
    height: unset
}

.mobile-banner.glp-landing .mobile-banner-image-section .mobile-banner-image-container .mobile-banner-background-ellipse {
    display: none
}

.mobile-banner.glp-landing .mobile-banner-image-section .mobile-banner-image-container .mobile-banner-image-wrapper .mobile-banner-image {
    max-width: 100%;
    max-height: 100%
}

.mobile-banner-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px
}

.mobile-banner-header {
    text-align: center;
    margin-bottom: 40px
}

.mobile-banner-title {
    font-family: var(--font-inria-sans);
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-color);
    position: relative;
    margin: 0 0 16px;
    text-align: center
}

.mobile-title-underline {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-green);
    border-radius: 2px
}

.mobile-banner-subtitle {
    font-family: var(--font-inria-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-color);
    opacity: .8;
    text-align: center;
    margin: 0
}

.mobile-banner-image-section {
    margin: 29px 0;
    display: flex;
    justify-content: center
}

.mobile-banner-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-banner-background-ellipse {
    position: absolute;
    bottom: 8%;
    left: 50%;
    width: 100%;
    background: linear-gradient(180deg, var(--background) 58.37%, var(--accent-color) 100%);
    height: 98px;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1
}

.mobile-banner-image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-banner-image {
    width: 100%;
    height: auto;
    max-width: 320px;
    max-height: 240px;
    object-fit: contain;
    border-radius: 12px
}

.mobile-banner-features {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 20px
}

.mobile-features-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center
}

.mobile-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0;
    width: 48px;
    height: 78px
}

.mobile-feature-icon-container {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--accent-color);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative
}

.mobile-feature-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: var(--primary-color)
}

.mobile-feature-content {
    flex: 1 1;
    min-width: 0;
    text-align: center
}

.mobile-feature-title {
    font-family: var(--font-inria-sans);
    font-size: 10px;
    font-weight: 300;
    color: var(--secondary-color);
    margin: 0;
    line-height: normal;
    width: 48px
}

.mobile-banner-features-2 {
    padding: 16px 12px 20px;
    border-radius: 16px;
    background: linear-gradient(164.462deg, rgba(71, 144, 163, 0) 18.641%, rgba(71, 144, 163, .1) 76.266%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    text-align: center
}

.mobile-banner-feature-2-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex: 1 1
}

.mobile-banner-feature-2-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--primary-color);
    font-family: var(--font-inria-sans);
    text-transform: uppercase;
    margin: 0
}

.mobile-banner-feature-2-subtitle {
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    margin: 0;
    max-width: 120px
}

.mobile-banner-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px
}

.mobile-banner-cta.glp-landing {
    padding: unset
}

.mobile-banner-button {
    display: inline-flex;
    min-width: 200px
}

.mobile-banner-button-below-text {
    width: 100%;
    padding: 12px 4px 0;
    font-size: 10px;
    font-weight: 300;
    line-height: normal;
    color: var(--secondary-color);
    font-family: var(--font-inria-sans);
    text-align: center
}

.mobile-sticky-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid rgba(17, 33, 37, .1);
    padding: 16px 20px;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .1)
}

.mobile-sticky-button.sticky {
    transform: translateY(0);
    opacity: 1
}

.mobile-sticky-button-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto
}

.mobile-banner-button {
    background: var(--secondary-color);
    color: var(--accent-color);
    font-family: var(--font-inria-sans);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 16px 32px;
    border-radius: 999px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 51px;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(17, 33, 37, .2)
}

.mobile-banner-button:hover {
    background: #0a1a1f;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(17, 33, 37, .3)
}

.mobile-banner-button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

@media(min-width:969px) {
    .mobile-banner {
        display: none
    }
}

@media(max-width:767px) {
    .mobile-banner {
        padding: unset
    }
    .mobile-banner-container {
        padding: 20px 20px 0;
        max-width: none
    }
    .mobile-banner-button-below-text {
        font-size: 8px;
        font-weight: 300;
        line-height: normal;
        color: var(--secondary-color);
        font-family: var(--font-inria-sans)
    }
}