/* =================================================================
   // TABLE OF CONTENTS in global.css
   
   1. GLOBAL & RESET
   2. GLOBAL CLASSES
   3. DYNAMIC BACKGROUND 
   4. NAVBAR SECTION
   5. ROCKET FLY SECTION
   6. SPLIT SLIDER SECTION
   7. Testimonial Section
   8. GROWTH CTA SECTION
   9. FOOTER SECTION
================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');


/* ========== 1. GLOBAL & RESET ========== */
:root {
    /* --- COLOR PALETTE  --- */
    --primary-color: #4a8bdf;
    --text-color: #1a1a1a;
    --subtle-text-color: #555;
    --accent-color-dark: #333;
    --border-color: #333;
    --light-bg: #ffffff;
    --hover-bg: #f8f9fa;

    /* --- FONT SYSTEM --- */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Suisse', 'Lato', sans-serif;

    /* --- FONT SIZE SCALE (rem units) --- */
    --fs-100: 0.75rem;
    /* 12px */
    --fs-200: 0.875rem;
    /* 14px */
    --fs-300: 1rem;
    /* 16px (base) */
    --fs-400: 1.125rem;
    /* 18px */
    --fs-500: 1.25rem;
    /* 20px */
    --fs-600: 1.5rem;
    /* 24px */
    --fs-700: 2rem;
    /* 32px */
    --fs-800: 2.5rem;
    /* 40px */
    --fs-900: 3rem;
    /* 48px */

    --f-display: clamp(3.75rem, 2rem + 12vw, 7.5rem);
    /* ~60px to ~120px */
    --f-900: clamp(2.5rem, 1.5rem + 8vw, 5.625rem);
    /* ~40px to ~90px */
    --f-800: clamp(2.1875rem, 1rem + 6vw, 4.6875rem);
    /* ~35px to ~75px */
    --f-700: clamp(1.875rem, 1rem + 4vw, 3.125rem);
    /* ~30px to ~50px */
    --f-600: clamp(1.5rem, 1rem + 3vw, 2.1875rem);
    /* ~24px to ~35px */

    --space-xxs: 0.25rem;
    /* 4px */
    --space-xs: 0.5rem;
    /* 8px */
    --space-s: 1rem;
    /* 16px */
    --space-m: 1.5rem;
    /* 24px */
    --space-l: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-xxl: 4rem;
    /* 64px */

    --border-radius-small: 8px;
    --border-radius-medium: 20px;
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ebebeb;
    font-family: var(--font-secondary);
    font-size: var(--fs-300);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: var(--fs-900);
}

h2 {
    font-size: var(--fs-800);
}

h3 {
    font-size: var(--fs-700);
}

a {
    text-decoration: none;
}

/* ========== 2. Global Classes ========== */

.section-spacing {
    padding-top: var(--space-xxl);
    /* 64px default top spacing */
    padding-bottom: var(--space-xxl);
    /* 64px default bottom spacing */
    padding-left: var(--space-xxl);
    padding-right: var(--space-xxl);
}

@media (max-width: 768px) {
    .section-spacing {
        padding-top: var(--space-xl);
        /* 48px on tablets/mobile */
        padding-bottom: var(--space-xl);
        /* 48px on tablets/mobile */
        padding-left: var(--space-m);
        padding-right: var(--space-m);
    }
}

