/* eCommerce Landing Page - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,500;1,600&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Manrope:wght@200..800&family=Poppins:wght@800&display=swap');

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Common Global Styles */
.global-dark-badge {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #9CA3AF;
    padding: 6px 12px;
    border-radius: 33554400px;
    background: #0D0D0D;
    border: 1px solid #FFFFFF26;
}

.global-light-badge {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #6B7280;
    padding: 6px 12px;
    border-radius: 33554400px;
    background: #F5F5F5;
    border: 1px solid #EAEAEA;
}

.ecommerce-global-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 52px;
    line-height: 53px;
    letter-spacing: -1.04px;
    color: #000000;
    text-align: center;
    text-wrap: balance;
}

.global-highlight-text {
    color: #6752EB;
}

.ecommerce-gradient-text {
    background-image: linear-gradient(169deg, #FF5FB0 0%, #A855F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ecommerce-global-description {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    color: #6B7280;
    text-wrap: pretty;
}

.global-description-text-dark {
    font-weight: 600;
    color: #000000;
}

.global-description-text-light {
    font-weight: 600;
    color: #FFFFFF;
}

.ecommerce-global-btn {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
    color: #FFFFFF;
    border-radius: 33554400px;
    background: #6752EB;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ecommerce-global-btn svg {
    transition: all 0.3s ease;
}

.ecommerce-global-btn:hover svg {
    transform: translateX(3px);
}

.ecommerce-global-btn:hover {
    background: #503ed7;
}

.ecommerce-gradient-global-btn {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
    color: #FFFFFF;
    border-radius: 33554400px;
    background: linear-gradient(135deg, #FF5FB0 0%, #A855F7 100%);
    box-shadow: 0px 8px 28px 0px #FF5FB059;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ecommerce-gradient-global-btn svg {
    transition: all 0.3s ease;
}

.ecommerce-gradient-global-btn:hover svg {
    transform: translateX(3px);
}

.ecommerce-gradient-global-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 33554400px;
    background: linear-gradient(135deg, #A855F7 0%, #FF5FB0 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.ecommerce-gradient-global-btn:hover {
    box-shadow: 0px 12px 32px 0px #A855F770;
}

.ecommerce-gradient-global-btn:hover::before {
    opacity: 1;
}

/* Common Global Styles - Responsive */
@media (max-width: 1280px) {
    .ecommerce-global-title {
        font-size: 48px;
        line-height: 50px;
        letter-spacing: -0.96px;
    }

    .ecommerce-global-description {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 991px) {
    .global-dark-badge,
    .global-light-badge {
        font-size: 11px;
        line-height: 17px;
        letter-spacing: 0.88px;
        padding: 5px 11px;
    }

    .ecommerce-global-title {
        font-size: 42px;
        line-height: 44px;
        letter-spacing: -0.84px;
    }

    .ecommerce-global-description {
        font-size: 16px;
        line-height: 24px;
    }

    .ecommerce-global-btn,
    .ecommerce-gradient-global-btn {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .ecommerce-global-title {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: -0.72px;
    }

    .ecommerce-global-description {
        font-size: 15px;
        line-height: 23px;
    }

    .ecommerce-global-btn,
    .ecommerce-gradient-global-btn {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .global-dark-badge,
    .global-light-badge {
        font-size: 10px;
        line-height: 16px;
        letter-spacing: 0.8px;
        padding: 4px 10px;
    }

    .ecommerce-global-title {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -0.64px;
    }

    .ecommerce-global-description {
        font-size: 14px;
        line-height: 22px;
    }

    .ecommerce-global-btn,
    .ecommerce-gradient-global-btn {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 400px) {
    .ecommerce-global-title {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.56px;
    }

    .ecommerce-global-description {
        font-size: 13px;
        line-height: 20px;
    }

    .ecommerce-global-btn,
    .ecommerce-gradient-global-btn {
        font-size: 13px;
        line-height: 19px;
    }
}
/* Common Global Styles - Responsive */

/* Ecommerce Header */
header.ecommerce-header-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    max-width: 1240px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

header.ecommerce-header-sticky nav.navbar-custom {
    transition: 0.35s ease;
}

header.ecommerce-header-scrolled nav.navbar-custom {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header .navbar-custom {
    position: relative;
    z-index: 2;
    padding: 12px 0;
    justify-content: space-between;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    transition: 0.3s ease;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

header .ecommerce-logo {
    display: block;
    width: 120px;
    height: auto;
    max-width: 100%;
}

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

.header__panel-actions {
    display: none;
}

.header__nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
}

.header__nav-list li .header__nav-link {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s ease;
    padding: 5px 14px 7px 14px;
    border-radius: 33554400px;
}

.header__nav-list li .header__nav-link:hover,
.header__nav-list li .header__nav-link.active {
    color: #FFFFFF;
    background: #ffffff1f;
    transition: 0.3s ease;
}

.navbar-custom .header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 2;
}

.header__actions .header__action_text,
.header__panel-actions .header__action_text {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #6EE7A8;
    padding: 4px 12px;
    border-radius: 33554400px;
    background: rgba(110, 231, 168, 0.15);
    white-space: nowrap;
}

.header__actions .header__action-btn,
.header__panel-actions .header__action-btn {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    padding: 10px 16px;
    height: 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__menu-toggle {
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 35px;
    padding: 0;
    display: none;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.header__menu-toggle .header__menu-icon {
    width: 18px;
    height: 18px;
    transform: none !important;
}

.header__menu-toggle:hover {
    background: #503ed7;
}

.header__menu-icon {
    display: block;
}

.header__menu-icon--close {
    display: none;
}

header.is-menu-open .header__menu-icon--open {
    display: none;
}

header.is-menu-open .header__menu-icon--close {
    display: block;
}

/* Banner / Hero Section */
.ecommerce-banner-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 70px;
    background: #000000;
}

.ecommerce-banner-section .container {
    max-width: 1240px;
    position: relative;
    z-index: 1;
}

.ecommerce-banner-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(102px);
    z-index: 0;
}

.ecommerce-banner-glow--left {
    width: 720px;
    height: 720px;
    left: -280px;
    top: -40px;
    background: radial-gradient(circle, rgba(255, 95, 176, 0.28) 0%, rgba(128, 48, 88, 0.14) 35%, transparent 70%);
}

.ecommerce-banner-glow--right {
    width: 720px;
    height: 720px;
    right: -300px;
    top: 120px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.28) 0%, rgba(84, 43, 124, 0.14) 35%, transparent 70%);
}

.ecommerce-banner-glow--center {
    width: 960px;
    height: 960px;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}

.ecommerce-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.ecommerce-banner-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 30px;
    padding: 0 12px;
    border-radius: 33554400px;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.ecommerce-banner-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 68px;
    line-height: 69.36px;
    letter-spacing: -1.36px;
    color: #FFFFFF;
    max-width: 894px;
    margin: 0 0 24px;
    text-wrap: balance;
}

.ecommerce-banner-title-accent {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    background-image: linear-gradient(171deg, #FF5FB0 0%, #A855F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ecommerce-banner-description {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 17px;
    line-height: 26.35px;
    color: #9CA3AF;
    max-width: 794px;
    margin: 0 0 36px;
}

.ecommerce-banner-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.ecommerce-banner-primary-btn {
    letter-spacing: 0.085px;
    min-height: 56px;
    padding: 14.5px 32px;
    gap: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-banner-secondary-btn {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
    color: #FFFFFF;
    min-height: 56px;
    padding: 14.5px 29px;
    border-radius: 33554400px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.ecommerce-banner-secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
}

.ecommerce-banner-note {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9CA3AF;
    margin: 0 0 47px;
}

.ecommerce-banner-activity {
    position: relative;
    width: 100%;
    max-width: 595px;
    height: 265px;
    margin-bottom: 64px;
    overflow: hidden;
}

.ecommerce-activity-card {
    position: absolute;
    left: 50%;
    top: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 560px;
    max-width: calc(100% - 24px);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 19px;
    text-align: left;
    transform: translateX(-50%) translateY(0) scale(1);
    transform-origin: center center;
    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        width 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        gap 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.ecommerce-activity-card.is-front {
    width: 560px;
    opacity: 1;
    z-index: 3;
    transform: translateX(-50%) translateY(0) scale(1);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    padding: 19px;
    gap: 16px;
}

.ecommerce-activity-card.is-mid {
    width: 484px;
    opacity: 0.75;
    z-index: 2;
    transform: translateX(-50%) translateY(98px) scale(1);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: none;
    padding: 16px;
    gap: 14px;
}

.ecommerce-activity-card.is-back {
    width: 418px;
    opacity: 0.55;
    z-index: 1;
    transform: translateX(-50%) translateY(183px) scale(1);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    box-shadow: none;
    padding: 14px;
    gap: 12px;
}

.ecommerce-activity-card.is-exiting {
    width: 560px;
    opacity: 0;
    z-index: 4;
    transform: translateX(-50%) translateY(-56px) scale(0.98);
    pointer-events: none;
    box-shadow: none;
}

.ecommerce-activity-card.is-entering-back {
    transition: none !important;
    width: 418px;
    max-width: calc(100% - 24px);
    opacity: 0;
    z-index: 0;
    padding: 14px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    box-shadow: none;
    transform: translateX(-50%) translateY(202px) scale(1);
}

.ecommerce-activity-card.is-entering-back .ecommerce-activity-icon {
    transition: none !important;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

.ecommerce-activity-card.is-entering-back .ecommerce-activity-icon img {
    transition: none !important;
    width: 16px;
    height: 16px;
}

.ecommerce-activity-card.is-entering-back .ecommerce-activity-title {
    transition: none !important;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.ecommerce-activity-card.is-entering-back .ecommerce-activity-meta {
    transition: none !important;
    font-size: 12px;
    line-height: 16px;
}

.ecommerce-activity-card.is-entering-back .ecommerce-activity-status {
    transition: none !important;
    opacity: 0;
    max-width: 0;
    padding-left: 0;
    padding-right: 0;
    gap: 0;
}

.ecommerce-activity-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-activity-card.is-mid .ecommerce-activity-icon {
    width: 41px;
    height: 41px;
    background: rgba(255, 255, 255, 0.08);
}

.ecommerce-activity-card.is-back .ecommerce-activity-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

.ecommerce-activity-icon img {
    display: block;
    width: 22px;
    height: 22px;
    transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-activity-card.is-mid .ecommerce-activity-icon img {
    width: 18px;
    height: 18px;
}

.ecommerce-activity-card.is-back .ecommerce-activity-icon img {
    width: 16px;
    height: 16px;
}

.ecommerce-activity-body {
    flex: 1;
    min-width: 0;
}

.ecommerce-activity-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-activity-card.is-mid .ecommerce-activity-title {
    font-size: 16px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.9);
}

.ecommerce-activity-card.is-back .ecommerce-activity-title {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.ecommerce-activity-stars {
    color: #FEBC2E;
}

.ecommerce-activity-meta {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #9CA3AF;
    margin: 0;
    transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-activity-card.is-mid .ecommerce-activity-meta {
    font-size: 14px;
    line-height: 18px;
}

.ecommerce-activity-card.is-back .ecommerce-activity-meta {
    font-size: 12px;
    line-height: 16px;
}

.ecommerce-activity-status {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 13px;
    border-radius: 33554400px;
    background: rgba(110, 231, 168, 0.12);
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #6EE7A8;
    max-width: 120px;
    opacity: 1;
    overflow: hidden;
    transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-activity-card:not(.is-front) .ecommerce-activity-status {
    opacity: 0;
    max-width: 0;
    padding-left: 0;
    padding-right: 0;
    gap: 0;
}

.ecommerce-activity-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6EE7A8;
    flex-shrink: 0;
}

.ecommerce-banner-trust {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ecommerce-banner-trust-label {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 18.6px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #9CA3AF;
    margin: 0;
}

.ecommerce-banner-trust-track-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.ecommerce-banner-trust-track {
    display: flex;
    width: max-content;
    animation: bannerTrustMarquee 28s linear infinite;
}

.ecommerce-banner-trust-group {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ecommerce-banner-trust-group img {
    width: 100% ;
    /* max-width: 127px; */
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s ease;
}

.ecommerce-banner-trust-group img:hover {
    opacity: 1;
}

@keyframes bannerTrustMarquee {
    from {
        transform: translateX(0);
    }

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

/* Performance That Pays Section */
.ecommerce-performance-section {
    padding: 96px 0;
    background: #FFFFFF;
}

.ecommerce-performance-section .container {
    max-width: 1240px;
}

.ecommerce-performance-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecommerce-performance-title {
    max-width: 768px;
    margin: 24px 0 0;
}

.ecommerce-performance-subtitle {
    max-width: 672px;
    margin: 16px 0 0;
}

.ecommerce-performance-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 64px;
}

.ecommerce-performance-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecommerce-performance-stat-value {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 60px;
    line-height: 60px;
    color: #6752EB;
    margin: 0;
}

.ecommerce-performance-stat-label {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 17px;
    line-height: 26.35px;
    color: #6B7280;
    margin: 12px 0 0;
}

.ecommerce-performance-stats > svg {
    flex-shrink: 0;
}

/* See What's Possible Section Styling */
.ecommerce-possible-section {
    padding: 96px 0;
    background-color: #FDF7FC;
    overflow: hidden;
}

.ecommerce-possible-section .container {
    max-width: 1220px;
}

.ecommerce-possible-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.ecommerce-possible-badge {
    margin-bottom: 20px;
}

.ecommerce-possible-title {
    margin-bottom: 16px;
    max-width: 813px;
}

.ecommerce-possible-subtitle {
    margin-bottom: 0px;
    max-width: 754px;
}

.ecommerce-possible-slider {
    position: relative;
}

.ecommerce-possible-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #FFFFFF;
    padding: 0;
    color: #6752EB;
    box-shadow: 0 10px 28px rgba(20, 18, 43, 0.1);
    cursor: pointer;
    transition: 0.3s ease;
}

.ecommerce-possible-nav:hover {
    background: #6752EB;
    color: #FFFFFF;
}

.ecommerce-possible-nav[hidden] {
    display: none;
}

.ecommerce-possible-slider.is-animating .ecommerce-possible-nav {
    opacity: 0.6;
}

.ecommerce-possible-nav--prev {
    left: -28px;
    padding-right: 2px;
}

.ecommerce-possible-nav--next {
    right: -28px;
    padding-left: 3px;
    padding-bottom: 1px;
}

.ecommerce-possible-mockup-deck {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 570px;
    transition: 0.3s ease;
}

.ecommerce-possible-mockup-deck::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -45px;
    height: 135px;
    background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #F6F4FF 100%);
    pointer-events: none;
    z-index: 15;
    transition: 0.3s ease;
}

.ecommerce-possible-mockup-deck:hover::after {
  opacity: 0;
  pointer-events: none;
}

.ecommerce-possible-mockup-deck.has-hovered {
    height: 590px;
}

.ecommerce-possible-mockup-deck.cwp-reveal {
    transition: 0.3s ease;
}

.ecommerce-possible-mockup-card {
    position: absolute;
    width: 380px;
    height: 530px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), left 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease, z-index 0.4s ease, opacity 0.4s ease;
    bottom: 0;
    background: #FFFFFF;
    border: 4px solid #FFFFFF;
    box-shadow: 0px 12.0909px 36.2727px -6.04545px rgba(0, 0, 0, 0.1), 0px 9.67273px 12.0909px -7.25455px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
}

.ecommerce-possible-mockup-card.card-far-left {
    left: 0;
    transform: translateY(18px) rotate(-3.5deg) scale(0.93);
    z-index: 1;
    filter: brightness(0.96);
    transform-origin: bottom center;
}

.ecommerce-possible-mockup-card.card-middle-left {
    left: 17%;
    transform: translateY(8px) rotate(-1.5deg) scale(0.97);
    z-index: 2;
    filter: brightness(0.98);
    transform-origin: bottom center;
}

.ecommerce-possible-mockup-card.card-center {
    left: 50%;
    transform: translateX(-50%) translateY(0px) scale(1.0);
    z-index: 5;
    filter: brightness(1);
    transform-origin: bottom center;
}

.ecommerce-possible-mockup-card.card-middle-right {
    left: 83%;
    transform: translateX(-100%) translateY(8px) rotate(1.5deg) scale(0.97);
    z-index: 2;
    filter: brightness(0.98);
    transform-origin: bottom center;
}

.ecommerce-possible-mockup-card.card-far-right {
    left: 100%;
    transform: translateX(-100%) translateY(18px) rotate(3.5deg) scale(0.93);
    z-index: 1;
    filter: brightness(0.96);
    transform-origin: bottom center;
}

.ecommerce-possible-mockup-card.card-off-left,
.ecommerce-possible-mockup-card.card-off-right {
    pointer-events: none;
    opacity: 0;
    z-index: 0;
    filter: brightness(0.92);
}

.ecommerce-possible-mockup-card.card-off-left {
    left: 0;
    transform: translateX(-42%) translateY(28px) rotate(-6deg) scale(0.86);
}

.ecommerce-possible-mockup-card.card-off-right {
    left: 100%;
    transform: translateX(-58%) translateY(28px) rotate(6deg) scale(0.86);
}

.ecommerce-possible-mockup-deck.has-hovered .ecommerce-possible-mockup-card:not(.is-hovered):not(.card-off-left):not(.card-off-right) {
    opacity: 1;
    filter: brightness(0.9) grayscale(10%);
}

.ecommerce-possible-mockup-deck.has-hovered .ecommerce-possible-mockup-card.card-off-left,
.ecommerce-possible-mockup-deck.has-hovered .ecommerce-possible-mockup-card.card-off-right {
    opacity: 0;
    filter: brightness(0.92);
}

.ecommerce-possible-mockup-card.card-far-left.is-hovered {
    transform: translateY(-20px) scale(1.02) rotate(0deg);
    z-index: 10;
    filter: brightness(1);
}

.ecommerce-possible-mockup-card.card-middle-left.is-hovered {
    transform: translateY(-20px) scale(1.02) rotate(0deg);
    z-index: 10;
    filter: brightness(1);
}

.ecommerce-possible-mockup-card.card-center.is-hovered {
    transform: translateX(-50%) translateY(-5px) scale(1.05) rotate(0deg);
    z-index: 10;
    filter: brightness(1);
}

.ecommerce-possible-mockup-card.card-middle-right.is-hovered {
    transform: translateX(-100%) translateY(-20px) scale(1.02) rotate(0deg);
    z-index: 10;
    filter: brightness(1);
}

.ecommerce-possible-mockup-card.card-far-right.is-hovered {
    transform: translateX(-100%) translateY(-20px) scale(1.02) rotate(0deg);
    z-index: 10;
    filter: brightness(1);
}

.ecommerce-possible-mockup-card .mockup-content {
    height: 100%;
    position: relative;
}

.ecommerce-possible-mockup-card .mockup-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ecommerce-possible-mockup-card .mockup-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 38px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    min-height: 270px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.ecommerce-possible-mockup-card.is-hovered .mockup-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ecommerce-possible-mockup-card .mockup-logo {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 15px;
    line-height: 29px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.ecommerce-possible-mockup-card .mockup-overlay h3 {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 36px;
    line-height: 38px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.ecommerce-possible-mockup-card .mockup-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mockup-card-actions .btn-mockup-preview {
    display: flex;
    align-items: center;
    padding: 5px 18px 8px 18px;
    gap: 9px;
    border: 1px solid #6752EB;
    background: #6752EB;
    border-radius: 120px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    transition: 0.3s ease;
}

.mockup-card-actions .btn-mockup-preview:hover {
    background: #503ed7;
    border-color: #503ed7;
    color: #FFFFFF;
}

.mockup-card-actions .btn-mockup-preview svg,
.mockup-card-actions .btn-mockup-preview svg path,
.mockup-card-actions .btn-mockup-create svg,
.mockup-card-actions .btn-mockup-create svg path {
    transition: 0.3s ease;
}

.mockup-card-actions .btn-mockup-preview:hover svg,
.mockup-card-actions .btn-mockup-create:hover svg {
    transform: translateX(3px);
}

.mockup-card-actions .btn-mockup-create {
    display: flex;
    align-items: center;
    padding: 5px 18px 8px 18px;
    gap: 9px;
    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 120px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    transition: 0.3s ease;
}

.mockup-card-actions .btn-mockup-create:hover {
    border-color: #503ed7;
    background: #503ed7;
}

.ecommerce-possible-bottom-callout {
    max-width: 300px;
    margin: 70px auto 0 auto;
}

.ecommerce-possible-bottom-callout .callout-desc {
    font-family: 'Bricolage Grotesque';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #6B6880;
    margin-bottom: 28px;
}

.ecommerce-possible-cta-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px;
    background: #6752EB;
    border-radius: 24px;
}

.ecommerce-possible-cta-box .cta-left .cta-number {
    font-family: 'Bricolage Grotesque';
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.ecommerce-possible-cta-box .cta-left .cta-sub {
    font-family: 'Bricolage Grotesque';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFFBF;
    margin-bottom: 0;
}

.mockup-card-create-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 11, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.mockup-card-create-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mockup-card-create-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0px 30px 80px -10px rgba(15, 11, 42, 0.25);
    overflow: visible;
    transform: scale(0.92) translateY(10px);
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

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

.mockup-card-create-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    cursor: pointer;
    z-index: 10010;
    transition: 0.3s ease;
    border: none;
    background: transparent;
    padding: 0;
}

.mockup-card-create-modal-close:hover {
    transform: scale(1.08);
}

.mockup-card-create-modal-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 480px;
    max-height: 85vh;
    overflow: hidden;
}

.mockup-card-create-modal-left {
    background: #F9FAFC;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 28px 0 0 28px;
    border-right: 1px solid rgba(17, 24, 39, 0.04);
}

.mockup-card-create-modal-left img {
    height: 400px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0px 15px 35px -10px rgba(17, 24, 39, 0.15);
    object-fit: cover;
    object-position: top;
    transition: 1s ease;
}

.mockup-card-create-modal-left img:hover {
    object-position: bottom;
}

.mockup-card-create-modal-right {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mockup-card-create-modal-right .modal-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #111827;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.mockup-card-create-modal-right .modal-category-tags {
    margin-bottom: 28px;
}

.mockup-card-create-modal-right .tag-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(103, 82, 235, 0.08);
    border: 1px solid rgba(103, 82, 235, 0.15);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #6752EB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-card-create-modal-right .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.mockup-card-create-modal-right .modal-actions .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    background: #6752EB;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    border: 1.5px solid #6752EB;
    transition: 0.3s ease;
    text-decoration: none;
}

.mockup-card-create-modal-right .modal-actions .btn-primary:hover {
    background: #503ed7;
    border-color: #503ed7;
    color: #FFFFFF;
}

.mockup-card-create-modal-right .modal-actions .btn-primary.custom {
    background: transparent;
    border: 1.5px solid #6752EB;
    color: #6752EB;
}

.mockup-card-create-modal-right .modal-actions .btn-primary.custom:hover {
    background: #6752EB;
    color: #FFFFFF;
}

/* All Inclusive Compare Section */
.ecommerce-compare-section {
    padding: 96px 0;
    background: #FFFFFF;
}

.ecommerce-compare-section .container {
    max-width: 1240px;
}

.ecommerce-compare-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.ecommerce-compare-badge {
    margin-bottom: 20px;
}

.ecommerce-compare-title {
    margin-bottom: 16px;
}

.ecommerce-compare-subtitle {
    margin: 0;
}

.ecommerce-compare-table {
    border: 1px solid #ECE8FA;
    border-radius: 18px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px 8px 24px 0px #14122B0F;
}

.ecommerce-compare-table-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 397px) minmax(0, 354px);
    border-bottom: 1px solid #ECE8FA;
    min-height: 88px;
}

.ecommerce-compare-col-feature {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: #F6F4FF;
}

.ecommerce-compare-head-label {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    color: #6B6880;
}

.ecommerce-compare-col-ecommerce,
.ecommerce-compare-col-legacy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 20px 24px;
    border-left: 1px solid #ECE8FA;
    background: #F6F4FF;
}

.ecommerce-compare-col-ecommerce {
    background: linear-gradient(135deg, #6C4CF1 0%, #4A2FD0 100%);
    box-shadow: 0px 10.2px 30.6px 0px #6C4CF159;
}

.ecommerce-compare-col-ecommerce span {
    color: #fff;
}

.ecommerce-compare-col-ecommerce .ecommerce-compare-head-brand {
    font-size: 20px;
}

.ecommerce-compare-head-tag {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6B6880;
}

.ecommerce-compare-head-brand {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #6B6880;
}

.ecommerce-compare-group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 18px 24px;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.ecommerce-compare-group-toggle:hover {
    background: #FAFAFA;
}

.ecommerce-compare-group-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ecommerce-compare-chevron {
    color: #6B7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ecommerce-compare-group.is-open .ecommerce-compare-chevron {
    transform: rotate(180deg);
}

.ecommerce-compare-group-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #14122B;
}

.ecommerce-compare-group-count {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    background: #F6F4FF;
    border-radius: 33554400px;
    padding: 2px 8px;
    color: #6C4CF1;
}

.ecommerce-compare-group-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.ecommerce-compare-group.is-open .ecommerce-compare-group-body {
    grid-template-rows: 1fr;
}

.ecommerce-compare-group-body-inner {
    min-height: 0;
    overflow: hidden;
}

.ecommerce-compare-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 397px) minmax(0, 354px);
    align-items: center;
    min-height: 45px;
    border-top: 1px solid #ECE8FA99;
}

.ecommerce-compare-row.highlight-row {
    background: #FAFAFE;
}

.ecommerce-compare-row:last-child {
    border-bottom: 1px solid #ECE8FA99;
}

.ecommerce-compare-group:last-child .ecommerce-compare-row {
    border-bottom: 0px solid #ECE8FA99;
}

.ecommerce-compare-feature {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #14122B;
    padding: 12px 24px;
}

.ecommerce-compare-status,
.ecommerce-compare-legacy {
    padding: 12px 24px;
    border-left: 1px solid #ECE8FA99;
    font-size: 14px;
    line-height: 20px;
}

.ecommerce-compare-status {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    color: #14122B;
}

.ecommerce-compare-legacy {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
}

.ecommerce-compare-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ecommerce-compare-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(110, 231, 168, 0.2);
    border-radius: 50%;
}

.ecommerce-compare-legacy.is-paid {
    color: #6B6880;
}

.ecommerce-compare-legacy.is-unavailable {
    color: #9CA3AF;
}

.ecommerce-compare-legacy.is-limited {
    color: #D97706;
}

.ecommerce-compare-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.ecommerce-compare-skip-link {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ecommerce-compare-skip-link:hover {
    color: #14122B;
}

.ecommerce-compare-skip-link svg {
    transition: 0.3s ease;
}

.ecommerce-compare-skip-link:hover svg {
    transform: translateX(2px);
}

#showAllCompareBtn.is-expanded svg {
    transform: rotate(180deg);
}

.ecommerce-show-all-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #6752EB;
    transition: color 0.3s ease;
    padding: 0;
}

.ecommerce-show-all-btn svg {
    transition: 0.3s ease;
}

.ecommerce-show-all-btn:hover,
.ecommerce-show-all-btn:hover svg {
    color: #503ed7;
}

/* Pricing / Plans Section */
.ecommerce-pricing-section {
    padding: 96px 0;
    background: #FFFFFF;
}

.ecommerce-pricing-section .container {
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ecommerce-pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.ecommerce-pricing-title {
    margin: 0;
}

.ecommerce-pricing-subtitle {
    margin: 0;
}

.ecommerce-pricing-subtitle .global-description-highlight-text {
    color: #101321;
}

.ecommerce-pricing-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 40px;
    padding: 4px;
    background: #FAFAFD;
    border: 1px solid #E7E7EE;
    border-radius: 9999px;
    width: fit-content;
}

.pricing-toggle-btn {
    border: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #6A6B72;
    padding: 8px 20px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.25s ease;
}

.pricing-toggle-btn.is-active {
    background: #101321;
    color: #FFFFFF;
}

.pricing-save-pill {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.25px;
    color: #00F6AA;
    background: rgba(70, 204, 151, 0.2);
    border-radius: 9999px;
    padding: 2px 8px;
}

.ecommerce-pricing-card {
    margin-top: 48px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0px 8px 24px 0px rgba(15, 35, 65, 0.06);
    overflow: hidden;
}

.ecommerce-pricing-card-left {
    position: relative;
    padding: 30px 40px;
    border-right: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.pricing-offer-badge {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #22A366;
    background: rgba(110, 231, 168, 0.2);
    border-radius: 9999px;
    padding: 6px 12px;
    box-shadow: 0px 8px 20px rgba(110, 231, 168, 0.2);
    margin-bottom: 28px;
}

.pricing-offer-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #0F2341;
    margin: 0 0 8px;
}

.pricing-offer-desc {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 15px;
    line-height: 22.5px;
    color: #6E6A66;
    margin: 0;
    max-width: 448px;
}

.pricing-amount-block {
    margin-top: 32px;
    width: 100%;
}

.pricing-starts-label {
    display: block;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6E6A66;
}

.pricing-amount-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    min-height: 60px;
}

