
/* ADDED LOCAL FONTS & CHANGED ALL TEXT TO EITHER IBM PLEX OR INTER FOR BODY COPY */

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Universal selector already in critical.css - removed duplicate */

:root {
    /* Layout */
    --header-h: 80px;
    --max-width: 1512px;
    --content-width: 1358px;
    --section-space: 100px;
    --page-inline-padding: 24px;

    /* Typography */
    --font-primary: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    --font-primary-condensed: var(--font-primary);
    --font-secondary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Primary Colors */
    --color-primary: #ff9000;
    --color-primary-light: #ffb14d;
    --color-primary-lighter: #ffb350;
    --color-primary-muted: rgba(255, 144, 0, 0.05);
    --orange-primary: #ff9000;

    /* Neutral Colors */
    --color-bg-main: #fefefc;
    --color-surface: #ecedee;
    --color-dark: #0e0f11;
    --color-text: #1e1e1e;
    --color-text-muted: #5a5a5a;
    --color-text-very-muted: rgba(30, 30, 30, 0.4);
    --color-black: #000000;
    --color-white: #ffffff;

    /* Overlay Colors */
    --overlay-dark: rgba(0, 0, 0, 0.8);
    --overlay-medium: rgba(0, 0, 0, 0.4);
    --overlay-light: rgba(0, 0, 0, 0.1);
    --pricing-card-bg: rgba(255, 247, 230, 0.5);
    --subtle-bg: rgba(30, 30, 30, 0.05);

    /* Spacing */
    --space-xs: 10px;
    --space-sm: 15px;
    --space-md: 20px;
    --space-lg: 25px;
    --space-xl: 30px;
    --space-2xl: 40px;
    --space-3xl: 50px;
    --space-4xl: 80px;
    --space-5xl: 150px;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-xl: 20px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-subtle: -5px 5px 15px 0px rgba(0, 0, 0, 0.05);
    --shadow-orange: -5px 5px 12px 0px rgba(255, 144, 0, 0.05);
    --shadow-cta: -4px 4px 65px 0px rgba(255, 144, 0, 0.4);
}

@media (max-width: 900px) {
    :root {
        --section-space: 80px;
        --page-inline-padding: 28px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-space: 60px;
        --page-inline-padding: 24px;
    }
}

@media (min-width: 1400px) {
    :root {
        --page-inline-padding: 48px;
    }
}

@media (min-width: 1800px) {
    :root {
        --page-inline-padding: 80px;
    }
}

section.stats-banner,
section.transform-section,
section.feature-cards,
section.key-stats,
section.features-grid-section,
section.how-it-works-section,
section.testimonials-new,
section.pricing,
section.faq {
    padding: var(--section-space) var(--page-inline-padding);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main p,
main li,
footer p,
footer li {
    font-family: var(--font-secondary);
}

html, body {
    height: 100%;
}

/* UNIFIED ALL BUTTON SIZES INTO ONE SIZE FOR CONSISTENCY -DOGA */
.hero-cta,
.transform-cta,
.feature-card-cta,
.cta-button,
.login-link {
    height: 56px !important;
    padding: 16px 36px !important;
}

@media (max-width: 1024px) {
    .hero-cta,
    .transform-cta,
    .feature-card-cta,
    .cta-button,
    .login-link {
        height: 56px !important;
        padding: 16px 36px !important;
    }
}

@media (max-width: 768px) {
    .hero-cta,
    .transform-cta,
    .feature-card-cta,
    .cta-button,
    .login-link {
        height: 56px !important;
        padding: 16px 36px !important;
    }
}

.container {
    max-width:  1551px;
    margin: 0 auto;
    padding: 0 var(--page-inline-padding, 24px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

/* Header – Figma top nav (node-id 29:107) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.8) !important;
}

.header.header-hidden {
    transform: translateY(-100%);
}

/* Navigation - Desktop: Figma x=124, width=1303, height=41 */
.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 24px 124px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1551px; /* 1303 + 124*2 */
}

/* Left Side */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

/* Mobile Menu Button */
.menu-toggle-button {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle-button:hover {
    border: none;
}

.menu-toggle-button svg {
    width: 31px;
    height: 15px;
    display: block;
}

.menu-toggle-button svg line {
    stroke: white;
    stroke-width: 1;
}

/* Logo */
.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    display: block;
    width: auto;
    transition: transform 0.3s;
    width: 160px;
}

.logo-link:hover .logo-img {
    transform: scale(1.02);
}

/* Nav Menu Wrapper - ensure visible on desktop */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Nav Links - Desktop: All white text, transparent background */
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    min-height: 44px;
    min-width: 44px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--weight-regular);
    font-size: var(--text-base);
    color: #ffffff !important;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.25s;
    background: transparent !important;
}

.nav-link:hover {
    opacity: 0.85;
    background: transparent !important;
    color: #ffffff !important;
}

.nav-link.active {
    background: transparent !important;
    font-weight: var(--weight-regular);
    color: #ffffff !important;
}

.nav-link.active::after {
    display: none;
}

/* Use Cases Dropdown */
.use-cases-menu {
    position: relative;
}

.use-cases-button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    min-height: 44px;
    min-width: 44px;
    background: transparent !important;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: var(--weight-regular);
    font-family: var(--font-primary);
    transition: all 0.25s;
}

.use-cases-button:hover {
    opacity: 0.85;
    background: transparent !important;
    color: #ffffff !important;
}

.use-cases-button svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

.use-cases-button svg {
    transition: transform 0.3s ease;
}

.use-cases-menu.active .use-cases-button svg {
    transform: rotate(180deg);
}

.use-cases-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s;
    z-index: 1001;
}

.use-cases-menu.active .use-cases-dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.use-cases-dropdown .nav-link {
    width: 100%;
    padding: 10px 16px;
    color: #1a1a1a !important;
}

.use-cases-dropdown .nav-link:hover {
    color: #1a1a1a !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

/* Header Actions - Desktop only */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-family: var(--font-primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    min-height: 44px;
    min-width: 44px;
    transition: all 0.25s;
    white-space: nowrap;
    font-size: var(--text-base);
}

.login-link {
    color: #ffffff !important;
    border: 1px solid transparent;
    font-weight: var(--weight-medium, 500);
    background: transparent !important;
}

.login-link:hover {
    opacity: 0.85;
    background: transparent !important;
    color: #ffffff !important;
}

/* Book A Demo button - White background, black text, rounded corners */
/* Figma: 145×41px */
.cta-button {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ffffff !important;
    font-weight: var(--weight-medium, 500);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-pill, 50px);
    min-width: 145px;
    height: 41px;
    padding: 10px 20px;
}

.cta-button:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

/* Mobile header language switcher - hidden by default, shown on mobile via media.css */
.mobile-header-language-switcher {
    display: none;
}

.desktop-header-language-switcher {
    display: flex;
    align-items: center;
}

.desktop-header-language-switcher .language-switcher-toggle {
    padding: 6px 10px;
    min-height: 36px;
    min-width: auto;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.desktop-header-language-switcher .language-switcher-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.desktop-header-language-switcher .language-switcher-toggle svg {
    color: #fff;
}

.desktop-header-language-switcher .current-lang {
    color: #fff;
}

.language-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.25s;
    min-height: 44px;
    min-width: 44px;
}

.language-switcher-toggle:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
}

.language-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.language-switcher-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.language-switcher.active .language-switcher-toggle svg {
    transform: rotate(180deg);
}

.language-switcher-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 150px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1001;
}

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

.language-switcher-menu li {
    margin: 0;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
    min-height: 44px;
}

.lang-option:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #000;
}

.lang-option .language-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s, visibility 0.3s;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