/* Buttons ... */
.button-container {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

.text-button {
    background-color: #1a1a1a;
    color: white;
    font-size: var(--fs-300);
    font-family: var(--font-primary);
    font-weight: 500;
    padding: var(--space-s) var(--space-m) var(--space-s) var(--space-l);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1;
    white-space: nowrap;
}

.text-button:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.arrow-button {
    width: 50px;
    height: 50px;
    background-color: #f5f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-left: -15px;
    z-index: 2;
}

.text-button:hover~.arrow-button {
    transform: translateY(-2px) rotateZ(45deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.arrow {
    width: 18px;
    height: 18px;
    stroke: #1a1a1a;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.text-ripple,
.arrow-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

.text-ripple {
    background-color: rgba(255, 255, 255, 0.2);
}

.arrow-ripple {
    background-color: rgba(0, 0, 0, 0.1);
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .button-container {
        display: flex;
        justify-content: center;
    }
}

/* ========== 3. DYNAMIC BACKGROUND ========== */
@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(2vw, -3vw) scale(1.1);
    }

    50% {
        transform: translate(-1vw, 2vw) scale(0.9);
    }

    75% {
        transform: translate(3vw, -1vw) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.home-blob,
.wwa-blob,
.exp-blob,
.ceo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    will-change: transform;
    animation: drift 20s infinite ease-in-out alternate;
}

.home-gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home-color-1 {
    background: #fcd4c2;
    width: 30vw;
    height: 30vw;
    top: 5%;
    left: 20%;
    animation-duration: 22s;
}

.home-color-2 {
    background: #fcd4c2;
    width: 35vw;
    height: 35vw;
    top: 20%;
    left: 45%;
    animation-duration: 28s;
    animation-delay: -3s;
}

.home-color-3 {
    background: #fcd4c2;
    width: 35vw;
    height: 35vw;
    bottom: -10%;
    left: 35%;
    animation-duration: 18s;
}

.home-color-4 {
    background: #f0c3d1;
    width: 30vw;
    height: 30vw;
    bottom: 15%;
    right: 10%;
    animation-duration: 25s;
    animation-delay: -7s;
}

.home-color-5 {
    background: #f4b1c8;
    width: 25vw;
    height: 25vw;
    bottom: -5%;
    right: 0%;
    animation-duration: 20s;
    animation-delay: -10s;
}

.wwa-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.wwa-blob.wwa-color-1 {
    background: #ebebeb;
    width: 80vw;
    height: 80vw;
    top: 10%;
    left: 10%;
    opacity: 0.3;
}

.exp-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.exp-blob {
    filter: blur(50px);
}

.exp-blob.exp-color-1 {
    background: #FFDDA1;
    width: 30vw;
    height: 30vw;
    top: 20%;
    left: 25%;
}

.exp-blob.exp-color-2 {
    background: #FFB6C1;
    width: 35vw;
    height: 35vw;
    top: 40%;
    left: 55%;
}

.exp-blob.exp-color-3 {
    background: #C9D6FF;
    width: 30vw;
    height: 30vw;
    top: 55%;
    left: 5%;
}

.ceo-gradient-background {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.ceo-blob {
    filter: blur(50px);
}

.ceo-blob.ceo-color-1 {
    position: absolute;
    background: linear-gradient(to top, rgb(237, 237, 237, 0) 0%, #ec89ac 55%, rgb(240, 195, 209, 0)) !important;
    width: 50vw;
    height: 50vw;
    top: 90%;
    left: 30%;
}

@media (max-width: 768px) {

    .home-blob,
    .wwa-blob,
    .exp-blob,
    .ceo-blob {
        filter: blur(50px);
    }

    .exp-blob {
        filter: blur(35px);
    }

    .home-color-1,
    .home-color-4,
    .home-color-5 {
        width: 45vw;
        height: 45vw;
    }

    .home-color-2,
    .home-color-3 {
        width: 55vw;
        height: 55vw;
    }

    .exp-color-1,
    .exp-color-3 {
        width: 40vw;
        height: 40vw;
    }

    .exp-color-2 {
        width: 50vw;
        height: 50vw;
    }
}

/* ========== 4. NAVBAR SECTION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    transition: var(--transition-standard);
}

.navbar.scrolled {
    height: 65px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.logo img {
    height: 50px;
    transition: var(--transition-standard);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    height: 100%;
    gap: var(--space-s);
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0 var(--space-xs);
    transition: var(--transition-standard);
    white-space: nowrap;
}

.nav-item a {
    text-decoration: none;
    color: var(--text-color);
}

.nav-item a:hover {
    color: palevioletred;
}

.nav-item:hover {
    color: palevioletred;
}

.nav-item:hover i,
.nav-item.active-page i {
    color: palevioletred;
}

.nav-item::after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: palevioletred;
    transition: var(--transition-standard);
}

.nav-item:hover::after {
    width: 80%;
}

.nav-item i {
    margin-right: var(--space-xxs);
    font-size: var(--fs-500);
}

.dropdown {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--light-bg);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-small);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-standard);
    z-index: 1020;
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--light-bg);
}

.dropdown-content a {
    color: var(--text-color);
    padding: var(--fs-100) var(--space-s);
    text-decoration: none;
    display: block;
    transition: var(--transition-standard);
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: var(--hover-bg);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    padding-left: var(--fs-500);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-icon {
    font-size: var(--fs-100);
    margin-left: var(--space-xxs);
    transition: var(--transition-standard);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-submenu {
    display: none;
}

.desktop-cta {
    display: flex;
}

.mobile-cta {
    display: none;
}

@media (max-width: 900px) {
    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
    }

    .dropdown-icon {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1010;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .hamburger span {
        height: 3px;
        width: 100%;
        background-color: var(--text-color);
        border-radius: 3px;
        transition: var(--transition-standard);
    }

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

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

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

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ededed;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        padding: 100px var(--space-l) var(--space-l);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition-standard);
        z-index: 1005;
        overflow-y: auto;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        width: 100%;
        gap: var(--space-m);
    }

    .nav-item {
        height: auto;
        width: 100%;
        padding: var(--space-xs) 0;
        font-size: var(--fs-600);
    }

    .nav-item i {
        font-size: var(--fs-600);
    }

    .nav-item::after {
        display: none;
    }

    .dropdown {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown>span {
        width: 100%;
        display: flex;
        align-items: center;
        padding: var(--space-xs) 0;
    }

    .dropdown-content {
        display: none;
    }

    .mobile-submenu {
        display: none;
        width: 100%;
        padding-left: var(--space-m);
        margin-top: var(--space-xs);
        border-left: 2px solid var(--primary-color);
    }

    .mobile-submenu a {
        color: var(--text-color);
        padding: var(--fs-100) 0;
        text-decoration: none;
        display: block;
        transition: var(--transition-standard);
    }

    .mobile-submenu a:hover {
        color: var(--primary-color);
    }

    .dropdown.active .mobile-submenu {
        display: block;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .mobile-cta {
        width: 100%;
        padding-top: var(--space-l);
        margin-top: 0;
        border-top: 1px solid #e9ecef;
    }

    .mobile-cta .button-container {
        width: 100%;
    }

    .mobile-cta .text-button {
        flex-grow: 1;
        text-align: center;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 1000;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .overlay.active {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 5%;
    }

    .nav-container {
        width: 100%;
        padding: 100px var(--space-m) var(--space-l);
    }

    .logo img {
        height: 45px;
    }
}

/* ========== 5. ROCKET FLY SECTION ========== */
.rocket-fly-section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-xxl) var(--space-xxl);
}

.rocket-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-rocket__card {
    position: relative;
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.cta-rocket__text-content {
    grid-area: 1 / 1 / 2 / 2;
}

.cta-rocket__image-wrapper {
    grid-area: 1 / 2 / 2 / 4;
}

.rocket-section>div {
    position: relative;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    /* box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.1); */
    padding-left: var(--space-l);
}

.rocket-section h3 {
    font-size: var(--fs-700);
    line-height: 1.3;
    margin-bottom: var(--space-l);
    max-width: 400px;
}

.rocket img {
    width: 100%;
    height: auto;
    position: relative;
    top: 5px;
    object-fit: contain;
    z-index: 2;
}

.rocket-fly {
    animation: rocketFly 2s ease-in-out forwards;
}

@keyframes rocketFly {
    0% {
        transform: translateY(0);
    }

    90% {
        transform: translateX(800px);
    }

    100% {
        transform: translateX(0px);
    }
}

.cta-rocket__button {
    background-color: black;
    color: white;
    outline: none;
    padding: var(--space-s) var(--space-m);
    cursor: pointer;
    border-radius: var(--border-radius-small);
    white-space: nowrap;
    font-family: var(--font-primary);
    font-size: var(--fs-300);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-rocket__button:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mb-rocket-section {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .rocket-section h3 {
        font-size: var(--fs-600);
        margin-bottom: var(--space-s);
    }

    .cta-rocket__button {
        padding: var(--space-xs) var(--space-s);
        font-size: var(--fs-200);
    }

}

@media only screen and (max-width: 900px) {
    .rocket-section {
        display: none;
    }

    .rocket-fly-section {
        padding: var(--space-xl) var(--space-m);
    }

    .cta-rocket__button {
        padding: var(--space-s) var(--space-m);
        font-size: var(--fs-300);
    }

    .mb-rocket-section {
        display: block;
    }

    .mb-rocket-section>div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        overflow: hidden;
        border-radius: var(--border-radius-medium);
        /* box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.1); */
    }

    .mb-rocket-section h3 {
        display: none;
    }

    .mb-btn {
        order: 2;
        padding: 5% 0;
    }

    .mb-rocket {
        order: 1;
    }

    .mb-rocket img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        z-index: 2;
    }

    @keyframes rocketFlyMobile {
        0% {
            transform: translateY(0);
        }

        90% {
            transform: translateY(-300px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    .mb-rocket img.rocket-fly-mobile {
        animation: rocketFlyMobile 2s ease-in-out forwards;
    }
}

/* ========== 6. SPLIT SLIDER SECTION ========== */
.split-slider-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Cormorant Garamond', serif;
    padding: var(--space-xl) var(--space-m);
    box-sizing: border-box;
}

.split-slider-section .slider-title-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-left: var(--space-xl);
    cursor: default;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    z-index: 2;
}

.split-slider-section .slider-title-decorator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1a202c;
    margin-right: var(--space-m);
    transform-origin: left;
}

.split-slider-section .slider-section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: var(--font-primary);
    font-weight: 700;
    color: #1a202c;
    overflow: hidden;
    display: inline-block;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    cursor: pointer;
}

.split-slider-section .slider-title-char {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.slider-title-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: #1a202c;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
}

.split-slider-section .split-slider-container {
    height: 75vh;
    width: 100%;
    padding: 0 var(--space-xl);
    position: relative;
}

.split-slider-section .swiper {
    height: 100%;
    width: 100%;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.split-slider-section .swiper-slide {
    overflow: hidden;
    display: flex;
}

.split-slider-section .swiper-image {
    width: 50%;
    height: 100%;
}

.split-slider-section .swiper-image-inner {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-blend-mode: overlay;
}

.split-slider-section .swiper-image-inner.swiper-image-left {
    padding: var(--space-xl);
}

.split-slider-section .swiper-image-left {
    filter: sepia(100%);
    transition: all 1s linear 1s;
}

.split-slider-section .swiper-slide.swiper-slide-active .swiper-image-left {
    filter: sepia(0%);
}

.split-slider-section .swiper-image-inner.swiper-image-right {
    filter: hue-rotate(-60deg);
    transition: all 1s linear 1s;
    background-blend-mode: multiply;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.split-slider-section .swiper-slide.swiper-slide-active .swiper-image-right {
    filter: hue-rotate(90deg);
}

.split-slider-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #1a202c;
    align-self: flex-start;
    margin: 0 0 auto 0;
    font-size: 4.5rem;
    line-height: 1;
    transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s;
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
}

.split-slider-section h1 span.emphasis {
    font-weight: 700;
    font-style: italic;
    opacity: 0;
    transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
    transform: translate3d(-20%, 0, 0);
    display: inline-block;
}

.split-slider-section h1 span:not(.emphasis) {
    font-size: 3.5rem;
}

.split-slider-section h1+p {
    font-family: 'Cormorant SC', serif;
    color: #1a202c;
    font-size: var(--fs-200);
    letter-spacing: 2px;
    line-height: 1;
    align-self: flex-end;
    text-transform: uppercase;
    transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s;
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
    font-weight: 500;
}

.split-slider-section p.paragraph {
    font-family: 'Cormorant Garamond', serif;
    color: #1a202c;
    width: 100%;
    max-width: 350px;
    text-align: justify;
    font-size: var(--fs-500);
    font-weight: 500;
    opacity: 0;
    transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s;
    transform: translate3d(-20%, 0, 0);
}

.split-slider-section .swiper-slide.swiper-slide-active h1,
.split-slider-section .swiper-slide.swiper-slide-active p.paragraph,
.split-slider-section .swiper-slide.swiper-slide-active h1 span.emphasis,
.split-slider-section .swiper-slide.swiper-slide-active h1+p {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.split-slider-section .swiper-pagination.slider-swiper-pagination {
    right: var(--space-s);
    top: 75%;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    width: auto;
}

.split-slider-section .slider-swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: 0.4;
    border-radius: 0%;
    transition: opacity 0.3s ease;
    margin: var(--space-xs) 0 !important;
    display: block;
}

.split-slider-section .slider-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

@media screen and (max-width: 960px) {
    .split-slider-section .swiper-pagination.slider-swiper-pagination {
        top: 50%;
    }

    .split-slider-section .split-slider-container {
        height: 90vh;
        width: 100%;
        padding: 0 var(--space-xl);
        position: relative;
    }

    .split-slider-section .swiper-slide {
        flex-direction: column;
    }

    .split-slider-section .swiper-image {
        width: 100%;
        height: 50%;
    }

    .split-slider-section h1 {
        font-size: 3rem;
        align-self: center;
        text-align: center;
        margin: auto 0;
    }

    .split-slider-section h1 span:not(.emphasis) {
        font-size: 2rem;
    }

    .split-slider-section h1+p {
        align-self: center;
        padding-right: 0;
        margin-bottom: var(--space-s);
        margin-top: var(--space-s);
    }

    .split-slider-section p.paragraph {
        max-width: 94%;
        font-size: var(--fs-200);
        margin: 0 auto;
    }

    .split-slider-section .split-slider-container {
        padding: 0 var(--space-m);
    }

    .split-slider-section .swiper-image-inner.swiper-image-right {
        border-top: 4px solid rgba(255, 255, 255, 0.3);
        border-left: none;
    }

    .split-slider-section .slider-title-decorator {
        width: 40px;
        margin-right: var(--space-s);
    }
}

@media screen and (max-width: 480px) {
    .split-slider-section {
        padding: var(--space-xl) var(--space-m);
    }

    .split-slider-section h1+p {
        font-size: var(--fs-100);
        font-weight: 500;
    }

    .split-slider-section h1 {
        font-size: 2.5rem;
        align-self: center;
        text-align: center;
        margin: auto 0;
    }

    .split-slider-section h1 span:not(.emphasis) {
        font-size: 2rem;
    }

    .split-slider-section p.paragraph {
        max-width: 100%;
        font-size: var(--fs-200);
        margin: 0 auto;
    }

    .split-slider-section .slider-title-container {
        padding-left: var(--space-xs);
        margin-bottom: var(--space-l);
    }

    .split-slider-section .split-slider-container {
        height: 90vh;
        padding: 0;
    }

    .split-slider-section .swiper-image-inner.swiper-image-left,
    .split-slider-section .swiper-image-inner.swiper-image-right {
        padding: var(--space-m);
    }

    .split-slider-section .slider-title-decorator {
        width: 30px;
        margin-right: var(--space-xs);
    }
}

/* ========== 7. Testimonial Section ========== */
.testimonial-section-container {
    margin: auto;
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgb(237, 237, 237, 0) 0%, #ededed 55%, rgb(240, 195, 209, 0)) !important;
}

.testimonial-title-container {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-l);
    cursor: pointer;
}

.testimonial-title-decorator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1a202c;
    margin-right: var(--space-m);
    transform-origin: left;
}

.testimonial-section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    color: #1a202c;
    overflow: hidden;
    display: inline-block;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    cursor: pointer;
}