.pricing-amount {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 60px;
    line-height: 60px;
    color: #6752EB;
}

.pricing-period {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #6E6A66;
    padding-bottom: 4px;
}

.pricing-compare-strike {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #90A1B9;
    text-decoration: line-through;
    padding-bottom: 7px;
}

.pricing-billed-note {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6E6A66;
    margin: 8px 0 0;
}

.pricing-save-banner {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #22A366;
    background: rgba(110, 231, 168, 0.2);
    border: 1px solid rgba(110, 231, 168, 0.2);
    border-radius: 20px;
    padding: 16px;
}

.pricing-save-banner strong {
    font-weight: 800;
    color: #22A366;
}

.pricing-cta-btn {
    width: 100%;
    margin-top: 24px;
    padding: 16px 32px;
    box-shadow: 0px 6px 18px rgba(108, 76, 241, 0.25);
    text-align: center;
    justify-content: center;
}

.pricing-guarantee-text {
    width: 100%;
    margin: 12px 0 0;
    text-align: center;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #6E6A66;
}

.ecommerce-pricing-card-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.pricing-included-label {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6E6A66;
    margin: 0 0 20px;
}

.pricing-included-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.pricing-included-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pricing-feature-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #0F2341;
}

.pricing-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    background: rgba(110, 231, 168, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.pricing-feature-price {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #90A1B9;
    text-decoration: line-through;
    flex-shrink: 0;
}

.pricing-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

.pricing-total-label {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #0F2341;
}

.pricing-total-value {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #90A1B9;
}

.pricing-or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 24px 0;
}

.pricing-or-divider span {
    flex: 1;
    height: 1px;
    background: #E2E8F0;
}

.pricing-or-divider em {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6E6A66;
}

.pricing-explore-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #0F2341;
    background: none !important;
}

.pricing-explore-link:hover {
    color: #6752EB;
}

/* Big Bang Evolution Section */
.ecommerce-bigbang-section {
    padding: 96px 0;
    background: #FDF7FC;
}

.ecommerce-bigbang-section .container {
    max-width: 1240px;
}

.ecommerce-bigbang-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecommerce-bigbang-pillars-badge {
    border: none;
    background: rgba(108, 76, 241, 0.1);
    color: #6C4CF1;
}

.ecommerce-evolution-title {
    font-family: 'Poppins';
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #6752EB;
    margin: 20px 0 0;
}

.ecommerce-evolution-title .title-bold {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 76px;
    line-height: 70px;
    letter-spacing: -0.4px;
    margin-bottom: 4px;
}

.ecommerce-evolution-title .title-outline {
    font-weight: 600;
    font-size: 40px;
    line-height: 37px;
    letter-spacing: -0.4px;
    color: transparent;
    -webkit-text-stroke: 1.5px #6752EB;
    margin-bottom: 4px;
}

.ecommerce-evolution-title .title-outline.evolution {
    font-weight: 900;
    font-size: 127px;
    line-height: 117px;
    letter-spacing: 1.41px;
    text-transform: capitalize;
    color: transparent;
    -webkit-text-stroke: 3px #6752EB;
    margin-bottom: 0px;
}

.ecommerce-bigbang-subtitle {
    margin: 16px 0 0;
}

.ecommerce-bigbang-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 48px;
    margin-top: 64px;
}

.ecommerce-bigbang-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ecommerce-bigbang-grade-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 33554400px;
    background: #EAF9F0;
    border: 0.5px solid #22A366;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #22A366;
}

.ecommerce-bigbang-grade-badge img {
    display: block;
    width: 13px;
    height: 13px;
}

.ecommerce-bigbang-feature-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 34px;
    line-height: 34.68px;
    letter-spacing: -0.68px;
    color: #000000;
    margin: 12px 0 0;
}

.ecommerce-bigbang-feature-title .global-highlight-text {
    display: block;
}

.ecommerce-bigbang-feature-desc {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 17px;
    line-height: 26.35px;
    color: #6B7280;
    max-width: 512px;
    margin: 16px 0 0;
}

.ecommerce-bigbang-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 32px;
}

.ecommerce-bigbang-card {
    width: 100%;
    padding: 21px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #EAEAEA;
}

.ecommerce-bigbang-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ecommerce-bigbang-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #F5F5F5;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.ecommerce-bigbang-card:hover .ecommerce-bigbang-card-icon {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0px 0px 4px 1px #dddddd99;
}

.ecommerce-bigbang-card-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 17px;
    line-height: 26.35px;
    color: #000000;
    margin: 0;
}

.ecommerce-bigbang-card-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 6px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.ecommerce-bigbang-card-list li {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ecommerce-bigbang-card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6EE7A8;
}

.ecommerce-bigbang-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-bigbang-visual img {
    width: 100%;
    object-fit: cover;
}

/* Total Customization / Stacked Flow Section */
.ecommerce-customization-section {
    padding: 96px 0;
    background: #000000;
}

.ecommerce-customization-section .container {
    max-width: 1240px;
}

.ecommerce-customization-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecommerce-customization-title {
    color: #FFFFFF;
    margin: 24px 0 0;
}

.ecommerce-customization-title .global-highlight-text {
    color: #6752EB;
}

.ecommerce-customization-subtitle {
    max-width: 620px;
    margin: 16px 0 0;
    color: #9CA3AF;
}

.ecommerce-customization-stack {
    --cards-count: 4;
    --card-height: 279px;
    width: 100%;
    max-width: 822px;
    margin: 55px auto 0;
    display: grid;
    grid-template-rows: repeat(var(--cards-count), var(--card-height));
    gap: 14px 0;
    justify-items: center;
}

.ecommerce-customization-card {
    position: sticky;
    top: 88px;
    width: 100%;
    z-index: 1;
    box-sizing: border-box;
}

.ecommerce-customization-card-inner {
    display: grid;
    grid-template-columns: 1fr 381px;
    align-items: center;
    width: 100%;
    height: 259px;
    overflow: hidden;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transform-origin: center top;
    will-change: transform, filter;
}

.ecommerce-customization-card-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 361px;
    padding-left: 39px;
    z-index: 2;
}

.ecommerce-customization-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #F5F5F5;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.ecommerce-customization-card:hover .ecommerce-customization-card-icon {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0px 0px 4px 1px #dddddd99;
}

.ecommerce-customization-card-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    margin: 16px 0 0;
}

.ecommerce-customization-card-desc {
    max-width: 322px;
    margin: 8px 0 0;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}

.ecommerce-customization-card-preview {
    position: relative;
    width: 100%;
    height: 251px;
    align-self: end;
    overflow: hidden;
    pointer-events: none;
    padding-top: 18px;
}

.ecommerce-customization-preview-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Mobile First Section */
.ecommerce-mobile-first-section {
    padding: 96px 0;
    background: #FFFFFF;
}

.ecommerce-mobile-first-section .container {
    max-width: 1240px;
}

.ecommerce-mobile-first-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecommerce-mobile-first-title {
    margin: 24px 0 0;
}

.ecommerce-mobile-first-subtitle {
    max-width: 611px;
    margin: 16px 0 0;
}

.ecommerce-mobile-first-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-top: 55px;
}

.ecommerce-mobile-first-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    overflow: visible;
}

.ecommerce-mobile-first-phone {
    position: relative;
    flex-shrink: 0;
    margin-right: -17px;
    transform-origin: center center;
    cursor: pointer;
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, filter;
}

.ecommerce-mobile-first-phone.is-center {
    width: 230px;
    height: 429px;
    opacity: 1;
    z-index: 3;
    cursor: default;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.18));
}

.ecommerce-mobile-first-phone.is-side {
    width: 192px;
    height: 357px;
    opacity: 0.2;
    z-index: 1;
    filter: none;
}

.ecommerce-mobile-first-phone.is-animating {
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 5;
}

.ecommerce-mobile-first-phone:last-child {
    margin-right: 0;
}

.ecommerce-mobile-first-phone img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    pointer-events: none;
}

.ecommerce-mobile-first-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 60px;
    background: #0D0D0D;
}

.ecommerce-mobile-first-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 33554400px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(65, 65, 65, 0.46);
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 13px;
    line-height: 19.5px;
    color: #9CA3AF;
    cursor: pointer;
    transition: 0.3s ease;
}

.ecommerce-mobile-first-tab:hover {
    color: #FFFFFF;
    background: rgba(65, 65, 65, 0.7);
}

.ecommerce-mobile-first-tab.is-active {
    background: #6752EB;
    border-color: transparent;
    color: #FFFFFF;
}

.ecommerce-mobile-first-tab.is-active:hover {
    background: #503ed7;
    color: #FFFFFF;
}

/* Total Control Over Every Single Page Section */
.ecommerce-total-control-section {
    padding: 96px 0;
    background: #FFFFFF;
}

.ecommerce-total-control-section .container {
    max-width: 1240px;
}

.ecommerce-total-control-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 56px;
}

.ecommerce-total-control-badge {
    margin-bottom: 24px;
}

.ecommerce-total-control-title {
    margin-bottom: 16px;
}

.ecommerce-total-control-subtitle {
    margin: 0;
    max-width: 620px;
}

