:root {
    /* Colors */
    --color-bg-primary: #FFFFFF;
    /* Pure White */
    --color-bg-secondary: #F4F1EA;
    /* Warm Sand Beige */
    --color-bg-light: #F9FAFB;
    /* Soft Grey */

    --color-accent-primary: #2DD4BF;
    /* Electric Turquoise */
    --color-accent-secondary: #FF6F61;
    /* Desert Coral */

    --color-text-primary: #111827;
    /* Deep Black */
    --color-text-secondary: #4B5563;
    /* Grey 600 */
    --color-text-dark: #111827;
    /* Same as primary for light theme */

    --color-border: #E5E7EB;
    /* Grey 200 */
    --color-border-light: #F3F4F6;
    /* Grey 100 */

    /* =========================================
   Page Transitions
   ========================================= */
    .page-transition-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-bg);
        z-index: 9999;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .page-transition-overlay.is-active {
        opacity: 1;
        pointer-events: all;
    }

    /* =========================================
   Organic Layouts
   ========================================= */
    .organic-overlap {
        position: relative;
        z-index: 2;
    }

    @media (min-width: 992px) {
        .organic-overlap-left {
            margin-left: -10%;
            margin-top: 5rem;
        }

        .organic-overlap-right {
            margin-right: -10%;
            margin-top: 5rem;
        }

        .organic-overlap-top {
            margin-top: -15%;
        }
    }

    .image-soft-corner {
        border-radius: 0 80px 0 0;
    }

    .image-soft-corner-reverse {
        border-radius: 80px 0 0 0;
    }

    /* =========================================
   Interactive Typography
   ========================================= */
    .word {
        display: inline-block;
        overflow: hidden;
        vertical-align: bottom;
        margin-right: 0.2em;
        /* Space between words */
    }

    .char {
        display: inline-block;
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
        will-change: transform, opacity;
    }

    .char.is-visible {
        transform: translateY(0);
        opacity: 1;
    }

    /* Hover effect for large headlines */
    h1 .char,
    h2 .char {
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, font-weight 0.3s ease;
    }

    h1:hover .char,
    h2:hover .char {
        /* Subtle weight shift if font supports it, or slight skew */
        transform: skewX(-5deg) translateY(0);
    }

    /* =========================================
   Chatbot Widget
   ========================================= */
    .chatbot-trigger {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 60px;
        height: 60px;
        background-color: var(--color-accent-primary);
        color: var(--color-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9990;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    }

    .chatbot-trigger:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(64, 224, 208, 0.4);
    }

    .chatbot-trigger svg {
        width: 32px;
        height: 32px;
        fill: currentColor;
    }

    .chatbot-modal {
        position: fixed;
        bottom: 6rem;
        right: 2rem;
        width: 400px;
        height: 600px;
        max-height: 80vh;
        background-color: var(--color-bg-primary);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        z-index: 10000;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid var(--color-border);
    }

    .chatbot-modal.is-open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: all;
    }

    .chatbot-iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    @media (max-width: 480px) {
        .chatbot-modal {
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            max-height: 100vh;
            border-radius: 0;
        }

        .chatbot-trigger {
            bottom: 1.5rem;
            right: 1.5rem;
        }
    }

    /* ... (rest of variables) ... */

    /* Light Background Section */
    .section.is-light {
        background-color: var(--color-bg-light);
        color: var(--color-text-dark);
    }

    .section.is-light h2,
    .section.is-light h3,
    .section.is-light h4 {
        color: var(--color-text-dark);
    }

    .section.is-light p {
        color: #4b5563;
        /* Darker grey for text on light bg */
    }

    .section.is-light .eyebrow {
        color: var(--color-accent-secondary);
    }

    /* Improved Marquee */
    .marquee-large {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        padding: 2rem 0;
        display: flex;
        /* Use flex for seamless joining */
    }

    .marquee-large .marquee-content {
        display: flex;
        animation: scroll-large 40s linear infinite;
        min-width: 100%;
        /* Ensure it takes up full width */
    }

    .marquee-large .marquee-item {
        font-size: clamp(3rem, 10vw, 8rem);
        font-weight: var(--font-weight-bold);
        text-transform: uppercase;
        padding-right: 6rem;
        /* Use padding instead of margin for accurate width calc */
        letter-spacing: -0.02em;
        flex-shrink: 0;
        /* Prevent shrinking */
    }

    @keyframes scroll-large {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }

        /* Scroll full width of content */
    }

    /* FAQ Redesign */
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background-color: rgba(0, 0, 0, 0.03);
        border: 1px solid var(--color-border-light);
        border-radius: var(--radius-md);
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        background-color: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

    .faq-question {
        font-size: var(--text-h4);
        font-weight: var(--font-weight-bold);
        margin-bottom: 1rem;
        color: var(--color-text-dark);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        color: #4b5563;
        font-size: var(--text-body);
        line-height: 1.6;
    }

    /* Typography */
    --font-heading: 'Inter',
    sans-serif;
    --font-body: 'Inter',
    sans-serif;

    --text-h0: 4.5rem;
    --text-h1: 3.5rem;
    --text-h2: 2.5rem;
    --text-h3: 1.75rem;
    --text-h4: 1.25rem;
    --text-h5: 1rem;
    --text-h6: 0.875rem;

    --text-body-lg: 1.125rem;
    --text-body: 1rem;
    --text-body-sm: 0.875rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;

    --container-width: 1400px;
    /* Wider container for modern feel */
    --container-padding: 2rem;

    /* UI Elements */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    cursor: none !important;
    /* Force hide native cursor globally */
}