.testimonial-title-char {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.testimonial-title-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: #1a202c;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.testimonial-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.testimonial-user-img {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-gallery-thumbs {
    height: 100%;
}

.testimonial-gallery-thumbs .swiper-wrapper {
    align-items: center;
}

.testimonial-gallery-thumbs .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px !important;
    height: 330px;
    position: relative;
}

.testimonial-gallery-thumbs .swiper-slide img {
    filter: contrast(0.5) blur(1px);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    transition: filter 0.3s ease;
}

.testimonial-gallery-thumbs .swiper-slide-active img {
    filter: contrast(1) blur(0px) !important;
}

.testimonial-user-saying {
    background: rgb(255, 255, 255, 0.3);
    border-radius: var(--border-radius-medium);
    width: 60%;
    color: #1a202c;
    height: 100%;
}

.testimonial-swiper {
    height: 80vh;
}

.testimonial-section .testimonial-quote {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--space-xxl);
    padding-right: var(--space-xxl);
    gap: var(--space-xxs);
    box-sizing: border-box;
}

.testimonial-quote-icon {
    width: 38px;
    display: block;
    margin-bottom: var(--space-s);
}

.testimonial-section .testimonial-quote p {
    font-size: var(--fs-500);
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    margin-bottom: var(--space-s);
    color: #1a1a1a;
}

