/* Hide page visibility during scroll restoration to prevent flash-to-home */
html.restoring-scroll {
    visibility: hidden;
}

/* Enable smooth scrolling only after initial load */
html.smooth-scroll {
    scroll-behavior: auto;
}

html.smooth-scroll {
    scroll-behavior: smooth;
}

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


:root {
    --blue-gradient: linear-gradient(to right, #2E6BB6 0%, #7EDAE1 100%);
    --blue-gradient-hero: linear-gradient(135deg, #2E6BB6 0%, #7EDAE1 100%);
    --dark-blue: #18446B;
    --green-btn: #2BD442;
    --gray-line: #E1E1E1;
    --white: #FFFFFF;
}

html,
body {
    overflow-x: hidden;
    scrollbar-width: none;
    
    -ms-overflow-style: none;
    
}


html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

/* --- TOP BAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 63px;
    width: 100%;
    background-color: var(--white);
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.3s ease;
}

header.scrolled {
    border-bottom: 1.5px solid var(--gray-line);
}

.logo {
    font-weight: 800;
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.hamburger div {
    width: 18px;
    height: 1px;
    background-color: #2E6BB6;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger.active div:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


.desktop-nav,
.desktop-cta {
    display: none;
}

/* --- MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    top: 63px;
    
    left: 0;
    width: 100%;
    height: calc(100vh - 63px);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


.menu-header {
    display: none;
}

.menu-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 35px;
    background-color: var(--white);
    width: 100%;
    border-bottom: 1.5px solid var(--gray-line);
}

.menu-links a {
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    
    letter-spacing: 0;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 16px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--gray-line);
    transition: opacity 0.2s;
}

.menu-links a:last-child {
    border-bottom: none;
}

.menu-links a:active {
    opacity: 0.7;
}

/* --- HERO SECTION --- */
.hero {
    padding: 63px 35px 36px 35px;
    background-color: var(--white);
}

.hero-box {
    width: 100%;
    max-width: none;
    min-height: 230px;
    background: var(--blue-gradient-hero);
    border-radius: 0 50px 0 0;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--white);
}

.cta-btn {
    margin-top: 24px;
    background-color: var(--green-btn);
    border-radius: 109px;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    padding: 3px 13px 3px 3px;
    text-decoration: none;
    width: max-content;
    align-self: center;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-cta {
    margin-top: 30px;
    margin-bottom: 10px;
}

.cta-icon {
    width: 25px;
    height: 25px;
    border-radius: 109px;
    background-color: #eee;
    object-fit: cover;
}

.cta-text {
    margin-left: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-sep {
    margin-left: 13px;
    width: 1px;
    height: 11px;
    background-color: rgba(255, 255, 255, 0.5);
}

.cta-arrow {
    margin-left: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- SECONDARY HERO BANNER --- */
.hero-banner {
    width: 100%;
    max-width: none;
    height: 214px;
    background: var(--blue-gradient-hero);
    border-radius: 0 0 0 50px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* --- GLOBAL BRANDS --- */
.global-brands {
    margin-top: 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brands-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--dark-blue);
    text-align: center;
}

.brands-slider-container {
    margin-top: 15px;
    width: calc(100% + 70px);
    margin-left: -35px;
    margin-right: -35px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.brands-slider {
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    width: max-content;
    gap: 15px;
    animation: scrollBrands 60s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.brand-item {
    width: auto;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brands-track img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

@keyframes scrollBrands {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.brands-mask-left,
.brands-mask-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 51px;
    height: 105%;
    z-index: 2;
    pointer-events: none;
}

.brands-mask-left {
    left: 0;
    background: linear-gradient(to right, #FFFFFF 19%, rgba(255, 255, 255, 0) 100%);
}

.brands-mask-right {
    right: 0;
    background: linear-gradient(to left, #FFFFFF 19%, rgba(255, 255, 255, 0) 100%);
}


/* --- SECTION 2 --- */
.section-2 {
    width: 100%;
    background: linear-gradient(to right, #2E6BB6 0%, #7EDAE1 100%);
    padding: 23px 35px 46px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.s2-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 115%;
    letter-spacing: 0;
    color: var(--white);
    text-align: center;
}

.s2-image-container {
    margin-top: 23px;
    margin-bottom: 47px;
    z-index: 10;
    position: relative;
    width: 100%;
    max-width: 321px;
    aspect-ratio: 321 / 333;
    
    border: 8px solid var(--white);
    border-radius: 50px 0 50px 0;
    box-sizing: border-box;
}

.s2-profile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42px 0 42px 0;
    display: block;
    -webkit-touch-callout: none;
    
    pointer-events: none;
    
}

.s2-name-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    width: 121px;
    height: 23px;
    background-color: var(--white);
    border-radius: 7px 0 7px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #184269;
    z-index: 5;
    pointer-events: none;
    
}

.s2-hobby-img {
    position: absolute;
    top: 121%;
    
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    
    height: auto;
}

.s2-bottom-content {
    margin-top: 15px;
}

.s2-top-content,
.s2-bottom-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.s2-top-content p,
.s2-bottom-content p,
.s2-top-content li,
.s2-bottom-content li {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0.01em;
    color: var(--white);
}

.s2-content-title {
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 0.01em !important;
}

.s2-bottom-content ul {
    margin-left: 17px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-position: outside;
}

.s2-bottom-content li.no-bullet {
    list-style-type: none;
    margin-left: -17px;
    padding-left: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.s2-bottom-content li {
    padding-left: 5px;
}

.italic-medium {
    font-style: italic;
    font-weight: 500;
}

.bold-text {
    font-weight: 600;
}

.s2-cta-container {
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.s2-cta-wrapper {
    position: relative;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s2-cta {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.s2-deco-left {
    position: absolute;
    right: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%);
    width: 97px;
    height: 100px;
    pointer-events: none;
    object-fit: contain;
    flex-shrink: 0;
}

.s2-deco-right {
    position: absolute;
    left: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%);
    width: 97px;
    height: 100px;
    pointer-events: none;
    object-fit: contain;
    flex-shrink: 0;
}

.s2-floating-deco {
    display: none;
}

.desktop-heading {
    display: none;
}

/* --- SECTION 3 --- */
.section-3 {
    width: 100%;
    background-color: var(--white);
    padding: 57px 35px 57px 35px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}


.s3-metrics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
    margin-bottom: 57px;
}

.s3-metric-card {
    width: 152px;
    height: 75px;
    background-color: var(--white);
    border-radius: 12px 0 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow:
        0px 237px 66px 0px rgba(0, 0, 0, 0.00),
        0px 152px 61px 0px rgba(0, 0, 0, 0.01),
        0px 85px 51px 0px rgba(0, 0, 0, 0.05),
        0px 38px 38px 0px rgba(0, 0, 0, 0.09),
        0px 9px 21px 0px rgba(0, 0, 0, 0.10);
}

.s3-metric-value {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    color: #2E6BB6;
    margin-bottom: 6px;
}

.s3-metric-label {
    width: 130px;
    height: 16px;
    background-color: #18446B;
    border-radius: 3px;
    font-weight: 500;
    font-size: 11px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0px 237px 66px 0px rgba(0, 0, 0, 0.00),
        0px 152px 61px 0px rgba(0, 0, 0, 0.01),
        0px 85px 51px 0px rgba(0, 0, 0, 0.05),
        0px 38px 38px 0px rgba(0, 0, 0, 0.09),
        0px 9px 21px 0px rgba(0, 0, 0, 0.10);
    text-align: center;
    white-space: nowrap;
}


.s3-services-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #18446B;
    text-align: left;
    margin-bottom: 13px;
}

.s3-services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.s3-service-card {
    width: 100%;
    max-width: 416.61px;
    height: auto !important;
    min-height: auto !important;
    background-color: var(--white);
    border-radius: 18px 0 18px 0;
    box-shadow:
        0px 237px 66px 0px rgba(0, 0, 0, 0.00),
        0px 152px 61px 0px rgba(0, 0, 0, 0.01),
        0px 85px 51px 0px rgba(0, 0, 0, 0.05),
        0px 38px 38px 0px rgba(0, 0, 0, 0.09),
        0px 9px 21px 0px rgba(0, 0, 0, 0.10);
    padding: 14px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.s3-platforms {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.s3-platform-tag {
    width: fit-content;
    padding: 0 4px;
    height: 12px;
    border: 1px solid #2E6BB6;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    color: #18446B;
    box-sizing: border-box;
}

.s3-platform-tag img {
    height: 6px;
    width: auto;
    object-fit: contain;
}

.s3-service-badge {
    margin-top: 7px;
    width: fit-content;
    padding: 0 6px;
    height: 17px;
    background-color: #2E6BB6;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: var(--white);
}

.s3-service-desc {
    margin-top: 11px;
    font-weight: 500;
    font-size: 12px;
    line-height: 110%;
    color: #18446B;
}

.s3-great-for-label {
    margin-top: 9px;
    width: fit-content;
    padding: 0 4px;
    height: 12px;
    border: 1px solid #2E6BB6;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    color: #18446B;
    box-sizing: border-box;
}

.s3-benefits {
    margin-top: 3px;
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.s3-benefit-tag {
    width: fit-content;
    padding: 0 4px;
    height: 12px;
    border: 1px solid #2E6BB6;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    color: #18446B;
    box-sizing: border-box;
}

.s3-book-call {
    margin-top: 9px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    font-size: 12px;
    line-height: 110%;
    color: rgba(24, 68, 107, 0.5);
    text-decoration: none;
}


.s3-roi-title {
    margin-top: 57px;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    color: #18446B;
    text-align: left;
    margin-bottom: 19px;
}


.s3-tags-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 19px;
    align-items: flex-start;
}

.s3-tags-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
}

.s3-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    white-space: nowrap;
    flex-shrink: 1;
}

.s3-tag.solid {
    background: linear-gradient(to right, #2E6BB6 0%, #7EDAE1 100%);
    color: var(--white);
}

.s3-tag.outline {
    position: relative;
    background-color: transparent;
    color: #18446B;
    z-index: 1;
}

.s3-tag.outline::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(to right, #2E6BB6 0%, #7EDAE1 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}


.s3-image-container {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 0px 55px -20px #43CDE6;
    margin-top: 19px;
    overflow: hidden;
}

.s3-bottom-image {
    width: 100%;
    height: auto;
    display: block;
    -webkit-touch-callout: none;
    
    pointer-events: none;
    
}


.s3-content-block {
    margin-top: 25.5px;
    display: flex;
    flex-direction: column;
}

.s3-content-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #18446B;
    margin-bottom: 15px;
}

.s3-content-title.results-title {
    margin-top: 30px;
}

.s3-list-dot,
.s3-list-plus {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s3-list-dot li {
    position: relative;
    padding-left: 14px;
    font-weight: 500;
    font-size: 14px;
    line-height: 135%;
    letter-spacing: 0;
    color: #18446B;
}

.s3-list-dot li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #18446B;
    font-size: 18px;
    line-height: 12px;
}

.s3-list-plus li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 135%;
    letter-spacing: 0;
    color: #18446B;
}

.s3-list-plus p {
    margin: 0;
}

.plus-icon {
    width: 15px;
    height: 15px;
    min-width: 15px;
    background-color: #18446B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    margin-top: 1px;
}

/* Section 3 CTA */
.s3-cta-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.s3-cta {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

/* --- SECTION 4 --- */
.section-4 {
    width: 100%;
    background-color: var(--white);
    padding: 0 35px 50px 35px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.s4-heading {
    margin-top: 0;
    margin-bottom: 12px;
}


.s4-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 19px;
    justify-content: flex-start;
}

/* Section 4 Image */
.s4-image-container {
    width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 19px;
    margin-bottom: 25.5px;
    
    box-shadow: 0px 0px 55px -20px #43CDE6;
    
}

.s4-bottom-image {
    width: 100%;
    height: auto;
    display: block;
    -webkit-touch-callout: none;
    
    pointer-events: none;
    
}

/* Adjust top margin for Section 4 How I helped block */
.section-4 .s3-content-block {
    margin-top: 0;
}

/* --- SECTION 5 --- */
.section-5 {
    width: 100%;
    background-color: var(--white);
    padding: 0 35px 57px 35px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Section 5 Image */
.s5-image-container {
    width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 19px;
    margin-bottom: 25.5px;
    box-shadow: 0px 0px 55px -20px #43CDE6;
}

.section-5 .s3-content-block {
    margin-top: 0;
}

/* --- SECTION 6 --- */
.section-6 {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(to right, #2E6BB6 0%, #7EDAE1 100%);
    padding: 26px 35px 26px 35px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.s6-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 11px;
}

.s6-top-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 14px;
}

.s6-image-wrapper {
    flex: 0 0 calc((100% - 16px) * 0.5);
    border-radius: 0 27px 0 27px;
    box-sizing: border-box;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
    position: relative;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.s6-diana-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 27px 0 27px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    outline: none;
}

.s6-poster-overlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 27px 0 27px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.s6-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: opacity 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
}

.s6-image-wrapper.show-controls .s6-play-button {
    opacity: 1;
    pointer-events: auto;
}

.s6-image-wrapper.is-playing .play-icon {
    display: none;
}

.s6-image-wrapper.is-playing .pause-icon {
    display: block !important;
}

.s6-play-button svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.s6-intro-box {
    flex: 0 0 calc((100% - 16px) * 0.5);
    background-color: var(--white);
    border-radius: 10px;
    border: 2px solid #E4E4E4;
    padding: 17px 21px 17px 17px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.s6-intro-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #18446B;
    margin-bottom: 17px;
}

.s6-intro-name {
    display: inline-block;
    padding-bottom: 2.6px;
    background: linear-gradient(to right, #2F6CB7 0%, #76CEDD 100%);
    background-size: 100% 1.5px;
    background-position: bottom left;
    background-repeat: no-repeat;
    
    text-shadow:
        2px -2px 0 var(--white), -2px 2px 0 var(--white),
        0 2px 0 var(--white), 2px 0 0 var(--white),
        0 -2px 0 var(--white), -2px 0 0 var(--white);
}

.s6-intro-text {
    font-weight: 500;
    font-size: 13px;
    line-height: 135%;
    color: #18446B;
    margin: 0;
}

.s6-bottom-box {
    height: auto;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px 10px 17px 22px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.s6-testimonial-p {
    font-weight: 500;
    font-size: 14px;
    line-height: 135%;
    color: #18446B;
    margin-top: 0;
    margin-bottom: 12px;
}

.s6-testimonial-p.last-p {
    margin-bottom: auto;
}

.s6-deliver-list {
    margin: 0 0 12px 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.s6-deliver-list li {
    font-weight: 500;
    font-size: 14px;
    line-height: 135%;
    color: #18446B;
}

.s6-cta-container {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.section-6 .cta-btn {
    margin-top: 0;
}

/* --- SECTION 7 --- */
.section-7 {
    width: 100%;
    background-color: var(--white);
    padding: 26px 35px 43px 35px;
    display: flex;
    flex-direction: column;
    gap: 46px;
}

@media (max-width: 570px) {
    .section-7 {
        gap: 35px !important;
    }
}

.section-7 {
    box-sizing: border-box;
    overflow-x: hidden;
}

#testimonials {
    scroll-margin-top: -20px;
}

.s7-block {
    width: 100%;
    min-height: 241px;
    border-radius: 20px;
    background-color: var(--white);
    border: 2px solid #E4E4E4;
    box-sizing: border-box;
    padding: 22px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    position: relative;
    
}

.s7-quote {
    position: absolute;
    top: -26px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 105px;
    line-height: 100%;
    letter-spacing: 0;
    background: linear-gradient(to right, #2E6BB6 0%, #7EDAE1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    z-index: 10;
}

.s7-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.s7-stars svg {
    width: 18px;
    height: 18px;
    color: #FACC15;
}

.s7-review-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0;
    color: #18446B;
    margin: 0;
}

.s7-separator {
    width: 100%;
    height: 2px;
    background-color: #E4E4E4;
    margin-top: 18px;
    margin-bottom: 18px;
}

.s7-reviewer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.s7-reviewer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s7-profile-img {
    width: 30.47px;
    height: 30.47px;
    border-radius: 50%;
    object-fit: cover;
    padding: 1.765px;
    background: linear-gradient(to right, #2E6BB6 0%, #7EDAE1 100%);
    box-sizing: content-box;
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.s7-name-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s7-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0;
    color: #18446B;
    margin-bottom: 3px;
}

.s7-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 0;
    color: rgba(24, 68, 107, 0.5);
}

.s7-company-logo {
    width: 90px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* --- SECTION 8 --- */
.section-8 {
    width: 100%;
    background-color: var(--white);
    padding: 0 35px 43px 35px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden;
}

.s8-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #18446B;
    margin-top: 0;
    margin-bottom: 14px;
}

.s8-calendly-placeholder {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 12px;
    background-color: transparent;
    overflow: hidden;
    box-shadow: 0px 0px 55px -35px #43CDE6;
}

.s8-linkedin-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 47.5px;
}

.s8-linkedin-block {
    width: 100%;
    max-width: 504px;
    height: 670px;
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.s8-bottom-block {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(to right, #2F6DB7 0%, #76CEDC 100%);
    border-radius: 25px 0 25px 0;
    padding: 25px 0 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.s8-bottom-heading {
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 14px;
}

.s8-bottom-desc {
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 14px;
}

.s8-cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
}

.section-8 .cta-btn {
    margin-top: 0;
}

.s8-bottom-block .cta-btn {
    border: none;
}

/* --- FOOTER SECTION --- */
footer {
    padding: 0 35px 40px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

.footer-line {
    width: 100%;
    height: 1.5px;
    background-color: var(--gray-line);
}

.top-line {
    margin-bottom: 24px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
}

.footer-col-left {
    margin-right: 60px;
    margin-bottom: 20px;
}

.footer-logo {
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    
    letter-spacing: 0;
    color: var(--dark-blue);
}

.footer-desc {
    font-weight: 500;
    font-size: 9.5px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--dark-blue);
    margin-top: 5px;
    
}

.footer-col-mid {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 1px;
}

.footer-col-mid a {
    font-weight: 500;
    font-size: 9.5px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--dark-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    margin-bottom: 5px;
    width: max-content;
}

.footer-col-mid a:first-child {
    line-height: 1;
    
}

.footer-col-mid a:last-child {
    margin-bottom: 0;
}

.footer-col-right {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.icon-social {
    width: 16px;
    height: 16px;
    color: var(--dark-blue);
}

.bottom-line {
    margin-top: 20px;
    margin-bottom: 10px;
}

.copyright {
    font-weight: 500;
    font-size: 9.5px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--dark-blue);
}

@media (min-width: 801px) {
    .hide-on-desktop-s8 {
        display: none !important;
    }
}

/* --- RESPONSIVE ADJUSTMENTS FOR NARROW SCREENS (<600px) --- */
@media (max-width: 600px) {
    .s3-metrics-grid {
        justify-content: space-between;
        row-gap: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .s3-metric-card {
        width: calc(50% - 5px);
        min-height: 90px;
        padding: 18px 5px;
        box-sizing: border-box;
    }

    .s3-metric-value {
        font-size: 32px;
    }

    .s3-metric-label {
        width: 100%;
        max-width: 135px;
        min-height: 22px;
        font-size: 11px;
        line-height: 120%;
        padding: 6px 4px;
        white-space: normal;
    }

    .s3-platform-tag {
        font-size: 9px;
    }

    .s8-calendly-placeholder {
        height: 700px !important;
        margin: 20px auto !important;
    }

    .s3-service-card .s3-service-badge {
        font-size: 16px;
        height: 26px;
    }

    .s3-service-card .s3-service-desc {
        font-size: 14px;
    }

    .s3-service-card .s3-platform-tag {
        font-size: 11px;
        height: 22px;
    }

    .s3-service-card .s3-platform-tag img {
        height: 10px;
    }

    .s3-service-card .s3-benefit-tag {
        font-size: 12px;
        height: 22px;
    }

    .s3-service-card .s3-great-for-label {
        font-size: 12px;
        height: 22px;
    }

    .s2-top-content p, 
    .s2-bottom-content p, 
    .s2-top-content li, 
    .s2-bottom-content li {
        font-weight: 500;
    }

    .s2-content-title {
    }

    .s8-linkedin-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-bottom: 35px !important;
        width: 100% !important;
    }

    .s8-linkedin-block {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #E1E1E1;
    }

    .s8-linkedin-block iframe {
        width: 166.66% !important;
        height: 166.66% !important;
        transform: scale(0.6) !important;
        transform-origin: top left;
        border: none !important;
    }

    .s8-bottom-block {
        padding: 30px 25px !important;
        border-radius: 20px 0 20px 0 !important;
    }

    .s8-bottom-heading, .s8-bottom-desc {
        font-size: clamp(8px, 3vw, 11px) !important;
    }

    /* Section 6 - Unified Mobile Stacked Design */
    .section-6 .mobile-only-s6 {
        display: none !important;
    }

    .section-6 .desktop-only-s6 {
        display: flex !important;
    }

    .s6-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .section-6 .s6-top-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0;
    }

    .section-6 .s6-image-wrapper {
        flex: none;
        width: 100%;
        aspect-ratio: 9 / 16;
        height: auto;
        border-radius: 0 30px 0 30px;
    }

    .section-6 .s6-desktop-right-block {
        display: flex !important;
        flex-direction: column;
        flex: none;
        height: auto;
        background-color: #FFFFFF;
        border: 2px solid #E4E4E4;
        border-radius: 20px;
        padding: 30px 25px;
        margin-top: 0;
    }

    .s6-intro-heading-desktop {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 16px !important;
        line-height: 120%;
        color: #18446B;
        margin-bottom: 16px;
    }

    .s6-intro-name-desktop {
        display: inline-block;
        padding-bottom: 2px;
        background: linear-gradient(to right, #2F6CB7 0%, #76CEDD 100%);
        background-size: 100% 2px;
        background-position: bottom left;
        background-repeat: no-repeat;
        text-shadow:
            1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF,
            0 1px 0 #FFFFFF, 1px 0 0 #FFFFFF,
            0 -1px 0 #FFFFFF, -1px 0 0 #FFFFFF;
    }

    .s6-testimonial-p-desktop {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 14px !important;
        line-height: 140%;
        color: #18446B;
        margin-top: 0;
        margin-bottom: 14px;
    }

    .s6-deliver-list-desktop {
        margin: 0 0 16px 0;
        padding-left: 20px;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .s6-deliver-list-desktop li {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 14px !important;
        line-height: 140%;
        color: #18446B;
        position: relative;
    }

    .s6-deliver-list-desktop li::before {
        content: "•";
        color: #18446B;
        font-size: 18px;
        position: absolute;
        left: -15px;
        top: 0;
    }

    .s6-cta-container-desktop {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .s6-desktop-cta {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        max-width: 318px;
        height: 50px !important;
        background-color: var(--green-btn);
        color: #FFFFFF !important;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 16px !important;
        border-radius: 109px;
        padding: 5px 15px !important;
    }

    .s6-desktop-cta .cta-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .s6-desktop-cta .cta-text {
        margin-left: 12px !important;
    }

    .s6-desktop-cta .cta-sep {
        height: 14px !important;
        margin-left: 12px !important;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .s6-desktop-cta .cta-arrow {
        margin-left: 12px !important;
    }
}

/* --- INTERMEDIATE SCREENS (500px - 600px): Services 2-col grid --- */
@media (min-width: 500px) and (max-width: 600px) {
    .s3-services-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .s3-service-card {
        width: 100% !important;
        max-width: none;
    }
}

/* --- INTERMEDIATE SCREENS (571px - 600px): Reviews 2-col grid --- */
@media (min-width: 571px) and (max-width: 600px) {
    .section-7 {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 30px 19px;
    }

    .s7-block {
        width: auto !important;
    }
}

@media (max-width: 499px) {

    .s6-intro-text,
    .s6-testimonial-p,
    .s6-deliver-list li,
    .s6-testimonial-p-desktop,
    .s6-deliver-list-desktop li {
        font-size: 14px;
    }

    .s6-intro-heading-desktop {
        font-size: 16px;
    }
}

@media (max-width: 389px) {

    .s6-intro-text,
    .s6-testimonial-p,
    .s6-deliver-list li {
        font-size: 13px;
    }
}

@media (max-width: 371px) {

    .s6-intro-text,
    .s6-testimonial-p,
    .s6-deliver-list li {
        font-size: 12px;
    }
}

@media (max-width: 322px) {

    .s6-intro-text,
    .s6-testimonial-p,
    .s6-deliver-list li {
        font-size: 11px;
    }
}

@media (max-width: 412px) {
    .s3-roi-title {
        font-size: 18px;
    }
}

@media (max-width: 415px) {
    .hero-content {
        background: var(--blue-gradient-hero) !important;
        border-radius: 0 50px 0 50px !important;
        overflow: hidden !important;
    }

    .hero-box {
        height: 100% !important;
        background: transparent !important;
        border-radius: 0 !important;
    }
}

@media (max-width: 359px) {

    header,
    .hero,
    footer,
    .menu-links,
    .section-2,
    .section-3,
    .section-4,
    .section-5,
    .section-6,
    .section-7,
    .section-8 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-box {
        padding: 20px 20px;
    }

    .cta-btn {
        padding: 2px 8px 2px 2px;
    }

    .cta-text {
        font-size: 10px;
        margin-left: 6px;
    }

    .cta-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .cta-sep {
        margin-left: 6px;
    }

    .cta-arrow {
        margin-left: 6px;
    }

    .footer-col-left {
        margin-right: 30px;
        
    }

    .brands-title {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .footer-col-left {
        width: 100%;
        margin-bottom: 30px;
        
    }

    .footer-col-mid {
        margin-bottom: 30px;
    }
}

/* ============================================================
   DESKTOP LAYOUT — min-width: 1024px
   At 1920px: 480px margin each side → 960px content area
   Inner text padding: 190px each side within sections
   ============================================================ */
@media (min-width: 1230px) {

    
    header,
    section,
    footer {
        padding-left: calc(187px + (100% - 1440px) / 2) !important;
        padding-right: calc(187px + (100% - 1440px) / 2) !important;
    }

    /* --- HEADER / NAVIGATION --- */
    header {
        height: 157px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--white);
        z-index: 100;
        box-sizing: border-box;
        transition: height 0.3s ease, border-color 0.3s ease;
    }

    header.scrolled {
        height: 78px;
        border-bottom: 1px solid #E1E1E1;
    }

    .logo {
        font-size: 24px !important;
    }

    .hamburger {
        display: none !important;
    }

    .desktop-nav {
        display: flex !important;
        align-items: center;
        gap: 32px;
    }

    .desktop-nav a {
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: auto;
        color: #18446B;
    }

    .desktop-cta {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 189px;
        height: 43px;
        background-color: var(--green-btn);
        color: #FFFFFF !important;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 18px;
        line-height: auto;
        border-radius: 21px;
    }

    
    .desktop-cta-sep {
        margin-left: 17px;
        width: 1px;
        height: 15px;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .desktop-cta-arrow {
        display: flex !important;
        margin-left: 17px;
        align-items: center;
        justify-content: center;
    }

    /* --- SECTION 1: HERO --- */
    .hero {
        background-color: var(--white);
        min-height: auto;
        padding: 157px calc(187px + (100% - 1440px) / 2) 58px calc(187px + (100% - 1440px) / 2) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        width: 1066px;
        height: 500px;
        position: relative;
        background: linear-gradient(135deg, #2E6BB6 0%, #7EDAE1 100%);
        border-radius: 0 75px 0 75px;
        overflow: hidden;
        
    }

    .hero-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 500px;
        max-width: none;
        background: transparent;
        padding: 60px 0 0 67px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 2;
    }

    .hero-banner {
        display: block !important;
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        max-width: none;
        
        height: 500px;
        border-radius: 0;
        
        z-index: 1;
    }

    .hero-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        
    }

    .hero-banner picture,
    .hero-banner picture img {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        
    }

    .hero-title {
        font-size: 44px !important;
        font-weight: 600;
        line-height: 110%;
        color: var(--white);
        margin: 0;
    }

    .cta-btn {
        margin-top: 59px !important;
        width: 318px !important;
        height: 58px !important;
        margin-left: 0 !important;
        align-self: flex-start !important;
        
        padding: 5px 23px 5px 6px !important;
        border-radius: 109px;
    }

    .hero-cta {
        margin-top: 59px !important;
    }

    .cta-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .cta-text {
        font-size: 15px !important;
        
        margin-left: 20px !important;
    }

    .cta-sep {
        height: 16px !important;
        margin-left: 20px !important;
    }

    .cta-arrow {
        margin-left: 20px !important;
    }

    .brands-title {
        margin-top: 0 !important;
        margin-bottom: 21px !important;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 18px !important;
        line-height: 100%;
        color: #18446B;
        text-align: center;
        letter-spacing: 0%;
    }

    .global-brands {
        margin-top: 54px !important;
        width: 100%;
        max-width: none;
        z-index: 5;
        position: relative;
    }

    .brands-slider-container {
        height: 57px;
        width: 100%;
        margin-top: 0 !important;
        margin-left: 0;
        margin-right: 0;
    }

    .brands-track .brand-item {
        height: 40px;
        width: auto;
    }

    .brands-track img {
        max-height: 100%;
        width: auto;
    }

    /* --- SECTION 2: ABOUT --- */
    .section-2 {
        display: grid;
        grid-template-columns: 1fr 369px;
        grid-template-rows: min-content auto auto auto;
        grid-template-areas:
            "title image"
            "top-content image"
            "bottom-content bottom-content"
            "cta cta";
        column-gap: 80px;
        justify-content: space-between;
        align-items: start;
        padding-top: 0 !important;
        padding-bottom: 64px !important;
        position: relative;
        overflow: hidden;
    }

    .s2-title {
        grid-area: title;
        text-align: left;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 40px !important;
        line-height: 100% !important;
        letter-spacing: 0%;
        color: var(--white);
        margin-top: 75px !important;
        margin-bottom: 28px !important;
    }

    .s2-top-content {
        grid-area: top-content;
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: -30px;
    }

    .s2-bottom-content {
        grid-area: bottom-content;
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: -20px;
        width: 100%;
    }

    .s2-top-content p,
    .s2-bottom-content p,
    .s2-top-content li,
    .s2-bottom-content li {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 18px !important;
        line-height: 110% !important;
        letter-spacing: 0.01em !important;
        color: var(--white);
    }

    .s2-content-title {
        font-size: 22px !important;
        font-weight: 600 !important;
        letter-spacing: 0.01em !important;
    }

    .s2-bottom-content ul {
        list-style: disc;
        padding-left: 20px;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .s2-bottom-content li {
        position: relative;
        padding-left: 5px;
    }

    .s2-bottom-content li.no-bullet {
        list-style-type: none;
        margin-left: -20px;
        padding-left: 0;
    }

    .s2-bottom-content .bold-text,
    .s2-top-content .bold-text {
        font-weight: 600;
    }

    .s2-image-container {
        grid-area: image;
        margin-top: 42px !important;
        width: 369px !important;
        height: 369px !important;
        max-width: none;
        border: 12px solid var(--white);
        border-radius: 75px 0 75px 0;
        box-sizing: border-box;
    }

    .s2-profile-img {
        border-radius: 63px 0 63px 0;
    }

    .s2-name-badge {
        width: 150px;
        height: 35px;
        top: 25px;
        right: -30px;
        font-size: 18px;
        border-radius: 10px 0 10px 0;
    }

    .s2-hobby-img {
        display: block !important;
        position: absolute;
        top: calc(100% + 80px);
        left: 50%;
        transform: translate(-50%, -50%);
        width: 320px;
        height: auto;
        z-index: 20;
    }

    .s2-cta-container {
        grid-area: cta;
        justify-content: flex-start;
        margin-top: 20px !important;
        width: 100%;
    }

    .s2-cta {
        margin-left: 0 !important;
    }

    .s2-deco-left,
    .s2-deco-right {
        display: none !important;
    }

    .s2-floating-deco {
        display: block;
        position: absolute;
        bottom: 0px;
        right: calc(10px + (100% - 1440px) / 2);
        width: 402.06px;
        height: 427.37px;
        z-index: 10;
        pointer-events: none;
    }

    .s2-deco-scatter {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Section 3 Refinement */
    .section-3 {
        padding-top: 53px;
    }

    .s3-metrics-grid {
        margin-bottom: 75px;
        display: flex;
        justify-content: space-between;
    }

    .s3-metric-card {
        border-radius: 12px 0 12px 0;
    }

    
    .s3-metric-card:nth-child(1) {
        width: 272px;
        height: 158px;
    }

    .s3-metric-card:nth-child(2) {
        width: 246px;
        height: 158px;
    }

    .s3-metric-card:nth-child(3) {
        width: 286px;
        height: 158px;
    }

    .s3-metric-card:nth-child(4) {
        width: 206px;
        height: 158px;
    }

    .s3-metric-value {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .s3-metric-label {
        font-size: 20px;
        width: auto;
        height: auto;
        padding: 4px 12px;
        border-radius: 5px;
    }

    .s3-services-title {
        font-size: 40px;
        margin-bottom: 31px;
    }

    .s3-services-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 100%;
        padding-bottom: 65px;
    }

    .s3-service-card {
        width: 525px !important;
        height: 100% !important;
        max-width: none;
        padding: 24px 30px;
    }

    .s3-platform-tag {
        font-size: 13px !important;
        height: auto !important;
        padding: 4px 8px !important;
        border-radius: 5px !important;
    }

    .s3-platform-tag img {
        height: 15px !important;
    }

    .s3-service-badge {
        font-size: 24px !important;
        height: auto !important;
        padding: 6px 12px !important;
        margin-top: 15px !important;
        border-radius: 5px !important;
    }

    .s3-service-desc {
        font-size: 18px !important;
        margin-top: 20px !important;
    }

    .s3-great-for-label {
        font-size: 14px !important;
        height: auto !important;
        padding: 4px 8px !important;
        margin-top: 15px !important;
        border-radius: 5px !important;
    }

    .s3-benefits {
        margin-top: 10px !important;
        gap: 8px !important;
    }

    .s3-benefit-tag {
        font-size: 14px !important;
        height: auto !important;
        padding: 4px 8px !important;
        border-radius: 5px !important;
    }

    .s3-book-call {
        font-size: 18px !important;
        margin-top: auto !important;
    }

    .s3-roi-title {
        font-size: 38px !important;
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .s3-tag {
        font-size: 18px !important;
        padding: 10px 15px !important;
    }

    .s3-content-title {
        font-size: 22px !important;
        margin-bottom: 20px;
    }

    .s3-list-dot li,
    .s3-list-plus li {
        font-size: 18px !important;
    }

    .s3-list-dot li {
        padding-left: 21px !important;
    }

    .s3-list-dot li::before {
        font-size: 27px !important;
        line-height: 18px !important;
        top: 2px !important;
    }

    .plus-icon {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        font-size: 21px !important;
        margin-top: 1px !important;
    }

    .s3-content-block {
        margin-top: 65.5px !important;
    }

    .s6-title {
        font-size: 40px !important;
        margin-bottom: 30px;
    }

    .section-6 {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .s6-intro-heading {
        font-size: 24px !important;
    }

    .s6-intro-text,
    .s6-testimonial-p,
    .s6-deliver-list li {
        font-size: 18px !important;
    }

    .s6-top-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 0;
    }

    .s6-image-wrapper {
        flex: 0 0 432px;
        height: 830px;
    }

    .s6-play-button {
        width: 128px !important;
        height: 128px !important;
    }

    .s6-play-button svg {
        width: 80px !important;
        height: 80px !important;
    }

    .s6-intro-box {
        display: none;
        
    }

    .s6-desktop-right-block {
        display: flex;
        flex-direction: column;
        flex: 1;
        height: auto;
        min-height: 830px;
        
        background-color: #FFFFFF;
        border: 2px solid #E4E4E4;
        box-sizing: border-box;
        border-radius: 30px;
        padding-top: 43px;
        padding-left: 44px;
        padding-right: 44px;
        
        overflow-y: visible;
        
    }

    .s6-bottom-box {
        padding: 0;
        background: transparent;
        display: block;
        
    }

    .s6-intro-heading-desktop {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 22px !important;
        line-height: 100%;
        color: #18446B;
        margin-bottom: 18px;
    }

    .s6-intro-name-desktop {
        display: inline-block;
        padding-bottom: 2.6px;
        background: linear-gradient(to right, #2F6CB7 0%, #76CEDD 100%);
        background-size: 100% 3.5px;
        background-position: bottom left;
        background-repeat: no-repeat;
        
        text-shadow:
            2px -2px 0 #FFFFFF, -2px 2px 0 #FFFFFF,
            0 2px 0 #FFFFFF, 2px 0 0 #FFFFFF,
            0 -2px 0 #FFFFFF, -2px 0 0 #FFFFFF;
    }

    .s6-testimonial-p-desktop {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 18px !important;
        line-height: 135%;
        color: #18446B;
        margin-top: 0;
        margin-bottom: 18px;
        
    }

    .s6-deliver-list-desktop {
        margin: 0 0 18px 0;
        padding-left: 35px;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
        /* gap 8px */
    }

    .s6-deliver-list-desktop li {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 18px !important;
        line-height: 135%;
        color: #18446B;
        position: relative;
        display: flex;
        align-items: center;
    }

    .s6-deliver-list-desktop li::before {
        content: "•";
        color: #18446B;
        font-size: 24px;
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        line-height: 0;
    }

    .s6-cta-container-desktop {
        margin-top: 37px;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 37px;
    }

    .s6-desktop-cta {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        width: 318px !important;
        height: 58px !important;
        background-color: var(--green-btn);
        color: #FFFFFF !important;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 15px !important;
        line-height: auto;
        border-radius: 109px;
        padding: 5px 23px 5px 6px !important;
    }

    .s6-desktop-cta .cta-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .s6-desktop-cta .cta-text {
        font-size: 15px !important;
        margin-left: 20px !important;
    }

    .s6-desktop-cta .cta-sep {
        height: 16px !important;
        margin-left: 20px !important;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .s6-desktop-cta .cta-arrow {
        margin-left: 20px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* --- SECTION 7 DESKTOP --- */
    .section-7 {
        padding-top: 73px !important;
        padding-bottom: 73px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 52px 33px;
    }

    .s7-block {
        width: auto !important;
        height: auto !important;
        min-height: auto !important;
        padding: 40px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .s7-quote {
        font-size: 155px !important;
        top: -40px !important;
        
    }

    .s7-stars svg {
        width: 27px !important;
        height: 27px !important;
    }

    .s7-review-text {
        font-size: 20px !important;
        margin-bottom: 18px !important;
    }

    .s7-profile-img {
        width: 44.81px !important;
        height: 44.81px !important;
        padding: 2.595px !important;
    }

    .s7-name {
        font-size: 20px !important;
    }

    .s7-title {
        font-size: 18px !important;
    }

    .s7-separator {
        margin-top: auto !important;
        margin-bottom: 18px !important;
        background-color: #D1D1D1 !important;
    }

    .s7-reviewer-info {
        height: 60px !important;
        min-height: 60px !important;
        display: flex !important;
        align-items: center !important;
    }

    .s7-company-logo {
        width: 120px !important;
        height: 50px !important;
    }

    /* --- SECTION 8 DESKTOP --- */
    .section-8 {
        padding-top: 0 !important;
        padding-bottom: 95px !important;
    }

    .s8-title {
        font-size: 40px !important;
        margin-bottom: 50px !important;
    }

    .s8-calendly-placeholder {
        aspect-ratio: 1.5 / 1;
        height: auto !important;
        width: 100% !important;
        max-width: 1040px !important;
        margin: 20px auto 46px auto !important;
        overflow: hidden;
    }

    .s8-calendly-placeholder iframe {
        width: 100% !important;
        height: 100% !important;
        transform: scale(1.05);
        transform-origin: top center;
    }

    .s8-linkedin-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 32px !important;
        /* (1066 - 334*3) / 2 = 32 */
        margin-bottom: 46px !important;
        justify-content: space-between !important;
        align-items: stretch !important;
    }

    .s8-linkedin-block iframe {
        width: 100% !important;
        height: 100% !important;
    }

    .s8-bottom-block {
        height: 206px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .s8-text-wrap {
        text-align: left !important;
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .s8-bottom-heading {
        font-family: 'Poppins', sans-serif;
        font-weight: 600 !important;
        font-size: 18px !important;
        margin-bottom: 14px !important;
    }

    .s8-bottom-desc {
        font-family: 'Poppins', sans-serif;
        font-weight: 500 !important;
        font-size: 18px !important;
        margin-bottom: 0 !important;
    }

    .s8-cta-container {
        width: auto !important;
    }

    .section-8 .cta-btn {
        margin-top: 0 !important;
    }

    .s4-desktop-row {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        margin-top: 30px;
    }

    .s5-desktop-row {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        margin-top: 30px;
    }

    .s4-helped-block,
    .s5-helped-block {
        width: 400px !important;
        flex-shrink: 0;
        margin-top: 0 !important;
    }

    .s4-text-column {
        width: 400px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .s4-text-column .s4-helped-block {
        width: 100% !important;
    }

    .s4-results-block,
    .s4-results-block,
    .s5-results-block {
        margin-top: 0 !important;
    }

    .s4-results-wide {
        width: 1066px !important;
        max-width: none !important;
        position: relative;
        z-index: 1;
        
    }

    .s4-image-container {
        width: auto !important;
        height: auto !important;
        flex-grow: 1;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        box-shadow: none !important;
        overflow: visible !important;
        position: relative;
        z-index: 2;
    }

    .s4-image-container img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: right top;
        box-shadow: 0px 0px 55px -20px #43CDE6;
        border-radius: 15px;
    }

    .s5-image-container {
        width: auto !important;
        height: auto !important;
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .s5-image-container img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 289px;
        object-fit: contain;
        box-shadow: 0px 0px 55px -20px #43CDE6;
        border-radius: 15px;
    }

    .mobile-heading {
        display: none !important;
    }

    .desktop-heading {
        display: block !important;
    }

    .mobile-only-s6 {
        display: none !important;
    }

    .desktop-only-s6 {
        display: flex !important;
    }

    /* --- FOOTER DESKTOP --- */
    .footer-col-left {
        margin-right: 170px !important;
    }

    .footer-logo {
        font-size: 24px !important;
    }

    .footer-desc {
        font-size: 16px !important;
    }

    .footer-col-mid a {
        font-size: 18px !important;
    }

    .icon-social {
        width: 23px !important;
        height: 23px !important;
    }

    .bottom-line {
        margin-bottom: 24px !important;
    }

    .copyright {
        font-size: 16px !important;
    }

    
    .mobile-footer-link {
        display: none !important;
    }

    .desktop-footer-link {
        display: inline-block !important;
    }

    
    html {
        scroll-padding-top: 78px;
    }

    #case-studies-desktop,
    #book-a-call {
        scroll-margin-top: 40px;
    }
}

@media (min-width: 601px) and (max-width: 1229px) {

    
    header,
    section,
    footer {
        padding-left: calc(12.9861vw + (100% - 100vw) / 2) !important;
        padding-right: calc(12.9861vw + (100% - 100vw) / 2) !important;
    }

    /* --- HEADER / NAVIGATION --- */
    header {
        height: 10.9028vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--white);
        z-index: 100;
        box-sizing: border-box;
        transition: height 0.3s ease, border-color 0.3s ease;
    }

    header.scrolled {
        height: 5.4167vw;
        border-bottom: 0.0694vw solid #E1E1E1;
    }

    .logo {
        font-size: 1.6667vw !important;
    }

    .hamburger {
        display: none !important;
    }

    .desktop-nav {
        display: flex !important;
        align-items: center;
        gap: 2.2222vw;
    }

    .desktop-nav a {
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.3889vw;
        line-height: auto;
        color: #18446B;
    }

    .desktop-cta {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 13.1250vw;
        height: 2.9861vw;
        background-color: var(--green-btn);
        color: #FFFFFF !important;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.2500vw;
        line-height: auto;
        border-radius: 1.4583vw;
    }

    
    .desktop-cta-sep {
        margin-left: 1.1806vw;
        width: 0.0694vw;
        height: 1.0417vw;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .desktop-cta-arrow {
        display: flex !important;
        margin-left: 1.1806vw;
        align-items: center;
        justify-content: center;
    }

    /* --- SECTION 1: HERO --- */
    .hero {
        background-color: var(--white);
        min-height: auto;
        padding: 10.9028vw calc(12.9861vw + (100% - 100vw) / 2) 4.0278vw calc(12.9861vw + (100% - 100vw) / 2) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        width: 74.0278vw;
        height: 34.7222vw;
        position: relative;
        background: linear-gradient(135deg, #2E6BB6 0%, #7EDAE1 100%);
        border-radius: 0 5.2083vw 0 5.2083vw;
        overflow: hidden;
        
    }

    .hero-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 34.7222vw;
        max-width: none;
        background: transparent;
        padding: 4.1667vw 0 0 4.6528vw;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 2;
    }

    .hero-banner {
        display: block !important;
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        max-width: none;
        
        height: 34.7222vw;
        border-radius: 0;
        
        z-index: 1;
    }

    .hero-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        
    }

    .hero-banner picture,
    .hero-banner picture img {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        
    }

    .hero-title {
        font-size: 3.0556vw !important;
        font-weight: 600;
        line-height: 110%;
        color: var(--white);
        margin: 0;
    }

    .cta-btn {
        margin-top: 2.7083vw !important;
        width: 22.0833vw !important;
        height: 4.0278vw !important;
        margin-left: 0 !important;
        align-self: flex-start !important;
        
        padding: 0.3472vw 1.5972vw 0.3472vw 0.4167vw !important;
        border-radius: 7.5694vw;
    }

    .hero-cta {
        margin-top: 3.9083vw !important;
    }

    .cta-icon {
        width: 3.0556vw !important;
        height: 3.0556vw !important;
    }

    .cta-text {
        font-size: 1.0417vw !important;
        
        margin-left: 1.3889vw !important;
    }

    .cta-sep {
        height: 1.1111vw !important;
        margin-left: 1.3889vw !important;
    }

    .cta-arrow {
        margin-left: 1.3889vw !important;
    }

    .brands-title {
        margin-top: 0 !important;
        margin-bottom: 1.4583vw !important;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.2500vw !important;
        line-height: 100%;
        color: #18446B;
        text-align: center;
        letter-spacing: 0%;
    }

    .global-brands {
        margin-top: 3.7500vw !important;
        width: 100%;
        max-width: none;
        z-index: 5;
        position: relative;
    }

    .brands-slider-container {
        height: 3.9583vw;
        width: 100%;
        margin-top: 0 !important;
        margin-left: 0;
        margin-right: 0;
    }

    .brands-track img {
        height: 2.7778vw;
    }

    /* --- SECTION 2: ABOUT --- */
    .section-2 {
        display: grid;
        grid-template-columns: 1fr 25.6250vw;
        grid-template-rows: min-content auto auto auto;
        grid-template-areas:
            "title image"
            "top-content image"
            "bottom-content bottom-content"
            "cta cta";
        column-gap: 5.5556vw;
        justify-content: space-between;
        align-items: start;
        padding-top: 0 !important;
        padding-bottom: 4.4444vw !important;
        position: relative;
        overflow: hidden;
    }

    .s2-title {
        grid-area: title;
        text-align: left;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: calc(2.7778vw + 2px) !important;
        line-height: 100% !important;
        letter-spacing: 0%;
        color: var(--white);
        margin-top: 5.2083vw !important;
        margin-bottom: 1.9444vw !important;
    }

    .s2-top-content {
        grid-area: top-content;
        display: flex;
        flex-direction: column;
        gap: 1.7361vw;
        margin-top: -2.0833vw;
    }

    .s2-bottom-content {
        grid-area: bottom-content;
        display: flex;
        flex-direction: column;
        gap: 1.7361vw;
        margin-top: 0.15vw;
        width: 100%;
    }

    .s2-top-content p,
    .s2-bottom-content p,
    .s2-top-content li,
    .s2-bottom-content li {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: calc(1.2500vw + 2px) !important;
        line-height: 110% !important;
        letter-spacing: 0.01em !important;
        color: var(--white);
    }

    .s2-content-title {
        font-size: calc(1.5278vw + 2px) !important;
        font-weight: 600 !important;
        letter-spacing: 0.01em !important;
    }

    .s2-bottom-content ul {
        list-style: disc;
        padding-left: 1.3889vw;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        gap: 1.0417vw;
    }

    .s2-bottom-content li {
        position: relative;
        padding-left: 0.3472vw;
    }

    .s2-bottom-content li.no-bullet {
        list-style-type: none;
        margin-left: -1.3889vw;
        padding-left: 0;
    }

    .s2-bottom-content .bold-text,
    .s2-top-content .bold-text {
        font-weight: 600;
    }

    .s2-image-container {
        grid-area: image;
        margin-top: 2.9167vw !important;
        width: 25.6250vw !important;
        height: 25.6250vw !important;
        max-width: none;
        border: 0.8333vw solid var(--white);
        border-radius: 5.2083vw 0 5.2083vw 0;
        box-sizing: border-box;
    }

    .s2-profile-img {
        border-radius: 4.3750vw 0 4.3750vw 0;
    }

    .s2-name-badge {
        width: 10.4167vw;
        height: 2.4306vw;
        top: 1.7361vw;
        right: -2.0833vw;
        font-size: 1.2500vw;
        border-radius: 0.6944vw 0 0.6944vw 0;
    }

    .s2-hobby-img {
        display: block !important;
        position: absolute;
        top: calc(100% + 5.5556vw);
        left: 50%;
        transform: translate(-50%, -50%);
        width: 22.2222vw;
        height: auto;
        z-index: 20;
    }

    .s2-cta-container {
        grid-area: cta;
        justify-content: flex-start;
        margin-top: 1.3889vw !important;
        width: 100%;
    }

    .s2-cta {
        margin-left: 0 !important;
    }

    .s2-deco-left,
    .s2-deco-right {
        display: none !important;
    }

    .s2-floating-deco {
        display: block;
        position: absolute;
        bottom: 0px;
        right: calc(0.6944vw + (100% - 100vw) / 2);
        width: 27.9208vw;
        height: 29.6785vw;
        z-index: 10;
        pointer-events: none;
    }

    .s2-deco-scatter {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Section 3 Refinement */
    .section-3 {
        padding-top: 3.6806vw;
    }

    .s3-metrics-grid {
        margin-bottom: 5.2083vw;
        display: flex;
        justify-content: space-between;
    }

    .s3-metric-card {
        border-radius: 0.8333vw 0 0.8333vw 0;
    }

    
    .s3-metric-card:nth-child(1) {
        width: 18.8889vw;
        height: 10.9722vw;
    }

    .s3-metric-card:nth-child(2) {
        width: 17.0833vw;
        height: 10.9722vw;
    }

    .s3-metric-card:nth-child(3) {
        width: 19.8611vw;
        height: 10.9722vw;
    }

    .s3-metric-card:nth-child(4) {
        width: 14.3056vw;
        height: 10.9722vw;
    }

    .s3-metric-value {
        font-size: 4.1667vw;
        margin-bottom: 0.6944vw;
    }

    .s3-metric-label {
        font-size: 1.3889vw;
        width: auto;
        height: auto;
        padding: 0.2778vw 0.8333vw;
        border-radius: 0.3472vw;
    }

    .s3-services-title {
        font-size: 2.7778vw;
        margin-bottom: 2.1528vw;
    }

    .s3-services-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1111vw;
        max-width: 100%;
        padding-bottom: 4.5139vw;
    }

    .s3-service-card {
        width: 36.4583vw !important;
        height: auto !important;
        min-height: auto !important;
        max-width: none;
        padding: 1.6667vw 2.0833vw;
    }

    .s3-platform-tag {
        font-size: calc(0.9028vw + 2px) !important;
        height: auto !important;
        padding: 0.2778vw 0.5556vw !important;
        border-radius: 0.3472vw !important;
    }

    .s3-platform-tag img {
        height: 1.0417vw !important;
    }

    .s3-service-badge {
        font-size: calc(1.6667vw + 2px) !important;
        height: auto !important;
        padding: 0.4167vw 0.8333vw !important;
        margin-top: 1.0417vw !important;
        border-radius: 0.3472vw !important;
    }

    .s3-service-desc {
        font-size: calc(1.2500vw + 2px) !important;
        margin-top: 1.3889vw !important;
    }

    .s3-great-for-label {
        font-size: calc(0.9722vw + 2px) !important;
        height: auto !important;
        padding: 0.2778vw 0.5556vw !important;
        margin-top: 1.0417vw !important;
        border-radius: 0.3472vw !important;
    }

    .s3-benefits {
        margin-top: 0.6944vw !important;
        gap: 0.5556vw !important;
    }

    .s3-benefit-tag {
        font-size: calc(0.9722vw + 2px) !important;
        height: auto !important;
        padding: 0.2778vw 0.5556vw !important;
        border-radius: 0.3472vw !important;
    }

    .s3-book-call {
        font-size: 1.2500vw !important;
        margin-top: auto !important;
    }

    .s3-roi-title {
        font-size: calc(2.7778vw) !important;
        margin-top: 5.5556vw;
        margin-bottom: 2.0833vw;
    }

    .s3-tag {
        font-size: calc(1.2500vw + 2px) !important;
        padding: 0.6944vw 1.0417vw !important;
    }

    .s3-content-title {
        font-size: calc(1.5278vw + 2px) !important;
        margin-bottom: 1.3889vw !important;
    }

    .s3-content-title.results-title {
        margin-top: 1.8750vw !important;
    }

    .s3-list-dot,
    .s3-list-plus {
        gap: 1.0417vw !important;
    }

    .s3-list-dot li,
    .s3-list-plus li,
    .s3-list-plus li p,
    .s3-list-dot li p {
        font-size: calc(1.2500vw + 2px) !important;
        line-height: 115% !important;
    }

    .plus-icon {
        width: calc(1.5278vw + 2px) !important;
        height: calc(1.5278vw + 2px) !important;
        min-width: calc(1.5278vw + 2px) !important;
        font-size: calc(1.1vw + 2px) !important;
        margin-top: 0.15vw !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        line-height: 1 !important;
    }

    .s3-list-plus li {
        gap: 0.8333vw !important;
        display: flex !important;
        align-items: flex-start !important;
    }

    .s3-list-dot li::before {
        font-size: 2.2vw !important;
        line-height: 1 !important;
        top: -0.1vw !important;
        display: inline-block !important;
        position: absolute !important;
    }

    .s6-title {
        font-size: 2.7778vw !important;
        margin-bottom: 2.0833vw;
    }

    .section-6 {
        padding-top: 3.1250vw !important;
        padding-bottom: 3.1250vw !important;
    }

    .s6-intro-heading {
        font-size: 1.6667vw !important;
    }

    .s6-intro-text,
    .s6-testimonial-p,
    .s6-deliver-list li {
        font-size: 1.2500vw !important;
    }

    .s6-top-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.2500vw;
        /* 1.2500vw gap to Diana's image */
        margin-bottom: 0;
    }

    .s6-image-wrapper {
        flex: 0 0 30.0000vw;
        height: 57.6389vw;
    }

    .s6-play-button {
        width: 8.8889vw !important;
        height: 8.8889vw !important;
    }

    .s6-play-button svg {
        width: 5.5556vw !important;
        height: 5.5556vw !important;
    }

    .s6-intro-box {
        display: none;
        
    }

    .s6-desktop-right-block {
        display: flex;
        flex-direction: column;
        flex: 1;
        height: auto;
        min-height: 57.6389vw;
        
        background-color: #FFFFFF;
        border: 0.1389vw solid #E4E4E4;
        box-sizing: border-box;
        border-radius: 2.0833vw;
        padding-top: 2.9861vw;
        padding-left: 3.0556vw;
        padding-right: 3.0556vw;
        
        overflow-y: visible;
        
    }

    .s6-bottom-box {
        padding: 0;
        background: transparent;
        display: block;
        
    }

    .s6-intro-heading-desktop {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.5278vw !important;
        line-height: 100%;
        color: #18446B;
        margin-bottom: 1.2500vw;
    }

    .s6-intro-name-desktop {
        display: inline-block;
        padding-bottom: 0.1806vw;
        background: linear-gradient(to right, #2F6CB7 0%, #76CEDD 100%);
        background-size: 100% 0.2431vw;
        background-position: bottom left;
        background-repeat: no-repeat;
        
        text-shadow:
            0.1389vw -0.1389vw 0 #FFFFFF, -0.1389vw 0.1389vw 0 #FFFFFF,
            0 0.1389vw 0 #FFFFFF, 0.1389vw 0 0 #FFFFFF,
            0 -0.1389vw 0 #FFFFFF, -0.1389vw 0 0 #FFFFFF;
    }

    .s6-testimonial-p-desktop {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 1.2500vw !important;
        line-height: 135%;
        color: #18446B;
        margin-top: 0;
        margin-bottom: 1.2500vw;
        
    }

    .s6-deliver-list-desktop {
        margin: 0 0 1.2500vw 0;
        padding-left: 2.4306vw;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.5556vw;
    }

    .s6-deliver-list-desktop li {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 1.2500vw !important;
        line-height: 135%;
        color: #18446B;
        position: relative;
        display: flex;
        align-items: center;
    }

    .s6-deliver-list-desktop li::before {
        content: "•";
        color: #18446B;
        font-size: 1.6667vw;
        position: absolute;
        left: -1.3889vw;
        top: 50%;
        transform: translateY(-50%);
        line-height: 0;
    }

    .s6-cta-container-desktop {
        margin-top: 2.5694vw;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 2.5694vw;
    }

    .s6-desktop-cta {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        width: 22.0833vw !important;
        height: 4.0278vw !important;
        background-color: var(--green-btn);
        color: #FFFFFF !important;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: calc(1.0417vw + 2px) !important;
        line-height: auto;
        border-radius: 7.5694vw;
        padding: 0.3472vw 1.5972vw 0.3472vw 0.4167vw !important;
    }

    .s6-desktop-cta .cta-icon {
        width: 3.0556vw !important;
        height: 3.0556vw !important;
    }

    .s6-desktop-cta .cta-text {
        font-size: 1.0417vw !important;
        margin-left: 1.3889vw !important;
    }

    .s6-desktop-cta .cta-sep {
        height: 1.1111vw !important;
        margin-left: 1.3889vw !important;
        width: 0.0694vw;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .s6-desktop-cta .cta-arrow {
        margin-left: 1.3889vw !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* --- SECTION 7 DESKTOP --- */
    .section-7 {
        padding-top: 5.0694vw !important;
        padding-bottom: 5.0694vw !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 3.6112vw 2.257vw;
    }

    .s7-block {
        width: auto !important;
        height: auto !important;
        min-height: auto !important;
        padding: 2.7778vw !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .s7-quote {
        font-size: 10.7639vw !important;
        top: -2.7778vw !important;
        
    }

    .s7-stars svg {
        width: 1.8750vw !important;
        height: 1.8750vw !important;
    }

    .s7-review-text {
        font-size: calc(1.2500vw + 2px) !important;
        margin-bottom: 1.2500vw !important;
    }

    .s7-profile-img {
        width: 3.1118vw !important;
        height: 3.1118vw !important;
        padding: 0.1802vw !important;
    }

    .s7-name {
        font-size: calc(1.2500vw + 2px) !important;
    }

    .s7-title {
        font-size: calc(1.1111vw + 2px) !important;
    }

    .s7-separator {
        margin-top: auto !important;
        margin-bottom: 1.2500vw !important;
        background-color: #D1D1D1 !important;
    }

    .s7-reviewer-info {
        height: 4.1667vw !important;
        min-height: 4.1667vw !important;
        display: flex !important;
        align-items: center !important;
    }

    .s7-company-logo {
        width: 8.3333vw !important;
        height: 3.4722vw !important;
    }

    /* --- SECTION 8 DESKTOP --- */
    .section-8 {
        padding-top: 0 !important;
        padding-bottom: 6.5972vw !important;
    }

    .s8-title {
        font-size: 2.7778vw !important;
        margin-bottom: 3.4722vw !important;
    }

    .s8-calendly-placeholder {
        height: 700px !important;
        margin-bottom: 3.1944vw !important;
    }

    .s8-linkedin-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.3889vw !important;
        margin-bottom: 3.1944vw !important;
        width: 100% !important;
    }

    @media (min-width: 801px) {
        .s8-linkedin-row {
            grid-template-columns: repeat(3, 1fr) !important;
        }
        .hide-on-desktop-s8 {
            display: none !important;
        }
    }

    .s8-linkedin-block {
        width: 100% !important;
        height: 52.5vw !important; /* 35vw * 1.5 */
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #E1E1E1;
    }

    @media (min-width: 801px) {
        .s8-linkedin-block {
            height: 35.0000vw !important;
        }
    }

    .s8-linkedin-block iframe {
        width: 133.33% !important;
        height: 133.33% !important;
        border: none !important;
        display: block;
        transform: scale(0.75);
        transform-origin: top left;
    }

    .s8-bottom-block {
        width: 100% !important;
        height: auto !important;
        min-height: 14.3056vw !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 3vw 5.5556vw !important;
        box-sizing: border-box !important;
    }

    .s8-text-wrap {
        text-align: left !important;
        margin: 0 !important;
    }

    .s8-bottom-heading {
        font-family: 'Poppins', sans-serif;
        font-weight: 600 !important;
        font-size: clamp(10px, 1.3vw, 18px) !important;
        margin-bottom: 0.5vw !important;
    }

    .s8-bottom-desc {
        font-family: 'Poppins', sans-serif;
        font-weight: 500 !important;
        font-size: clamp(10px, 1.3vw, 18px) !important;
        margin-bottom: 0 !important;
    }

    .s8-cta-container {
        width: auto !important;
        margin: 0 !important;
    }

    .section-8 .cta-btn {
        margin-top: 0 !important;
    }

    .mobile-heading {
        display: none !important;
    }

    .desktop-heading {
        display: block !important;
    }

    .mobile-only-s6 {
        display: none !important;
    }

    .desktop-only-s6 {
        display: flex !important;
    }

    /* --- FOOTER DESKTOP --- */
    .footer-col-left {
        margin-right: 11.8056vw !important;
    }

    .footer-logo {
        font-size: 1.6667vw !important;
    }

    .footer-desc {
        font-size: 1.1111vw !important;
    }

    .footer-col-mid a {
        font-size: 1.2500vw !important;
    }

    .icon-social {
        width: 1.5972vw !important;
        height: 1.5972vw !important;
    }

    .bottom-line {
        margin-bottom: 1.6667vw !important;
    }

    .copyright {
        font-size: 1.1111vw !important;
    }

    
    .mobile-footer-link {
        display: none !important;
    }

    .desktop-footer-link {
        display: inline-block !important;
    }

    
    html {
        scroll-padding-top: 5.4167vw;
    }

    #case-studies-desktop,
    #book-a-call {
        scroll-margin-top: 2.7778vw;
    }
}

div.eapps-widget {
    margin-top: 8%;
}

@media (max-width: 422px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 31px) !important;
    }
}
@media (max-width: 390px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 28px) !important;
    }
}
@media (max-width: 375px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 26px) !important;
    }
}
@media (max-width: 412px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 30px) !important;
    }
}
@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 25px) !important;
    }
}
@media (max-width: 344px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 28px) !important;
    }
}
@media (max-width: 404px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 29px) !important;
    }
}
@media (max-width: 395px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 28px) !important;
    }
}
@media (max-width: 386px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 27px) !important;
    }
}
@media (max-width: 377px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 25px) !important;
    }
}
@media (max-width: 361px) {
    .s3-metric-label {
        font-size: 10.5px !important;
    }
}
@media (max-width: 359px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 28px) !important;
    }
}
@media (max-width: 336px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 27px) !important;
    }
}
@media (max-width: 327px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 24px) !important;
    }
}
@media (max-width: 299px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 23px) !important;
    }
}
@media (max-width: 290px) {
    .hero-title {
        font-size: clamp(14px, 8.5vw, 20px) !important;
    }
}