/* Focus Styles */
.nav-link:focus-visible,
.login-link:focus-visible,
.cta-button:focus-visible,
.language-switcher-toggle:focus-visible,
.menu-toggle-button:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Desktop navbar - ensure proper padding, colors, and visible nav links */
@media (min-width: 1024px) {
    .nav-container {
        padding: 24px 124px;
        max-width: 1551px;
    }

    .nav-menu-wrapper,
    .nav-menu {
        display: flex !important;
    }

    .nav-link,
    .use-cases-button,
    .login-link {
        color: #ffffff !important;
    }

    .cta-button {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .mobile-header-language-switcher {
        display: none !important;
    }

    .desktop-header-language-switcher {
        display: flex !important;
    }
}

/* Mobile Menu – Figma node 29-1195 (opened state) */
@media (max-width: 1023px) {
    .nav-container {
        padding: 24px var(--container-padding);
        max-width: 100%;
    }

    /* Mobile menu overlay - Full viewport height */
    .nav-menu.mobile-menu-open {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 0;
        box-shadow: none;
        align-items: stretch;
        z-index: 99999;
        overflow-y: auto;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        padding: 66px;
        backdrop-filter: blur(20px);
    }

    /* Content wrapper to center menu items while navbar is full width */
    .nav-menu.mobile-menu-open::after {
        content: '';
        display: block;
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
    }

    /* Mobile menu header with logo and close button - Full width navbar, centered content */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: none !important;
        background: transparent;
        position: sticky;
        top: 0;
        z-index: 10;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
    }

    .mobile-menu-header .logo-link {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-menu-header .logo-img {
        height: 28px;
        width: auto;
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        color: #ffffff;
        transition: all 0.2s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
        stroke: #ffffff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile menu content wrapper - menu items are direct children - Centered with max-width */
    .nav-menu.mobile-menu-open > li {
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
        list-style: none;
        padding: 0;
        border-bottom: none !important;
        flex-shrink: 0;
    }

    /* Navigation items spacing - Figma: Home y=152, About y=214, Use Cases y=279, Pricing y=468, Contact y=529 */
    .nav-menu.mobile-menu-open > li:not(.mobile-menu-header):not(.mobile-actions) {
        margin-bottom: 0;
    }

    /* Header - no border */
    .nav-menu.mobile-menu-open > .mobile-menu-header {
        border-bottom: none !important;
    }

    /* Actions container - has border-top separator before login section */
    .nav-menu.mobile-menu-open > .mobile-actions {
        border-bottom: none !important;
    }

    /* Mobile menu links - Figma: Home y=152, About y=214, Pricing y=468, Contact y=529 - Full width, no padding */
    .nav-menu.mobile-menu-open .nav-link {
        display: flex !important;
        width: 100%;
        min-height: auto;
        padding: 12px 0;
        text-align: left;
        justify-content: flex-start;
        align-items: center;
        color: #ffffff;
        font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.2s ease;
        background: transparent;
        border: none;
    }

    .nav-menu.mobile-menu-open .nav-link:hover,
    .nav-menu.mobile-menu-open .nav-link:focus {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    /* Use Cases menu in mobile */
    .nav-menu.mobile-menu-open .use-cases-menu {
        width: 100%;
        border-bottom: none !important;
    }

    /* Use Cases button - Figma: y=279 - Full width, no padding */
    .nav-menu.mobile-menu-open .use-cases-button {
        width: 100%;
        min-height: auto;
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        border: none;
        color: #ffffff;
        font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .nav-menu.mobile-menu-open .use-cases-button svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
        stroke: #ffffff;
    }

    .nav-menu.mobile-menu-open .use-cases-menu.active .use-cases-button svg {
        transform: rotate(180deg);
    }

    .nav-menu.mobile-menu-open .use-cases-dropdown {
        display: none;
        flex-direction: column;
        background: transparent;
        padding: 0;
        margin: 0;
        border: none;
        box-shadow: none;
    }

    .nav-menu.mobile-menu-open .use-cases-menu.active .use-cases-dropdown {
        display: flex;
        animation: slideDown 0.2s ease;
    }

    /* Use Cases dropdown items - Figma: Architects y=314, Realtors y=353, Interior Designers y=392 - Full width, arrows on left */
    .nav-menu.mobile-menu-open .use-cases-dropdown .nav-link {
        padding: 8px 0;
        font-size: 16px;
        color: #ffffff;
        display: flex !important;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        width: 100%;
        flex-direction: row;
    }

    /* Arrow on the left side of each Use Cases option */
    .nav-menu.mobile-menu-open .use-cases-dropdown .use-case-arrow {
        color: #ffffff !important;
        font-size: 16px;
        font-weight: 400;
        margin-right: 8px;
        margin-left: 0;
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: auto;
        height: auto;
        flex-shrink: 0;
        order: -1; /* Ensure arrow appears first (on the left) */
    }

    /* Mobile actions container - Figma: separator at y=606, Login y=652, Book a Demo y=691 */
    /* Separator line with max-width and centered */
    .mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: stretch;
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
        background: transparent;
        margin-top: auto;
        position: relative;
    }

    .mobile-actions::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-actions .login-create-account {
        text-decoration: none;
        color: #ffffff;
        font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-size: 16px;
        padding: 8px 0;
        text-align: left;
        width: 100%;
        background: transparent;
        border: none;
        transition: all 0.2s ease;
        line-height: 1.5;
        display: block;
    }

    .mobile-actions .login-create-account:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    /* Book a Demo - Figma: y=691, highlighted text in orange, no button styling, no shadow, no border - Full width, no padding */
    .mobile-actions .cta-button {
        background: transparent !important;
        color: #ff9000 !important;
        border: none !important;
        padding: 8px 0;
        padding-top: 12px;
        border-radius: 0 !important;
        font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400 !important;
        font-size: 16px;
        text-decoration: none;
        text-align: left;
        display: block;
        width: 100%;
        transition: all 0.2s ease;
        box-shadow: none !important;
        margin-top: 0;
    }

    .mobile-actions .cta-button:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        transform: none !important;
        box-shadow: none !important;
        color: #ff9000 !important;
    }

    /* Mobile language switcher in menu */
    .mobile-actions .mobile-language-switcher {
        margin-bottom: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        position: relative;
        width: 100%;
    }
}

/* Tablet styles */
@media (max-width: 1023px) {
    .menu-toggle-button {
        display: flex !important;
        background: none;
        border: none;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }

    .menu-toggle-button:hover {
        background: rgba(255, 255, 255, 0.1);
        border: none;
    }

    .menu-toggle-button svg {
        width: 31px;
        height: 15px;
        display: block;
    }

    .menu-toggle-button svg line {
        stroke: white;
        stroke-width: 1;
    }
}

@media (min-width: 1103px) and (max-width: 1200px) {
    .nav-container {
        padding-left: 24px;
        padding-right: 24px;
        max-width: 100%;
    }
}

/* REMOVED ALL HERO STYLES FROM ALL THE OTHER CSS FILES, 
AND GATHERED THEM ALL UNDER ONE HERO.CSS IN HERE -DOGA */

/* ============================================
   GENERAL STYLES (ALL SCREENS)
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: visible;
    padding-bottom: 0;
    z-index: 1;
}

svg{
    overflow: visible;
}

.hero-background,
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img,
.hero-video video,
.hero-video .hero-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    transition: opacity 0.5s ease;
}

.hero-video .hero-placeholder {
    opacity: 1;
    z-index: 2;
}

.hero-video video {
    opacity: 0;
    z-index: 1;
}

.hero-video video.ready {
    opacity: 1;
    z-index: 2;
}

.hero-video .hero-placeholder.hidden {
    opacity: 0;
    z-index: 1;
}

.hero-background::after,
.hero-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

/* Decorative element under hero title */
/* CHANGED WIDTH FROM 100% TO 380px & fixed spacing with title -DOGA */
.title-layer {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    max-width: 556px;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1512px;
    margin: 0 auto;
    padding: var(--header-h) 124px 80px;
}

.hero-content {
    max-width: 100%;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -12px;
}

.hero-badge-indicator {
    width: 20px;
    height: 20px;
    border-radius: 40px;
    background-color: #00ff0d44;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.hero-badge-text {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.24px;
}

.hero-badge-text strong {
    font-weight: 700;
}

.hero-badge-avatars {
    display: inline-flex;
    margin-left: 4px;
}

.hero-badge-avatar {
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: -4px;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.hero-badge-avatar:first-child {
    margin-left: 0;
}

/* Fallback background for broken images */
.hero-badge-avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    z-index: -1;
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin: 8px 0 16px;
}

.hero-title {
    font-family: var(--font-primary);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}


.hero-title-underline {
    position: relative;
    display: inline-block;
}

.hero-title .hero-emphasis {
    font-weight: 700;
}

/* I'm not sure if this is needed */
/* .highlight {
    color: #fff;
    background: linear-gradient(120deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 450px;
    margin: 0 auto 24px;
}

.hero-subtitle strong {
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-action-buttons {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.hero-no-cc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    border-radius: var(--radius-pill);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 164px;
}

.hero-cta-primary {
    background: var(--color-primary-light);
    color: #000000;
    box-shadow: var(--shadow-cta);
}

.hero-cta-primary:hover {
    background: var(--color-primary, #ff9000);
    transform: translateY(-2px);
    box-shadow: -4px 6px 75px rgba(255, 144, 0, 0.5);
}

.hero-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff24;
    max-width: 280px;
}

.hero-cta-secondary:hover {
    background: var(--color-white);
    transform: translateY(2px);
    box-shadow: -4px 6px 75px rgba(255, 255, 255, 0.5);
    color: #000000;
}

.platform-icon {
    margin-right: 8px;
}

.scroll-indicator {
    position: relative;
    z-index: 4;
    background-color: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
}

.scroll-indicator:hover {
    background-color: white;
    color: black;
}

.scroll-indicator svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

.scroll-indicator:hover svg {
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.4));
    transform: scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   DESKTOP (1025px+)
   ============================================ */

@media (min-width: 1025px) {
    .hero-title {
        font-size: 3em;
        line-height: 1.1;
    }

}

/* ============================================
   TABLET (481px - 1024px)
   ============================================ */

   /* THERE WERE 2 TABLET STYLES ONE BEING 
   TREATED AS A MOBILE STYLE SO I'VE MERGED 
   BOTH TABLETS INTO ONE -DOGA */

@media (min-width: 481px) and (max-width: 1024px) {
    .hero-container {
        max-width: 100%;
        padding: var(--header-h) 40px 80px;
    }

    .hero-content {
        max-width: 600px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-badge {
        margin-bottom: -12px;
    }

    .hero-badge-indicator img {
        width: 12px;
        height: 12px;
        object-fit: contain;
    }

    .hero-badge-text {
        color: #ffffff;
    }

    .hero-badge-avatar {
        border: 1px solid rgba(255, 255, 255, 0.5);
        object-fit: cover;
    }

    .hero-title-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    /* NO LONGER NEEDED SINCE WE HAVE THE SVG -DOGA */
    /* .hero-title-underline::after {
        content: '';
        position: absolute;
        height: 4px;
        bottom: 2px;
        left: 0;
        right: 0;
        background: var(--orange-primary);
        border-radius: 2px;
    } */

    .title-layer {
        max-width: 100%;
        width: 300px;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 500px;
        width: 100%;
        margin: 0 auto 40px;
    }

    .hero-actions {
        gap: 30px;
        width: 100%;
    }

    .hero-cta {
        padding: 12px 24px;
        font-weight: 600;
        min-width: 180px;
        height: 49px;
    }

    .hero-cta-primary {
        background: var(--color-primary-light);
        box-shadow: -4px 4px 65px 0px rgba(255, 144, 0, 0.4);
    }

    .hero-cta-primary:hover {
        background: var(--color-primary, #ff9000);
    }

    .hero-cta-secondary {
        background: #ffffff24;
        color: #ffffff;
        border: 1px solid #ffffff24;
        max-width: 280px;
    }

    /* NO HOVER NEEDED FOR MOBILE -DOGA */
    /* .hero-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    } */

    .scroll-indicator {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 480px) {

    .hero{
        overflow: hidden;
    }

    .title-layer {
        max-width: 100%;
        width: 245px;
    }

    .hero-container {
        height: auto;
        min-height: 100svh;
        padding: var(--header-h) 16px 50px;
    }

    .hero-content {
        gap: 14px;
    }

    .hero-badge {
        gap: 5px;
        margin-bottom: -8px;
    }

    .hero-badge-indicator {
        width: 16px;
        height: 16px;
    }

    .hero-badge-indicator img {
        width: 9px;
        height: 9px;
    }

    .hero-badge-text {
        font-size: .85em;
    }

    .hero-badge-avatar {
        width: 12px;
        height: 12px;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .hero-actions {
        gap: 20px;
    }

    .hero-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta {
        font-size: 13px;
        padding: 11px 20px;
        height: 42px;
        max-width: 260px;
        width: 100%;
    }

    .scroll-indicator {
        width: 36px;
        height: 36px;
    }
}

/* Stats Banner Sections */
.stats-banner {
    background: #f9f9f9;
    position: relative;
    z-index: 0;
}

.stats-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-inline-padding, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stats-banner-number {
    font-family: var(--font-primary);
    font-size: 55px;
    font-weight: 700;
    color: var(--color-primary, #ff9000);
    line-height: 78px;
    letter-spacing: -1.36px;
}

.stats-banner-text {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    max-width: 400px;
    margin: 0;
}

.stats-banner-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
}

/* 71% Stats Banner - Light card variant */
.stats-banner-71 {
    background: var(--color-bg-main);
    min-height: 212px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.stats-banner-71 .stats-banner-wrapper {
    width: fit-content;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0px;
}

.stats-banner-71 .stats-banner-container {
    border-radius: var(--radius-xl, 20px);
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.stats-banner-71 .stats-banner-number {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius-xl, 20px);
    border: 1px solid rgba(0, 0, 0, 0.095);
    transform: rotate(-2deg);
    box-shadow: var(--shadow-subtle);
    color: #000000;
}

.stats-banner-71 .stats-banner-text {
    color: var(--color-text, #1e1e1e);
}

.stats-banner-71 .stats-banner-logo {
    opacity: 1;
}

/* +$7000 Stats Banner - Light variant with white card tag */
.stats-banner-7000 {
    background: var(--color-bg-main, #fefefc);
    border-top: none;
    border-bottom: none;
}

.stats-banner-7000 .stats-banner-container {
    gap: 16px;
}

.stats-banner-7000 .stats-banner-number {
    font-size: 50px;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-xl, 20px);
    transform: rotate(-2deg);
    box-shadow: var(--shadow-subtle, -5px 5px 15px 0px rgba(0, 0, 0, 0.05));
    color: #000000;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-banner-71 .stats-banner-wrapper,
    .stats-banner-wrapper {
        align-items: center;
    }

    .stats-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .stats-banner-number {
        font-size: 56px;
    }

    .stats-banner-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stats-banner-71 .stats-banner-wrapper {
        align-items: center;
    }

    .stats-banner-71 .stats-banner-logo {
        align-self: center;
    }

    .stats-banner-number {
        font-size: 48px;
    }

    .stats-banner-7000 .stats-banner-number {
        font-size: 42px;
    }

    .stats-banner-text {
        font-size: 16px;
        max-width: 320px;
    }
}/* Transform Section - Before/After Comparison Slider */
.transform-section {
    background: #ffffff;
}

.transform-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-inline-padding, 24px);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.transform-header {
    display: flex;
    justify-content: flex-start;
}

.transform-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.transform-comparison {
    width: 100%;
}

/* Slider Container */
.transform-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md, 10px);
    box-shadow: var(--shadow-subtle, -5px 5px 15px rgba(0, 0, 0, 0.05));
    --position: 50%;
}

/* Image Container */
.transform-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

/* After Image - base layer, establishes size */
.transform-image-after {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Before Image Wrapper - uses clip-path to reveal portion */
.transform-image-before-wrapper {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}

/* Before Image - full size, clipped by wrapper */
.transform-image-before {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Labels */
.transform-label {
    position: absolute;
    top: 20px;
    min-width: 100px;
    height: 45px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.046);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    font-family: var(--font-primary, 'IBM Plex Sans', sans-serif);
    font-size: 14px;
    font-weight: lighter;
    letter-spacing: 0.08em;
    border-radius: 45px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transform-label-after {
    left: 20px;
}

.transform-label-before {
    right: 20px;
}

/* Invisible Range Slider Input */
.transform-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 20;
}

.transform-slider:focus-visible ~ .transform-slider-button {
    outline: 3px solid var(--color-primary, #ff9000);
    outline-offset: 3px;
}

/* Divider Line */
.transform-slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
}

/* Drag Handle Button */
.transform-slider-button {
    position: absolute;
    background-color: #fff;
    color: #000;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.transform-slider-button svg {
    width: 30px;
    height: 30px;
}

/* Tooltip */
.transform-slider-tooltip {
    position: absolute;
    top: calc(50% + 45px);
    left: var(--position);
    transform: translateX(-50%);
    background-color: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-primary, 'IBM Plex Sans', sans-serif);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Hide tooltip after interaction */
.transform-slider-container.interacted .transform-slider-tooltip {
    opacity: 0;
}

/* Tooltip arrow */
.transform-slider-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

/* Content Section */
.transform-title {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 2.1em;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    max-width: 680px;
}

.transform-description {
    font-family: var(--font-primary, 'IBM Plex Sans', sans-serif);
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
    max-width: 550px;
}

.transform-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--color-primary-light, #ffb14d);
    color: #000;
    font-family: var(--font-primary, 'IBM Plex Sans', sans-serif);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-pill, 50px);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.transform-cta:hover {
    background: var(--color-primary, #ff9000);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta, -4px 4px 65px rgba(255, 144, 0, 0.4));
}

/* Responsive */
@media (max-width: 900px) {
    .transform-header {
        justify-content: center;
    }

    .transform-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .transform-title {
        font-size: 28px;
        text-align: center;
    }

    .transform-description {
        font-size: 16px;
        max-width: 100%;
    }

    .transform-slider-button {
        padding: 10px;
    }

    .transform-slider-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .transform-title {
        font-size: 24px;
    }

    .transform-label {
        font-size: 12px;
        padding: 8px 16px;
        min-width: 80px;
        height: 36px;
        top: 12px;
    }

    .transform-label-after {
        left: 12px;
    }

    .transform-label-before {
        right: 12px;
    }

    .transform-slider-button {
        padding: 8px;
    }

    .transform-slider-button svg {
        width: 20px;
        height: 20px;
    }

    .transform-slider-tooltip {
        font-size: 12px;
        padding: 6px 12px;
        top: calc(50% + 35px);
    }

    .transform-cta {
        padding: 18px 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .transform-container {
        padding: 0 16px;
        gap: 32px;
    }

    .transform-image-container {
        aspect-ratio: 4/3;
    }

    .transform-label {
        font-size: 10px;
        padding: 6px 12px;
        min-width: 60px;
        height: 28px;
    }

    .transform-slider-button {
        padding: 6px;
    }

    .transform-slider-button svg {
        width: 18px;
        height: 18px;
    }

    .transform-slider-tooltip {
        display: none;
    }

    .transform-cta {
        width: 100%;
        max-width: 280px;
    }
}
/* Key Stats Row - 4 metrics */
.key-stats {
    padding: var(--section-space) 0;
    background: var(--subtle-bg, rgba(30, 30, 30, 0.05));
    border-radius: var(--radius-xl, 20px);
    margin: 0 auto;
    max-width: var(--max-width, 1512px);
}

.key-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-inline-padding, 24px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 150px;
}

.key-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    align-items: center;
}

.key-stat:hover {
    transform: translateY(-4px);
}

.key-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-muted, rgba(255, 145, 0, 0.084));
    border-radius: var(--radius-xl, 20px);
    margin-bottom: 16px;
}

.key-stat-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-primary, #ff9000);
}

.key-stat-number {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 400;
    color: var(--color-black, #000);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -0.96px;
    white-space: nowrap;
}

.key-stat-from {
    font-family: var(--font-primary, 'IBM Plex Sans', sans-serif);
    font-size: 32px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 0;
    margin-right: 4px;
}

.key-stat-label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 1000px) {
    .key-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .key-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .key-stat {
        padding: 20px 12px;
    }

    .key-stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .key-stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .key-stat-number {
        font-size: 24px;
    }

    .key-stat-label {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .key-stats-container {
        grid-template-columns: 1fr;
    }

    .key-stat {
        flex-direction: row;
        gap: 16px;
        text-align: left;
        padding: 16px 20px;
    }

    .key-stat-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .key-stat-content {
        display: flex;
        flex-direction: column;
    }
}
/* USED BY Section – Figma node 29:320 */
.used-by {
    padding: 0;
    background: var(--color-bg-main, #fefefc);
}

.used-by-container {
    width:100%;
    max-width: var(--max-width, 1512px);
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.used-by-title {
    color: var(--color-text-very-muted, rgba(30, 30, 30, 0.4));
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* REMOVED DIVIDER -DOGA */

.used-by-divider {
    display: none;
}

.used-by-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.used-by-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
    border: none;
    background: transparent;
    opacity: 0.8;
}

.used-by-logo:hover {
    transform: translateY(-2px) scale(1.02);
    opacity: 1;
}

.logo-img-partner {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    mix-blend-mode: darken;
    transition: opacity 0.3s ease;
}
/* REMOVED ALL RESPONSIVE CODE FOR "TRUSTED & USED BY" 
AND KEPT THE SAME LAYOUT ON ALL SCREENS - DOGA */.feature-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-inline-padding, 24px);
    align-items: center;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* CHANGED WIDTH ON CARDS */
@media (min-width: 1001px) {
    .feature-card:not(.feature-card-video-tours) {
        grid-template-columns: 2fr 3fr;
    }
    .feature-card.feature-card-reverse {
        grid-template-columns: 3fr 2fr;
    }
}

.feature-card-reverse .feature-card-content {
    order: 2;
}

.feature-card-reverse .feature-card-images {
    order: 1;
}

.feature-card-content {
    padding: 20px 0;
    max-width: 400px;
}

/* Align content to the right in normal layout, left in reversed */
.feature-card-reverse .feature-card-content {
    margin-left: auto;
    margin-right: 0;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-card-icon-container {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-muted, rgba(255, 144, 0, 0.05));
    border-radius: var(--radius-md, 10px);
    flex-shrink: 0;
}

.feature-card-icon {
    width: 35px;
    height: 35px;
    stroke: var(--color-primary, #ff9000);
}

.feature-card-title {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.feature-card-subtitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text, #1e1e1e);
    letter-spacing: -0.36px;
    margin: 0 0 16px 0;
}

.feature-card-description {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.feature-card-cta {
    display: inline-block;
    padding: 20px 28px;
    background: var(--color-primary-light, #ffb14d);
    color: var(--color-black, #000);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-pill, 50px);
    transition: all 0.3s ease;
}

.feature-card-cta:hover {
    background: var(--color-primary, #ff9000);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta, -4px 4px 65px 0px rgba(255, 144, 0, 0.4));
}

/* Image Stack - Before/After with hover to foreground */
.feature-card-images {
    position: relative;
}

.feature-card-image-stack {
    position: relative;
    width: 100%;
    height: 450px;
}

/* Stack image container */
.stack-image {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -5px 5px 25px 0px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, z-index 0s, box-shadow 0.4s ease, filter 0.4s ease;
    width: 85%;
    height: 80%;
    cursor: pointer;
}

.stack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.4s ease;
    filter: brightness(1); /* Explicit default for consistent behavior */
}

/* Before image - back position (dimmed by default) */
.stack-image-before {
    top: 0;
    right: 0;
    z-index: 1;
}

.stack-image-before img {
    filter: brightness(0.55);
}

/* After image - front position */
.stack-image-after {
    bottom: 0;
    left: 0;
    z-index: 2;
}

/* Labels */
.stack-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-primary, 'IBM Plex Sans', sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover on individual image - bring to foreground */
.stack-image:hover {
    z-index: 10;
    transform: scale(1.03);
    box-shadow: -8px 8px 40px 0px rgba(0, 0, 0, 0.25);
}

.stack-image:hover img {
    filter: brightness(1);
}

/* Dim the non-hovered image when hovering a specific image */
/* When before is hovered, dim after (sibling selector works since after comes after before in DOM) */
.stack-image-before:hover ~ .stack-image-after img {
    filter: brightness(0.7);
}

/* When after is hovered, dim before (requires :has() since before comes before after in DOM) */
.feature-card-image-stack:has(.stack-image-after:hover) .stack-image-before img {
    filter: brightness(0.7);
}

/* Reversed stack - keep same alignment (Before top-right, After bottom-left) */
/* No position changes needed - same as default */

/* Legacy styles for other cards */
.feature-card-img {
    width: 100%;
    border-radius: var(--radius-md, 10px);
    border: 2px solid var(--color-surface, #ecedee);
    box-shadow: var(--shadow-subtle, -5px 5px 15px 0px rgba(0, 0, 0, 0.05));
    transition: all 0.4s ease;
}

.feature-card-img-1 {
    position: relative;
    z-index: 2;
}

.feature-card-img-2 {
    position: absolute;
    top: 40px;
    left: 40px;
    width: calc(100% - 40px);
    z-index: 1;
    opacity: 0.7;
    transform: scale(0.95);
}

/* Reverse stack */
.feature-card-image-stack-reverse .feature-card-img-2 {
    left: auto;
    right: 40px;
}

/* Divider */
.feature-card-divider {
    height: 1px;
    background: var(--color-surface, #ecedee);
    max-width: 1256px;
    margin: 80px auto;
}

/* Video Tours Card – Full Width with Gradient */
.feature-card-video-tours {
    display: block;
    position: relative;
    width: 100%;
    min-height: 500px;
    height: 500px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md, 10px);
    overflow: hidden;
    box-shadow: var(--shadow-subtle, -5px 5px 15px 0px rgba(0, 0, 0, 0.05));
    margin-top: 80px;
}

.feature-card-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.feature-card-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-90deg, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* Fixed up layout issues on video tours card & its content - DOGA */
.feature-card-video-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    padding: 40px;
    max-width: 400px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Photo Studio banner overrides */
.feature-card-photo-studio .feature-card-video-bg {
    transform: scaleX(-1);
}

.feature-card-photo-studio .feature-card-video-overlay {
    background: linear-gradient(90deg, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
}

.feature-card-photo-studio .feature-card-video-content {
    left: auto;
    right: 0;
    align-items: flex-start;
    text-align: left;
}

.feature-card-video-content .feature-card-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.feature-card-video-content .feature-card-icon-container {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card-video-content .feature-card-icon {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

.feature-card-video-content .feature-card-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.feature-card-video-content .feature-card-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-card-video-content .feature-card-description {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card-video-content .feature-card-cta {
    background: var(--color-primary-light, #ffb14d);
    color: #000;
}

/* Responsive */
@media (max-width: 1000px) {

    .feature-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-card-reverse {
        direction: ltr;
    }

    .feature-card-reverse .feature-card-content {
        order: 1;
    }

    .feature-card-reverse .feature-card-images {
        order: 2;
    }

    .feature-card-title {
        font-size: 24px;
    }

    .feature-card-divider {
        margin: 60px 0;
    }
}

@media (max-width: 768px) {
    .feature-card-title {
        font-size: 22px;
    }

    .feature-card-subtitle {
        font-size: 16px;
    }

    .feature-card-img-2 {
        display: none;
    }

    .feature-card-divider {
        margin: 48px 0;
    }

    .feature-card-image-stack {
        height: 320px;
    }

    .stack-image-before,
    .stack-image-after {
        width: 90%;
        height: 75%;
    }

    .stack-label {
        padding: 6px 14px;
        font-size: 12px;
        top: 12px;
        left: 12px;
    }
}

@media (max-width: 480px) {
    .feature-card-cta {
        width: 100%;
        text-align: center;
    }
}/* Features Grid Section - 6 cards in 3x2 grid */
.features-grid-section {
    background: #ffffff;
}

.features-grid-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--page-inline-padding, 24px);
}

.features-grid-title {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #000;
    text-align: right;
    margin: 0 0 40px 0;
    margin-left: auto;
    margin-right: 0;
    line-height: 1.3;
    max-width: 700px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-grid-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: none;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    max-width: 408px;
    min-height: 380px;
}

/* DISABLED ALL HOVER FOR MOBILE IN FEATURE CARDS -DOGA */
@media (hover: hover) {
    .feature-grid-card:hover {
        cursor: pointer;
        transform: scale(1.02);
        box-shadow: 0 16px 32px rgba(255, 145, 0, 0.244);
    }
    .feature-grid-card:hover .feature-grid-card-title {
        color: #ff8000;
        transition: 0.2s ease;
    }
    .feature-grid-card:hover .feature-grid-image {
        transform: scale(1.02) translateY(-1.5px);
        filter: saturate(1.5);
    }
}

.feature-grid-image {
    position: relative;
    margin-bottom: 0;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    transition: transform 0.35s ease;
}

.feature-grid-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.198);
    backdrop-filter: blur(10px);
    webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    z-index: 2;
    box-shadow: none;
}

.feature-grid-icon svg {
    stroke: #ffffff;
    width: 20px;
    height: 20px;
}

.feature-grid-preview {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.feature-grid-card-title {
    font-family: var(--font-primary, "IBM Plex Sans"), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0;
    margin-bottom: 5px;
    padding: 22px 24px 8px;
    line-height: 1.2;
}

.feature-grid-description {
    font-family: var(--font-primary, "IBM Plex Sans"), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7b7b7b;
    line-height: 1.8;
    margin: 0;
    padding: 0 24px 24px;
}

/* Responsive */
@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features-grid-title {
        font-size: 24px;
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {
    .features-grid-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .feature-grid-preview {
        height: 200px;
    }

    .feature-grid-card-title {
        font-size: 22px;
        padding: 18px 20px 6px;
    }

    .feature-grid-description {
        font-size: 15px;
        padding: 0 20px 20px;
    }

    .feature-grid-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .features-grid-container {
        padding: 0 24px;
    }

    .features-grid-title {
        font-size: 20px;
        margin-bottom: 32px;
        text-align: left;
        margin-left: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-grid-card {
        display: block;
        width: 100%;
        max-width: none;
        padding: 0;
        min-height: auto;
    }

    .feature-grid-image {
        margin-bottom: 0;
    }

    .feature-grid-card-title {
        font-size: 20px;
        padding: 20px 20px 10px;
    }

    .feature-grid-description {
        font-size: 14px;
        line-height: 1.45;
        padding: 0 20px 20px;
    }

    .feature-grid-preview {
        height: 180px;
        border-radius: 0;
    }

    .feature-grid-icon {
        width: 32px;
        height: 32px;
        top: 12px;
        left: 12px;
    }

    .feature-grid-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Lightbox */
.features-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    cursor: zoom-out;
}

.features-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.features-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.25s ease;
    cursor: default;
}

.features-lightbox.is-open img {
    transform: scale(1);
}

.features-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.features-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.features-lightbox-close svg {
    stroke: #fff;
    width: 20px;
    height: 20px;
}/* How It Works Intro – Figma node 29:330 / 29:331 */
.how-it-works-intro {
    padding: 80px 0 40px;
    background: #ffffff;
}

.how-it-works-intro-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works-intro-text {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    color: #555555;
    line-height: 52px; 
    margin: 0 0 32px;
}

.how-it-works-intro-highlight {
    display: inline;
    font-weight: 700;
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #ff9000;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.how-it-works-scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    text-decoration: none;
}

.how-it-works-scroll-icon {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #000000;
    line-height: 1;
}

/* How It Works Section - Figma node 29:247 */

section.how-it-works-section {
    background: #fefefc;
    padding: 50px 0;
}

.how-it-works-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--page-inline-padding, 50px);
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

/* Left Column: Title, Description, Steps */
.how-it-works-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.how-it-works-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.how-it-works-description {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.70);
    margin: 0 0 8px 0;
}

/* Steps Container */
.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
    flex: 1;
}

/* Step Card */
.how-it-works-step {
    position: relative;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.how-it-works-step:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.how-it-works-step-active {
    background: #FFB350;
    border: 1px solid #FFB350;
}

.how-it-works-step-number {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: transparent;
    color: #000000;
    border: 1.5px dashed rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
}

.how-it-works-step-active .how-it-works-step-number {
    background: transparent;
    color: #000000;
    border: 1.5px solid #000000;
}

.how-it-works-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.how-it-works-step-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin: 0;
}

.how-it-works-step-active .how-it-works-step-title {
    color: #000000;
}

.how-it-works-step-description {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #5a5a5a;
    margin: 0;
}

.how-it-works-step-active .how-it-works-step-description {
    color: rgba(104, 59, 0, 0.85);
}


/* Optional Step Label */
.how-it-works-optional-label {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    color: rgba(0, 0, 0, 0.6);
    margin: 12px 0 6px 0;
}


/* Right Column: Image Container */
.how-it-works-right {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.how-it-works-image-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.05);
}

.how-it-works-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Responsive Design - Tablet (steps above image) */
@media (max-width: 1200px) {
    .how-it-works-container {
        padding: 0 40px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-x: visible;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 32px;
        width: 100%;
        max-width: 100%;
    }

    .how-it-works-left {
        min-width: 0;
    }

    .how-it-works-right {
        order: 0; /* image stays below text/steps because of DOM order */
        width: 100%;
        max-width: calc(100vw - 50px);
        overflow-x: hidden;
    }

    .how-it-works-image-container {
        max-width: 100%;
        max-height: 400px;
    }

    .how-it-works-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .how-it-works-description {
        font-size: 16px;
        line-height: 22px;
        width: 600px;
    }

    /* Options row with horizontal scroll */
    .how-it-works-steps {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        width: 100%;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;  /* IE & Edge */
        scrollbar-width: none;     /* Firefox */
    }

    .how-it-works-steps::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .how-it-works-step {
        padding: 14px 20px;
        flex-shrink: 0;
        width: 400px;
        min-width: 400px;
        max-width: 400px;
        gap:20px;
    }

    .how-it-works-step-title {
        font-size: 17px;
    }

    .how-it-works-step-description {
        font-size: 14px;
        line-height: 1.4;
    }

    .how-it-works-optional-label {
        display: none;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 700px) {
    .how-it-works-intro {
        padding: 40px 0 24px;
    }

    .how-it-works-intro-container {
        max-width: 100%;
        padding: 0 24px;
    }

    .how-it-works-intro-text {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .how-it-works-container {
        padding: 0 24px;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .how-it-works-left {
        min-width: 0;
    }

    /* Keep image below steps, like tablet */
    .how-it-works-right {
        order: 0;
        max-width: calc(100vw - 50px);
    }

    .how-it-works-image-container {
        max-width: 100%;
        max-height: 280px;
    }

    .how-it-works-header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .how-it-works-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .how-it-works-description {
        font-size: 16px;
        line-height: 22px;
        max-width: 90%;
        margin-bottom: 20px;
    }

    /* Use same horizontal scroll row UI as tablet */
    .how-it-works-steps {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        width: 100%;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;  /* IE & Edge */
        scrollbar-width: none;     /* Firefox */
    }

    .how-it-works-steps::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .how-it-works-step {
        padding: 15px 20px;
        gap: 20px;
        flex-shrink: 0;
        width: 340px;
        min-width: 320px;
        max-width: 400px;
    }

    .how-it-works-optional-label {
        display: none;
    }

    .how-it-works-step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .how-it-works-step-title {
        font-size: 16px;
    }

    .how-it-works-step-description {
        font-size: 14px;
        line-height: 20px;
    }

    .how-it-works-cta-button {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
}/* Testimonials Section - Single Card Layout */
.testimonials-new {
    background: #fefefc;
}

.testimonial-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-inline-padding, 24px);
}

/* Single white card containing both text and image */
.testimonial-block-top {
    display: grid;
    grid-template-columns: 340px 1fr;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: -5px 5px 15px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Left side - Quote content */
.testimonial-quote-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* TESTIMONIALS label - small, muted, uppercase */
.testimonial-label {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(30, 30, 30, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

/* Person info - avatar + name/role */
.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-meta strong {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
}

.testimonial-meta span {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ff9000;
}

/* Quote wrapper */
.testimonial-quote-wrapper {
    flex-grow: 1;
    margin-bottom: 24px;
}

/* Large stylized opening quote mark */
.testimonial-quote-mark {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 400;
    color: #1e1e1e;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

/* Quote text */
.testimonial-quote {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #1e1e1e;
    line-height: 1.5;
    margin: 0;
}

/* View work link */
.testimonial-link {
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ff9000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.testimonial-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Right side - Large image */
.testimonial-image-large {
    overflow: hidden;
    border-radius: 16px;
    margin: 16px;
    margin-left: 0;
}

.testimonial-showcase-img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
}

.testimonial-carousel .testimonial-showcase-img {
    flex: 0 0 100%;
}

.testimonial-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.103);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.testimonial-carousel-prev {
    left: 20px;
}

.testimonial-carousel-next {
    right: 20px;
}

.testimonial-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.testimonial-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.testimonial-carousel-dot.is-active {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-block-top {
        grid-template-columns: 1fr;
    }

    .testimonial-quote-card {
        order: 1;
        padding: 32px;
    }

    .testimonial-image-large {
        order: 2;
    }

    .testimonial-showcase-img {
        min-height: 260px;
    }
}

@media (max-width: 600px) {
    .testimonial-block {
        padding: 0 16px;
    }

    .testimonial-quote-card {
        order: 1;
    }

    .testimonial-image-large {
        order: 2;
    }

    .testimonial-quote-card {
        padding: 24px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .testimonial-quote-mark {
        font-size: 56px;
    }

    .testimonial-showcase-img {
        min-height: 200px;
    }
}
/* Testimonial Modal */
.testimonial-modal {
    position: fixed;
    top: var(--header-h, 80px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.testimonial-modal.is-open {
    opacity: 1;
    visibility: visible;
}

/* Scrollable white card */
.testimonial-modal-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: calc(100vh - var(--header-h, 80px) - 40px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
}

.testimonial-modal.is-open .testimonial-modal-card {
    transform: scale(1) translateY(0);
}

/* Sticky header */
.testimonial-modal-header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px 20px 0 0;
}

.testimonial-modal-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-modal-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-modal-name {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-modal-role {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
}

/* Close button */
.testimonial-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(30, 30, 30, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.testimonial-modal-close:hover {
    background: rgba(30, 30, 30, 0.1);
}

.testimonial-modal-close svg {
    stroke: var(--color-text);
    width: 18px;
    height: 18px;
}

/* Body content */
.testimonial-modal-body {
    padding: 32px;
}

/* Quote mark */
.testimonial-modal-quote-mark {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-text);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

/* Paragraphs */
.testimonial-modal-paragraph {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 28px 0;
}

/* Before/After comparison block */
.testimonial-modal-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.testimonial-modal-img-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testimonial-modal-label {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-modal-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .testimonial-modal-card {
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
    }

    .testimonial-modal-header {
        padding: 20px 20px;
        border-radius: 20px 20px 0 0;
    }

    .testimonial-modal-body {
        padding: 20px;
    }

    .testimonial-modal-comparison {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .testimonial-modal-paragraph {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonial-modal-comparison {
        grid-template-columns: 1fr;
    }

    .testimonial-modal-quote-mark {
        font-size: 44px;
    }
}
.features {
    padding: 20px 0;
}

.feature-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-section.reverse .feature-content {
    grid-template-columns: 1fr 1fr;
}

.feature-section.reverse .feature-image {
    order: 2;
}

.feature-section.reverse .feature-text {
    order: 1;
}

.feature-image img,
.feature-image video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.1;
    text-align: left;
}

.feature-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

.feature-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.feature-cta {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.feature-cta:hover {
    background: #333;
    transform: translateY(-2px);
    color: #fff;
}

.mode-select {
    padding: 30px 0;
    background: #fff;
}

.mode-select-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.mode-select .section-title {
    margin-bottom: 40px;
}

.mode-tabs {
    display: flex;
    gap: 0;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mode-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 32px;
    background: transparent;
    border: none;
    border-right: 1px solid #e5e5e5;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    position: relative;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: visible;
}

.mode-tab:last-child {
    border-right: none;
}

.mode-tab svg {
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.mode-tab:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.mode-tab.active {
    color: #000;
    background: #fff;
    font-weight: 600;
    box-shadow: inset 0 -3px 0 #000, 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mode-tab.active svg {
    color: #000;
}

.mode-content {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.mode-panel {
    display: none;
    width: 100%;
}

.mode-panel.active {
    display: block;
}

.before-after-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: pointer;
}

.before-after-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: var(--divider-position, 50%);
    width: 0px;
    height: 100%;
    background: #fff;
    z-index: 15;
    pointer-events: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease, width 0.4s ease;
}

.before-after-wrapper:hover::after {
    width: 0.5px;
}

.before-after-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.before-section,
.after-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: clip-path 0.4s ease, filter 0.3s ease;
}

/* Highlight states - dim non-highlighted section */
.before-after-wrapper.highlighting-after .before-section {
    filter: brightness(0.7);
}

.before-after-wrapper.highlighting-before .after-section {
    filter: brightness(0.7);
}

.before-section {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.after-section {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.before-label,
.after-label {
    position: absolute;
    top: 16px;
    padding: 8px 16px;
    background: #555;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 8px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.before-label {
    left: 16px;
}

.after-label {
    right: 16px;
}

@media (max-width: 1024px) {
    .mode-select-container {
        padding: 0 40px;
    }

    .before-after-container {
        max-width: 100%;
    }

    .mode-content {
        padding: 30px 0;
    }

    .mode-tabs {
        flex-wrap: wrap;
        overflow: visible;
        border-radius: 8px;
        gap: 8px;
        padding: 8px;
    }

    .mode-tab {
        min-width: calc(50% - 4px);
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
        flex-shrink: 0;
        padding: 16px 12px;
        font-size: 0.9rem;
        white-space: nowrap;
        border-right: none;
        border-radius: 6px;
        border: 1px solid #e5e5e5;
    }

    .mode-tab.active {
        background: #fff;
        box-shadow: inset 0 -3px 0 #000, 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .mode-select {
        padding: 30px 0;
    }

    .mode-select-container {
        padding: 0 20px;
    }

    .mode-tabs {
        flex-wrap: wrap;
        overflow: visible;
        border-radius: 8px;
        gap: 6px;
        padding: 6px;
    }

    .mode-tabs::-webkit-scrollbar {
        display: none;
    }

    .mode-tab {
        min-width: calc(50% - 3px);
        flex: 0 0 calc(50% - 3px);
        max-width: calc(50% - 3px);
        flex-shrink: 0;
        padding: 14px 10px;
        font-size: 0.8rem;
        white-space: nowrap;
        border-right: none;
        border-radius: 6px;
        border: 1px solid #e5e5e5;
    }

    .mode-tab.active {
        background: #fff;
        box-shadow: inset 0 -3px 0 #000, 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .mode-title {
        font-size: 2rem;
    }

    .mode-features li {
        font-size: 1.1rem;
    }

    .before-after-wrapper {
        aspect-ratio: 4 / 3;
    }
}

.trusted-by {
    background: #fafafa;
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.trusted-subtitle {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos-slider {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.logos-slider::before,
.logos-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, #fafafa, rgba(250,250,250,0));
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, #fafafa, rgba(250,250,250,0));
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: logos-scroll 35s linear infinite;
}

.logo-card {
    padding: 18px 26px;
    border-radius: 14px;
    background: #f3f4f6;
    color: #6b7280;
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.logo-card img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logo-card:hover {
    background: #fff;
    color: #111;
    transform: translateY(-2px);
}

@keyframes logos-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.statistics {
    background: #000;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.statistics .section-title {
    color: #fff;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    max-width: 850px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
}

.benefits {
    padding: 120px 0;
    background: #fff;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    padding: 0;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-video {
    flex: 1.3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-text {
    flex: 1;
}

.benefit-video video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.benefit-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
    line-height: 1.2;
}

.benefit-text p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}

.benefits-cta-container {
   width: 100%;
   display: flex;
   justify-content: center; 
}
.benefits-cta {
    display: inline-block;
    margin: 0 auto;
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
}

.benefits-cta:hover {
    background: #333;
    transform: translateY(-2px);
    color: #fff;
}

.testimonials {
    background: #ffffff;
    padding: 80px 0 100px;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 12px;
}


.testimonials h2 span,
.testimonials h2 p {
    display: block;
    color: #000000;
    font-family: "IBM Plex Sans";
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.76px;
}

.testimonials h2 p {
    color: #4f4f4f;
}

.testimonials-grid {
    max-width: 1551px;
    margin: 0 auto;
    padding: 0 124px;
}

.real-clients-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.real-clients-main {
    position: relative;
    min-height: 340px;
}

.real-clients-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.real-clients-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.real-clients-slide.is-active {
    opacity: 1;
}

.real-clients-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.real-clients-overlay {
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
    right: 72px;
    max-width: 480px;
    color: #ffffff;
    text-align: left;
}

.real-clients-kicker {
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9b9b9b;
    margin-bottom: 16px;
}

.real-clients-quote {
    font-size: 38px;
    line-height: 44px;
    color: #ffffff;
    font-weight: 600;
}

.real-clients-cta {
    margin-top: 32px;
    display: flex;
    min-width: 157px;
    height: 50px;
    padding: 10px 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 999px;
    border: none;
    background: #272727;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.real-clients-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    margin-bottom: 12px;
}

.real-clients-cta-chevron {
    width: 16px;
    height: 20px;
}

.real-clients-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.real-clients-arrow svg {
    display: block;
}


.real-clients-arrow-next svg {
    transform: rotate(180deg);
}

.real-clients-arrow-prev {
    left: 16px;
}

.real-clients-arrow-next {
    right: 16px;
}

.real-clients-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.real-clients-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
}

.real-clients-dot.is-active {
    background: #ffffff;
}

.real-clients-person {
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonials h2 span ,.testimonials h2 p{
    font-size: 28px;
    line-height: 34px;
}

.testimonial-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top;
}

.testimonial-person-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    color: #ffffff;
}

.testimonial-person-meta strong {
    font-weight: 600;
    color: #ffffff;
}

.testimonial-person-meta span {
    font-weight: 500;
    color: #e5e5e5;
}

/* Mobile stacking */
@media (max-width: 900px) {
    .testimonials-grid {
        padding: 0 40px;
    }

    .real-clients-grid {
        grid-template-columns: 1fr;
    }

    .real-clients-main {
        grid-template-columns: 1fr;
    }

    .real-clients-overlay {
        left: 74px;
        right: 24px;
        top: auto;
        bottom: 80px;
        transform: none;
    }

    .testimonial-person-photo img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        padding: 0 24px;
    }


    .testimonials h2 span,
    .testimonials h2 p {
        font-size: 24px;
        line-height: 30px;
    }

    .real-clients-overlay {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        left: 24;
    }


    .real-clients-cta {
        display: flex;
        width: 135.269px;
        height: 38px;
        padding: 10px;
        justify-content: space-between;
        align-items: center;
    }

    .real-clients-arrow-prev {
        left: -8px;
    }

    .real-clients-arrow-next {
        right: -8px;
    }
}.how-it-works {
    padding: 120px 0;
    background: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.steps::before {
    content: '';
    position: absolute;
    top: 46px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: #e5e5e5;
    z-index: 0;
}

.step {
    text-align: center;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 28px 20px 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.08);
    border-color: #dcdcdc;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -64px auto 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 2px solid rgba(0,0,0,0.08);
    animation: pulse-ring 2.8s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.08);
    }
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.step p {
    color: #555;
    line-height: 1.7;
    font-size: 0.98rem;
}

.workflow-visual {
    margin-top: 60px;
}

.workflow-tile {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.workflow-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-5px);
}

.workflow-card img,
.workflow-card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.workflow-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.workflow-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .steps::before {
        display: none;
    }

    .step {
        padding: 40px 20px 24px;
    }

    .step-icon {
        margin: 0 auto 24px;
        width: 64px;
        height: 64px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }
}

.pricing {
    position: relative;
    background: #fefefc;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (min-width: 901px) {
    .pricing {
        min-height: 1300px;
    }
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -400px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background-image: url('../assets/layers/pricing-bg.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.pricing .section-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text);
}

/* Toggle Pills */
.pricing-toggle-container {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}


.pricing-toggle-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto;
}

.pricing-pill {
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-pill:hover {
    color: #000;
}

.pricing-pill-active {
    background: #1e1e1e;
    color: #fff;
}

.pricing-pill-active:hover {
    color: #fff;
}

/* Save Badge */
.pricing-save-badge {
    position: absolute;
    left: calc(50% + 135px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

.pricing-save-arrow {
    flex-shrink: 0;
    width: 50px;
    height: auto;
    order: -1;
    transform: scaleX(-1);
}

.pricing-save-text {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary, #ff9000);
    white-space: nowrap;
    line-height: 1;
    transform: rotate(-3deg);
}

@media (max-width: 900px) {
    .pricing-save-badge {
        left: auto;
        right: 20px;
    }

    .pricing-save-arrow {
        width: 38px;
    }

    .pricing-save-text {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .pricing-save-badge {
        left: calc(50% + 100px);
    }

    .pricing-save-arrow {
        width: 32px;
    }

    .pricing-save-text {
        font-size: 16px;
    }
}

/* Pricing Grid */
.pricing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

/* Base Card Styles */
.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.pricing-card-starter,
.pricing-card-enterprise {
    background: #ffffff;
}

/* PRO Card - Featured */
.pricing-card-popular {
    background: #FFB350;
    border: none;
    padding: 40px 28px;
    min-height: 560px;
    box-shadow: 0 10px 40px rgba(255, 179, 80, 0.3);
}

/* Header */
.pricing-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.pricing-subtitle {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.pricing-billing-note {
    margin: auto 0 0 0;
    padding-top: 16px;
    font-size: 11px;
    color: #888;
    text-align: center;
    display: none;
}

.pricing-card[data-yearly="true"] .pricing-billing-note {
    display: block;
}

.pricing-name {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Inline Badge for PRO */
.pricing-badge-inline {
    background: #1e1e1e;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Photo Quota */
.pricing-quota {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-quota-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}

.pricing-quota-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 2px;
}

.pricing-card-popular .pricing-quota-label {
    color: rgba(0, 0, 0, 0.6);
}

/* Per-Image Price */
.pricing-per-image {
    text-align: center;
    font-size: 13px;
    margin: -16px 0 20px 0;
    white-space: nowrap;
}

.pricing-per-image-old {
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 4px;
    display: none;
}

.pricing-card[data-yearly="true"] .pricing-per-image-old {
    display: inline;
}

.pricing-per-image-amount {
    font-weight: 600;
    color: #000;
}

.pricing-per-image-label {
    color: #6b7280;
    margin-left: 2px;
}

.pricing-card-popular .pricing-per-image-amount {
    color: #000;
}

.pricing-card-popular .pricing-per-image-label {
    color: rgba(0, 0, 0, 0.6);
}

.pricing-card-popular .pricing-per-image-old {
    color: rgba(0, 0, 0, 0.4);
}

/* Price */
.pricing-price {
    margin-bottom: 24px;
}

.pricing-amount-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.pricing-amount-old {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
    white-space: nowrap;
    display: none;
}

.pricing-card[data-yearly="true"] .pricing-amount-old {
    display: inline;
}

.pricing-amount {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}


.pricing-period {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    margin-left: 4px;
}

.pricing-card-popular .pricing-period {
    color: rgba(0, 0, 0, 0.6);
}

/* Button */
.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    min-height: 56px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-pill, 50px);
    border: 1px solid  #1e1e1e1f;
    background: white;
    color: #000;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 28px;
}

.pricing-button:hover {
    background: var(--color-primary, #ff9000);
    transform: translateY(-2px);
    box-shadow: -4px 6px 75px rgba(255, 144, 0, 0.5);
    border:none;
}

.pricing-button-popular {
    background: #1e1e1e;
    border: none;
    color: #ffffff;
}

.pricing-button-popular:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

/* Features Header */
.pricing-features-header {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.pricing-card-popular .pricing-features-header {
    color: rgba(0, 0, 0, 0.7);
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-family: var(--font-primary);
    font-size: 14px;
    color: #374151;
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.pricing-card-popular .pricing-features li {
    color: rgba(0, 0, 0, 0.85);
}

.pricing-card-popular .pricing-features li::before {
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing {
        padding: 60px 0 0;
    }

    .pricing::before {
        top: 0;
        height: 400px;
        opacity: 0.1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card-popular {
        margin-top: 0;
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .pricing {
        padding: 50px 0 0;
    }

    .pricing::before {
        height: 300px;
    }

    .pricing .section-title {
        font-size: 28px;
    }

    .pricing-pill {
        padding: 10px 20px;
        font-size: 14px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .pricing-amount {
        font-size: 28px;
    }

    .pricing-amount-old {
        font-size: 20px;
    }
}
.faq {
    background: #ffffff;
}

.faq-inner {
    max-width: 1551px;
    padding: 0 124px;
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: start;
}

.faq-intro-email-icon {
    height: 18px;
}

.faq-intro-title {
    margin: 0 0 16px 0;
    font-family: var(--font-primary, "IBM Plex Sans"), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.faq-intro-body {
    margin: 0 0 24px 0;
    font-family: var(--font-primary, "IBM Plex Sans"), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    color: var(--color-text-muted, #5a5a5a);
    line-height: 1.5;
}

.faq-intro-email {
    margin-left: 4px;
    color: #ff9000;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-intro-email:hover {
    text-decoration: underline;
}

.faq-list {
    max-width: 720px;
    margin: 0;
    padding: 0;
}

@media (max-width: 900px) {
    .faq {
        padding-top: 0;
    }

    .faq-inner {
        padding: 0 40px;
        flex-direction: column;
    }

    .faq-list {
        padding: 0px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding-top: 0;
    }

    .faq-inner {
        padding: 0 24px;
    }
    .faq-intro-title {
        font-size: 28px;
    }
}

.faq-item {
    background: #fff;
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-bottom: none;
}

.faq-item:hover {
    border-bottom-color: #ccc;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-toggle {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #666;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: none;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    border-top: none;
}.demo-cta {
    background: linear-gradient(135deg, #000, #333);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.demo-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.demo-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.demo-button {
    background: linear-gradient(135deg, #4a9eff, #0066cc);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.demo-button:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer {
    position: relative;
    color: #fff;
    width: 100%;
    background-color: #1a1a1a;
    padding-top: 60px;
}

.footer-cta-section {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    text-align: center;
    background: transparent;
}

.footer-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    min-height: 60px;
    color: #1a1a1a;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    border-radius: 50px;
    background: #FF9000;
    box-shadow: -6px 6px 85px 0 rgba(255, 144, 0, 0.55);
    animation: footerCtaGlow 2.4s ease-in-out infinite;
}

.footer-cta-primary:hover {
    background: #ffaa00;
    transform: translateY(-2px);
    box-shadow: -6px 6px 85px 0 rgba(255, 144, 0, 0.75);
}


.footer-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    min-height: 60px;
    background: #f0f0f0;
    color: #1a1a1a;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ffffff1d;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.footer-cta-secondary:hover {   
    transform: translateY(-2px);
}

@keyframes footerCtaGlow {
    0%, 100% {
        box-shadow: -6px 6px 85px 0 rgba(255, 144, 0, 0.45);
    }
    50% {
        box-shadow: -10px 10px 110px 0 rgba(255, 145, 0, 0.881);
    }
}

/* Footer Main Content */
.footer-main {
    position: relative;
    z-index: 2;
    padding: 60px 124px 40px;
    max-width: 1512px;
    margin: 0 auto;
    background: transparent;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    gap: 120px;
    margin-bottom: 80px;
}

.footer-column-group {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-column-group-left {
    flex: 1;
    max-width: 300px;
}

.footer-column-group-right {
    flex: 1;
    max-width: 300px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.footer-links a:hover {
    opacity: 0.8;
    color: #ffffff;
}

.footer-links .use-case-arrow {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-right: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-language-switcher {
    display: flex;
    align-items: center;
}

.footer-language-switcher .language-switcher-toggle {
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.footer-language-switcher .current-lang {
    color: #ffffff;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 8px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Tablet Footer - Figma node 29-864 */
@media  (max-width: 1200px) {
    /* Footer with rounded top */
    .footer {
        padding-top: 60px;
        border-radius: 40px 40px 0 0;
        overflow: visible;
        background-color: #1a1a1a;
        min-height: auto;
    }

    /* Footer CTA Section */
    .footer-cta-section {
        padding: 60px 40px 40px;
        display: block;
        visibility: visible;
    }

    .footer-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-cta-primary,
    .footer-cta-secondary {
        width: auto;
        max-width: none;
    }

    /* Footer Main Content */
    .footer-main {
        max-width: 100%;
        display: block;
        visibility: visible;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        display: flex;
        visibility: visible;
    }

    /* Single column layout for tablet - all columns stack vertically */
    .footer-column-group {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .footer-column-group-left,
    .footer-column-group-right {
        max-width: 100%;
        flex: none;
    }

    .footer-column {
        width: 100%;
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
        padding-top: 30px;
        border-top: none;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Mobile Footer - Figma node 29-864 */
@media (max-width: 768px) {
    /* Footer with rounded top */
    .footer {
        padding-top: 50px;
        border-radius: 40px 40px 0 0;
        overflow: visible;
        background-color: #1a1a1a;
        min-height: auto;
        display: block;
        visibility: visible;
    }

    /* Footer CTA Section */
    .footer-cta-section {
        padding: 50px 24px 30px;
        display: block;
        visibility: visible;
    }

    .footer-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-cta-primary,
    .footer-cta-secondary {
        width: auto;
        max-width: none;
    }

    .footer-main {
        padding: 30px 24px 24px;
        max-width: 100%;
        display: block;
        visibility: visible;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
        display: flex;
        visibility: visible;
    }

    /* Single column layout for mobile - all columns stack vertically */
    .footer-column-group {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .footer-column-group-left,
    .footer-column-group-right {
        max-width: 100%;
        flex: none;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-links a {
        font-size: 14px;
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
        padding-top: 24px;
        border-top: none;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        gap: 16px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}
/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(14, 15, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px var(--page-inline-padding, 24px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.cookie-consent.cookie-consent--visible {
    transform: translateY(0);
}

.cookie-consent__inner {
    max-width: var(--content-width, 1358px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent__text {
    font-family: var(--font-secondary, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
    min-width: 0;
}

.cookie-consent__text a {
    color: var(--color-primary, #ff9000);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
}

.cookie-consent__text a:hover {
    opacity: 0.8;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    min-height: 44px;
    font-family: var(--font-primary, 'IBM Plex Sans', sans-serif);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-pill, 50px);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: none;
    line-height: 1;
}

.cookie-consent__btn--accept {
    background: var(--color-primary, #ff9000);
    color: var(--color-dark, #0e0f11);
}

.cookie-consent__btn--accept:hover {
    background: var(--color-primary-light, #ffb14d);
    transform: translateY(-1px);
}

.cookie-consent__btn--reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent__btn--reject:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.cookie-consent__btn:focus-visible {
    outline: 2px solid var(--color-primary, #ff9000);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px var(--page-inline-padding, 24px);
    }

    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent__text {
        font-size: 13px;
        text-align: center;
    }

    .cookie-consent__actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent__actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .cookie-consent__btn {
        width: 100%;
    }
}
/* ============================================
   WIDER SCREENS (LARGE DESKTOP)
   ============================================ */

@media (min-width: 1801px) {
    .nav-menu {
        display: flex ;
    }

    .nav-menu-wrapper {
        display: flex ;
    }

    .header-actions {
        display: flex ;
    }

    .nav-link {
        display: inline-flex ;
        visibility: visible ;
    }

    .use-cases-menu {
        display: block ;
    }
}

/* ============================================
   DESKTOP (<= 1800px)
   ============================================ */

@media (max-width: 1800px) {
    .nav-container {
        gap: 24px;
        padding: 24px;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 12px;
    }

    .use-cases-button {
        font-size: 14px;
        padding: 10px 12px;
    }

    .login-link {
        font-size: 14px;
        padding: 10px 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 18px;
    }

    .header-actions {
        gap: 12px;
        margin-left: 12px;
    }

    .nav-menu {
        gap: 12px;
        margin: 0 12px;
    }

    .nav-menu-wrapper {
        gap: 10px;
    }
}

@media (max-width: 1400px) {
    .nav-container {
        gap: 24px;
        padding: 24px;
    }

    .nav-link {
        font-size: 15px;
        padding: 10px 10px;
    }

    .use-cases-button {
        font-size: 15px;
        padding: 10px 10px;
    }

    .login-link {
        font-size: 15px;
        padding: 10px 12px;
    }

    .cta-button {
        font-size: 15px;
        padding: 10px 16px;
    }

    .header-actions {
        gap: 10px;
        margin-left: 10px;
    }

    .nav-menu {
        gap: 10px;
        margin: 0 10px;
    }

    .nav-menu-wrapper {
        gap: 8px;
    }

    /* Ensure More menu can be shown on medium screens */
    .more-menu {
        display: none;
    }

    .more-menu-button {
        display: none;
    }
}

@media (max-width: 1200px) {
    .nav-container {
        gap: 24px;
        padding: 24px;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 8px;
    }

    .use-cases-button {
        font-size: 14px;
        padding: 10px 8px;
    }

    .login-link {
        font-size: 14px;
        padding: 10px 10px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 14px;
    }

    .header-actions {
        gap: 8px;
        margin-left: 8px;
    }

    .nav-menu {
        gap: 8px;
        margin: 0 8px;
    }

    .nav-menu-wrapper {
        gap: 6px;
    }
}

@media (max-width: 1100px) {
    .nav-link {
        font-size: 14px;
        padding: 10px 16px;
    }

    .login-link {
        font-size: 14px;
        padding: 10px 16px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .header-actions {
        gap: 6px;
        font-size: 12px;
        padding: 10px 6px;
    }

    .use-cases-button {
        font-size: 12px;
        padding: 10px 6px;
    }

    .login-link {
        font-size: 12px;
        padding: 10px 8px;
    }

    .cta-button {
        font-size: 12px;
        padding: 10px 12px;
    }

    .nav-menu {
        gap: 4px;
    }

    .feature-section {
        padding: 80px 20px;
    }

    .feature-image img,
    .feature-image video {
        height: 420px;
    }

    .feature-text h2 {
        font-size: 2.2rem;
    }

    .demo-cta h2 {
        font-size: 2.2rem;
    }

    .demo-cta {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================================
   TABLET
   ============================================ */

@media (max-width: 1024px) {
    .feature-section {
        padding: 60px 15px;
    }

    .feature-image img,
    .feature-image video {
        height: 400px;
    }
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 1023px) {
    :root {
        --header-h: 64px;
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
        padding: 0 15px;
        gap: 16px;
        position: relative;
    }

    .nav-left {
        flex: 1;
        justify-content: space-between;
    }

    .nav-menu {
        display: none ;
    }

    .nav-menu[style*="display: flex"] {
        display: flex ;
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        display: flex ;
        width: 100%;
        min-height: 44px;
        padding: 12px 16px ;
        text-align: left ;
        justify-content: flex-start ;
    }

    .use-cases-menu {
        width: 100%;
    }

    .use-cases-button {
        width: 100%;
        justify-content: space-between;
    }

    .use-cases-dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.18s ease;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 8px;
        display: none;
        flex-direction: column;
    }

    .use-cases-menu.active .use-cases-dropdown {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .use-cases-menu:not(.active) .use-cases-dropdown {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) !important;
    }

    .header-actions {
        display: none !important;
    }

    .desktop-header-language-switcher {
        display: none !important;
    }

    .mobile-header-language-switcher {
        display: flex !important;
        align-items: center;
        order: 2;
        margin-left: auto;
        margin-right: 8px;
    }

    .mobile-header-language-switcher .language-switcher {
        position: relative;
    }

    .mobile-header-language-switcher .language-switcher-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        transition: all 0.25s;
        min-height: 44px;
        min-width: 44px;
        height: 44px;
    }

    .mobile-header-language-switcher .language-switcher-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .mobile-header-language-switcher .language-flag {
        width: 20px;
        height: 15px;
        border-radius: 2px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .mobile-header-language-switcher .current-lang {
        display: none;
    }

    .mobile-header-language-switcher .language-switcher-toggle svg {
        width: 16px;
        height: 16px;
        color: #fff;
        transition: transform 0.3s ease;
    }

    .mobile-header-language-switcher .language-switcher.active .language-switcher-toggle svg {
        transform: rotate(180deg);
    }

    .mobile-header-language-switcher .language-switcher-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        min-width: 150px;
        padding: 6px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        list-style: none;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        z-index: 1001;
    }

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

    .menu-toggle-button {
        display: flex ;
        margin-left: 0;
        order: 3;
    }

    .nav-menu-wrapper {
        display: none;
    }

    .mobile-menu-button {
        display: block;
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
        color: #000;
    }

    .logo {
        order: 1;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps::before {
        display: none;
    }

    .workflow-tile {
        flex-direction: column;
        gap: 20px;
    }

    .feature-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .feature-section {
        padding: 40px 20px;
    }

    .feature-text {
        order: 1;
    }

    .feature-image {
        order: 2;
    }

    .feature-image img,
    .feature-image video {
        height: 200px;
        width: 100%;
        display: block;
    }

    .feature-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        line-height: 1.3;
        text-align: center;
    }

    .feature-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
        text-align: center;
    }

    .feature-cta-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .feature-section.reverse .feature-image,
    .feature-section.reverse .feature-text {
        order: unset;
    }

    .trusted-by {
        padding: 60px 0;
    }

    .trusted-subtitle {
        font-size: 0.8rem;
        margin-bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-card {
        flex-direction: column ;
        gap: 15px;
        align-items: stretch;
    }

    .benefit-video video {
        height: 180px;
        width: 100%;
    }

    .benefit-text h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .benefit-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .benefits-cta {
        padding: 14px 24px;
        font-size: 0.9rem;
        margin-top: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        margin-bottom: 15px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .testimonial-author strong {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 15px 18px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .features {
        padding: 60px 0;
    }

    .feature-section {
        padding: 40px 15px;
    }

    .feature-image img,
    .feature-image video {
        height: 280px;
    }

    .benefit-video video {
        height: 200px;
    }

    .benefits {
        padding: 60px 0;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: 1.6rem;
    }

    .statistics {
        padding: 60px 0;
    }

    .demo-cta {
        padding: 60px 20px;
    }

    .demo-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .demo-cta p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .demo-button {
        width: 100%;
        max-width: 320px;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 20px 16px;
    }

    .pricing-credits-number,
    .pricing-quota-number {
        font-size: 2rem;
    }

    .pricing-amount {
        font-size: 1.5rem;
    }

    .pricing-name {
        font-size: 1.25rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
        padding: 8px 0;
        padding-left: 30px;
    }

    .pricing-features li::before {
        top: 8px;
        width: 22px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 64px;
        padding: 0 12px;
    }

    .logo-img {
        height: 28px;
    }

    .header-actions .login-link {
        display: none;
    }

    .cta-button {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .animated-text-container {
        height: 1.3em;
        margin-top: 6px ;
    }

    .text-item {
        height: 1.3em;
        line-height: 1.3;
        font-size: clamp(1.6rem, 13vw, 2.2rem);
    }

    .feature-section {
        padding: 30px 15px;
    }

    .feature-image img,
    .feature-image video {
        height: 160px;
    }

    .feature-text h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .feature-text p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .feature-cta-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-cta {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .benefit-video video {
        height: 150px;
    }

    .benefit-text h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .benefit-text p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .step {
        padding: 20px 15px 18px;
    }

    .step h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 0.85rem;
    }

    .testimonial-card p {
        font-size: 0.85rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }

    .demo-cta h2 {
        font-size: 1.6rem;
    }

    .demo-cta p {
        font-size: 0.95rem;
    }
}