.testimonial-section .swiper-pagination.testimonial-pagination {
    right: var(--space-s);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    width: auto;
}

.testimonial-section .testimonial-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #1a202c;
    opacity: 0.4;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    margin: var(--space-xs) 0 !important;
    display: block;
}

.testimonial-section .testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

@media screen and (max-width: 960px) {
    .testimonial-section .swiper-pagination.testimonial-pagination {
        top: 60%;
    }

    .testimonial-gallery-thumbs .swiper-slide {
        width: 200px !important;
        height: 270px;
    }

    .testimonial-user-img {
        width: 50%;
    }

    .testimonial-user-saying {
        width: 50%;
        height: 100%;
    }

    .testimonial-section .testimonial-quote {
        padding-left: var(--space-l);
        padding-right: var(--space-l);
    }

    .testimonial-swiper {
        height: 70vh;
    }

    .testimonial-section .testimonial-quote p {
        font-size: var(--fs-400);
        line-height: 1.4;
        margin-bottom: var(--space-xs);
    }

    .testimonial-quote-icon {
        width: 28px;
        margin-bottom: var(--space-xs);
    }

    .testimonial-section .swiper-pagination.testimonial-pagination {
        top: 50%;
    }

    .testimonial-section .testimonial-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .testimonial-title-decorator {
        width: 40px;
        margin-right: var(--space-s);
    }
}