/* Nuclear option for cursor */
* {
    cursor: none !important;
}

a,
button,
input,
textarea,
select {
    cursor: none;
    /* Ensure native cursor is hidden on interactive elements */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    margin-top: 0;
    line-height: 1.1;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    /* Tight tracking */
}

h1 {
    font-size: var(--text-h1);
}

h2 {
    font-size: var(--text-h2);
}

h3 {
    font-size: var(--text-h3);
}

h4 {
    font-size: var(--text-h4);
}

h5 {
    font-size: var(--text-h5);
}

h6 {
    font-size: var(--text-h6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin-top: 0;
    margin-bottom: 1em;
    color: var(--color-text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.section {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1.5em;
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.button:hover {
    background-color: var(--color-accent-primary);
    color: black;
    border-color: var(--color-accent-primary);
}

.button.is-inverse {
    background-color: var(--color-text-primary);
    color: var(--color-bg-primary);
    /* White text on dark background */
    border-color: var(--color-text-primary);
}

.button.is-inverse:hover {
    background-color: var(--color-accent-primary);
    border-color: var(--color-accent-primary);
    color: black;
}

.button.is-secondary {
    border-color: var(--color-border);
}

.button.is-secondary:hover {
    border-color: var(--color-text-primary);
    background-color: transparent;
    color: var(--color-text-primary);
}

/* Navigation */
.nav {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav_left {
    display: flex;
    align-items: center;
}

.nav_logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.nav_logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent-primary);
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav_menu-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_link {
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    color: var(--color-bg-secondary);
    /* Light color for dark nav */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav_link:hover {
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: var(--color-accent-secondary);
    text-underline-offset: 4px;
}

/* Mobile Menu Button */
.nav_mobile-menu-button {
    display: none;
    color: var(--color-bg-secondary);
    /* Light color for mobile menu icon */
}

@media (max-width: 768px) {
    .nav_menu {
        display: none;
    }

    .nav_mobile-menu-button {
        display: block;
        cursor: pointer;
    }
}

/* Ensure buttons in nav are visible */
.nav .button {
    color: var(--color-bg-secondary);
    border-color: var(--color-bg-secondary);
}

.nav .button:hover {
    color: var(--color-text-primary);
    /* Dark text on hover */
    background-color: var(--color-accent-primary);
    border-color: var(--color-accent-primary);
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.hero_container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero_content {
    order: 1;
}

.hero h1 {
    font-size: var(--text-h0);
    /* Bigger, bolder */
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero p {
    font-size: var(--text-body-lg);
    margin-bottom: 2.5rem;
    max-width: 45ch;
    color: var(--color-text-secondary);
}

.button-group {
    display: flex;
    gap: 1rem;
}

.hero_visual {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero_visual img {
    border-radius: var(--radius-sm);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.hero_visual img:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .hero_container {
        grid-template-columns: 1fr;
    }

    .hero_visual {
        order: 2;
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Services Section */
.services_grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile first */
    gap: 1px;
    /* For border effect */
    background-color: var(--color-border);
    /* Grid lines */
    border: 1px solid var(--color-border);
    margin-top: var(--spacing-md);
}

@media (min-width: 768px) {
    .services_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services_grid {
        grid-template-columns: repeat(3, 1fr);
        /* Default 3 columns */
    }

    .services_grid.is-2-col {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for Trio layout */
    }

    .services_grid.is-4-col {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns for Principles layout */
    }
}

.card {
    background-color: var(--color-bg-primary);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align for minimal look */
    text-align: left;
    transition: background-color 0.2s ease;
}

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

.card_icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-accent-primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: var(--text-h4);
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.card p {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
}

/* Section Header */
.section_header {
    max-width: 800px;
    margin-bottom: var(--spacing-lg);
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-accent-secondary);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    display: block;
}

/* Features Section */
.feature_section {
    padding: var(--spacing-xl) 0;
}

.feature_intro {
    max-width: 800px;
    margin-bottom: var(--spacing-xl);
}

.feature_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-border);
}

.feature_row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature_row.is-reversed .feature_visual {
    order: 2;
}

.feature_row.is-reversed .feature_content {
    order: 1;
}

@media (max-width: 768px) {

    .feature_row,
    .feature_row.is-reversed {
        grid-template-columns: 1fr;
    }

    .feature_visual {
        order: 1 !important;
    }

    .feature_content {
        order: 2 !important;
    }
}

.feature_visual img {
    border-radius: var(--radius-sm);
    filter: grayscale(100%);
}

.feature_content h3 {
    font-size: var(--text-h3);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta_section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background-color: var(--color-bg-secondary);
}

.cta_content {
    max-width: 800px;
    margin: 0 auto;
}

.cta_section h2 {
    font-size: var(--text-h2);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--color-bg-primary);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer_grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer_brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer_logo {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-primary);
}

.footer_logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent-primary);
}

.footer_nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
}

.footer_column h4 {
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer_link {
    color: var(--color-text-primary);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer_link:hover {
    color: var(--color-accent-secondary);
}

.footer_bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .footer_grid {
        grid-template-columns: 1fr;
    }

    .footer_bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Insights/Blog Section */
.blog_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background-color: var(--color-border);
    border: 1px solid var(--color-border);
    margin-top: var(--spacing-md);
}

.blog_card {
    background-color: var(--color-bg-primary);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: background-color 0.2s ease;
}

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

.blog_image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
}

.blog_card:hover .blog_image {
    filter: grayscale(0%);
}

.blog_content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog_tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-accent-primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.blog_card h3 {
    font-size: var(--text-h4);
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.blog_card p {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.blog_link {
    margin-top: auto;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.blog_link svg {
    transition: transform 0.2s ease;
}

.blog_card:hover .blog_link svg {
    transform: translateX(5px);
}

/* --- Dynamic Interactions --- */

/* Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Infinite Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: var(--color-accent-primary);
    color: var(--color-bg-primary);
    padding: 1rem 0;
    border-top: 1px solid var(--color-bg-primary);
    border-bottom: 1px solid var(--color-bg-primary);
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    margin-right: 4rem;
    letter-spacing: 0.05em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Enhanced Hover Effects ("Haptic" feel) */
.button {
    /* Overriding previous transition */
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(48, 213, 200, 0.2);
    /* Glow effect */
}

.button:active {
    transform: scale(0.95);
}

.card {
    /* Overriding previous transition */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--color-accent-primary);
}

.nav_link {
    position: relative;
}

.nav_link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-secondary);
    transition: width 0.3s ease;
}

.nav_link:hover::after {
    width: 100%;
}

.nav_link:hover {
    text-decoration: none;
    /* Remove default underline */
}

/* Large Scrolling Text Sections */
.scroll-text-section {
    padding: 8rem 0;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.scroll-text-section.bg-primary {
    background-color: var(--color-bg-primary);
}

.scroll-text-section.bg-secondary {
    background-color: var(--color-bg-secondary);
}

.scroll-text-section.bg-accent {
    background-color: var(--color-accent-primary);
    color: var(--color-bg-primary);
}

/* Scroll-based scaling text */
.scale-on-scroll {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    transition: font-size 0.3s ease;
    will-change: font-size;
}

/* Alternating marquee styles */
.marquee-large {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
    display: flex;
    /* Force flex for seamless joining */
    align-items: center;
}

.marquee-large .marquee-content {
    display: flex;
    /* Force flex */
    align-items: center;
    animation: scroll-large 40s linear infinite;
    flex-shrink: 0;
    min-width: 100%;
}

.marquee-large .marquee-item {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    padding-right: 6rem;
    /* Use padding instead of margin for accurate width calc */
    letter-spacing: 0.02em;
    /* Positive tracking to prevent overlap */
    line-height: 1.1;
    /* Ensure no vertical overlap */
    flex-shrink: 0;
    /* Prevent shrinking */
}

/* Marquee Link */
.marquee-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    display: block;
}

.marquee-link:hover {
    color: var(--color-accent-primary);
}

.marquee-link:hover .marquee-item {
    -webkit-text-stroke: 1px var(--color-accent-primary);
    color: transparent;
}

@keyframes scroll-large {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

    /* Scroll full width of content */
}

/* --- Modern Depth & Polish --- */

/* Smooth Scrolling (Lenis) */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Custom Cursor */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        mix-blend-mode: difference;
    }

    .cursor-dot {
        width: 32px;
        height: 32px;
        background-color: transparent;
        background-image: url('images/cursor-arrow.svg');
        background-size: contain;
        background-repeat: no-repeat;
        transform: translate(-20%, -20%);
        /* Align tip */
        border-radius: 0;
        /* Reset border radius */
    }

    .cursor-outline {
        display: none;
        /* Hide outline as requested */
    }

    /* Cursor Hover States */
    body.hovering .cursor-outline {
        width: 60px;
        height: 60px;
        background-color: rgba(45, 212, 191, 0.1);
        /* Slight turquoise tint */
        border-color: var(--color-accent-primary);
    }

    body.hovering .cursor-dot {
        transform: translate(-20%, -20%) scale(1.2);
        /* Subtle scale on hover */
        transition: transform 0.2s ease;
    }
}