.ecommerce-control-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-card-box {
    background: #000000;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid #E2E8F0;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-card-box::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #FFFFFF;
    z-index: 0;
    pointer-events: none;
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-grid-row.is-active .control-card-box::after {
    height: 266px;
}

.control-grid-row.is-active .control-card-box {
    border-radius: 16px;
    box-shadow: 0px 8px 24px 0px rgba(15, 35, 65, 0.06);
    border-color: #E2E8F0;
}

.control-card-box .card-inner-top,
.control-card-box .card-preview-area {
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-card-box .card-inner-top {
    justify-content: flex-end;
    background: #000000;
}

.control-grid-row.is-active .control-card-box .card-inner-top,
.control-grid-row.is-active .control-card-box .card-preview-area {
    opacity: 1;
    pointer-events: auto;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-grid-row.is-active .control-card-box .card-inner-top {
    max-height: 123px;
    padding: 24px 0 44px 0;
}

.control-grid-row.is-active .control-card-box .card-preview-area {
    max-height: 266px;
    height: 266px;
    justify-content: flex-start;
    background: #FFFFFF;
}

.card-bottom-pill {
    width: 100%;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
    opacity: 1;
    max-height: 52px;
    padding: 16px 0 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    background: #000000;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-grid-row.is-active .card-bottom-pill {
    opacity: 0;
    max-height: 0;
    padding: 0;
    pointer-events: none;
}

.card-inner-top .meta-badge {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 7px;
}

.card-inner-top .card-head-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.card-preview-area {
    width: 100%;
}

.card-preview-area img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Every Page Matters Section (Horizontal Scroll) */
.ecommerce-every-page-matters-section {
    padding: 96px 0;
    background: #FAFAFE;
    overflow: hidden;
}

.ecommerce-every-page-matters-section .container {
    max-width: 1240px;
}

.ecommerce-every-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ecommerce-every-page-badge {
    margin-bottom: 24px;
}

.ecommerce-every-page-title {
    margin: 0;
    max-width: 900px;
}

.ecommerce-every-page-subtitle {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 620px;
}

.ecommerce-every-page-rows {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ecommerce-every-page-row-label {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 16px;
    line-height: 19.5px;
    color: #6B7280;
    letter-spacing: 1.82px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.ecommerce-every-page-scroller-area {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ecommerce-every-page-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 16px 0;
    scrollbar-width: none;
    cursor: grab;
}

.ecommerce-every-page-card {
    flex: 0 0 338px;
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    scroll-snap-align: start;
    box-shadow: none;
}

.ecommerce-every-page-card img {
    width: 100%;
    object-fit: cover;
    border: 1px solid #EAEAEA;
    border-radius: 16px;
    overflow: hidden;
}

.ecommerce-every-page-indicator {
    width: 100%;
    height: 15px;
    border-radius: 90px;
    background: rgba(143, 144, 146, 0.12);
    border: 0.5px solid rgba(143, 144, 146, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 3px 4px 3px 4px;
    display: flex;
    align-items: center;
}

.ecommerce-every-page-indicator-inner {
    width: 0px;
    height: 100%;
    border-radius: 60px;
    background: #CFCFCF;
    transform: translateX(0px);
    opacity: 0;
    pointer-events: none;
}

/* How It Works Section */
.ecommerce-how-it-works-section {
    padding: 96px 0;
    background: #FFFFFF;
}

.ecommerce-how-it-works-section .container {
    max-width: 1240px;
}

.ecommerce-how-it-works-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ecommerce-how-it-works-badge {
    margin-bottom: 24px;
}

.ecommerce-how-it-works-title {
    margin: 0;
    max-width: 900px;
}

.ecommerce-how-it-works-subtitle {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 620px;
}

.ecommerce-how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 24px;
    margin-top: 56px;
}

.ecommerce-how-it-works-step-col {
    position: relative;
}

.ecommerce-how-it-works-card {
    background: #FFFFFF;
    border: 1px solid #ECE8FA;
    border-radius: 16px;
    box-shadow: 0px 8px 12px rgba(20, 18, 43, 0.06);
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ecommerce-how-it-works-step-label {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #6752EB;
    letter-spacing: 0;
}

.ecommerce-how-it-works-card-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 21px;
    line-height: 30px;
    color: #000000;
    margin: 8px 0 0 0;
}

.ecommerce-how-it-works-card-desc {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9CA3AF;
    margin: 8px 0 0 0;
    max-width: 242px;
}

.ecommerce-how-it-works-preview {
    margin-top: 20px;
    background: #F9F8FF;
    border: 1px solid #ECE8FA;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.ecommerce-how-it-works-preview img {
    width: 100%;
    object-fit: cover;
}

.ecommerce-how-it-works-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 22px auto 0;
    padding: 7px 13px;
    border: 1px solid rgba(108, 76, 241, 0.3);
    background: #fff;
    border-radius: 33554400px;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #6C4CF1;
    text-decoration: none;
    transition: 0.3s ease;
    align-self: center;
}

.ecommerce-how-it-works-cta:hover {
    background: rgba(108, 76, 241, 0.06);
    border-color: rgba(108, 76, 241, 0.45);
    color: #6C4CF1;
}

.ecommerce-how-it-works-arrow {
    position: absolute;
    top: 40px;
    left: 264px;
    width: 40px;
    height: 64px;
    pointer-events: none;
    z-index: 2;
}

.ecommerce-how-it-works-step-col:last-child .ecommerce-how-it-works-arrow {
    display: none;
}

/* Platform Showcase Section Styling */
.ecommerce-workflow-showcase-section {
    background: #000000;
    position: relative;
    padding: 96px 0px;
}

.ecommerce-workflow-showcase-section .container {
    max-width: 1240px;
}

.ecommerce-listing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ecommerce-workflow-badge {
    margin-bottom: 20px;
}

.ecommerce-platform-title {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.ecommerce-platform-subtitle {
    margin-bottom: 48px;
    max-width: 643px;
    color: #9CA3AF;
}

.ecommerce-builder-showcase {
    display: grid;
    grid-template-columns: 250px 1fr;
    overflow: hidden;
    background: #14122B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 40px 120px -40px rgba(108, 76, 241, 0.55);
    border-radius: 20px;
}

.builder-sidebar-tabs {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 17px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.header-small {
    font-family: 'Bricolage Grotesque';
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.header-bold {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    max-height: 533px;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.sidebar-links .tab-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 14px;
    border-radius: 8px;
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 14px;
    line-height: 17.5px;
    color: rgba(255, 255, 255, 0.5);
    height: 42px;
    flex-shrink: 0;
    position: relative;
    transition: 0.3s ease;
}

.sidebar-links .tab-link:hover,
.sidebar-links .tab-link.active {
    background: rgba(168, 85, 247, 0.25);
    color: #FFFFFF;
}

.sidebar-links .tab-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: transparent;
    border-radius: 0 40px 40px 0;
    transition: 0.3s ease;
}

.sidebar-links .tab-link.active::before {
    background: #A855F7;
}

.sidebar-links .tab-link .tab-icon {
    width: 6px;
    height: 6px;
    background: #A855F7;
    border-radius: 50%;
    transition: 0.3s ease;
}

.sidebar-links .tab-link.active .tab-icon,
.sidebar-links .tab-link:hover .tab-icon {
    background: #FFFFFF;
}

.sidebar-links .tab-link.dropdown-toggle .tab-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 6px;
    padding-left: 2px;
    padding-bottom: 1px;
}

.sidebar-links .tab-link.dropdown-toggle .close-text .tab-icon svg {
    transform: rotate(45deg);
}

.sidebar-links .tab-link.dropdown-toggle.is-active .tab-icon {
    background: rgba(239, 68, 68, 0.1);
}

.sidebar-links .tab-link.dropdown-toggle.is-active .tab-icon svg path {
    stroke: #ef4444;
}

.sidebar-links .tab-icon svg path {
    transition: 0.3s ease;
}

.sidebar-links .tab-link.active .tab-icon svg path {
    stroke: #4F46E5;
}

.sidebar-links .more-tools-dropdown {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
}

.sidebar-links .dropdown-content {
    max-height: 0;
    overflow: hidden;
    display: flex;
    gap: 8px;
    flex-direction: column;
    transition: 0.3s ease;
}

.sidebar-links .dropdown-content.is-open {
    max-height: 250px;
    padding-top: 8px;
}

.sidebar-links .dropdown-toggle::after {
    content: "▾";
    display: none;
}

.sidebar-links .tab-link.dropdown-toggle {
    justify-content: space-between;
}

.sidebar-links .dropdown-toggle .close-text {
    display: none;
    font-weight: 600;
    line-height: 20px;
    color: #ef4444;
}

.sidebar-links .dropdown-toggle .more-tools-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    line-height: 20px;
    color: #A855F7;
}

.sidebar-links .dropdown-toggle.is-active .more-tools-text {
    display: none;
}

.sidebar-links .dropdown-toggle.is-active .close-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.sidebar-links .tab-link.dropdown-toggle svg {
    transition: 0.3s;
}

.sidebar-links .tab-link.dropdown-toggle.is-active svg {
    transform: rotate(180deg);
}

.builder-video-canvas {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9.4;
    background: #000000;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #1E293B;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 14px;
    color: #94A3B8;
    margin-top: 24px;
    text-align: center;
}

.platform-footer-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
  
.footer-pill {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
}

/* One Plan Replaces Section */
.ecommerce-one-plan-section {
    padding: 96px 0;
    background: #000000;
}

.ecommerce-one-plan-section .container {
    max-width: 1260px;
}

.ecommerce-one-plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

.ecommerce-one-plan-badge {
    margin-bottom: 24px;
}

.ecommerce-one-plan-title {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.ecommerce-one-plan-subtitle {
    color: #9CA3AF;
    max-width: 620px;
    margin: 0;
}

.ecommerce-one-plan-content {
    display: grid;
    grid-template-columns: minmax(0, 556px) minmax(0, 624px);
    justify-content: center;
    align-items: center;
    gap: 55px;
}

.ecommerce-one-plan-comparison-card {
    background: #0D0D0D;
    border: 1px solid #FFFFFF14;
    border-radius: 16px;
    padding: 25px;
}

.ecommerce-one-plan-comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.ecommerce-one-plan-comparison-header span {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    color: #9CA3AF;
}

.ecommerce-one-plan-bottom-header {
    margin-top: 0;
    max-height: 0;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: wrap;
    background: rgba(110, 231, 168, 0.08);
    border: 1px solid rgba(110, 231, 168, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-bottom-header {
    opacity: 1;
    visibility: visible;
    max-height: 60px;
    margin-top: 24px;
    padding: 12px 16px;
    transform: translateY(0);
    transition-delay: 2.0s;
    animation: bottomHeaderGlow 2s ease-in-out 2s infinite alternate;
}

@keyframes bottomHeaderGlow {
    0% {
        box-shadow: 0 0 0px rgba(110, 231, 168, 0);
        border-color: rgba(110, 231, 168, 0.15);
        background: rgba(110, 231, 168, 0.06);
    }

    100% {
        box-shadow: 0 0 12px rgba(110, 231, 168, 0.18), inset 0 0 6px rgba(110, 231, 168, 0.08);
        border-color: rgba(110, 231, 168, 0.35);
        background: rgba(110, 231, 168, 0.12);
    }
}

.ecommerce-one-plan-bottom-header span {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
}

.ecommerce-one-plan-bottom-header .ecommerce-one-plan-price-total {
    color: #6EE7A8;
}

.ecommerce-one-plan-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ecommerce-one-plan-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.ecommerce-one-plan-item-name {
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #9CA3AF;
    position: relative;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item-name {
    opacity: 0.7;
}

.ecommerce-one-plan-item-name::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 50%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item-name::before {
    transform: scaleX(1);
}

.ecommerce-one-plan-item-price {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #9CA3AF;
    white-space: nowrap;
    position: relative;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item-price {
    opacity: 0.7;
}

.ecommerce-one-plan-item-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF6B6B;
    border-radius: 50%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item-price::before {
    transform: scaleX(1);
}

.ecommerce-one-plan-included-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #6EE7A8;
    background: #6EE7A81A;
    border-radius: 40px;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
    max-width: 0;
    padding-left: 0;
    padding-right: 0;
    transform: translateX(10px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-included-badge {
    opacity: 1;
    visibility: visible;
    max-width: 120px;
    padding: 3px 8px;
    transform: translateX(0);
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(1) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(1) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(1) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(1) .ecommerce-one-plan-item-price::before {
    transition-delay: 0.1s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(1) .ecommerce-one-plan-included-badge {
    transition-delay: 0.55s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(2) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(2) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(2) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(2) .ecommerce-one-plan-item-price::before {
    transition-delay: 0.25s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(2) .ecommerce-one-plan-included-badge {
    transition-delay: 0.7s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(3) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(3) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(3) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(3) .ecommerce-one-plan-item-price::before {
    transition-delay: 0.4s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(3) .ecommerce-one-plan-included-badge {
    transition-delay: 0.85s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(4) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(4) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(4) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(4) .ecommerce-one-plan-item-price::before {
    transition-delay: 0.55s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(4) .ecommerce-one-plan-included-badge {
    transition-delay: 1.0s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(5) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(5) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(5) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(5) .ecommerce-one-plan-item-price::before {
    transition-delay: 0.7s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(5) .ecommerce-one-plan-included-badge {
    transition-delay: 1.15s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(6) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(6) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(6) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(6) .ecommerce-one-plan-item-price::before {
    transition-delay: 0.85s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(6) .ecommerce-one-plan-included-badge {
    transition-delay: 1.3s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(7) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(7) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(7) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(7) .ecommerce-one-plan-item-price::before {
    transition-delay: 1.0s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(7) .ecommerce-one-plan-included-badge {
    transition-delay: 1.45s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(8) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(8) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(8) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(8) .ecommerce-one-plan-item-price::before {
    transition-delay: 1.15s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(8) .ecommerce-one-plan-included-badge {
    transition-delay: 1.6s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(9) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(9) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(9) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(9) .ecommerce-one-plan-item-price::before {
    transition-delay: 1.3s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(9) .ecommerce-one-plan-included-badge {
    transition-delay: 1.75s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(10) .ecommerce-one-plan-item-name,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(10) .ecommerce-one-plan-item-price,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(10) .ecommerce-one-plan-item-name::before,
.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(10) .ecommerce-one-plan-item-price::before {
    transition-delay: 1.45s;
}

.ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-item:nth-child(10) .ecommerce-one-plan-included-badge {
    transition-delay: 1.9s;
}

.ecommerce-one-plan-included-badge svg {
    flex-shrink: 0;
}

.ecommerce-one-plan-savings {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.ecommerce-one-plan-savings::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(110, 231, 168, 0.28) 0%, rgba(110, 231, 168, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.ecommerce-one-plan-savings-amount {
    position: relative;
    z-index: 1;
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 120px;
    line-height: 120px;
    margin-bottom: 12px;
    text-align: center;
}

.ecommerce-one-plan-savings-amount.text-green {
    background-image: linear-gradient(160.5deg, #7DE8B0 0%, #35A8E8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ecommerce-one-plan-savings-label {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.ecommerce-one-plan-price-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.ecommerce-one-plan-price-old {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-decoration: line-through;
    color: #9CA3AF;
}

.ecommerce-one-plan-price-new {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.ecommerce-one-plan-price-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.ecommerce-one-plan-price-note {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #9CA3AF;
    margin: 0 0 32px;
}

.ecommerce-one-plan-cta-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.ecommerce-one-plan-cta-btn {
    letter-spacing: 0.085px;
    padding: 14px 32px;
    gap: 8px;
    width: auto;
    max-width: none;
}

.ecommerce-one-plan-save-badge {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #6EE7A8;
    background: rgba(110, 231, 168, 0.15);
    border-radius: 33554400px;
    padding: 6px 12px 7px 12px;
    white-space: nowrap;
}

.ecommerce-one-plan-trust-note {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #9CA3AF;
    margin: 0 0 32px;
}

.ecommerce-one-plan-stats {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.ecommerce-one-plan-stat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    transition: 0.3s ease;
}

.ecommerce-one-plan-stat-card:hover {
    border-color: rgba(110, 231, 168, 0.25);
    box-shadow: 0 5px 14px rgba(110, 231, 168, 0.1);
}

.ecommerce-one-plan-stat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(110, 231, 168, 0.12);
    transition: 0.3s ease;
}

.ecommerce-one-plan-stat-card:hover .ecommerce-one-plan-stat-icon {
    transform: translateY(-1px) scale(1.05);
}

.ecommerce-one-plan-stat-text {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    color: #FFFFFF;
    margin: 0;
}

/* The Cost Nobody Advertises Section */
.ecommerce-cost-section {
    padding: 96px 0;
    background: #000000;
}

.ecommerce-cost-section .container {
    max-width: 1240px;
}

.ecommerce-cost-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ecommerce-cost-badge {
    margin-bottom: 24px;
}

.ecommerce-cost-title {
    color: #FFFFFF;
    margin: 0;
    max-width: 520px;
}

.ecommerce-cost-subtitle {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 672px;
    color: #9CA3AF;
}

.ecommerce-cost-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.ecommerce-cost-card {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.3s ease;
}

.ecommerce-cost-card:hover {
    border-color: rgba(110, 231, 168, 0.25);
    box-shadow: 0 3px 12px rgba(110, 231, 168, 0.1);
}

.ecommerce-cost-card-label {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9CA3AF;
    margin: 0;
}

.ecommerce-cost-card-loss {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
    color: #FF6B6B;
    margin: 16px 0 0 0;
    max-width: 348px;
}

.ecommerce-cost-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 16px;
}

.ecommerce-cost-card-save {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #6EE7A8;
    margin: 16px 0 0 0;
}

.ecommerce-cost-footnote {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 13px;
    line-height: 19.5px;
    text-align: center;
    color: #9CA3AF;
    margin: 32px 0 0;
}

/* Core Features Section */
.ecommerce-core-features-section {
    padding: 96px 0;
    background: #FFFFFF;
}

.ecommerce-core-features-section .container {
    max-width: 1240px;
}

.ecommerce-core-features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.ecommerce-core-features-title {
    margin-top: 20px;
    margin-bottom: 0;
}

.ecommerce-core-features-desc {
    margin-top: 16px;
    margin-bottom: 0px;
}

.core-feature-row,
.core-feature-card {
    border-radius: 24px;
    overflow: hidden;
}

.core-feature--light-green {
    background: #EAF9F0;
}

.core-feature--light-purple {
    background: #F1EFFF;
}

.core-feature--light-orange {
    background: #FFF6EC;
}

.core-feature--light-pink {
    background: #FDEFF5;
}

.core-feature--light-blue {
    background: #EBF8FF;
}

.core-feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 24px;
}

.core-feature-row:last-child {
    margin-bottom: 0px;
}

.core-feature-row .core-feature-copy {
    padding: 33px 0 33px 33px;
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.core-feature-card {
    display: flex;
    flex-direction: column;
    padding: 33px;
    min-height: 100%;
}

.core-feature-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.core-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFFFFF;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.core-feature-card:hover .core-feature-icon,
.core-feature-row:hover .core-feature-icon {
    transform: translateY(-1px) scale(1.05);
}

.core-feature-name {
    margin: 16px 0 0;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #14122B;
}

.core-feature-text {
    margin: 12px 0 0;
    max-width: 448px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #6B6880;
}

.core-feature-text span {
    font-weight: 700;
    color: #14122B;
}

.core-feature-pills {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.core-feature-pills li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    background: #FFFFFF;
    border: 1px solid #ECE8FA;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #14122B;
}

.core-feature-link {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #6752EB;
    transition: 0.3s ease;
}

.core-feature-link:hover {
    gap: 8px;
    color: #503ed7;
}

.core-feature-visual {
    width: 100%;
    margin-top: 24px;
}

.core-feature-row .core-feature-visual {
    margin-top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 100%;
}

.core-feature-visual img,
.core-feature-row .core-feature-visual img {
    width: 100%;
    object-fit: cover;
}

.core-feature-card .core-feature-visual {
    margin-top: auto;
    padding-top: 24px;
}

/* Everything Your Platform Needs to Thrive Section Styles */
.ecommerce-thrive-section {
    padding: 96px 0px;
    background: #000000;
    overflow: hidden;
}

.ecommerce-thrive-section .container {
    max-width: 1240px;
}

.thrive-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thrive-badge {
    margin-bottom: 20px;
}

.thrive-title {
    margin-bottom: 16px;
    color: #FFFFFF;
}

.thrive-subtitle {
    margin-bottom: 40px;
    max-width: 728px;
    color: #9CA3AF;
}

.thrive-tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0 4px;
    margin-bottom: 40px;
}

.thrive-tab-btn {
    padding: 10px 17px;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-family: 'Bricolage Grotesque';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    outline: none;
}

.thrive-tab-btn:hover {
    border-color: rgb(255 255 255 / 33%);
    background: #1a19198c;
}

.thrive-tab-btn.is-active {
    background: #6752EB;
    border-color: #6752EB;
    color: #FFFFFF;
    font-weight: 600;
}

.thrive-tab-btn .count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.7;
    transition: 0.3s ease;
}

.thrive-tab-btn:hover .count {
    opacity: 1;
}

.thrive-tab-btn.is-active .count {
    color: #fff;
    opacity: 1;
}

.thrive-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.thrive-card {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thrive-card {
    opacity: 0;
    transform: translateY(15px) scale(0.90);
    transition: 0.4s ease;
}

.thrive-card.is-hidden {
    display: none !important;
}

.thrive-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.thrive-card[data-category="revenue-booster"]:hover {
    border-color: #6ee7a866;
}

.thrive-card[data-category="increase-conversion"]:hover {
    border-color: #febc2e66;
}

.thrive-card[data-category="reduce-cart-abandonment"]:hover {
    border-color: #c084fc66;
}

.thrive-card[data-category="build-trust"]:hover {
    border-color: #7dd3fc66;
}

.thrive-card[data-category="improve-experience"]:hover {
    border-color: rgb(255 255 255 / 16%);
}

.thrive-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: 0.4s ease;
}

.thrive-card.animate-in:hover .thrive-card-icon {
    transform: translateY(-1px) scale(1.05);
}

.thrive-icon-revenue-booster {
    background: rgba(110, 231, 168, 0.12);
}

.thrive-icon-increase-conversion {
    background: rgba(254, 188, 46, 0.15);
}

.thrive-icon-reduce-cart-abandonment {
    background: rgba(168, 85, 247, 0.15);
}

.thrive-icon-build-trust {
    background: rgba(53, 168, 232, 0.15);
}

.thrive-icon-improve-experience {
    background: rgba(255, 255, 255, 0.06);
}

.thrive-card-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.thrive-card-tag {
    padding: 4px 10px;
    border-radius: 9999px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
}

.revenue-booster-tag {
    background: rgba(110, 231, 168, 0.12);
    color: #6EE7A8;
}

.increase-conversion-tag {
    background: rgba(254, 188, 46, 0.15);
    color: #FEBC2E;
}

.reduce-cart-abandonment-tag {
    background: rgba(168, 85, 247, 0.15);
    color: #C084FC;
}

.build-trust-tag {
    background: rgba(53, 168, 232, 0.15);
    color: #7DD3FC;
}

.improve-experience-tag {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}

/* Build Your Own Fashion Brand Section */
.ecommerce-fashion-brand-section {
    padding: 96px 0;
    background: #000000;
    overflow: hidden;
}

.ecommerce-fashion-brand-section .container {
    max-width: 1240px;
}

.ecommerce-fashion-brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ecommerce-fashion-brand-badge {
    margin-bottom: 24px;
}

.ecommerce-fashion-brand-title {
    color: #FFFFFF;
    margin: 0;
}

.ecommerce-fashion-brand-subtitle {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 672px;
    color: #9CA3AF;
    line-height: 28px;
}

.ecommerce-fashion-marquee-stage {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ecommerce-fashion-marquee-row {
    overflow: hidden;
    width: 100%;
}

.ecommerce-fashion-marquee-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    will-change: transform;
}

.ecommerce-fashion-marquee-row.is-rtl .ecommerce-fashion-marquee-track {
    animation: fashionMarqueeRtl 45s linear infinite;
}

.ecommerce-fashion-marquee-row.is-ltr .ecommerce-fashion-marquee-track {
    animation: fashionMarqueeLtr 45s linear infinite;
}

@keyframes fashionMarqueeRtl {
    from {
        transform: translateX(0);
    }

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

@keyframes fashionMarqueeLtr {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.ecommerce-fashion-marquee-card {
    flex: 0 0 299px;
    width: 299px;
    height: 194px;
    border-radius: 10px;
    overflow: hidden;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.ecommerce-fashion-marquee-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ecommerce-fashion-marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 119px;
    z-index: 2;
    pointer-events: none;
}

.ecommerce-fashion-marquee-fade.is-left {
    left: 0;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.ecommerce-fashion-marquee-fade.is-right {
    right: 0;
    background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.ecommerce-fashion-stat-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 324px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 35px;
    gap: 22px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, #000000 100%);
}

.ecommerce-fashion-stat-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 55px;
    line-height: 40px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.ecommerce-fashion-text-marquee {
    height: 78px;
    overflow: hidden;
    width: min(720px, 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.ecommerce-fashion-text-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: fashionTextMarquee 5s linear infinite;
}

.ecommerce-fashion-text-track p {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    color: #9CA3AF;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

@keyframes fashionTextMarquee {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.ecommerce-fashion-markets {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.ecommerce-fashion-market-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 250px;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.ecommerce-fashion-market-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 101%;
    /* inset: 0; */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 20%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.85) 90%
    );
    pointer-events: none;
    z-index: 0;
}

.ecommerce-fashion-market-card.is-large {
    grid-column: span 3;
    min-height: 380px;
}

.ecommerce-fashion-market-card.is-small {
    grid-column: span 2;
    min-height: 250px;
}

.ecommerce-fashion-market-label,
.ecommerce-fashion-market-value,
.ecommerce-fashion-market-note {
    position: relative;
    z-index: 1;
}

.ecommerce-fashion-market-label {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #FEBC2E;
}

.ecommerce-fashion-market-value {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    color: #FFFFFF;
    margin: 0;
}

.ecommerce-fashion-market-note {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #9CA3AF;
    margin: 0;
}

/* Customer Reviews Section */
.ecommerce-reviews-section {
    padding: 96px 0;
    background: #000000;
}

.ecommerce-reviews-section .container {
    max-width: 1240px;
}

.ecommerce-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ecommerce-reviews-title {
    margin: 20px 0 0;
    color: #FFFFFF;
    max-width: 873px;
}

.ecommerce-reviews-desc {
    margin: 20px 0 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.ecommerce-reviews-marquee-area {
    position: relative;
    margin-top: 56px;
}

.ecommerce-reviews-marquees {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    height: 700px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 10%,
        #000 72%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 10%,
        #000 72%,
        transparent 100%
    );
}

.reviews-marquee-col {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.reviews-marquee-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    will-change: transform;
    animation: reviewsMarqueeScroll 42s linear infinite;
}

.reviews-marquee-col:nth-child(1) .reviews-marquee-track {
    animation-duration: 46s;
}

.reviews-marquee-col--reverse .reviews-marquee-track {
    animation-name: reviewsMarqueeScrollReverse;
    animation-duration: 50s;
}

.reviews-marquee-col:nth-child(3) .reviews-marquee-track {
    animation-duration: 44s;
}

.ecommerce-reviews-marquees:hover .reviews-marquee-track {
    animation-play-state: paused;
}

@keyframes reviewsMarqueeScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

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

@keyframes reviewsMarqueeScrollReverse {
    from {
        transform: translate3d(0, -50%, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.reviews-card {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    padding: 22px;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.reviews-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.reviews-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.reviews-card-quote {
    margin: 12px 0 0;
    font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.88);
}

.reviews-card-quote span {
    font-weight: 500;
    color: #FF2E63;
}

.reviews-card-divider {
    width: 100%;
    height: 1px;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.reviews-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.reviews-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #6C4CF1 0%, #4A2FD0 100%);
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    color: #FFFFFF;
    flex-shrink: 0;
}

.reviews-author-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.reviews-author-meta strong {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.reviews-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.45);
}

.reviews-verified img {
    display: block;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.ecommerce-reviews-cta {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
    padding: 6px 6px 6px 20px;
    background: #0D0D0D;
    border: 1px solid rgba(108, 76, 241, 0.4);
    box-shadow: 0px 0px 24px rgba(108, 76, 241, 0.35);
    border-radius: 9999px;
}

.reviews-cta-label {
    font-family: 'Bricolage Grotesque';
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.reviews-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 21px;
    white-space: nowrap;
}

/* FAQs Section */
.ecommerce-faqs-section {
    padding: 96px 0;
    background: #FFFFFF;
}

.ecommerce-faqs-section .container {
    max-width: 1015px;
}

.ecommerce-faqs-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ecommerce-faqs-title {
    margin: 24px 0 0;
    color: #000000;
}

.ecommerce-faqs-desc {
    margin: 16px 0 0;
}

.ecommerce-faqs-list {
    margin-top: 40px;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.ecommerce-faqs-list .faq-item {
    border-bottom: 1px solid #EAEAEA;
}

.ecommerce-faqs-list .faq-item:last-child {
    border-bottom: none;
}

.ecommerce-faqs-list .faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-trigger-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.faq-trigger-main > img {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ecommerce-faqs-list .faq-question {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.ecommerce-faqs-list .faq-chevron {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.ecommerce-faqs-list .faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

.ecommerce-faqs-list .faq-panel-inner {
    overflow: hidden;
    min-height: 0;
}

.ecommerce-faqs-list .faq-answer {
    margin: 0;
    padding: 0 24px 24px 54px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #6B7280;
}

/* Stop Renting CTA Section */
.ecommerce-store-cta-section {
    position: relative;
    padding: 96px 0px;
    background: #000000;
    overflow: hidden;
}

.ecommerce-store-cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
}

.ecommerce-store-cta-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(64px);
    opacity: 0.25;
    transform: rotate(-51.16deg);
    z-index: 0;
}

.ecommerce-store-cta-glow--left {
    left: -400px;
    top: -300px;
    background: radial-gradient(circle, rgba(255, 95, 176, 1) 0%, rgba(191, 71, 132, 0.75) 25%, rgba(128, 48, 88, 0.5) 50%, rgba(64, 24, 44, 0.25) 75%, rgba(0, 0, 0, 0) 100%);
}

.ecommerce-store-cta-glow--right {
    right: -400px;
    top: -80px;
    background: radial-gradient(circle, rgba(168, 85, 247, 1) 0%, rgba(126, 64, 185, 0.75) 25%, rgba(84, 43, 124, 0.5) 50%, rgba(42, 21, 62, 0.25) 75%, rgba(0, 0, 0, 0) 100%);
}

.ecommerce-store-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecommerce-store-cta-title {
    margin: 0;
    max-width: 576px;
    color: #FFFFFF;
}

.ecommerce-store-cta-desc {
    margin: 24px 0 0;
    max-width: 446px;
    color: #9CA3AF;
}

.ecommerce-store-cta-btn {
    margin-top: 40px;
    gap: 8px;
    padding: 14.5px 32px 16px 32px;
    letter-spacing: 0.085px;
}

.ecommerce-store-cta-btn.cwp-stagger-item {
    transition: all 0.3s ease;
}

.ecommerce-store-cta-note {
    margin: 16px 0 0;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.5);
}

/* Site Footer */
.ecommerce-site-footer {
    padding: 29px 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ecommerce-site-footer .container {
    max-width: 1280px;
}

.ecommerce-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ecommerce-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ecommerce-footer-logo {
    display: inline-flex;
    flex-shrink: 0;
}

.ecommerce-footer-logo img {
    width: 100%;
}

.ecommerce-footer-copy {
    margin: 0;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #9A9EAB;
    white-space: nowrap;
}

.ecommerce-footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ecommerce-footer-nav a {
    font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s ease;
}

.ecommerce-footer-nav a:hover {
    color: #FFFFFF;
}

/* Floating Promo Element */
.ecommerce-banner-floating-elements {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    z-index: 99;
    background: #14122B;
    border: 1px solid #6C4CF166;
    box-shadow: 0px 12px 36px 0px #6C4CF159;
    border-radius: 100px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: fit-content;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, box-shadow 0.3s ease;
}

.ecommerce-banner-floating-elements.in-banner {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ecommerce-banner-floating-elements.fixed-bottom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: slideInFromRight 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ecommerce-banner-floating-elements.slide-out-right {
    animation: slideOutToRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

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

.ecommerce-banner-floating-elements.is-closed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.floating-element-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    margin-right: 12px;
}

.floating-element-icon::after {
    content: '';
    position: absolute;
    top: 1px;
    right: 3px;
    width: 7px;
    height: 7px;
    background-color: #FF2E63;
    border-radius: 50%;
    opacity: 0.52;
}

.scroll-progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-circle .progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.5;
}

.scroll-progress-circle .progress-bar {
    fill: none;
    stroke: url(#progressGradient);
    stroke: #6C4CF1;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-dasharray: 100.53;
    stroke-dashoffset: 100.53;
    transition: stroke-dashoffset 0.15s ease-out;
}

.floating-element-icon .icon-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element-content {
    display: flex;
    align-items: center;
    position: relative;
    gap: 12px;
}

.floating-default-badge {
    background: rgba(110, 231, 168, 0.15);
    color: #6EE7A8;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.floating-hover-text {
    font-family: 'Bricolage Grotesque';
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF99;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transform: scaleX(0.9) translateX(-6px);
    transform-origin: left center;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease-out,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-hover-btn {
    display: flex;
    opacity: 0;
    max-width: 0;
    padding: 12px 0px;
    margin: 0 0px;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    white-space: nowrap;
    transform: scaleX(0.9) translateX(6px);
    transform-origin: right center;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        margin 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease-out,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.2s ease;
}

.floating-hover-btn:hover {
    background: #503ed7;
    color: #FFFFFF;
}

.floating-element-close {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    outline: none;
    width: 24px;
    height: 24px;
}

.floating-element-close svg path {
    stroke: #6B7280;
}

.ecommerce-banner-floating-elements {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ecommerce-banner-floating-elements:hover {
    box-shadow: 0px 12px 40px rgba(108, 76, 241, 0.5);
}

.ecommerce-banner-floating-elements:hover .floating-hover-text {
    opacity: 1;
    max-width: 100px;
    transform: scaleX(1) translateX(0);
}

.ecommerce-banner-floating-elements:hover .floating-hover-btn {
    opacity: 1;
    max-width: 180px;
    padding: 12px 16px;
    margin: 0 12px;
    transform: scaleX(1) translateX(0);
}

/* Responsive Styles */
@media (max-width: 1280px) {
    /* Mobile First Section */
    .ecommerce-mobile-first-section {
        padding: 80px 0;
    }

    .ecommerce-mobile-first-showcase {
        margin-top: 48px;
    }

    .ecommerce-mobile-first-phones {
        min-height: 400px;
    }

    .ecommerce-mobile-first-phone.is-center {
        width: 210px;
        height: 392px;
    }

    .ecommerce-mobile-first-phone.is-side {
        width: 175px;
        height: 327px;
    }

    .ecommerce-mobile-first-phone {
        margin-right: -14px;
    }

    .ecommerce-mobile-first-phone img {
        border-radius: 26px;
    }
    /* Mobile First Section */

    /* Total Control Section */
    .ecommerce-total-control-section {
        padding: 80px 0;
    }

    .ecommerce-total-control-header {
        margin-bottom: 48px;
    }

    .ecommerce-total-control-badge {
        margin-bottom: 20px;
    }

    .control-grid-row.is-active .control-card-box::after {
        height: 240px;
    }

    .control-grid-row.is-active .control-card-box .card-inner-top {
        max-height: 110px;
        padding: 20px 0 36px 0;
    }

    .control-grid-row.is-active .control-card-box .card-preview-area {
        max-height: 240px;
        height: 240px;
    }

    .card-inner-top .card-head-title {
        font-size: 22px;
        line-height: 28px;
    }
    /* Total Control Section */

    /* Every Page Matters Section */
    .ecommerce-every-page-matters-section {
        padding: 80px 0;
    }

    .ecommerce-every-page-rows {
        margin-top: 56px;
        gap: 40px;
    }

    .ecommerce-every-page-scroller {
        gap: 14px;
        padding: 18px 0 14px 0;
    }

    .ecommerce-every-page-card {
        flex: 0 0 300px;
        border-radius: 14px;
    }

    .ecommerce-every-page-card img {
        border-radius: 14px;
    }
    /* Every Page Matters Section */

    /* How It Works Section */
    .ecommerce-how-it-works-section {
        padding: 80px 0;
    }

    .ecommerce-how-it-works-steps {
        margin-top: 48px;
        gap: 20px;
    }

    .ecommerce-how-it-works-card {
        padding: 20px;
        border-radius: 14px;
    }

    .ecommerce-how-it-works-card-title {
        font-size: 19px;
        line-height: 27px;
    }

    .ecommerce-how-it-works-card-desc {
        font-size: 13px;
        line-height: 19px;
    }

    .ecommerce-how-it-works-preview {
        margin-top: 18px;
        border-radius: 10px;
        width: 100%;
    }

    .ecommerce-how-it-works-cta {
        margin-top: 20px;
    }

    .ecommerce-how-it-works-arrow {
        left: auto;
        right: -16px;
        width: 36px;
        height: 56px;
        top: 36px;
    }
    /* How It Works Section */

    /* One Plan Section */
    .ecommerce-one-plan-section {
        padding: 80px 0;
    }

    .ecommerce-one-plan-header {
        margin-bottom: 56px;
    }

    .ecommerce-one-plan-content {
        gap: 40px;
    }

    .ecommerce-one-plan-comparison-card {
        padding: 22px;
    }

    .ecommerce-one-plan-item-name,
    .ecommerce-one-plan-item-price {
        font-size: 16px;
        line-height: 24px;
    }

    .ecommerce-one-plan-savings::before {
        width: 320px;
        height: 320px;
    }

    .ecommerce-one-plan-savings-amount {
        font-size: 100px;
        line-height: 100px;
    }
    /* One Plan Section */

    /* Cost Section */
    .ecommerce-cost-section {
        padding: 80px 0;
    }

    .ecommerce-cost-cards {
        margin-top: 56px;
        gap: 20px;
    }

    .ecommerce-cost-card {
        padding: 22px;
        border-radius: 14px;
    }

    .ecommerce-cost-card-loss {
        font-size: 32px;
        line-height: 36px;
        max-width: 100%;
    }

    .ecommerce-cost-card-save {
        font-size: 22px;
        line-height: 28px;
    }

    .ecommerce-cost-footnote {
        margin-top: 28px;
    }
    /* Cost Section */

    /* Fashion Brand Section */
    .ecommerce-fashion-brand-section {
        padding: 80px 0;
    }

    .ecommerce-fashion-marquee-stage {
        margin-top: 36px;
        gap: 18px;
    }

    .ecommerce-fashion-marquee-card {
        flex: 0 0 260px;
        width: 260px;
        height: 168px;
    }

    .ecommerce-fashion-marquee-fade {
        width: 96px;
    }

    .ecommerce-fashion-stat-overlay {
        height: 280px;
        padding-bottom: 28px;
        gap: 18px;
    }

    .ecommerce-fashion-stat-title {
        font-size: 48px;
        line-height: 40px;
    }

    .ecommerce-fashion-markets {
        margin-top: 36px;
        gap: 16px;
    }

    .ecommerce-fashion-market-card.is-large {
        min-height: 340px;
    }

    .ecommerce-fashion-market-card.is-small {
        min-height: 230px;
    }

    .ecommerce-fashion-market-value {
        font-size: 32px;
        line-height: 36px;
    }
    /* Fashion Brand Section */

    /* Store CTA Section */
    .ecommerce-store-cta-section {
        padding: 80px 0;
    }

    .ecommerce-store-cta-glow {
        width: 520px;
        height: 520px;
        filter: blur(56px);
    }

    .ecommerce-store-cta-glow--left {
        left: -320px;
        top: -260px;
    }

    .ecommerce-store-cta-glow--right {
        right: -320px;
        top: -60px;
    }

    .ecommerce-store-cta-title {
        max-width: 520px;
    }

    .ecommerce-store-cta-desc {
        margin-top: 20px;
        max-width: 420px;
    }

    .ecommerce-store-cta-btn {
        margin-top: 36px;
        padding: 13px 28px;
    }
    /* Store CTA Section */

    /* Total Customization / Stacked Flow Section */
    .ecommerce-customization-section {
        padding: 80px 0;
    }

    .ecommerce-customization-title {
        margin-top: 20px;
    }

    .ecommerce-customization-stack {
        max-width: 780px;
    }

    .ecommerce-customization-card-inner {
        grid-template-columns: 1fr 340px;
    }

    .ecommerce-customization-card-copy {
        padding-left: 30px;
    }
    /* Total Customization / Stacked Flow Section */

    /* Big Bang Evolution Section */
    .ecommerce-bigbang-section {
        padding: 80px 0;
    }

    .ecommerce-evolution-title .title-bold {
        font-size: 68px;
        line-height: 64px;
    }

    .ecommerce-evolution-title .title-outline {
        font-size: 36px;
        line-height: 34px;
    }

    .ecommerce-evolution-title .title-outline.evolution {
        font-size: 110px;
        line-height: 102px;
        letter-spacing: 1.1px;
        -webkit-text-stroke: 2.5px #6752EB;
    }

    .ecommerce-bigbang-body {
        gap: 40px;
        margin-top: 56px;
    }

    .ecommerce-bigbang-feature-title {
        font-size: 30px;
        line-height: 32px;
        letter-spacing: -0.6px;
    }

    .ecommerce-bigbang-feature-desc {
        font-size: 16px;
        line-height: 24px;
    }
    /* Big Bang Evolution Section */

    /* Performance That Pays Section */
    .ecommerce-performance-section {
        padding: 80px 0;
    }

    .ecommerce-performance-title {
        max-width: 680px;
    }

    .ecommerce-performance-subtitle {
        max-width: 620px;
    }

    .ecommerce-performance-stats {
        margin-top: 56px;
        gap: 28px;
    }

    .ecommerce-performance-stat-value {
        font-size: 52px;
        line-height: 52px;
    }

    .ecommerce-performance-stat-label {
        font-size: 16px;
        line-height: 24px;
    }
    /* Performance That Pays Section */

    /* Banner / Hero Section */
    .ecommerce-banner-section {
        padding: 64px 0;
    }

    .ecommerce-banner-title {
        font-size: 58px;
        line-height: 60px;
        letter-spacing: -1.16px;
        max-width: 820px;
    }

    .ecommerce-banner-description {
        max-width: 720px;
    }

    .ecommerce-banner-glow--left,
    .ecommerce-banner-glow--right {
        width: 620px;
        height: 620px;
    }

    .ecommerce-banner-glow--center {
        width: 820px;
        height: 820px;
    }
    /* Banner / Hero Section */

    /* Floating Promo Element */
    .ecommerce-banner-floating-elements {
        bottom: 24px;
        right: 24px;
    }
    /* Floating Promo Element */

    /* Mockup Demo Modal */
    .mockup-card-create-modal-content {
        max-width: 920px;
    }

    .mockup-card-create-modal-left img {
        height: 360px;
    }

    .mockup-card-create-modal-right .modal-title {
        font-size: 28px;
        line-height: 34px;
    }
    /* Mockup Demo Modal */

    /* Site Footer */
    .ecommerce-footer-nav {
        gap: 22px;
    }
    /* Site Footer */

    /* Core Features Section */
    .core-feature-row {
        gap: 28px;
    }
    .core-feature-row .core-feature-copy,
    .core-feature-card {
        padding: 28px;
    }
    .core-feature-row .core-feature-copy {
        padding: 28px 0 28px 28px;
    }
    .core-features-grid {
        gap: 20px;
    }
    /* Core Features Section */

    /* Pricing / Plans Section */
    .ecommerce-pricing-card-left,
    .ecommerce-pricing-card-right {
        padding: 32px;
    }
    .pricing-amount {
        font-size: 54px;
        line-height: 54px;
    }
    /* Pricing / Plans Section */

    /* Platform Builder Showcase Section */
    .ecommerce-builder-showcase {
        grid-template-columns: 220px 1fr;
    }
    .builder-video-canvas {
        padding: 16px;
    }
    .sidebar-links {
        max-height: 480px;
    }
    /* Platform Builder Showcase Section */

    /* Thrive Section */
    .thrive-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
    }
    .thrive-tabs-container {
        gap: 10px;
        margin-bottom: 36px;
    }
    /* Thrive Section */

    /* Customer Reviews Section */
    .ecommerce-reviews-marquees {
        gap: 18px;
        height: 640px;
    }
    .reviews-marquee-track {
        gap: 18px;
    }
    .reviews-card {
        padding: 20px;
    }
    /* Customer Reviews Section */

    /* FAQs Section */
    .ecommerce-faqs-list .faq-trigger {
        padding: 18px 22px;
    }
    .ecommerce-faqs-list .faq-answer {
        padding: 0 22px 22px 52px;
    }
    /* FAQs Section */

    /* Demo Kits / See What's Possible Section */
    .ecommerce-possible-nav--prev {
        left: -8px;
    }

    .ecommerce-possible-nav--next {
        right: -8px;
    }
    /* Demo Kits / See What's Possible Section */
}

@media (max-width: 991px) {
    /* Mobile First Section */
    .ecommerce-mobile-first-section {
        padding: 72px 0;
    }

    .ecommerce-mobile-first-header {
        padding: 0 14px;
    }

    .ecommerce-mobile-first-title {
        margin-top: 20px;
    }

    .ecommerce-mobile-first-subtitle {
        margin-top: 14px;
        max-width: 560px;
    }

    .ecommerce-mobile-first-showcase {
        margin-top: 40px;
        gap: 20px;
    }

    .ecommerce-mobile-first-phones {
        min-height: 360px;
    }

    .ecommerce-mobile-first-phone.is-center {
        width: 190px;
        height: 355px;
    }

    .ecommerce-mobile-first-phone.is-side {
        width: 158px;
        height: 295px;
    }

    .ecommerce-mobile-first-phone {
        margin-right: -12px;
    }

    .ecommerce-mobile-first-phone img {
        border-radius: 24px;
    }

    .ecommerce-mobile-first-tabs {
        padding: 8px 12px;
        gap: 6px;
    }

    .ecommerce-mobile-first-tab {
        min-height: 42px;
        height: 42px;
        padding: 0 14px;
        font-size: 12px;
        line-height: 18px;
    }
    /* Mobile First Section */

    /* Total Control Section */
    .ecommerce-total-control-section {
        padding: 72px 0;
    }

    .ecommerce-total-control-header {
        margin-bottom: 40px;
        padding: 0 14px;
    }

    .ecommerce-total-control-badge {
        margin-bottom: 18px;
    }

    .ecommerce-total-control-title {
        margin-bottom: 14px;
    }

    .ecommerce-total-control-subtitle {
        max-width: 560px;
    }

    .ecommerce-control-grid {
        gap: 10px;
    }

    .control-grid-row {
        gap: 10px;
    }

    .control-grid-row.is-active .control-card-box::after {
        height: 210px;
    }

    .control-grid-row.is-active .control-card-box .card-inner-top {
        max-height: 100px;
        padding: 18px 0 32px 0;
    }

    .control-grid-row.is-active .control-card-box .card-preview-area {
        max-height: 210px;
        height: 210px;
    }

    .card-inner-top .card-head-title {
        font-size: 20px;
        line-height: 26px;
    }

    .card-inner-top .meta-badge {
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 6px;
    }

    .card-bottom-pill {
        font-size: 13px;
        line-height: 18px;
        padding: 14px 0;
        max-height: 48px;
    }
    /* Total Control Section */

    /* Every Page Matters Section */
    .ecommerce-every-page-matters-section {
        padding: 72px 0;
    }

    .ecommerce-every-page-header {
        padding: 0 14px;
    }

    .ecommerce-every-page-badge {
        margin-bottom: 18px;
    }

    .ecommerce-every-page-subtitle {
        max-width: 560px;
    }

    .ecommerce-every-page-rows {
        margin-top: 48px;
        gap: 36px;
    }

    .ecommerce-every-page-row-label {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 1.5px;
    }

    .ecommerce-every-page-scroller {
        gap: 14px;
        padding: 16px 0 14px 0;
    }

    .ecommerce-every-page-card {
        flex: 0 0 280px;
        border-radius: 14px;
    }

    .ecommerce-every-page-card img {
        border-radius: 14px;
    }

    .ecommerce-every-page-indicator {
        height: 13px;
        padding: 2px 3px;
    }
    /* Every Page Matters Section */

    /* How It Works Section */
    .ecommerce-how-it-works-section {
        padding: 72px 0;
    }

    .ecommerce-how-it-works-header {
        padding: 0 14px;
    }

    .ecommerce-how-it-works-badge {
        margin-bottom: 18px;
    }

    .ecommerce-how-it-works-subtitle {
        max-width: 560px;
    }

    .ecommerce-how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
        gap: 20px;
        margin-top: 40px;
    }

    .ecommerce-how-it-works-card {
        height: 100%;
        padding: 20px;
    }

    .ecommerce-how-it-works-card-title {
        font-size: 18px;
        line-height: 26px;
    }

    .ecommerce-how-it-works-card-desc {
        max-width: 100%;
        font-size: 13px;
        line-height: 19px;
    }

    .ecommerce-how-it-works-preview {
        margin-top: 16px;
        width: 100%;
    }

    .ecommerce-how-it-works-cta {
        margin-top: 18px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .ecommerce-how-it-works-arrow {
        display: none;
    }
    /* How It Works Section */

    /* One Plan Section */
    .ecommerce-one-plan-section {
        padding: 72px 0;
    }

    .ecommerce-one-plan-header {
        margin-bottom: 48px;
        padding: 0 14px;
    }

    .ecommerce-one-plan-badge {
        margin-bottom: 18px;
    }

    .ecommerce-one-plan-subtitle {
        max-width: 560px;
    }

    .ecommerce-one-plan-content {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 620px;
        margin: 0 auto;
    }

    .ecommerce-one-plan-comparison-card {
        padding: 20px;
    }

    .ecommerce-one-plan-list {
        gap: 14px;
    }

    .ecommerce-one-plan-item-name,
    .ecommerce-one-plan-item-price {
        font-size: 16px;
        line-height: 24px;
    }

    .ecommerce-one-plan-savings::before {
        width: 300px;
        height: 300px;
    }

    .ecommerce-one-plan-savings-amount {
        font-size: 88px;
        line-height: 88px;
    }

    .ecommerce-one-plan-savings-label {
        font-size: 13px;
        letter-spacing: 2.2px;
    }

    .ecommerce-one-plan-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    /* One Plan Section */

    /* Cost Section */
    .ecommerce-cost-section {
        padding: 72px 0;
    }

    .ecommerce-cost-header {
        padding: 0 14px;
    }

    .ecommerce-cost-badge {
        margin-bottom: 18px;
    }

    .ecommerce-cost-subtitle {
        max-width: 560px;
    }

    .ecommerce-cost-cards {
        margin-top: 48px;
        gap: 18px;
    }

    .ecommerce-cost-card {
        padding: 20px;
        border-radius: 14px;
    }

    .ecommerce-cost-card-loss {
        font-size: 28px;
        line-height: 32px;
        max-width: 100%;
    }

    .ecommerce-cost-card-save {
        font-size: 20px;
        line-height: 28px;
    }

    .ecommerce-cost-footnote {
        margin-top: 26px;
        padding: 0 14px;
    }
    /* Cost Section */

    /* Fashion Brand Section */
    .ecommerce-fashion-brand-section {
        padding: 72px 0;
    }

    .ecommerce-fashion-brand-header {
        padding: 0 14px;
    }

    .ecommerce-fashion-brand-badge {
        margin-bottom: 18px;
    }

    .ecommerce-fashion-brand-subtitle {
        max-width: 560px;
        line-height: 26px;
    }

    .ecommerce-fashion-marquee-stage {
        margin-top: 32px;
        gap: 16px;
    }

    .ecommerce-fashion-marquee-track {
        gap: 10px;
    }

    .ecommerce-fashion-marquee-card {
        flex: 0 0 220px;
        width: 220px;
        height: 142px;
        border-radius: 8px;
    }

    .ecommerce-fashion-marquee-fade {
        width: 80px;
    }

    .ecommerce-fashion-stat-overlay {
        height: 240px;
        padding-bottom: 24px;
        gap: 16px;
    }

    .ecommerce-fashion-stat-title {
        font-size: 42px;
        line-height: 36px;
    }

    .ecommerce-fashion-text-marquee {
        height: 70px;
        width: min(560px, 100%);
    }

    .ecommerce-fashion-markets {
        margin-top: 32px;
        gap: 14px;
    }

    .ecommerce-fashion-market-card {
        padding: 20px;
        border-radius: 14px;
    }

    .ecommerce-fashion-market-card::before {
        border-radius: 14px;
    }

    .ecommerce-fashion-market-card.is-large {
        min-height: 300px;
    }

    .ecommerce-fashion-market-card.is-small {
        min-height: 210px;
    }

    .ecommerce-fashion-market-value {
        font-size: 28px;
        line-height: 32px;
    }
    /* Fashion Brand Section */

    /* Store CTA Section */
    .ecommerce-store-cta-section {
        padding: 72px 0;
    }

    .ecommerce-store-cta-glow {
        width: 450px;
        height: 450px;
        filter: blur(52px);
        opacity: 0.22;
    }

    .ecommerce-store-cta-glow--left {
        left: -280px;
        top: -240px;
    }

    .ecommerce-store-cta-glow--right {
        right: -280px;
        top: -50px;
    }

    .ecommerce-store-cta-content {
        padding: 0 14px;
    }

    .ecommerce-store-cta-title {
        max-width: 100%;
    }

    .ecommerce-store-cta-desc {
        margin-top: 18px;
        max-width: 100%;
    }

    .ecommerce-store-cta-btn {
        margin-top: 32px;
        padding: 13px 26px;
    }

    .ecommerce-store-cta-note {
        white-space: normal;
        padding: 0 14px;
    }
    /* Store CTA Section */

    /* Total Customization / Stacked Flow Section */
    .ecommerce-customization-section {
        padding: 72px 0;
    }

    .ecommerce-customization-title {
        margin-top: 20px;
    }

    .ecommerce-customization-subtitle {
        margin-top: 14px;
    }

    .ecommerce-customization-stack {
        max-width: 100%;
        margin-top: 40px;
    }

    .ecommerce-customization-card-inner {
        grid-template-columns: 1fr 300px;
    }

    .ecommerce-customization-card-copy {
        padding-left: 24px;
    }

    .ecommerce-customization-card-title {
        font-size: 17px;
        line-height: 24px;
        margin-top: 12px;
    }

    .ecommerce-customization-card-desc {
        font-size: 13px;
        line-height: 18px;
    }
    /* Total Customization / Stacked Flow Section */

    /* Big Bang Evolution Section */
    .ecommerce-bigbang-section {
        padding: 72px 0;
    }

    .ecommerce-bigbang-header {
        padding: 0 14px;
    }

    .ecommerce-evolution-title .title-bold {
        font-size: 56px;
        line-height: 54px;
    }

    .ecommerce-evolution-title .title-outline {
        font-size: 30px;
        line-height: 28px;
        -webkit-text-stroke: 1.25px #6752EB;
    }

    .ecommerce-evolution-title .title-outline.evolution {
        font-size: 84px;
        line-height: 80px;
        letter-spacing: 0.8px;
        -webkit-text-stroke: 2px #6752EB;
    }

    .ecommerce-bigbang-subtitle {
        margin-top: 14px;
        max-width: 560px;
    }

    .ecommerce-bigbang-body {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 48px;
        padding: 0 14px;
    }

    .ecommerce-bigbang-content {
        align-items: center;
        text-align: center;
    }

    .ecommerce-bigbang-feature-title {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.56px;
        max-width: 520px;
    }

    .ecommerce-bigbang-feature-title .global-highlight-text {
        display: inline;
    }

    .ecommerce-bigbang-feature-desc {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .ecommerce-bigbang-cards {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .ecommerce-bigbang-card {
        text-align: left;
    }

    .ecommerce-bigbang-visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    /* Big Bang Evolution Section */

    /* Performance That Pays Section */
    .ecommerce-performance-section {
        padding: 72px 0;
    }

    .ecommerce-performance-header {
        padding: 0 14px;
    }

    .ecommerce-performance-title {
        margin-top: 20px;
        max-width: 100%;
    }

    .ecommerce-performance-subtitle {
        margin-top: 14px;
        max-width: 100%;
    }

    .ecommerce-performance-stats {
        margin-top: 48px;
        gap: 24px;
        padding: 0 14px;
    }

    .ecommerce-performance-stat-value {
        font-size: 48px;
        line-height: 48px;
    }

    .ecommerce-performance-stat-label {
        font-size: 15px;
        line-height: 23px;
        max-width: 200px;
    }

    .ecommerce-performance-stats > svg {
        height: 60px;
    }
    /* Performance That Pays Section */

    /* Banner / Hero Section */
    .ecommerce-banner-section {
        padding: 56px 0;
    }

    .ecommerce-banner-badge {
        margin-bottom: 20px;
    }

    .ecommerce-banner-title {
        font-size: 52px;
        line-height: 54px;
        letter-spacing: -1.04px;
        max-width: 720px;
        margin-bottom: 20px;
    }

    .ecommerce-banner-description {
        max-width: 640px;
        margin-bottom: 32px;
    }

    .ecommerce-banner-note {
        margin-bottom: 40px;
    }

    .ecommerce-banner-activity {
        max-width: 520px;
        height: 258px;
        margin-bottom: 52px;
    }

    .ecommerce-activity-card.is-front,
    .ecommerce-activity-card.is-exiting {
        width: 500px;
    }

    .ecommerce-activity-card.is-mid {
        width: 430px;
        transform: translateX(-50%) translateY(98px) scale(1);
    }

    .ecommerce-activity-card.is-back,
    .ecommerce-activity-card.is-entering-back {
        width: 372px;
        transform: translateX(-50%) translateY(180px) scale(1);
    }

    .ecommerce-activity-card.is-exiting {
        transform: translateX(-50%) translateY(-52px) scale(0.98);
    }

    .ecommerce-activity-card.is-entering-back {
        transform: translateX(-50%) translateY(198px) scale(1);
    }

    .ecommerce-banner-glow--left {
        width: 520px;
        height: 520px;
        left: -220px;
        top: -60px;
    }

    .ecommerce-banner-glow--right {
        width: 520px;
        height: 520px;
        right: -220px;
        top: 80px;
    }

    .ecommerce-banner-glow--center {
        width: 700px;
        height: 700px;
    }
    /* Banner / Hero Section */

    /* Site Footer */
    .ecommerce-site-footer {
        padding: 24px 0;
    }
    .ecommerce-footer-inner {
        gap: 20px;
        padding: 0 4px;
    }
    .ecommerce-footer-nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .ecommerce-footer-nav a {
        font-size: 13px;
        line-height: 18px;
    }
    /* Site Footer */

    /* FAQs Section */
    .ecommerce-faqs-section {
        padding: 88px 0;
    }
    .ecommerce-faqs-header {
        padding: 0 14px;
    }
    .ecommerce-faqs-title {
        margin-top: 20px;
    }
    .ecommerce-faqs-list {
        margin-top: 32px;
        border-radius: 14px;
    }
    .ecommerce-faqs-list .faq-trigger {
        padding: 18px 20px;
        gap: 12px;
    }
    .faq-trigger-main {
        gap: 10px;
    }
    .ecommerce-faqs-list .faq-question {
        font-size: 15px;
        line-height: 22px;
    }
    .ecommerce-faqs-list .faq-answer {
        padding: 0 20px 20px 48px;
        font-size: 14px;
        line-height: 22px;
    }
    /* FAQs Section */

    /* Customer Reviews Section */
    .ecommerce-reviews-section {
        padding: 88px 0;
    }
    .ecommerce-reviews-header {
        padding: 0 14px;
    }
    .ecommerce-reviews-marquee-area {
        margin-top: 48px;
    }
    .ecommerce-reviews-marquees {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        height: 600px;
    }
    .reviews-marquee-col:nth-child(3) {
        display: none;
    }
    .reviews-marquee-track {
        gap: 16px;
    }
    .reviews-card {
        padding: 18px;
        border-radius: 14px;
    }
    .reviews-card-quote {
        font-size: 14px;
        line-height: 22px;
    }
    .ecommerce-reviews-cta {
        bottom: 20px;
        gap: 10px;
        padding: 5px 5px 5px 16px;
    }
    /* Customer Reviews Section */

    /* Thrive Section */
    .ecommerce-thrive-section {
        padding: 88px 0;
    }
    .thrive-section-header {
        padding: 0 14px;
    }
    .thrive-subtitle {
        margin-bottom: 32px;
    }
    .thrive-tabs-container {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 32px;
        margin-left: -14px;
        margin-right: -14px;
        padding: 4px 14px 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .thrive-tabs-container::-webkit-scrollbar {
        display: none;
    }
    .thrive-tab-btn {
        flex-shrink: 0;
        padding: 6px 12px;
        font-size: 13px;
        line-height: 18px;
        gap: 6px;
    }
    .thrive-tab-btn .count {
        font-size: 10px;
        line-height: 14px;
    }
    .thrive-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .thrive-card {
        padding: 14px;
        border-radius: 14px;
    }
    .thrive-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .thrive-card-title {
        font-size: 15px;
        line-height: 17px;
        margin-bottom: 10px;
    }
    /* Thrive Section */

    /* Core Features Section */
    .ecommerce-core-features-section {
        padding: 88px 0;
    }
    .ecommerce-core-features-header {
        margin-bottom: 36px;
        padding: 0 14px;
    }
    .core-feature-row,
    .core-feature-card {
        border-radius: 20px;
    }
    .core-feature-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 20px;
    }
    .core-feature-row .core-feature-copy {
        padding: 28px 28px 20px;
    }
    .core-feature-row .core-feature-visual {
        justify-content: center;
        padding: 0 20px 20px;
    }
    .core-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 20px;
    }
    .core-feature-card {
        padding: 24px;
    }
    .core-feature-text {
        max-width: none;
    }
    .core-feature-card .core-feature-visual {
        padding-top: 20px;
    }
    /* Core Features Section */

    /* Platform Builder Showcase Section */
    .ecommerce-workflow-showcase-section {
        padding: 88px 0;
    }
    .ecommerce-workflow-showcase-section .container {
        overflow: hidden;
        max-width: 100%;
    }
    .ecommerce-listing-header {
        padding: 0 14px;
    }
    .ecommerce-platform-subtitle {
        margin-bottom: 36px;
    }
    .ecommerce-builder-showcase {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .builder-sidebar-tabs {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }
    .sidebar-header {
        display: none;
    }
    .sidebar-links {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        padding: 12px 14px;
        max-height: none;
        width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
    }
    .sidebar-links::-webkit-scrollbar {
        display: none;
    }
    .sidebar-links .tab-link {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .sidebar-links .tab-link.active::before {
        display: none;
    }
    .sidebar-links .more-tools-dropdown {
        position: relative;
        flex-direction: row;
        align-items: center;
        flex-shrink: 0;
        border-top: none;
        padding-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 8px;
        margin-left: 4px;
        gap: 8px;
    }
    .sidebar-links .dropdown-content {
        position: static;
        top: auto;
        right: auto;
        flex-direction: row;
        align-items: center;
        flex-shrink: 0;
        min-width: 0;
        max-width: 0;
        max-height: none;
        padding: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        gap: 8px;
    }
    .sidebar-links .dropdown-content.is-open {
        max-width: none;
        max-height: none;
        overflow: visible;
        opacity: 1;
        pointer-events: auto;
        padding: 0;
    }
    .sidebar-links .dropdown-content .tab-link {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .builder-video-canvas {
        padding: 16px;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        gap: 12px;
    }
    .video-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
    }
    .video-caption-wrapper {
        width: 100%;
        min-width: 0;
    }
    .video-caption {
        margin-top: 16px;
        font-size: 13px;
        line-height: 20px;
        padding: 0 4px;
    }
    .platform-footer-pills {
        gap: 8px;
        margin-top: 28px;
        padding: 0 10px;
    }
    /* Platform Builder Showcase Section */

    /* Pricing / Plans Section */
    .ecommerce-pricing-section {
        padding: 88px 0;
    }
    .ecommerce-pricing-toggle {
        margin-top: 32px;
    }
    .ecommerce-pricing-card {
        margin-top: 40px;
        grid-template-columns: 1fr;
    }
    .ecommerce-pricing-card-left {
        padding: 32px 28px;
        border-right: 0;
        border-bottom: 1px solid #E2E8F0;
    }
    .ecommerce-pricing-card-right {
        padding: 32px 28px;
    }
    .pricing-offer-desc {
        max-width: 100%;
    }
    .pricing-amount {
        font-size: 52px;
        line-height: 52px;
    }
    .pricing-save-banner,
    .pricing-cta-btn {
        margin-top: 20px;
    }
    /* Pricing / Plans Section */

    /* Compare Pricing Section */
    .ecommerce-compare-section {
        padding: 88px 0;
    }

    .ecommerce-compare-header {
        margin-bottom: 36px;
        padding: 0 14px;
    }

    .ecommerce-compare-table-head,
    .ecommerce-compare-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 280px) minmax(0, 240px);
    }

    .ecommerce-compare-col-feature,
    .ecommerce-compare-col-ecommerce,
    .ecommerce-compare-col-legacy,
    .ecommerce-compare-feature,
    .ecommerce-compare-status,
    .ecommerce-compare-legacy {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ecommerce-compare-col-ecommerce .ecommerce-compare-head-brand,
    .ecommerce-compare-head-brand {
        font-size: 16px;
        line-height: 24px;
    }

    .ecommerce-compare-group-toggle {
        padding: 16px 18px;
    }

    .ecommerce-compare-group-title {
        font-size: 15px;
        line-height: 22px;
    }
    /* Compare Pricing Section */

    /* Mockup Demo Modal */
    .mockup-card-create-modal {
        padding: 16px;
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mockup-card-create-modal-content {
        border-radius: 20px;
        max-height: none;
        margin: auto 0;
        overflow: hidden;
    }

    .mockup-card-create-modal-close {
        top: 10px;
        right: 10px;
    }

    .mockup-card-create-modal-close svg {
        width: 34px !important;
        height: 34px !important;
        padding: 8px !important;
    }

    .mockup-card-create-modal-body {
        grid-template-columns: 1fr;
        min-height: 0;
        max-height: none;
        overflow: visible;
    }

    .mockup-card-create-modal-left {
        border-radius: 20px 20px 0 0;
        border-right: none;
        border-bottom: 1px solid rgba(17, 24, 39, 0.06);
        padding: 16px;
    }

    .mockup-card-create-modal-left img {
        height: 300px;
        border-radius: 14px;
    }

    .mockup-card-create-modal-right {
        padding: 24px;
    }

    .mockup-card-create-modal-right .modal-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .mockup-card-create-modal-right .modal-category-tags {
        margin-bottom: 20px;
    }

    .mockup-card-create-modal-right .modal-actions {
        margin-top: 24px;
    }

    .mockup-card-create-modal-right .modal-actions .btn-primary {
        padding: 12px 22px;
        font-size: 15px;
        line-height: 22px;
    }
    /* Mockup Demo Modal */

    /* Header */
    .header__panel-actions .header__action_text {
        padding: 12px 20px;
    }

    .header .container,
    .header__inner {
        padding: 0 14px;
    }

    .header__menu-toggle {
        display: inline-flex;
    }

    .header__action_text--bar,
    .header__action-btn--bar {
        display: none !important;
    }

    .header__panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
        margin: 12px 12px 0 12px;
        border: 1px solid #FFFFFF14;
        border-radius: 16px;
        background: #000000;
        box-shadow: 0px 30px 80px rgba(108, 76, 241, 0.28);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    header.is-menu-open .header__panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header__nav-list {
        width: 100%;
        gap: 8px;

    }

    .header__nav-list li .header__nav-link {
        display: flex;
        justify-content: center;
        padding: 10px 20px;
    }

    .header__panel-actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 14px;
        border-top: 1px solid #FFFFFF14;
    }

    .header__panel-actions .header__action-btn {
        display: flex;
        justify-content: center;
    }
    /* Header */

    /* Demo Kits / See What's Possible Section */
    .ecommerce-possible-section {
        padding: 72px 0;
    }
    .ecommerce-possible-section .container {
        overflow: visible;
        max-width: 100%;
    }
    .ecommerce-possible-header {
        margin-bottom: 28px;
        padding: 0 14px;
    }
    .ecommerce-possible-nav {
        display: none !important;
    }
    .ecommerce-possible-slider {
        min-width: 0;
        max-width: 100%;
    }
    .ecommerce-possible-mockup-deck,
    .ecommerce-possible-mockup-deck.has-hovered {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 16px;
        height: auto;
        padding: 20px 10px 30px 10px;
        margin: 0 -10px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .ecommerce-possible-mockup-deck::-webkit-scrollbar {
        display: none;
    }
    .ecommerce-possible-mockup-deck::after {
        display: none;
    }
    .ecommerce-possible-mockup-card {
        position: relative;
        flex: 0 0 300px;
        width: 300px;
        height: 420px;
        transform: none !important;
        opacity: 1;
        z-index: 1;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    .ecommerce-possible-mockup-card:hover .mockup-overlay,
    .ecommerce-possible-mockup-card.is-hovered .mockup-overlay {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .ecommerce-possible-mockup-card .mockup-overlay {
        padding: 24px;
    }
    .ecommerce-possible-mockup-card .mockup-overlay h3 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
    }
    .ecommerce-possible-mockup-card .mockup-logo {
        font-size: 13px;
        line-height: 20px;
    }
    .ecommerce-possible-bottom-callout {
        margin: 40px auto 0;
    }
    .ecommerce-possible-bottom-callout .callout-desc {
        margin-bottom: 24px;
    }
    .ecommerce-possible-cta-box {
        padding: 22px;
        border-radius: 20px;
    }
    .ecommerce-possible-cta-box .cta-left .cta-number {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 4px;
    }
    .ecommerce-possible-cta-box .cta-left {
        text-align: center;
    }
    /* Demo Kits / See What's Possible Section */

    /* Floating Promo Element */
    .ecommerce-banner-floating-elements {
        bottom: 20px;
        right: 20px;
        left: auto;
        width: auto;
        max-width: fit-content;
        padding: 6px 10px;
    }

    .floating-element-icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }

    .scroll-progress-circle {
        width: 36px;
        height: 36px;
    }
    /* Floating Promo Element */
}

@media (max-width: 768px) {
    /* Mobile First Section */
    .ecommerce-mobile-first-section {
        padding: 56px 0;
    }

    .ecommerce-mobile-first-header {
        padding: 0 12px;
    }

    .ecommerce-mobile-first-title {
        margin-top: 16px;
    }

    .ecommerce-mobile-first-subtitle {
        margin-top: 12px;
        max-width: 100%;
    }

    .ecommerce-mobile-first-showcase {
        margin-top: 32px;
        gap: 18px;
        width: 100%;
        overflow-x: hidden;
    }

    .ecommerce-mobile-first-phones {
        min-height: 300px;
        width: 100%;
        padding: 0 8px;
    }

    .ecommerce-mobile-first-phone.is-center {
        width: 168px;
        height: 314px;
    }

    .ecommerce-mobile-first-phone.is-side {
        width: 140px;
        height: 261px;
    }

    .ecommerce-mobile-first-phone {
        margin-right: -10px;
    }

    .ecommerce-mobile-first-phone img {
        border-radius: 22px;
    }

    .ecommerce-mobile-first-tabs {
        flex-wrap: wrap;
        justify-content: center;
        max-width: calc(100% - 24px);
        padding: 8px 10px;
        gap: 6px;
        border-radius: 48px;
    }

    .ecommerce-mobile-first-tab {
        min-height: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 12px;
        line-height: 18px;
    }
    /* Mobile First Section */

    /* Total Control Section */
    .ecommerce-total-control-section {
        padding: 56px 0;
    }

    .ecommerce-total-control-header {
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .ecommerce-total-control-badge {
        margin-bottom: 16px;
    }

    .ecommerce-total-control-title {
        margin-bottom: 12px;
    }

    .ecommerce-total-control-subtitle {
        max-width: 100%;
    }

    .ecommerce-control-grid {
        gap: 10px;
        padding: 0 4px;
    }

    .control-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .control-grid-row.is-active .control-card-box {
        border-radius: 14px;
    }

    .control-grid-row.is-active .control-card-box::after {
        height: 190px;
    }

    .control-grid-row.is-active .control-card-box .card-inner-top {
        max-height: 92px;
        padding: 16px 0 28px 0;
    }

    .control-grid-row.is-active .control-card-box .card-preview-area {
        max-height: 190px;
        height: 190px;
    }

    .card-inner-top .card-head-title {
        font-size: 18px;
        line-height: 24px;
    }

    .card-inner-top .meta-badge {
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 5px;
    }

    .card-bottom-pill {
        font-size: 12px;
        line-height: 16px;
        padding: 12px 8px;
        max-height: 44px;
    }
    /* Total Control Section */

    /* Every Page Matters Section */
    .ecommerce-every-page-matters-section {
        padding: 56px 0;
    }

    .ecommerce-every-page-header {
        padding: 0 12px;
    }

    .ecommerce-every-page-badge {
        margin-bottom: 16px;
    }

    .ecommerce-every-page-subtitle {
        max-width: 100%;
    }

    .ecommerce-every-page-rows {
        margin-top: 40px;
        gap: 32px;
    }

    .ecommerce-every-page-row-label {
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 1.2px;
        padding: 0 12px;
    }

    .ecommerce-every-page-scroller-area {
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
    }

    .ecommerce-every-page-scroller {
        gap: 12px;
        padding: 14px 12px 12px 12px;
        -webkit-overflow-scrolling: touch;
    }

    .ecommerce-every-page-card {
        flex: 0 0 260px;
        border-radius: 14px;
    }

    .ecommerce-every-page-card img {
        border-radius: 14px;
    }

    .ecommerce-every-page-indicator {
        height: 12px;
        margin: 0 12px;
        width: calc(100% - 24px);
        padding: 2px 3px;
    }
    /* Every Page Matters Section */

    /* How It Works Section */
    .ecommerce-how-it-works-section {
        padding: 56px 0;
        overflow-x: hidden;
    }

    .ecommerce-how-it-works-header {
        padding: 0 12px;
    }

    .ecommerce-how-it-works-badge {
        margin-bottom: 16px;
    }

    .ecommerce-how-it-works-subtitle {
        max-width: 100%;
    }

    .ecommerce-how-it-works-steps {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 16px;
        margin-top: 32px;
        width: 100%;
        padding: 4px 12px 8px 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .ecommerce-how-it-works-steps::-webkit-scrollbar {
        display: none;
    }

    .ecommerce-how-it-works-step-col {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
    }

    .ecommerce-how-it-works-card {
        height: 100%;
        padding: 18px;
        border-radius: 12px;
    }

    .ecommerce-how-it-works-card-title {
        font-size: 17px;
        line-height: 24px;
    }

    .ecommerce-how-it-works-card-desc {
        font-size: 13px;
        line-height: 18px;
    }

    .ecommerce-how-it-works-preview {
        margin-top: 14px;
        border-radius: 10px;
    }

    .ecommerce-how-it-works-cta {
        margin-top: 16px;
        font-size: 11px;
        padding: 6px 12px;
    }
    /* How It Works Section */

    /* One Plan Section */
    .ecommerce-one-plan-section {
        padding: 56px 0;
    }

    .ecommerce-one-plan-header {
        margin-bottom: 40px;
        padding: 0 12px;
    }

    .ecommerce-one-plan-badge {
        margin-bottom: 16px;
    }

    .ecommerce-one-plan-subtitle {
        max-width: 100%;
    }

    .ecommerce-one-plan-content {
        gap: 40px;
        max-width: 100%;
        padding: 0 4px;
    }

    .ecommerce-one-plan-comparison-card {
        padding: 18px;
        border-radius: 14px;
    }

    .ecommerce-one-plan-comparison-header {
        margin-bottom: 18px;
    }

    .ecommerce-one-plan-list {
        gap: 12px;
    }

    .ecommerce-one-plan-item {
        gap: 12px;
    }

    .ecommerce-one-plan-item-name,
    .ecommerce-one-plan-item-price {
        font-size: 15px;
        line-height: 22px;
    }

    .ecommerce-one-plan-included-badge {
        font-size: 11px;
        line-height: 14px;
    }

    .ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-included-badge {
        max-width: 110px;
    }

    .ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-bottom-header {
        max-height: 72px;
    }

    .ecommerce-one-plan-bottom-header span {
        font-size: 15px;
        line-height: 22px;
    }

    .ecommerce-one-plan-savings::before {
        width: 280px;
        height: 280px;
    }

    .ecommerce-one-plan-savings-amount {
        font-size: 72px;
        line-height: 72px;
        margin-bottom: 10px;
    }

    .ecommerce-one-plan-savings-label {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .ecommerce-one-plan-price-note {
        margin-bottom: 24px;
    }

    .ecommerce-one-plan-cta-btn {
        padding: 12px 24px;
    }

    .ecommerce-one-plan-trust-note {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .ecommerce-one-plan-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    /* One Plan Section */

    /* Cost Section */
    .ecommerce-cost-section {
        padding: 56px 0;
    }

    .ecommerce-cost-header {
        padding: 0 12px;
    }

    .ecommerce-cost-badge {
        margin-bottom: 16px;
    }

    .ecommerce-cost-subtitle {
        max-width: 100%;
    }

    .ecommerce-cost-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 40px auto 0;
        gap: 16px;
    }

    .ecommerce-cost-card {
        padding: 18px;
        border-radius: 12px;
    }

    .ecommerce-cost-card-label {
        font-size: 13px;
        line-height: 18px;
    }

    .ecommerce-cost-card-loss {
        font-size: 26px;
        line-height: 30px;
        margin-top: 12px;
        max-width: 100%;
    }

    .ecommerce-cost-card-divider {
        margin-top: 12px;
    }

    .ecommerce-cost-card-save {
        font-size: 18px;
        line-height: 26px;
        margin-top: 12px;
    }

    .ecommerce-cost-footnote {
        margin-top: 24px;
        font-size: 12px;
        line-height: 18px;
        padding: 0 12px;
    }
    /* Cost Section */

    /* Fashion Brand Section */
    .ecommerce-fashion-brand-section {
        padding: 56px 0;
    }

    .ecommerce-fashion-brand-header {
        padding: 0 12px;
    }

    .ecommerce-fashion-brand-badge {
        margin-bottom: 16px;
    }

    .ecommerce-fashion-brand-subtitle {
        max-width: 100%;
        line-height: 24px;
    }

    .ecommerce-fashion-marquee-stage {
        margin-top: 28px;
        gap: 12px;
    }

    .ecommerce-fashion-marquee-track {
        gap: 8px;
    }

    .ecommerce-fashion-marquee-card {
        flex: 0 0 180px;
        width: 180px;
        height: 116px;
        border-radius: 8px;
    }

    .ecommerce-fashion-marquee-fade {
        width: 56px;
    }

    .ecommerce-fashion-stat-overlay {
        height: 200px;
        padding-bottom: 20px;
        gap: 12px;
    }

    .ecommerce-fashion-stat-title {
        font-size: 36px;
        line-height: 32px;
    }

    .ecommerce-fashion-text-marquee {
        height: 64px;
        width: min(100%, 480px);
        padding: 0 12px;
    }

    .ecommerce-fashion-text-track p {
        font-size: 11px;
        line-height: 22px;
        white-space: normal;
        max-width: 100%;
        padding: 0 8px;
    }

    .ecommerce-fashion-markets {
        margin-top: 28px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 0 4px;
    }

    .ecommerce-fashion-market-card {
        padding: 18px;
        border-radius: 12px;
        min-height: 200px;
    }

    .ecommerce-fashion-market-card::before {
        border-radius: 12px;
    }

    .ecommerce-fashion-market-card.is-large {
        grid-column: span 2;
        min-height: 260px;
    }

    .ecommerce-fashion-market-card.is-small {
        grid-column: span 1;
        min-height: 200px;
    }

    .ecommerce-fashion-market-card.is-small:last-child {
        grid-column: span 2;
    }

    .ecommerce-fashion-market-label {
        font-size: 11px;
        line-height: 14px;
        letter-spacing: 1px;
    }

    .ecommerce-fashion-market-value {
        font-size: 26px;
        line-height: 30px;
    }

    .ecommerce-fashion-market-note {
        font-size: 11px;
        line-height: 15px;
    }
    /* Fashion Brand Section */

    /* Store CTA Section */
    .ecommerce-store-cta-section {
        padding: 56px 0;
    }

    .ecommerce-store-cta-glow {
        width: 380px;
        height: 380px;
        filter: blur(48px);
        opacity: 0.2;
    }

    .ecommerce-store-cta-glow--left {
        left: -220px;
        top: -200px;
    }

    .ecommerce-store-cta-glow--right {
        right: -220px;
        top: -40px;
    }

    .ecommerce-store-cta-content {
        padding: 0 12px;
    }

    .ecommerce-store-cta-desc {
        margin-top: 16px;
    }

    .ecommerce-store-cta-btn {
        margin-top: 28px;
        width: 100%;
        max-width: 360px;
        padding: 12px 24px;
        justify-content: center;
    }

    .ecommerce-store-cta-btn svg {
        width: 16px;
        height: 16px;
    }

    .ecommerce-store-cta-note {
        margin-top: 14px;
        font-size: 11px;
        line-height: 16px;
        padding: 0 12px;
    }
    /* Store CTA Section */

    /* Total Customization / Stacked Flow Section */
    .ecommerce-customization-section {
        padding: 56px 0;
    }

    .ecommerce-customization-title {
        margin-top: 16px;
    }

    .ecommerce-customization-subtitle {
        margin-top: 12px;
    }

    .ecommerce-customization-stack {
        --card-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ecommerce-customization-card {
        top: 70px;
    }

    .ecommerce-customization-card-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
        padding-top: 24px;
    }

    .ecommerce-customization-card-copy {
        max-width: 100%;
        padding: 0 24px 20px;
        align-items: flex-start;
    }

    .ecommerce-customization-card-preview {
        height: 200px;
        padding-top: 0;
    }

    .ecommerce-customization-card-title {
        font-size: 18px;
        line-height: 26px;
    }

    .ecommerce-customization-card-desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
    /* Total Customization / Stacked Flow Section */

    /* Big Bang Evolution Section */
    .ecommerce-bigbang-section {
        padding: 56px 0;
    }

    .ecommerce-bigbang-header {
        padding: 0 12px;
    }

    .ecommerce-evolution-title {
        margin-top: 16px;
    }

    .ecommerce-evolution-title .title-bold {
        font-size: 46px;
        line-height: 44px;
        margin-bottom: 2px;
    }

    .ecommerce-evolution-title .title-outline {
        font-size: 26px;
        line-height: 24px;
        -webkit-text-stroke: 1.1px #6752EB;
        margin-bottom: 2px;
    }

    .ecommerce-evolution-title .title-outline.evolution {
        font-size: 64px;
        line-height: 60px;
        letter-spacing: 0.4px;
        -webkit-text-stroke: 1.75px #6752EB;
    }

    .ecommerce-bigbang-subtitle {
        margin-top: 12px;
    }

    .ecommerce-bigbang-body {
        gap: 32px;
        margin-top: 40px;
        padding: 0 12px;
    }

    .ecommerce-bigbang-feature-title {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.48px;
        margin-top: 10px;
    }

    .ecommerce-bigbang-feature-desc {
        font-size: 15px;
        line-height: 23px;
        margin-top: 12px;
    }

    .ecommerce-bigbang-cards {
        margin-top: 24px;
        gap: 12px;
    }

    .ecommerce-bigbang-card {
        padding: 16px;
        border-radius: 14px;
    }

    .ecommerce-bigbang-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .ecommerce-bigbang-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .ecommerce-bigbang-card-title {
        font-size: 16px;
        line-height: 24px;
    }

    .ecommerce-bigbang-card-list {
        margin-top: 10px;
        column-gap: 12px;
        row-gap: 5px;
    }

    .ecommerce-bigbang-card-list li {
        font-size: 13px;
        line-height: 19px;
    }
    /* Big Bang Evolution Section */

    /* Performance That Pays Section */
    .ecommerce-performance-section {
        padding: 56px 0;
    }

    .ecommerce-performance-header {
        padding: 0 12px;
    }

    .ecommerce-performance-title {
        margin-top: 16px;
    }

    .ecommerce-performance-subtitle {
        margin-top: 12px;
    }

    .ecommerce-performance-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
        margin-top: 40px;
        padding: 0 12px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .ecommerce-performance-stats > svg {
        display: none;
    }

    .ecommerce-performance-stat {
        min-width: 0;
    }

    .ecommerce-performance-stat-value {
        font-size: 40px;
        line-height: 40px;
    }

    .ecommerce-performance-stat-label {
        font-size: 14px;
        line-height: 22px;
        margin-top: 8px;
        max-width: 100%;
    }
    /* Performance That Pays Section */

    /* Banner / Hero Section */
    .ecommerce-banner-section {
        padding: 50px 0 50px;
    }

    .ecommerce-banner-badge {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        min-height: 30px;
        padding: 6px 14px;
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 18px;
    }

    .ecommerce-banner-title {
        font-size: 40px;
        line-height: 44px;
        letter-spacing: -0.8px;
        margin-bottom: 18px;
        max-width: 100%;
    }

    .ecommerce-banner-description {
        font-size: 15px;
        line-height: 23px;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .ecommerce-banner-cta-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 420px;
        gap: 10px;
        margin-bottom: 18px;
    }

    .ecommerce-banner-primary-btn,
    .ecommerce-banner-secondary-btn {
        width: 100%;
        min-height: 52px;
        font-size: 15px;
        line-height: 22px;
        padding: 12px 20px;
    }

    .ecommerce-banner-note {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 32px;
        padding: 0 4px;
    }

    .ecommerce-banner-activity {
        height: 222px;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .ecommerce-activity-card,
    .ecommerce-activity-card.is-front,
    .ecommerce-activity-card.is-exiting {
        width: min(100%, 480px);
        max-width: calc(100% - 16px);
        padding: 14px;
        gap: 12px;
    }

    .ecommerce-activity-card.is-mid {
        width: min(92%, 420px);
        padding: 12px;
        gap: 10px;
        transform: translateX(-50%) translateY(80px) scale(1);
    }

    .ecommerce-activity-card.is-back,
    .ecommerce-activity-card.is-entering-back {
        width: min(84%, 360px);
        padding: 11px;
        gap: 9px;
        transform: translateX(-50%) translateY(152px) scale(1);
    }

    .ecommerce-activity-card.is-exiting {
        transform: translateX(-50%) translateY(-40px) scale(0.98);
    }

    .ecommerce-activity-card.is-entering-back {
        transform: translateX(-50%) translateY(168px) scale(1);
    }

    .ecommerce-activity-icon {
        width: 42px;
        height: 42px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-icon {
        width: 36px;
        height: 36px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-icon,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-icon {
        width: 32px;
        height: 32px;
    }

    .ecommerce-activity-icon svg {
        width: 20px;
        height: 20px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-icon svg {
        width: 17px;
        height: 17px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-icon svg,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-icon svg {
        width: 15px;
        height: 15px;
    }

    .ecommerce-activity-title {
        font-size: 15px;
        line-height: 21px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-title {
        font-size: 14px;
        line-height: 20px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-title,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-title {
        font-size: 13px;
        line-height: 18px;
    }

    .ecommerce-activity-meta {
        font-size: 13px;
        line-height: 18px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-meta {
        font-size: 12px;
        line-height: 16px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-meta,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-meta {
        font-size: 11px;
        line-height: 15px;
    }

    .ecommerce-activity-status {
        font-size: 13px;
        line-height: 18px;
        padding: 4px 10px;
        gap: 6px;
        max-width: 96px;
    }

    .ecommerce-activity-status-dot {
        width: 7px;
        height: 7px;
    }

    .ecommerce-banner-trust {
        gap: 12px;
    }

    .ecommerce-banner-trust-label {
        font-size: 11px;
        line-height: 17px;
        letter-spacing: 0.8px;
        padding: 0 12px;
    }

    .ecommerce-banner-trust-track-wrap {
        max-width: 100%;
        mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    }

    .ecommerce-banner-glow--left {
        width: 380px;
        height: 380px;
        left: -160px;
        top: -80px;
        filter: blur(80px);
    }

    .ecommerce-banner-glow--right {
        width: 380px;
        height: 380px;
        right: -160px;
        top: 40px;
        filter: blur(80px);
    }

    .ecommerce-banner-glow--center {
        width: 520px;
        height: 520px;
        top: 40px;
        filter: blur(80px);
    }
    /* Banner / Hero Section */

    /* Site Footer */
    .ecommerce-site-footer {
        padding: 28px 0;
    }
    .ecommerce-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .ecommerce-footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .ecommerce-footer-logo {
        max-width: 120px;
    }
    .ecommerce-footer-copy {
        white-space: normal;
    }
    .ecommerce-footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 18px;
    }
    /* Site Footer */

    /* Customer Reviews Section */
    .ecommerce-reviews-section {
        padding: 72px 0;
    }
    .ecommerce-reviews-header {
        padding: 0 12px;
    }
    .ecommerce-reviews-title {
        margin-top: 16px;
    }
    .ecommerce-reviews-desc {
        margin-top: 14px;
    }
    .ecommerce-reviews-marquee-area {
        margin-top: 40px;
    }
    .ecommerce-reviews-marquees {
        grid-template-columns: 1fr;
        gap: 0;
        height: 520px;
        max-width: 480px;
        margin: 0 auto;
    }
    .reviews-marquee-col:nth-child(2),
    .reviews-marquee-col:nth-child(3) {
        display: none;
    }
    .reviews-marquee-track {
        gap: 14px;
    }
    .reviews-card {
        padding: 16px;
    }
    .reviews-card-quote {
        font-size: 14px;
        line-height: 22px;
    }
    .ecommerce-reviews-cta {
        bottom: 16px;
        gap: 8px;
        padding: 5px 5px 5px 14px;
    }
    .reviews-cta-label {
        font-size: 12px;
        line-height: 18px;
    }
    .reviews-cta-btn {
        padding: 9px 16px;
        font-size: 13px;
        line-height: 18px;
    }
    .reviews-marquee-col:nth-child(1) .reviews-marquee-track {
        animation-duration: 120s;
    }
    /* Customer Reviews Section */

    /* Thrive Section */
    .ecommerce-thrive-section {
        padding: 72px 0;
    }
    .thrive-section-header {
        padding: 0 12px;
    }
    .thrive-badge {
        margin-bottom: 16px;
    }
    .thrive-title {
        margin-bottom: 12px;
    }
    .thrive-subtitle {
        margin-bottom: 28px;
    }
    .thrive-tabs-container {
        margin-bottom: 28px;
        margin-left: -12px;
        margin-right: -12px;
        padding: 4px 12px 8px;
        gap: 8px;
    }
    .thrive-tab-btn {
        padding: 6px 11px;
        font-size: 12px;
        line-height: 17px;
    }
    .thrive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .thrive-card {
        padding: 14px 12px;
        border-radius: 14px;
    }
    .thrive-card-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
    }
    .thrive-card-title {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 10px;
    }
    .thrive-card-tag {
        padding: 3px 8px;
        font-size: 9px;
        line-height: 14px;
    }
    /* Thrive Section */

    /* Core Features Section */
    .ecommerce-core-features-section {
        padding: 72px 0;
    }
    .ecommerce-core-features-header {
        margin-bottom: 28px;
        padding: 0 12px;
    }
    .ecommerce-core-features-title {
        margin-top: 16px;
    }
    .ecommerce-core-features-desc {
        margin-top: 12px;
    }
    .core-feature-row,
    .core-feature-card {
        border-radius: 18px;
    }
    .core-feature-row {
        margin-bottom: 16px;
    }
    .core-feature-row .core-feature-copy {
        padding: 24px 24px 16px;
    }
    .core-feature-row .core-feature-visual {
        padding: 0 16px 16px;
    }
    .core-features-grid {
        grid-template-columns: 1fr;
        margin-bottom: 16px;
    }
    .core-feature-card {
        padding: 24px;
    }
    .core-feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .core-feature-name {
        margin-top: 14px;
        font-size: 18px;
        line-height: 26px;
    }
    .core-feature-text {
        margin-top: 10px;
        font-size: 13px;
        line-height: 21px;
    }
    .core-feature-pills {
        margin-top: 16px;
        gap: 6px;
    }
    .core-feature-pills li {
        padding: 5px 10px;
        font-size: 11px;
        line-height: 15px;
    }
    .core-feature-link {
        margin-top: 16px;
        font-size: 13px;
        line-height: 18px;
    }
    .core-feature-card .core-feature-visual {
        padding-top: 18px;
    }
    /* Core Features Section */

    /* Platform Builder Showcase Section */
    .ecommerce-workflow-showcase-section {
        padding: 72px 0;
    }
    .ecommerce-listing-header {
        padding: 0 12px;
    }
    .ecommerce-workflow-badge {
        margin-bottom: 16px;
    }
    .ecommerce-platform-title {
        margin-bottom: 12px;
    }
    .ecommerce-platform-subtitle {
        margin-bottom: 28px;
    }
    .ecommerce-builder-showcase {
        border-radius: 14px;
    }
    .sidebar-header {
        padding: 12px 14px;
    }
    .sidebar-links {
        padding: 10px 12px;
        gap: 6px;
    }
    .sidebar-links .tab-link {
        height: 40px;
        padding: 8px;
        font-size: 13px;
        line-height: 16px;
    }
    .builder-video-canvas {
        padding: 14px;
        gap: 10px;
    }
    .video-container {
        border-radius: 12px;
        aspect-ratio: 16 / 9;
        max-height: 360px;
    }
    .video-caption {
        margin-top: 12px;
        font-size: 13px;
        line-height: 19px;
    }
    .platform-footer-pills {
        gap: 8px;
        margin-top: 24px;
    }
    .footer-pill {
        font-size: 11px;
        line-height: 15px;
        padding: 7px 12px;
        gap: 6px;
    }
    /* Platform Builder Showcase Section */

    /* Pricing / Plans Section */
    .ecommerce-pricing-section {
        padding: 72px 0;
    }
    .ecommerce-pricing-header {
        gap: 14px;
        padding: 0 12px;
    }
    .ecommerce-pricing-toggle {
        margin-top: 28px;
        justify-content: space-between;
    }
    .pricing-toggle-btn {
        justify-content: center;
        padding: 10px 14px;
    }
    .ecommerce-pricing-card {
        margin-top: 32px;
        border-radius: 14px;
    }
    .ecommerce-pricing-card-left,
    .ecommerce-pricing-card-right {
        padding: 24px 20px;
    }
    .pricing-offer-badge {
        margin-bottom: 20px;
    }
    .pricing-offer-title {
        font-size: 22px;
        line-height: 30px;
    }
    .pricing-offer-desc {
        font-size: 14px;
        line-height: 22px;
    }
    .pricing-amount-block {
        margin-top: 24px;
    }
    .pricing-amount {
        font-size: 46px;
        line-height: 46px;
    }
    .pricing-period {
        font-size: 16px;
        line-height: 24px;
    }
    .pricing-compare-strike {
        width: 100%;
        padding-bottom: 0;
    }
    .pricing-cta-btn {
        padding: 14px 20px;
    }
    .pricing-included-list {
        gap: 12px;
    }
    .pricing-included-list li {
        align-items: flex-start;
    }
    .pricing-feature-left {
        font-size: 13px;
        line-height: 19px;
    }
    .pricing-feature-price {
        font-size: 13px;
        line-height: 19px;
        padding-top: 1px;
    }
    .pricing-total-row {
        margin-top: 20px;
        padding-top: 16px;
    }
    .pricing-total-label {
        font-size: 15px;
        line-height: 22px;
    }
    .pricing-total-value {
        font-size: 22px;
        line-height: 28px;
    }
    .pricing-or-divider {
        margin: 20px 0;
    }
    /* Pricing / Plans Section */

    /* Compare Pricing Section */
    .ecommerce-compare-section {
        padding: 72px 0;
    }

    .ecommerce-compare-header {
        margin-bottom: 28px;
        padding: 0 12px;
    }

    .ecommerce-compare-table {
        border-radius: 16px;
    }

    .ecommerce-compare-table-head {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 170px) minmax(0, 150px);
        min-height: 76px;
    }

    .ecommerce-compare-col-feature,
    .ecommerce-compare-col-ecommerce,
    .ecommerce-compare-col-legacy {
        padding: 14px 12px;
    }

    .ecommerce-compare-head-tag {
        font-size: 9px;
        line-height: 13px;
    }

    .ecommerce-compare-col-ecommerce .ecommerce-compare-head-brand,
    .ecommerce-compare-head-brand {
        font-size: 14px;
        line-height: 20px;
    }

    .ecommerce-compare-group-toggle {
        min-height: 56px;
        padding: 14px 16px;
    }

    .ecommerce-compare-group-left {
        gap: 10px;
    }

    .ecommerce-compare-group-title {
        font-size: 14px;
        line-height: 20px;
    }

    .ecommerce-compare-group-count {
        font-size: 10px;
        line-height: 14px;
        padding: 2px 7px;
    }

    .ecommerce-compare-row {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 170px) minmax(0, 150px);
        min-height: 42px;
    }

    .ecommerce-compare-feature,
    .ecommerce-compare-status,
    .ecommerce-compare-legacy {
        padding: 10px 12px;
        font-size: 13px;
        line-height: 18px;
    }

    .ecommerce-compare-status {
        gap: 6px;
    }

    .ecommerce-compare-status-icon svg {
        width: 14px;
        height: 14px;
    }

    .ecommerce-compare-actions {
        margin-top: 20px;
        padding: 0 12px;
    }

    .ecommerce-show-all-btn,
    .ecommerce-compare-skip-link {
        text-align: center;
    }
    /* Compare Pricing Section */

    /* Mockup Demo Modal */
    .mockup-card-create-modal {
        padding: 12px;
    }

    .mockup-card-create-modal-content {
        border-radius: 18px;
    }

    .mockup-card-create-modal-left {
        border-radius: 18px 18px 0 0;
        padding: 14px;
    }

    .mockup-card-create-modal-left img {
        height: 240px;
        border-radius: 12px;
    }

    .mockup-card-create-modal-right {
        padding: 20px;
    }

    .mockup-card-create-modal-right .modal-title {
        font-size: 22px;
        line-height: 28px;
    }

    .mockup-card-create-modal-right .modal-category-tags {
        margin-bottom: 16px;
    }

    .mockup-card-create-modal-right .tag-badge {
        padding: 5px 12px;
        font-size: 11px;
        line-height: 14px;
    }

    .mockup-card-create-modal-right .modal-actions .btn-primary {
        padding: 12px 18px;
        font-size: 14px;
        line-height: 20px;
    }
    /* Mockup Demo Modal */

    /* Demo Kits / See What's Possible Section */
    .ecommerce-possible-section {
        padding: 64px 0;
    }
    .ecommerce-possible-mockup-deck,
    .ecommerce-possible-mockup-deck.has-hovered {
        gap: 14px;
    }
    .ecommerce-possible-mockup-card {
        flex-basis: 272px;
        width: 272px;
        height: 380px;
        border-radius: 20px;
        border-width: 3px;
    }
    .ecommerce-possible-mockup-card .mockup-overlay {
        padding: 20px;
    }
    .ecommerce-possible-mockup-card .mockup-overlay h3 {
        font-size: 24px;
        line-height: 28px;
    }
    .mockup-card-actions .btn-mockup-preview,
    .mockup-card-actions .btn-mockup-create {
        font-size: 14px;
        line-height: 20px;
        padding: 5px 14px 7px 14px;
    }
    .ecommerce-possible-bottom-callout {
        margin-top: 32px;
    }
    .ecommerce-possible-bottom-callout .callout-desc {
        margin-bottom: 20px;
        font-size: 13px;
    }
    .ecommerce-possible-cta-box {
        padding: 20px;
        border-radius: 18px;
    }
    .ecommerce-possible-cta-box .cta-left .cta-number {
        font-size: 26px;
        line-height: 32px;
    }
    .ecommerce-possible-cta-box .cta-left .cta-sub {
        font-size: 13px;
    }
    /* Demo Kits / See What's Possible Section */

    /* FAQs Section */
    .ecommerce-faqs-section {
        padding: 72px 0;
    }
    .ecommerce-faqs-header {
        padding: 0 12px;
    }
    .ecommerce-faqs-title {
        margin-top: 16px;
    }
    .ecommerce-faqs-desc {
        margin-top: 12px;
    }
    .ecommerce-faqs-list {
        margin-top: 28px;
        border-radius: 14px;
    }
    .ecommerce-faqs-list .faq-trigger {
        padding: 16px 16px;
        gap: 10px;
    }
    .faq-trigger-main {
        gap: 8px;
    }
    .faq-trigger-main > img,
    .faq-trigger-main > svg {
        width: 16px;
        height: 16px;
    }
    .ecommerce-faqs-list .faq-question {
        font-size: 14px;
        line-height: 20px;
    }
    .ecommerce-faqs-list .faq-chevron {
        width: 18px;
        height: 18px;
    }
    .ecommerce-faqs-list .faq-answer {
        padding: 0 16px 16px 40px;
        font-size: 13px;
        line-height: 21px;
    }
    /* FAQs Section */

    /* Floating Promo Element */
    .ecommerce-banner-floating-elements {
        bottom: 16px;
        right: 16px;
        left: auto;
        width: auto;
        max-width: fit-content;
        padding: 6px 8px;
    }

    .floating-default-badge {
        font-size: 11px;
        line-height: 14px;
        padding: 4px 8px;
    }

    .floating-element-close {
        width: 22px;
        height: 22px;
    }
    /* Floating Promo Element */
}

@media (max-width: 576px) {
    /* Mobile First Section */
    .ecommerce-mobile-first-section {
        padding: 48px 0;
    }

    .ecommerce-mobile-first-header {
        padding: 0 10px;
    }

    .ecommerce-mobile-first-showcase {
        margin-top: 28px;
        gap: 16px;
        overflow-x: hidden;
    }

    .ecommerce-mobile-first-phones {
        min-height: 280px;
    }

    .ecommerce-mobile-first-phone.is-center {
        width: 145px;
        height: 270px;
    }

    .ecommerce-mobile-first-phone.is-side {
        width: 121px;
        height: 225px;
    }

    .ecommerce-mobile-first-phone {
        margin-right: -8px;
    }

    .ecommerce-mobile-first-phone img {
        border-radius: 20px;
    }

    .ecommerce-mobile-first-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        max-width: calc(100% - 16px);
        padding: 6px 8px;
        gap: 5px;
        border-radius: 40px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ecommerce-mobile-first-tabs::-webkit-scrollbar {
        display: none;
    }

    .ecommerce-mobile-first-tab {
        flex-shrink: 0;
        min-height: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 11px;
        line-height: 16px;
    }
    /* Mobile First Section */

    /* Total Control Section */
    .ecommerce-total-control-section {
        padding: 48px 0;
    }

    .ecommerce-total-control-header {
        margin-bottom: 28px;
        padding: 0 10px;
    }

    .ecommerce-total-control-badge {
        margin-bottom: 14px;
    }

    .ecommerce-control-grid {
        gap: 8px;
        padding: 0 2px;
    }

    .control-grid-row {
        gap: 8px;
    }

    .control-card-box {
        border-radius: 10px;
    }

    .control-grid-row.is-active .control-card-box {
        border-radius: 12px;
    }

    .control-grid-row.is-active .control-card-box::after {
        height: 165px;
    }

    .control-grid-row.is-active .control-card-box .card-inner-top {
        max-height: 84px;
        padding: 14px 0 24px 0;
    }

    .control-grid-row.is-active .control-card-box .card-preview-area {
        max-height: 165px;
        height: 165px;
    }

    .card-inner-top .card-head-title {
        font-size: 16px;
        line-height: 22px;
    }

    .card-inner-top .meta-badge {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 4px;
    }

    .card-bottom-pill {
        font-size: 11px;
        line-height: 16px;
        padding: 10px 6px;
        max-height: 40px;
    }
    /* Total Control Section */

    /* Every Page Matters Section */
    .ecommerce-every-page-matters-section {
        padding: 48px 0;
    }

    .ecommerce-every-page-header {
        padding: 0 10px;
    }

    .ecommerce-every-page-badge {
        margin-bottom: 14px;
    }

    .ecommerce-every-page-rows {
        margin-top: 32px;
        gap: 28px;
    }

    .ecommerce-every-page-row-label {
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 1px;
        padding: 0 10px;
    }

    .ecommerce-every-page-scroller-area {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }

    .ecommerce-every-page-scroller {
        gap: 10px;
        padding: 12px 10px 10px 10px;
    }

    .ecommerce-every-page-card {
        flex: 0 0 220px;
        border-radius: 12px;
    }

    .ecommerce-every-page-card img {
        border-radius: 12px;
    }

    .ecommerce-every-page-indicator {
        height: 11px;
        margin: 0 10px;
        width: calc(100% - 20px);
    }
    /* Every Page Matters Section */

    /* How It Works Section */
    .ecommerce-how-it-works-section {
        padding: 48px 0;
        overflow-x: hidden;
    }

    .ecommerce-how-it-works-header {
        padding: 0 10px;
    }

    .ecommerce-how-it-works-badge {
        margin-bottom: 14px;
    }

    .ecommerce-how-it-works-steps {
        gap: 14px;
        margin-top: 28px;
        padding: 4px 10px 8px 10px;
    }

    .ecommerce-how-it-works-step-col {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .ecommerce-how-it-works-card {
        padding: 16px;
        border-radius: 12px;
    }

    .ecommerce-how-it-works-step-label {
        font-size: 11px;
        line-height: 14px;
    }

    .ecommerce-how-it-works-card-title {
        font-size: 16px;
        line-height: 22px;
        margin-top: 6px;
    }

    .ecommerce-how-it-works-card-desc {
        font-size: 12px;
        line-height: 17px;
        margin-top: 6px;
    }

    .ecommerce-how-it-works-preview {
        margin-top: 12px;
        border-radius: 8px;
    }

    .ecommerce-how-it-works-cta {
        margin-top: 14px;
        font-size: 11px;
        line-height: 14px;
        padding: 6px 11px;
    }

    .ecommerce-how-it-works-cta svg {
        width: 10px;
        height: 10px;
    }
    /* How It Works Section */

    /* One Plan Section */
    .ecommerce-one-plan-section {
        padding: 48px 0;
    }

    .ecommerce-one-plan-header {
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .ecommerce-one-plan-badge {
        margin-bottom: 14px;
    }

    .ecommerce-one-plan-content {
        gap: 32px;
        padding: 0 2px;
    }

    .ecommerce-one-plan-comparison-card {
        padding: 16px;
        border-radius: 12px;
    }

    .ecommerce-one-plan-comparison-header span {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 1.2px;
    }

    .ecommerce-one-plan-list {
        gap: 10px;
    }

    .ecommerce-one-plan-item {
        flex-wrap: wrap;
        gap: 8px 10px;
    }

    .ecommerce-one-plan-item-name,
    .ecommerce-one-plan-item-price {
        font-size: 14px;
        line-height: 20px;
    }

    .ecommerce-one-plan-item-price {
        margin-left: auto;
    }

    .ecommerce-one-plan-item-name {
        min-width: 0;
        justify-content: flex-start;
    }

    .ecommerce-one-plan-included-badge {
        font-size: 10px;
        line-height: 13px;
        letter-spacing: 0.4px;
        padding: 2px 6px;
    }

    .ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-included-badge {
        max-width: 100px;
        padding: 2px 6px;
    }

    .ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-bottom-header {
        max-height: 80px;
        padding: 10px 12px;
    }

    .ecommerce-one-plan-bottom-header span {
        font-size: 14px;
        line-height: 20px;
    }

    .ecommerce-one-plan-savings::before {
        width: 240px;
        height: 240px;
    }

    .ecommerce-one-plan-savings-amount {
        font-size: 56px;
        line-height: 56px;
    }

    .ecommerce-one-plan-savings-label {
        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .ecommerce-one-plan-price-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .ecommerce-one-plan-price-old,
    .ecommerce-one-plan-price-new {
        font-size: 13px;
    }

    .ecommerce-one-plan-price-note {
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .ecommerce-one-plan-cta-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .ecommerce-one-plan-cta-btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
    }

    .ecommerce-one-plan-save-badge {
        font-size: 13px;
        padding: 5px 10px 6px;
    }

    .ecommerce-one-plan-trust-note {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .ecommerce-one-plan-stat-card {
        padding: 10px;
        border-radius: 10px;
    }

    .ecommerce-one-plan-stat-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .ecommerce-one-plan-stat-text {
        font-size: 13px;
        line-height: 18px;
    }
    /* One Plan Section */

    /* Cost Section */
    .ecommerce-cost-section {
        padding: 48px 0;
    }

    .ecommerce-cost-header {
        padding: 0 10px;
    }

    .ecommerce-cost-badge {
        margin-bottom: 14px;
    }

    .ecommerce-cost-cards {
        max-width: 100%;
        margin-top: 32px;
        gap: 14px;
        padding: 0 2px;
    }

    .ecommerce-cost-card {
        padding: 16px;
        border-radius: 12px;
    }

    .ecommerce-cost-card-label {
        font-size: 12px;
        line-height: 17px;
    }

    .ecommerce-cost-card-loss {
        font-size: 22px;
        line-height: 26px;
        margin-top: 10px;
    }

    .ecommerce-cost-card-divider {
        margin-top: 10px;
    }

    .ecommerce-cost-card-save {
        font-size: 16px;
        line-height: 22px;
        margin-top: 10px;
    }

    .ecommerce-cost-footnote {
        margin-top: 20px;
        font-size: 11px;
        line-height: 16px;
        padding: 0 10px;
    }
    /* Cost Section */

    /* Fashion Brand Section */
    .ecommerce-fashion-brand-section {
        padding: 48px 0;
    }

    .ecommerce-fashion-brand-header {
        padding: 0 10px;
    }

    .ecommerce-fashion-brand-badge {
        margin-bottom: 14px;
    }

    .ecommerce-fashion-marquee-stage {
        margin-top: 24px;
        gap: 10px;
    }

    .ecommerce-fashion-marquee-card {
        flex: 0 0 150px;
        width: 150px;
        height: 97px;
        border-radius: 6px;
    }

    .ecommerce-fashion-marquee-fade {
        width: 40px;
    }

    .ecommerce-fashion-stat-overlay {
        height: 180px;
        padding-bottom: 16px;
        gap: 10px;
    }

    .ecommerce-fashion-stat-title {
        font-size: 32px;
        line-height: 28px;
    }

    .ecommerce-fashion-text-marquee {
        height: 60px;
        padding: 0 10px;
    }

    .ecommerce-fashion-text-track p {
        font-size: 10px;
        line-height: 20px;
    }

    .ecommerce-fashion-markets {
        margin-top: 24px;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 2px;
    }

    .ecommerce-fashion-market-card,
    .ecommerce-fashion-market-card.is-large,
    .ecommerce-fashion-market-card.is-small,
    .ecommerce-fashion-market-card.is-small:last-child {
        grid-column: span 1;
        min-height: 180px;
        padding: 16px;
        border-radius: 12px;
    }

    .ecommerce-fashion-market-card.is-large {
        min-height: 220px;
    }

    .ecommerce-fashion-market-card::before {
        border-radius: 12px;
    }

    .ecommerce-fashion-market-label {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0.8px;
    }

    .ecommerce-fashion-market-value {
        font-size: 24px;
        line-height: 28px;
    }

    .ecommerce-fashion-market-note {
        font-size: 11px;
        line-height: 14px;
    }
    /* Fashion Brand Section */

    /* Store CTA Section */
    .ecommerce-store-cta-section {
        padding: 48px 0;
    }

    .ecommerce-store-cta-glow {
        width: 300px;
        height: 300px;
        filter: blur(40px);
        opacity: 0.18;
    }

    .ecommerce-store-cta-glow--left {
        left: -180px;
        top: -160px;
    }

    .ecommerce-store-cta-glow--right {
        right: -180px;
        top: -30px;
    }

    .ecommerce-store-cta-content {
        padding: 0 10px;
    }

    .ecommerce-store-cta-desc {
        margin-top: 14px;
    }

    .ecommerce-store-cta-btn {
        margin-top: 24px;
        max-width: 100%;
        padding: 12px 20px;
    }

    .ecommerce-store-cta-note {
        margin-top: 12px;
        font-size: 10px;
        line-height: 15px;
        padding: 0 10px;
    }
    /* Store CTA Section */

    /* Total Customization / Stacked Flow Section */
    .ecommerce-customization-section {
        padding: 48px 0;
    }

    .ecommerce-customization-title {
        margin-top: 16px;
    }

    .ecommerce-customization-subtitle {
        margin-top: 12px;
    }

    .ecommerce-customization-card {
        top: 60px;
    }

    .ecommerce-customization-card-inner {
        border-radius: 12px;
        padding-top: 20px;
    }

    .ecommerce-customization-card-copy {
        padding: 0 16px 16px;
    }

    .ecommerce-customization-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .ecommerce-customization-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .ecommerce-customization-card-title {
        font-size: 16px;
        line-height: 22px;
        margin-top: 10px;
    }

    .ecommerce-customization-card-desc {
        font-size: 13px;
        line-height: 18px;
        margin-top: 6px;
    }

    .ecommerce-customization-card-preview {
        height: 170px;
    }
    /* Total Customization / Stacked Flow Section */

    /* Big Bang Evolution Section */
    .ecommerce-bigbang-section {
        padding: 48px 0;
    }

    .ecommerce-bigbang-header {
        padding: 0 10px;
    }

    .ecommerce-evolution-title .title-bold {
        font-size: 40px;
        line-height: 38px;
    }

    .ecommerce-evolution-title .title-outline {
        font-size: 22px;
        line-height: 22px;
        -webkit-text-stroke: 1px #6752EB;
    }

    .ecommerce-evolution-title .title-outline.evolution {
        font-size: 52px;
        line-height: 50px;
        letter-spacing: 0.2px;
        -webkit-text-stroke: 1.5px #6752EB;
    }

    .ecommerce-bigbang-body {
        gap: 28px;
        margin-top: 32px;
        padding: 0 10px;
    }

    .ecommerce-bigbang-grade-badge {
        font-size: 11px;
        line-height: 15px;
        padding: 5px 10px;
    }

    .ecommerce-bigbang-feature-title {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: -0.44px;
    }

    .ecommerce-bigbang-feature-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .ecommerce-bigbang-cards {
        margin-top: 20px;
        gap: 10px;
    }

    .ecommerce-bigbang-card {
        padding: 14px;
        border-radius: 12px;
    }

    .ecommerce-bigbang-card-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }

    .ecommerce-bigbang-card-icon svg {
        width: 16px;
        height: 16px;
    }

    .ecommerce-bigbang-card-title {
        font-size: 15px;
        line-height: 22px;
    }

    .ecommerce-bigbang-card-list {
        grid-template-columns: 1fr;
        row-gap: 6px;
        margin-top: 10px;
    }

    .ecommerce-bigbang-card-list li {
        font-size: 13px;
        line-height: 18px;
    }
    /* Big Bang Evolution Section */

    /* Performance That Pays Section */
    .ecommerce-performance-section {
        padding: 48px 0;
    }

    .ecommerce-performance-stats {
        gap: 28px 16px;
        margin-top: 32px;
        max-width: 100%;
    }

    .ecommerce-performance-stat-value {
        font-size: 36px;
        line-height: 36px;
    }

    .ecommerce-performance-stat-label {
        font-size: 13px;
        line-height: 20px;
        margin-top: 6px;
    }
    /* Performance That Pays Section */

    /* Banner / Hero Section */
    .ecommerce-banner-badge {
        font-size: 10px;
        line-height: 14px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .ecommerce-banner-title {
        font-size: 34px;
        line-height: 38px;
        letter-spacing: -0.68px;
        margin-bottom: 16px;
    }

    .ecommerce-banner-description {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .ecommerce-banner-cta-row {
        max-width: 100%;
        gap: 8px;
        margin-bottom: 16px;
    }

    .ecommerce-banner-primary-btn,
    .ecommerce-banner-secondary-btn {
        min-height: 48px;
        font-size: 14px;
        line-height: 20px;
        padding: 11px 16px;
    }

    .ecommerce-banner-note {
        font-size: 12px;
        line-height: 17px;
        margin-bottom: 28px;
    }

    .ecommerce-banner-activity {
        height: 206px;
        margin-bottom: 32px;
    }

    .ecommerce-activity-card,
    .ecommerce-activity-card.is-front,
    .ecommerce-activity-card.is-exiting {
        padding: 12px;
        gap: 10px;
        border-radius: 14px;
    }

    .ecommerce-activity-card.is-mid {
        width: min(90%, 360px);
        padding: 10px;
        gap: 8px;
        border-radius: 12px;
        transform: translateX(-50%) translateY(75px) scale(1);
    }

    .ecommerce-activity-card.is-back,
    .ecommerce-activity-card.is-entering-back {
        width: min(82%, 310px);
        padding: 9px;
        gap: 8px;
        border-radius: 11px;
        transform: translateX(-50%) translateY(146px) scale(1);
    }

    .ecommerce-activity-card.is-exiting {
        transform: translateX(-50%) translateY(-36px) scale(0.98);
    }

    .ecommerce-activity-card.is-entering-back {
        transform: translateX(-50%) translateY(162px) scale(1);
    }

    .ecommerce-activity-icon {
        width: 38px;
        height: 38px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-icon {
        width: 34px;
        height: 34px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-icon,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-icon {
        width: 30px;
        height: 30px;
    }

    .ecommerce-activity-icon svg {
        width: 18px;
        height: 18px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-icon svg {
        width: 16px;
        height: 16px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-icon svg,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-icon svg {
        width: 14px;
        height: 14px;
    }

    .ecommerce-activity-title {
        font-size: 14px;
        line-height: 19px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-title {
        font-size: 13px;
        line-height: 18px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-title,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-title {
        font-size: 12px;
        line-height: 17px;
    }

    .ecommerce-activity-meta {
        font-size: 12px;
        line-height: 16px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-meta {
        font-size: 11px;
        line-height: 15px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-meta,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-meta {
        font-size: 10px;
        line-height: 14px;
    }

    .ecommerce-activity-status {
        font-size: 12px;
        line-height: 16px;
        padding: 3px 8px;
        gap: 5px;
        max-width: 82px;
    }

    .ecommerce-banner-trust-label {
        font-size: 10px;
        line-height: 15px;
        letter-spacing: 0.72px;
    }

    .ecommerce-banner-trust-group {
        gap: 7px;
    }

    .ecommerce-banner-glow--left {
        width: 300px;
        height: 300px;
        left: -120px;
        top: -60px;
        filter: blur(64px);
    }

    .ecommerce-banner-glow--right {
        width: 300px;
        height: 300px;
        right: -120px;
        top: 20px;
        filter: blur(64px);
    }

    .ecommerce-banner-glow--center {
        width: 420px;
        height: 420px;
        filter: blur(64px);
    }
    /* Banner / Hero Section */

    /* Header */
    .header__action_text--bar {
        display: none;
    }

    .header__panel {
        margin: 8px 8px 0 8px;
    }

    header .ecommerce-logo {
        width: 108px;
    }
    /* Header */

    /* Floating Promo Element */
    .ecommerce-banner-floating-elements {
        bottom: 12px;
        right: 12px;
        left: auto;
        width: auto;
        max-width: fit-content;
        padding: 6px;
    }

    .floating-element-icon {
        width: 34px;
        height: 34px;
        margin-right: 8px;
    }

    .scroll-progress-circle {
        width: 34px;
        height: 34px;
    }

    .floating-default-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    .floating-hover-text {
        display: none !important;
    }

    .ecommerce-banner-floating-elements:hover .floating-hover-btn {
        max-width: 140px;
        padding: 10px 14px;
        margin: 0 10px;
    }

    .floating-hover-btn {
        padding: 10px 0px;
    }
    /* Floating Promo Element */

    /* Site Footer */
    .ecommerce-site-footer {
        padding: 24px 0;
    }
    .ecommerce-footer-inner {
        gap: 16px;
        padding: 0 6px;
    }
    .ecommerce-footer-logo {
        max-width: 110px;
    }
    .ecommerce-footer-copy {
        font-size: 11px;
        line-height: 15px;
    }
    .ecommerce-footer-nav {
        gap: 10px 14px;
    }
    .ecommerce-footer-nav a {
        font-size: 12px;
        line-height: 17px;
    }
    /* Site Footer */

    /* FAQs Section */
    .ecommerce-faqs-section {
        padding: 56px 0;
    }
    .ecommerce-faqs-header {
        padding: 0 10px;
    }
    .ecommerce-faqs-list {
        margin-top: 24px;
        border-radius: 12px;
    }
    .ecommerce-faqs-list .faq-trigger {
        padding: 14px;
        gap: 8px;
    }
    .ecommerce-faqs-list .faq-question {
        font-size: 13px;
        line-height: 19px;
    }
    .ecommerce-faqs-list .faq-answer {
        padding: 0 14px 14px 14px;
        font-size: 13px;
        line-height: 20px;
    }
    /* FAQs Section */

    /* Customer Reviews Section */
    .ecommerce-reviews-section {
        padding: 56px 0;
    }
    .ecommerce-reviews-header {
        padding: 0 10px;
    }
    .ecommerce-reviews-marquee-area {
        margin-top: 32px;
    }
    .ecommerce-reviews-marquees {
        max-width: 100%;
    }
    .reviews-card {
        padding: 14px;
        border-radius: 12px;
    }
    .reviews-card-quote {
        font-size: 13px;
        line-height: 20px;
    }
    .reviews-author-meta strong {
        font-size: 13px;
        line-height: 18px;
    }
    .ecommerce-reviews-cta {
        flex-direction: column;
        align-items: stretch;
        width: calc(100% - 24px);
        max-width: 300px;
        bottom: 14px;
        gap: 10px;
        padding: 12px;
        border-radius: 18px;
    }
    .reviews-cta-label {
        white-space: normal;
        text-align: center;
        font-size: 12px;
        line-height: 17px;
    }
    .reviews-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
    }
    /* Customer Reviews Section */

    /* Thrive Section */
    .ecommerce-thrive-section {
        padding: 56px 0;
    }
    .thrive-section-header {
        padding: 0 10px;
    }
    .thrive-subtitle {
        margin-bottom: 24px;
    }
    .thrive-tabs-container {
        margin-bottom: 24px;
        margin-left: -10px;
        margin-right: -10px;
        padding: 4px 10px 8px;
        gap: 6px;
    }
    .thrive-tab-btn {
        font-size: 12px;
        line-height: 16px;
        gap: 5px;
    }
    .thrive-grid {
        gap: 8px;
    }
    .thrive-card {
        padding: 12px 10px;
        border-radius: 12px;
    }
    .thrive-card-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin-bottom: 8px;
    }
    .thrive-card-icon svg {
        width: 18px;
        height: 18px;
    }
    .thrive-card-title {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    .thrive-card-tag {
        padding: 3px 7px;
        font-size: 9px;
        line-height: 13px;
    }
    /* Thrive Section */

    /* Core Features Section */
    .ecommerce-core-features-section {
        padding: 56px 0;
    }
    .ecommerce-core-features-header {
        margin-bottom: 24px;
        padding: 0 10px;
    }
    .core-feature-row,
    .core-feature-card {
        border-radius: 16px;
    }
    .core-feature-row {
        margin-bottom: 14px;
    }
    .core-feature-row .core-feature-copy {
        padding: 20px 20px 14px;
    }
    .core-feature-row .core-feature-visual {
        padding: 0 12px 12px;
    }
    .core-features-grid {
        margin-bottom: 14px;
        max-width: 100%;
    }
    .core-feature-card {
        padding: 20px;
    }
    .core-feature-icon {
        width: 38px;
        height: 38px;
    }
    .core-feature-name {
        font-size: 17px;
        line-height: 24px;
    }
    .core-feature-text {
        font-size: 13px;
        line-height: 20px;
    }
    .core-feature-pills {
        margin-top: 14px;
    }
    .core-feature-link {
        margin-top: 14px;
    }
    .core-feature-card .core-feature-visual {
        padding-top: 16px;
    }
    /* Core Features Section */

    /* Platform Builder Showcase Section */
    .ecommerce-workflow-showcase-section {
        padding: 56px 0;
    }
    .ecommerce-listing-header {
        padding: 0 10px;
    }
    .ecommerce-platform-subtitle {
        margin-bottom: 24px;
    }
    .ecommerce-builder-showcase {
        border-radius: 14px;
        box-shadow: 0px 20px 48px rgba(108, 76, 241, 0.22);
    }
    .sidebar-header {
        padding: 12px;
    }
    .header-bold {
        font-size: 13px;
        line-height: 18px;
    }
    .sidebar-links {
        padding: 10px;
        gap: 6px;
    }
    .sidebar-links .tab-link {
        height: 38px;
        font-size: 12px;
        line-height: 15px;
        padding: 6px 8px;
        gap: 6px;
    }
    .sidebar-links .tab-icon svg {
        width: 16px;
        height: 16px;
    }
    .sidebar-links .more-tools-dropdown {
        padding-left: 6px;
        margin-left: 2px;
        gap: 6px;
    }
    .builder-video-canvas {
        padding: 12px;
        gap: 8px;
    }
    .video-container {
        border-radius: 12px;
        aspect-ratio: 16 / 9;
        max-height: 280px;
    }
    .video-caption {
        margin-top: 12px;
        font-size: 12px;
        line-height: 18px;
    }
    .platform-footer-pills {
        gap: 8px;
        margin-top: 20px;
        padding: 0 6px;
    }
    .footer-pill {
        font-size: 11px;
        line-height: 14px;
        padding: 6px 10px;
    }
    /* Platform Builder Showcase Section */

    /* Demo Kits / See What's Possible Section */
    .ecommerce-possible-section {
        padding: 56px 0;
    }
    .ecommerce-possible-header {
        margin-bottom: 24px;
        padding: 0 12px;
    }
    .ecommerce-possible-mockup-deck,
    .ecommerce-possible-mockup-deck.has-hovered {
        gap: 12px;
    }
    .ecommerce-possible-mockup-card {
        border-radius: 18px;
    }
    .ecommerce-possible-mockup-card .mockup-overlay {
        padding: 18px;
    }
    .ecommerce-possible-mockup-card .mockup-overlay h3 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .ecommerce-possible-mockup-card .mockup-logo {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .ecommerce-possible-mockup-card .mockup-card-actions {
        gap: 8px;
    }
    .ecommerce-possible-bottom-callout {
        margin-top: 28px;
    }
    .ecommerce-possible-bottom-callout .callout-desc {
        margin-bottom: 16px;
    }
    .ecommerce-possible-cta-box {
        padding: 18px;
    }
    .ecommerce-possible-cta-box .cta-left .cta-number {
        font-size: 24px;
        line-height: 30px;
    }
    .mockup-card-actions .btn-mockup-preview,
    .mockup-card-actions .btn-mockup-create {
        font-size: 13px;
        padding: 5px 13px 7px 13px;
    }
    /* Demo Kits / See What's Possible Section */

    /* Mockup Demo Modal */
    .mockup-card-create-modal {
        padding: 10px;
    }

    .mockup-card-create-modal-content {
        border-radius: 16px;
    }

    .mockup-card-create-modal-close {
        top: 8px;
        right: 8px;
    }

    .mockup-card-create-modal-close svg {
        width: 30px !important;
        height: 30px !important;
        padding: 7px !important;
    }

    .mockup-card-create-modal-left {
        border-radius: 16px 16px 0 0;
        padding: 12px;
    }

    .mockup-card-create-modal-left img {
        height: 200px;
        border-radius: 10px;
    }

    .mockup-card-create-modal-right {
        padding: 16px;
    }

    .mockup-card-create-modal-right .modal-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
        letter-spacing: -0.4px;
    }

    .mockup-card-create-modal-right .modal-category-tags {
        margin-bottom: 14px;
    }

    .mockup-card-create-modal-right .modal-actions {
        gap: 10px;
        margin-top: 18px;
    }

    .mockup-card-create-modal-right .modal-actions .btn-primary {
        padding: 11px 16px;
        font-size: 13px;
        line-height: 18px;
    }
    /* Mockup Demo Modal */

    /* Compare Pricing Section */
    .ecommerce-compare-section {
        padding: 56px 0;
    }

    .ecommerce-compare-header {
        padding: 0 10px;
        margin-bottom: 24px;
    }

    .ecommerce-compare-table {
        border-radius: 14px;
    }

    .ecommerce-compare-table-head {
        display: none;
    }

    .ecommerce-compare-group-toggle {
        min-height: 54px;
        padding: 14px;
    }

    .ecommerce-compare-group-left {
        gap: 8px;
        flex-wrap: wrap;
    }

    .ecommerce-compare-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 14px;
    }

    .ecommerce-compare-feature,
    .ecommerce-compare-status,
    .ecommerce-compare-legacy {
        padding: 0;
        border-left: 0;
    }

    .ecommerce-compare-feature {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
    }

    .ecommerce-compare-status,
    .ecommerce-compare-legacy {
        position: relative;
        min-height: 20px;
        padding-left: 0px;
        font-size: 13px;
        line-height: 18px;
        display: flex;
        align-items: center;
    }

    .ecommerce-compare-status::before,
    .ecommerce-compare-legacy::before {
        font-family: 'Bricolage Grotesque';
        font-weight: 700;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        margin-right: 90px;
    }

    .ecommerce-compare-legacy::before {
        margin-right: 70px;
    }

    .ecommerce-compare-status::before {
        content: "ecommerce";
        color: #6C4CF1;
    }

    .ecommerce-compare-legacy::before {
        content: "Everyone Else";
        color: #6B6880;
    }

    .ecommerce-compare-actions {
        gap: 10px;
        margin-top: 18px;
        padding: 0 10px;
    }

    .ecommerce-show-all-btn,
    .ecommerce-compare-skip-link {
        font-size: 13px;
        line-height: 18px;
    }
    /* Compare Pricing Section */

    /* Pricing / Plans Section */
    .ecommerce-pricing-section {
        padding: 56px 0;
    }
    .ecommerce-pricing-header {
        padding: 0 10px;
        gap: 12px;
    }
    .ecommerce-pricing-toggle {
        margin-top: 24px;
        padding: 4px;
        border-radius: 18px;
        flex-wrap: wrap;
    }
    .pricing-toggle-btn {
        width: 100%;
        font-size: 13px;
        line-height: 18px;
        padding: 10px 12px;
    }
    .ecommerce-pricing-card {
        margin-top: 24px;
        border-radius: 12px;
    }
    .ecommerce-pricing-card-left,
    .ecommerce-pricing-card-right {
        padding: 20px 16px;
    }
    .pricing-offer-badge {
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 16px;
    }
    .pricing-offer-title {
        font-size: 20px;
        line-height: 28px;
    }
    .pricing-offer-desc {
        font-size: 14px;
        line-height: 21px;
    }
    .pricing-amount {
        font-size: 40px;
        line-height: 40px;
    }
    .pricing-period {
        font-size: 15px;
        line-height: 22px;
    }
    .pricing-compare-strike,
    .pricing-billed-note,
    .pricing-save-banner {
        font-size: 13px;
        line-height: 18px;
    }
    .pricing-save-banner {
        padding: 14px 12px;
    }
    .pricing-cta-btn {
        padding: 14px 16px;
        font-size: 15px;
        line-height: 22px;
    }
    .pricing-guarantee-text {
        font-size: 11px;
        line-height: 15px;
    }
    .pricing-included-label {
        margin-bottom: 16px;
    }
    .pricing-included-list li {
        flex-direction: column;
        gap: 6px;
    }
    .pricing-feature-left {
        width: 100%;
    }
    .pricing-feature-price {
        align-self: flex-start;
        padding-left: 32px;
    }
    .pricing-total-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .pricing-or-divider {
        margin: 18px 0;
    }
    /* Pricing / Plans Section */
}

@media (max-width: 400px) {
    /* Mobile First Section */
    .ecommerce-mobile-first-section {
        padding: 40px 0;
    }

    .ecommerce-mobile-first-header {
        padding: 0 8px;
    }

    .ecommerce-mobile-first-title {
        margin-top: 14px;
    }

    .ecommerce-mobile-first-subtitle {
        margin-top: 10px;
    }

    .ecommerce-mobile-first-showcase {
        margin-top: 24px;
        gap: 14px;
        overflow-x: hidden;
    }

    .ecommerce-mobile-first-phones {
        min-height: 240px;
        padding: 0;
    }

    .ecommerce-mobile-first-phone.is-center {
        width: 128px;
        height: 239px;
    }

    .ecommerce-mobile-first-phone.is-side {
        width: 107px;
        height: 199px;
    }

    .ecommerce-mobile-first-phone {
        margin-right: -6px;
    }

    .ecommerce-mobile-first-phone img {
        border-radius: 18px;
    }

    .ecommerce-mobile-first-tabs {
        max-width: calc(100% - 8px);
        padding: 6px;
        gap: 4px;
        border-radius: 36px;
    }

    .ecommerce-mobile-first-tab {
        min-height: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: 10px;
        line-height: 15px;
    }
    /* Mobile First Section */

    /* Total Control Section */
    .ecommerce-total-control-section {
        padding: 40px 0;
    }

    .ecommerce-total-control-header {
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .ecommerce-total-control-badge {
        margin-bottom: 12px;
    }

    .ecommerce-total-control-title {
        margin-bottom: 10px;
    }

    .ecommerce-control-grid {
        gap: 6px;
        padding: 0;
    }

    .control-grid-row {
        gap: 6px;
    }

    .control-card-box {
        border-radius: 8px;
    }

    .control-grid-row.is-active .control-card-box {
        border-radius: 10px;
    }

    .control-grid-row.is-active .control-card-box::after {
        height: 145px;
    }

    .control-grid-row.is-active .control-card-box .card-inner-top {
        max-height: 76px;
        padding: 12px 0 20px 0;
    }

    .control-grid-row.is-active .control-card-box .card-preview-area {
        max-height: 145px;
        height: 145px;
    }

    .card-inner-top .card-head-title {
        font-size: 15px;
        line-height: 20px;
    }

    .card-inner-top .meta-badge {
        font-size: 9px;
        line-height: 12px;
        margin-bottom: 3px;
    }

    .card-bottom-pill {
        font-size: 10px;
        line-height: 14px;
        padding: 10px 4px;
        max-height: 36px;
    }
    /* Total Control Section */

    /* Every Page Matters Section */
    .ecommerce-every-page-matters-section {
        padding: 40px 0;
    }

    .ecommerce-every-page-header {
        padding: 0 8px;
    }

    .ecommerce-every-page-badge {
        margin-bottom: 12px;
    }

    .ecommerce-every-page-rows {
        margin-top: 28px;
        gap: 24px;
    }

    .ecommerce-every-page-row-label {
        font-size: 11px;
        line-height: 14px;
        letter-spacing: 0.8px;
        padding: 0 8px;
    }

    .ecommerce-every-page-scroller-area {
        margin-left: -8px;
        margin-right: -8px;
        width: calc(100% + 16px);
    }

    .ecommerce-every-page-scroller {
        gap: 8px;
        padding: 10px 8px 8px 8px;
    }

    .ecommerce-every-page-card {
        flex: 0 0 190px;
        border-radius: 10px;
    }

    .ecommerce-every-page-card img {
        border-radius: 10px;
    }

    .ecommerce-every-page-indicator {
        height: 10px;
        margin: 0 8px;
        width: calc(100% - 16px);
        padding: 2px;
        border-radius: 60px;
    }
    /* Every Page Matters Section */

    /* How It Works Section */
    .ecommerce-how-it-works-section {
        padding: 40px 0;
        overflow-x: hidden;
    }

    .ecommerce-how-it-works-header {
        padding: 0 8px;
    }

    .ecommerce-how-it-works-badge {
        margin-bottom: 12px;
    }

    .ecommerce-how-it-works-steps {
        gap: 12px;
        margin-top: 24px;
        padding: 4px 8px 8px 8px;
    }

    .ecommerce-how-it-works-step-col {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .ecommerce-how-it-works-card {
        padding: 14px;
        border-radius: 10px;
        box-shadow: 0px 6px 10px rgba(20, 18, 43, 0.05);
    }

    .ecommerce-how-it-works-step-label {
        font-size: 10px;
        line-height: 13px;
    }

    .ecommerce-how-it-works-card-title {
        font-size: 15px;
        line-height: 20px;
    }

    .ecommerce-how-it-works-card-desc {
        font-size: 11px;
        line-height: 16px;
    }

    .ecommerce-how-it-works-preview {
        margin-top: 10px;
        border-radius: 8px;
    }

    .ecommerce-how-it-works-cta {
        margin-top: 12px;
        font-size: 10px;
        line-height: 13px;
        padding: 5px 10px;
        gap: 3px;
    }
    /* How It Works Section */

    /* One Plan Section */
    .ecommerce-one-plan-section {
        padding: 40px 0;
    }

    .ecommerce-one-plan-header {
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .ecommerce-one-plan-badge {
        margin-bottom: 12px;
    }

    .ecommerce-one-plan-title {
        margin-bottom: 12px;
    }

    .ecommerce-one-plan-content {
        gap: 28px;
        padding: 0;
    }

    .ecommerce-one-plan-comparison-card {
        padding: 14px;
        border-radius: 10px;
    }

    .ecommerce-one-plan-comparison-header {
        margin-bottom: 14px;
        gap: 4px;
    }

    .ecommerce-one-plan-comparison-header span {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 1px;
    }

    .ecommerce-one-plan-list {
        gap: 8px;
    }

    .ecommerce-one-plan-item {
        gap: 6px 8px;
    }

    .ecommerce-one-plan-item-name,
    .ecommerce-one-plan-item-price {
        font-size: 13px;
        line-height: 18px;
    }

    .ecommerce-one-plan-included-badge {
        font-size: 9px;
        line-height: 12px;
        gap: 3px;
    }

    .ecommerce-one-plan-included-badge svg {
        width: 10px;
        height: 10px;
    }

    .ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-included-badge {
        max-width: 92px;
        padding: 2px 5px;
    }

    .ecommerce-one-plan-content.is-in-view .ecommerce-one-plan-bottom-header {
        max-height: 88px;
        margin-top: 16px;
        padding: 10px;
    }

    .ecommerce-one-plan-bottom-header span {
        font-size: 13px;
        line-height: 18px;
    }

    .ecommerce-one-plan-savings::before {
        width: 200px;
        height: 200px;
    }

    .ecommerce-one-plan-savings-amount {
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 8px;
    }

    .ecommerce-one-plan-savings-label {
        font-size: 10px;
        letter-spacing: 1.4px;
        margin-bottom: 12px;
    }

    .ecommerce-one-plan-price-old,
    .ecommerce-one-plan-price-new {
        font-size: 12px;
        line-height: 18px;
    }

    .ecommerce-one-plan-price-divider {
        height: 14px;
    }

    .ecommerce-one-plan-price-note {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 16px;
        padding: 0 4px;
    }

    .ecommerce-one-plan-cta-btn {
        padding: 11px 16px;
        font-size: 13px;
    }

    .ecommerce-one-plan-save-badge {
        font-size: 12px;
        line-height: 18px;
    }

    .ecommerce-one-plan-trust-note {
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 16px;
    }

    .ecommerce-one-plan-stat-card {
        gap: 10px;
        padding: 8px;
    }

    .ecommerce-one-plan-stat-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .ecommerce-one-plan-stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .ecommerce-one-plan-stat-text {
        font-size: 12px;
        line-height: 16px;
    }
    /* One Plan Section */

    /* Cost Section */
    .ecommerce-cost-section {
        padding: 40px 0;
    }

    .ecommerce-cost-header {
        padding: 0 8px;
    }

    .ecommerce-cost-badge {
        margin-bottom: 12px;
    }

    .ecommerce-cost-title {
        margin-bottom: 0;
    }

    .ecommerce-cost-cards {
        margin-top: 28px;
        gap: 12px;
        padding: 0;
    }

    .ecommerce-cost-card {
        padding: 14px;
        border-radius: 10px;
    }

    .ecommerce-cost-card-label {
        font-size: 11px;
        line-height: 16px;
    }

    .ecommerce-cost-card-loss {
        font-size: 20px;
        line-height: 24px;
        margin-top: 8px;
    }

    .ecommerce-cost-card-divider {
        margin-top: 8px;
    }

    .ecommerce-cost-card-save {
        font-size: 15px;
        line-height: 20px;
        margin-top: 8px;
    }

    .ecommerce-cost-footnote {
        margin-top: 16px;
        font-size: 10px;
        line-height: 15px;
        padding: 0 8px;
    }
    /* Cost Section */

    /* Fashion Brand Section */
    .ecommerce-fashion-brand-section {
        padding: 40px 0;
    }

    .ecommerce-fashion-brand-header {
        padding: 0 8px;
    }

    .ecommerce-fashion-brand-badge {
        margin-bottom: 12px;
    }

    .ecommerce-fashion-marquee-stage {
        margin-top: 20px;
        gap: 8px;
    }

    .ecommerce-fashion-marquee-track {
        gap: 6px;
    }

    .ecommerce-fashion-marquee-card {
        flex: 0 0 130px;
        width: 130px;
        height: 84px;
        border-radius: 6px;
    }

    .ecommerce-fashion-marquee-fade {
        width: 28px;
    }

    .ecommerce-fashion-stat-overlay {
        height: 160px;
        padding-bottom: 14px;
        gap: 8px;
    }

    .ecommerce-fashion-stat-title {
        font-size: 28px;
        line-height: 26px;
    }

    .ecommerce-fashion-text-marquee {
        height: 56px;
        padding: 0 8px;
    }

    .ecommerce-fashion-text-track p {
        font-size: 9px;
        line-height: 18px;
    }

    .ecommerce-fashion-markets {
        margin-top: 20px;
        gap: 10px;
        padding: 0;
    }

    .ecommerce-fashion-market-card,
    .ecommerce-fashion-market-card.is-large,
    .ecommerce-fashion-market-card.is-small {
        min-height: 160px;
        padding: 14px;
        border-radius: 10px;
    }

    .ecommerce-fashion-market-card.is-large {
        min-height: 190px;
    }

    .ecommerce-fashion-market-card::before {
        border-radius: 10px;
    }

    .ecommerce-fashion-market-label {
        font-size: 9px;
        line-height: 12px;
        letter-spacing: 0.6px;
    }

    .ecommerce-fashion-market-value {
        font-size: 22px;
        line-height: 26px;
    }

    .ecommerce-fashion-market-note {
        font-size: 10px;
        line-height: 13px;
    }
    /* Fashion Brand Section */

    /* Store CTA Section */
    .ecommerce-store-cta-section {
        padding: 40px 0;
    }

    .ecommerce-store-cta-glow {
        width: 240px;
        height: 240px;
        filter: blur(36px);
        opacity: 0.16;
    }

    .ecommerce-store-cta-glow--left {
        left: -140px;
        top: -120px;
    }

    .ecommerce-store-cta-glow--right {
        right: -140px;
        top: -20px;
    }

    .ecommerce-store-cta-content {
        padding: 0 8px;
    }

    .ecommerce-store-cta-desc {
        margin-top: 12px;
    }

    .ecommerce-store-cta-btn {
        margin-top: 20px;
        padding: 11px 18px;
        gap: 6px;
    }

    .ecommerce-store-cta-btn svg {
        width: 14px;
        height: 14px;
    }

    .ecommerce-store-cta-note {
        margin-top: 10px;
        font-size: 9px;
        line-height: 14px;
        padding: 0 8px;
    }
    /* Store CTA Section */

    /* Total Customization / Stacked Flow Section */
    .ecommerce-customization-section {
        padding: 40px 0;
    }

    .ecommerce-customization-title {
        margin-top: 14px;
    }

    .ecommerce-customization-subtitle {
        margin-top: 10px;
    }

    .ecommerce-customization-card-copy {
        padding: 0 12px 14px;
    }

    .ecommerce-customization-card-title {
        font-size: 15px;
        line-height: 20px;
    }

    .ecommerce-customization-card-preview {
        height: 140px;
    }
    /* Total Customization / Stacked Flow Section */

    /* Big Bang Evolution Section */
    .ecommerce-bigbang-section {
        padding: 40px 0;
    }

    .ecommerce-bigbang-header {
        padding: 0 8px;
    }

    .ecommerce-evolution-title .title-bold {
        font-size: 34px;
        line-height: 32px;
    }

    .ecommerce-evolution-title .title-outline {
        font-size: 18px;
        line-height: 18px;
        -webkit-text-stroke: 0.9px #6752EB;
    }

    .ecommerce-evolution-title .title-outline.evolution {
        font-size: 42px;
        line-height: 40px;
        letter-spacing: 0;
        -webkit-text-stroke: 1.25px #6752EB;
    }

    .ecommerce-bigbang-body {
        gap: 24px;
        margin-top: 28px;
        padding: 0 8px;
    }

    .ecommerce-bigbang-feature-title {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.4px;
    }

    .ecommerce-bigbang-feature-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .ecommerce-bigbang-card {
        padding: 12px;
    }

    .ecommerce-bigbang-card-icon {
        width: 34px;
        height: 34px;
    }

    .ecommerce-bigbang-card-title {
        font-size: 14px;
        line-height: 20px;
    }

    .ecommerce-bigbang-card-list li {
        font-size: 12px;
        line-height: 17px;
        gap: 6px;
    }
    /* Big Bang Evolution Section */

    /* Performance That Pays Section */
    .ecommerce-performance-section {
        padding: 40px 0;
    }

    .ecommerce-performance-header {
        padding: 0 10px;
    }

    .ecommerce-performance-stats {
        gap: 24px 12px;
        margin-top: 28px;
        padding: 0 10px;
    }

    .ecommerce-performance-stat-value {
        font-size: 32px;
        line-height: 32px;
    }

    .ecommerce-performance-stat-label {
        font-size: 12px;
        line-height: 18px;
    }
    /* Performance That Pays Section */

    /* Banner / Hero Section */
    .ecommerce-banner-badge {
        font-size: 9px;
        line-height: 13px;
        padding: 4px 10px;
        margin-bottom: 14px;
        gap: 3px;
    }

    .ecommerce-banner-title {
        font-size: 30px;
        line-height: 34px;
        letter-spacing: -0.6px;
        margin-bottom: 14px;
    }

    .ecommerce-banner-description {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .ecommerce-banner-primary-btn,
    .ecommerce-banner-secondary-btn {
        min-height: 46px;
        font-size: 13px;
        line-height: 19px;
        padding: 10px 14px;
    }

    .ecommerce-banner-note {
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 24px;
    }

    .ecommerce-banner-activity {
        max-width: 100%;
        height: 172px;
        margin-bottom: 20px;
    }

    .ecommerce-activity-card,
    .ecommerce-activity-card.is-front,
    .ecommerce-activity-card.is-exiting {
        width: calc(100% - 12px);
        max-width: none;
        min-height: 60px;
        padding: 8px 10px;
        gap: 5px;
        border-radius: 12px;
        align-items: center;
        box-sizing: border-box;
    }

    .ecommerce-activity-card.is-mid {
        width: calc(100% - 28px);
        min-height: 54px;
        padding: 7px 9px;
        gap: 5px;
        border-radius: 11px;
        box-sizing: border-box;
        transform: translateX(-50%) translateY(64px) scale(1);
    }

    .ecommerce-activity-card.is-back,
    .ecommerce-activity-card.is-entering-back {
        width: calc(100% - 44px);
        min-height: 50px;
        padding: 7px 8px;
        gap: 5px;
        border-radius: 10px;
        box-sizing: border-box;
        transform: translateX(-50%) translateY(122px) scale(1);
    }

    .ecommerce-activity-card.is-exiting {
        min-height: 60px;
        transform: translateX(-50%) translateY(-24px) scale(0.98);
    }

    .ecommerce-activity-card.is-entering-back {
        transform: translateX(-50%) translateY(138px) scale(1);
    }

    .ecommerce-activity-icon {
        width: 32px;
        height: 32px;
        margin-top: 1px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-icon {
        width: 28px;
        height: 28px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-icon,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-icon {
        width: 26px;
        height: 26px;
    }

    .ecommerce-activity-icon svg {
        width: 15px;
        height: 15px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-icon svg {
        width: 13px;
        height: 13px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-icon svg,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-icon svg {
        width: 12px;
        height: 12px;
    }

    .ecommerce-activity-title {
        font-size: 12px;
        line-height: 17px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-title {
        font-size: 11px;
        line-height: 16px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-title,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-title {
        font-size: 10px;
        line-height: 15px;
    }

    .ecommerce-activity-meta {
        font-size: 10px;
        line-height: 14px;
    }

    .ecommerce-activity-card.is-mid .ecommerce-activity-meta {
        font-size: 9px;
        line-height: 13px;
    }

    .ecommerce-activity-card.is-back .ecommerce-activity-meta,
    .ecommerce-activity-card.is-entering-back .ecommerce-activity-meta {
        font-size: 9px;
        line-height: 12px;
    }

    .ecommerce-activity-card.is-front .ecommerce-activity-status {
        display: none;
    }

    .ecommerce-banner-trust {
        gap: 10px;
    }

    .ecommerce-banner-trust-label {
        font-size: 9px;
        line-height: 14px;
        letter-spacing: 0.64px;
        padding: 0 8px;
    }

    .ecommerce-banner-glow--center {
        display: none;
    }
    /* Banner / Hero Section */

    /* Header */
    .header__panel-actions .header__action_text,
    .header__panel-actions .header__action-btn {
        width: 100%;
        text-align: center;
    }

    /* Header */

    /* Mockup Demo Modal */
    .mockup-card-create-modal {
        padding: 8px;
    }

    .mockup-card-create-modal-content {
        border-radius: 14px;
    }

    .mockup-card-create-modal-left {
        border-radius: 14px 14px 0 0;
        padding: 10px;
    }

    .mockup-card-create-modal-left img {
        height: 170px;
    }

    .mockup-card-create-modal-right {
        padding: 14px;
    }

    .mockup-card-create-modal-right .modal-title {
        font-size: 18px;
        line-height: 24px;
    }

    .mockup-card-create-modal-right .tag-badge {
        padding: 4px 10px;
        font-size: 10px;
    }

    .mockup-card-create-modal-right .modal-actions .btn-primary {
        padding: 10px 14px;
        font-size: 12px;
        line-height: 17px;
    }
    /* Mockup Demo Modal */

    /* Floating Promo Element */
    .ecommerce-banner-floating-elements {
        bottom: 10px;
        right: 10px;
        left: auto;
        width: auto;
        max-width: fit-content;
        padding: 5px 8px;
    }

    .floating-element-icon {
        width: 32px;
        height: 32px;
        margin-right: 6px;
    }

    .scroll-progress-circle {
        width: 32px;
        height: 32px;
    }

    .floating-element-icon .icon-inner svg {
        width: 14px;
        height: 14px;
    }

    .floating-default-badge {
        font-size: 10px;
        line-height: 13px;
        padding: 3px 7px;
    }

    .floating-element-close {
        width: 20px;
        height: 20px;
    }
    /* Floating Promo Element */

    /* Site Footer */
    .ecommerce-site-footer {
        padding: 20px 0;
    }
    .ecommerce-footer-inner {
        gap: 14px;
    }
    .ecommerce-footer-logo {
        max-width: 100px;
    }
    .ecommerce-footer-nav {
        gap: 8px 12px;
    }
    .ecommerce-footer-nav a {
        font-size: 11px;
        line-height: 16px;
    }
    /* Site Footer */

    /* FAQs Section */
    .ecommerce-faqs-section {
        padding: 48px 0;
    }
    .ecommerce-faqs-list .faq-trigger {
        padding: 12px;
    }
    .ecommerce-faqs-list .faq-question {
        font-size: 12px;
        line-height: 18px;
    }
    .ecommerce-faqs-list .faq-answer {
        padding: 0 12px 12px;
        font-size: 12px;
        line-height: 18px;
    }
    /* FAQs Section */

    /* Customer Reviews Section */
    .ecommerce-reviews-section {
        padding: 48px 0;
    }
    .reviews-card {
        padding: 12px;
    }
    .reviews-card-quote {
        font-size: 12px;
        line-height: 19px;
    }
    .ecommerce-reviews-cta {
        max-width: 100%;
        width: calc(100% - 16px);
        bottom: 12px;
        padding: 10px;
        gap: 8px;
    }
    .reviews-cta-btn {
        padding: 9px 12px;
        font-size: 12px;
        line-height: 16px;
    }
    /* Customer Reviews Section */

    /* Thrive Section */
    .ecommerce-thrive-section {
        padding: 48px 0;
    }
    .thrive-tabs-container {
        margin-bottom: 20px;
        margin-left: -8px;
        margin-right: -8px;
        padding: 2px 8px 6px;
    }
    .thrive-grid {
        gap: 8px;
    }
    .thrive-card-title {
        line-height: 17px;
    }
    /* Thrive Section */

    /* Core Features Section */
    .ecommerce-core-features-section {
        padding: 48px 0;
    }
    .ecommerce-core-features-header {
        margin-bottom: 20px;
    }
    .core-feature-row,
    .core-feature-card {
        border-radius: 14px;
    }
    .core-feature-row .core-feature-copy {
        padding: 16px 16px 12px;
    }
    .core-feature-row .core-feature-visual {
        padding: 0 10px 10px;
    }
    .core-features-grid {
        margin-bottom: 12px;
    }
    .core-feature-card {
        padding: 16px;
    }
    .core-feature-name {
        font-size: 16px;
        line-height: 22px;
    }
    .core-feature-text {
        font-size: 12px;
        line-height: 19px;
    }
    .core-feature-pills li {
        padding: 4px 8px;
        font-size: 10px;
        line-height: 14px;
        gap: 4px;
    }
    .core-feature-card .core-feature-visual {
        padding-top: 14px;
    }
    /* Core Features Section */

    /* Compare Pricing Section */
    .ecommerce-compare-row {
        padding: 12px;
    }

    .ecommerce-compare-status,
    .ecommerce-compare-legacy {
        font-size: 12px;
        line-height: 17px;
    }

    .ecommerce-show-all-btn,
    .ecommerce-compare-skip-link {
        font-size: 12px;
        line-height: 17px;
    }
    /* Compare Pricing Section */

    /* Pricing / Plans Section */
    .pricing-toggle-btn {
        font-size: 12px;
        line-height: 17px;
        padding: 9px 10px;
    }
    .pricing-save-pill {
        font-size: 9px;
        line-height: 12px;
        padding: 2px 6px;
    }
    .ecommerce-pricing-card-left,
    .ecommerce-pricing-card-right {
        padding: 18px 14px;
    }
    .pricing-amount {
        font-size: 34px;
        line-height: 34px;
    }
    .pricing-offer-title {
        font-size: 18px;
        line-height: 25px;
    }
    .pricing-cta-btn {
        font-size: 14px;
        line-height: 20px;
    }
    .pricing-feature-price {
        padding-left: 0;
    }
    /* Pricing / Plans Section */

    /* Platform Builder Showcase Section */
    .ecommerce-workflow-showcase-section {
        padding: 48px 0;
    }
    .ecommerce-builder-showcase {
        border-radius: 12px;
    }
    .sidebar-header {
        padding: 10px;
    }
    .sidebar-links {
        padding: 8px;
    }
    .sidebar-links .tab-link {
        height: 36px;
        font-size: 12px;
    }
    .builder-video-canvas {
        padding: 10px;
        gap: 8px;
    }
    .video-container {
        max-height: 220px;
        aspect-ratio: 16 / 9;
    }
    .video-caption {
        font-size: 12px;
        line-height: 17px;
    }
    .platform-footer-pills {
        margin-top: 16px;
        gap: 6px;
    }
    .footer-pill {
        font-size: 10px;
        line-height: 13px;
        padding: 6px 9px;
    }
    /* Platform Builder Showcase Section */
}