@media screen and (max-width: 600px) {

    .testimonial-section {
        display: flex;
        flex-direction: column;
        gap: var(--space-s);
    }

    .testimonial-gallery-thumbs .swiper-slide {
        width: 150px !important;
        height: 280px;
    }

    .testimonial-user-img,
    .testimonial-user-saying {
        width: 100%;
    }

    .testimonial-section .testimonial-quote {
        padding-left: var(--space-m);
        padding-right: var(--space-m);
    }

    .testimonial-swiper {
        height: 50vh;
    }

    .testimonial-section .testimonial-quote p {
        font-size: var(--fs-300);
        line-height: 1.4;
        margin-bottom: var(--space-xs);
    }

    .testimonial-quote-icon {
        width: 22px;
        margin-bottom: var(--space-xs);
    }

    .testimonial-section .swiper-pagination.testimonial-pagination {
        top: 50%;
    }

    .testimonial-section .testimonial-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .testimonial-title-decorator {
        width: 30px;
        margin-right: var(--space-xs);
    }
}

/* ========== 8. GROWTH CTA SECTION ========== */
.growth-hero {
    background: linear-gradient(to bottom, rgba(237, 237, 237, 0.1) 0%, #ededed 50%, rgba(240, 195, 209, 0.1)) !important;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
}

.gh__top-placeholder {
    font-size: var(--fs-200);
    color: #666666;
    letter-spacing: 0.05em;
}

.gh__headline {
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gh__headline-line {
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.gh__headline-line>div {
    overflow: hidden;
}

.gh__line-1,
.gh__line-3 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 600;
}

.gh__line-2 {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    padding-left: var(--space-xs);
    padding-bottom: var(--space-xs);
}

.gh__arrow-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1em;
    height: 1em;
    background-color: #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
}

.gh__arrow-icon svg {
    width: 50%;
    height: 50%;
}

.gh__char {
    display: inline-block;
    will-change: transform;
    position: relative;
}

.gh__toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 1.8em;
    height: 0.8em;
    border-radius: 1em;
    cursor: pointer;
    margin: 0 0.15em -0.15em;
    border: 2px solid #383838;
    background-color: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.gh__toggle-thumb {
    position: absolute;
    z-index: 1;
    left: 0.1em;
    top: 50%;
    transform: translateY(-50%);
    width: 0.55em;
    height: 0.55em;
    background: #383838;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.gh__line-3-content {
    display: flex;
    align-items: center;
    gap: 0.5ch;
}

.gh__cursor-dot {
    position: relative;
    width: 1.5em;
    height: 1.5em;
}

.gh__cursor-dot svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.gh__subtext-wrapper {
    max-width: 480px;
    width: 100%;
    margin: var(--space-xl) 0;
    position: relative;
}

.gh__subtext-wrapper::before,
.gh__subtext-wrapper::after {
    content: '';
    position: absolute;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.gh__subtext-wrapper::before {
    left: -30px;
}

.gh__subtext-wrapper::after {
    right: -30px;
}

.gh__subtext p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: #666666;
    font-weight: 500;
}

.gh__subtext p:first-child {
    margin-bottom: var(--space-xs);
}

.gh__cta-container {
    display: flex;
    align-items: center;
    position: relative;
}

.gh__text-button {
    background-color: black;
    color: white;
    font-size: var(--fs-300);
    font-family: var(--font-primary);
    font-weight: 500;
    padding: var(--space-s) var(--space-m) var(--space-s) var(--space-l);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.gh__text-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gh__arrow-button {
    width: 50px;
    height: 50px;
    background-color: #F5F5F5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-left: -25px;
    z-index: 2;
}

.gh__arrow-svg {
    width: 18px;
    height: 18px;
    stroke: #111;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.gh__text-button:hover~.gh__arrow-button {
    transform: translateY(-2px) rotateZ(45deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.gh__ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    animation: gh-ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes gh-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {

    .gh__subtext-wrapper {
        margin: var(--space-l) 0;
    }

    .gh__subtext-wrapper::before,
    .gh__subtext-wrapper::after {
        opacity: 0;
    }
}

@media (max-width: 480px) {

    .gh__line-2 {
        letter-spacing: -0.03em;
    }

    .gh__text-button {
        font-size: var(--fs-200);
        padding: 14px 20px 14px 30px;
    }

    .gh__arrow-button {
        width: 45px;
        height: 45px;
        margin-left: -22px;
    }
}

/* ========== 9. FOOTER SECTION ========== */
.main-footer {
    padding: var(--space-xxl) var(--space-xl) var(--space-l);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mf__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    padding-bottom: var(--space-xxl);
    border-bottom: 1px solid #d0d0d0;
}

.mf__col h3 {
    font-size: var(--fs-700);
    margin-bottom: var(--space-m);
    color: #111111;
}

.mf__col img {
    margin-bottom: var(--space-m);
}

.mf__col p,
.mf__col a {
    color: #666666;
    text-decoration: none;
    line-height: 1.7;
    font-weight: 400;
    font-size: var(--fs-300);
}

.mf__col p {
    max-width: 250px;
}

.mf__contact-item {
    margin-bottom: var(--space-xs);
}

.mf__subscribe-form {
    display: flex;
}

.mf__subscribe-form input {
    flex-grow: 1;
    padding: var(--space-s);
    border: none;
    border-radius: 50px 0 0 50px;
    background: #fff;
    outline: none;
    font-size: var(--fs-300);
    min-width: 0;
}

.mf__subscribe-form button {
    padding: var(--space-s) var(--space-l);
    border: none;
    background-color: #000;
    color: #fff;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-weight: 500;
}

.mf__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-l);
    font-size: var(--fs-200);
    color: #666666;
    flex-wrap: wrap;
    gap: var(--space-s);
}

.mf__bottom a {
    color: #666666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .main-footer {
        padding: var(--space-xl) var(--space-l) var(--space-m);
    }

    .mf__grid {
        text-align: center;
    }

    .mf__col p {
        margin-left: auto;
        margin-right: auto;
    }

    .mf__subscribe-form {
        justify-content: center;
    }

    .mf__bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: var(--space-l) var(--space-m) var(--space-s);
    }

    .mf__bottom {
        flex-direction: column;
        gap: var(--space-s);
    }
}


/* =========================== END of Global Page =========================== */