/* Parallax Containers */
.parallax-wrapper {
    overflow: hidden;
    position: relative;
}

.parallax-image {
    will-change: transform;
    transform: scale(1.1);
    /* Slight zoom to prevent gaps during movement */
}

/* =========================================
   Hamburger Menu
   ========================================= */
.hamburger-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-primary);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-menu-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.hamburger-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 8rem 2rem 4rem;
    overflow-y: auto;
}

.hamburger-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.menu-category {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hamburger-menu-overlay.is-open .menu-category {
    opacity: 1;
    transform: translateY(0);
}

.hamburger-menu-overlay.is-open .menu-category:nth-child(1) {
    transition-delay: 0.1s;
}

.hamburger-menu-overlay.is-open .menu-category:nth-child(2) {
    transition-delay: 0.2s;
}

.hamburger-menu-overlay.is-open .menu-category:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-category h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-primary);
    margin-bottom: 1.5rem;
}

.menu-category-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-category-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-category-link:hover {
    color: var(--color-accent-primary);
    transform: translateX(8px);
}

.menu-category-link svg {
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-category-link:hover svg {
    opacity: 1;
}

.menu-close-button {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
    transition: transform 0.3s ease;
}

.menu-close-button:hover {
    transform: rotate(90deg);
}

.menu-close-button svg {
    width: 32px;
    height: 32px;
}

.nav_mobile-menu-button {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.nav_mobile-menu-button:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .nav_mobile-menu-button {
        display: block;
    }

    .nav_menu {
        display: none;
    }

    .hamburger-menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .nav_mobile-menu-button {
        display: block;
    }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-turquoise);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-bg-dark);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-primary);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}