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

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

a {
    text-decoration: none;
}

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

/* Common Global Styles */
.global-dark-badge {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 33554400px;
    background: #FFFFFF0D;
}

.global-light-badge {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    text-align: center;
    color: #6C4CF1;
    padding: 6px 12px;
    border-radius: 33554400px;
    background: #6C4CF11A;
}

.classified-global-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 46px;
    line-height: 51px;
    letter-spacing: -0.92px;
    text-align: center;
    text-transform: capitalize;
    color: #14122B;
}

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

.classified-global-description {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #6B6880;
}

.global-description-highlight-text-light {
    font-weight: 700;
    color: #14122B;
}

.global-description-highlight-text-dark {
    font-weight: 700;
    color: #FFFFFF;
}

.classified-global-btn {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    border-radius: 33554400px;
    background: #6752EB;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

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

@media (max-width: 1280px) {
    .classified-global-title {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: -0.84px;
    }
}

@media (max-width: 991px) {
    .classified-global-title {
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -0.72px;
    }
    .classified-global-description {
        font-size: 17px;
        line-height: 26px;
    }
    .global-dark-badge,
    .global-light-badge {
        letter-spacing: 0.45px;
    }
}

@media (max-width: 768px) {
    .classified-global-title {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -0.64px;
    }
    .classified-global-description {
        font-size: 16px;
        line-height: 24px;
    }
    .global-dark-badge,
    .global-light-badge {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0.4px;
        padding: 5px 10px;
    }
    .classified-global-btn {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 576px) {
    .classified-global-title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -0.5px;
    }
    .classified-global-description {
        font-size: 15px;
        line-height: 23px;
    }
    .global-dark-badge,
    .global-light-badge {
        font-size: 10px;
        line-height: 14px;
        padding: 5px 10px;
    }
    .classified-global-btn {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 387px) {
    .classified-global-title {
        font-size: 26px;
        line-height: 30px;
        letter-spacing: -0.4px;
    }
    .classified-global-description {
        font-size: 14px;
        line-height: 20px;
    }
}

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

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

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

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

header.classified-header-scrolled nav.navbar-custom {
    background: #0B0A1FF2;
    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: #0B0A1F;
    border-bottom: 1px solid #FFFFFF0D;
    width: 100%;
    transition: 0.3s ease;
}

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

header .classified-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;
}

.header__nav-list li .header__nav-link {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFFCC;
    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: #fff;
    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: 'Bricolage Grotesque';
    font-weight: 700;
    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 {
    letter-spacing: -0.12px;
    padding: 12px 20px;
    white-space: nowrap;
}

.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;
}

/* Hero Banner Section */
.classified-hero-banner {
    position: relative;
    padding: 124px 0 40px 0;
    background: #0B0A1F;
    overflow: hidden;
}

.classified-hero-banner::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 700px;
    left: calc(50% - 900px / 2);
    top: -250px;
    background: radial-gradient(63.34% 81.44% at 50% 50%, rgba(108, 76, 241, 0.55) 0%, rgba(74, 47, 208, 0.15) 45%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.6;
    filter: blur(94px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.classified-hero-banner .container {
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.classified-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 121px;
}

.classified-subtitle-pill {
    background: #FFFFFF0A;
    border: 1px solid #FFFFFF1A;
    border-radius: 100px;
    padding: 6px 12px;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 1.98px;
    text-transform: uppercase;
    color: #FFFFFFCC;
    margin-bottom: 24px;
}

.classified-subtitle-pill .highlight-pill {
    color: #FB4F87;
}

.classified-hero-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 64px;
    line-height: 65px;
    letter-spacing: -1.6px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.classified-hero-title .global-title-highlight-text {
    font-family: 'Playfair Display';
    font-style: italic;
    color: #FB4F87;
}

.classified-hero-description {
    max-width: 984px;
    margin-bottom: 32px;
    color: #FFFFFFB2;
}

.classified-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.classified-hero-actions .classified-btn-primary {
    padding: 17px 26px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.classified-hero-actions .classified-btn-outline {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 14px 24px;
    transition: all 0.3s ease;
}

.classified-hero-actions .classified-btn-outline:hover {
    background: #6752EB;
    border-color: #6752EB;
}

.classified-feature-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.classified-feature-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #14122B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: 0.3s ease;
}

.badge-icon-box {
    width: 36px;
    height: 36px;
    background: rgba(108, 76, 241, 0.16);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.badge-item:hover .badge-icon-box {
    transform: translateX(-1px) scale(1.05);
}

.badge-item:hover .badge-icon-box.icon-box-purple {
    background: rgba(108, 76, 241, 0.35);
}

.badge-item:hover .badge-icon-box.icon-box-red {
    background: rgba(255, 46, 99, 0.35);
}

.badge-item:hover .badge-icon-box.icon-box-green {
    background: rgba(0, 197, 102, 0.35);
}

.badge-icon-box.icon-box-purple {
    background: rgba(108, 76, 241, 0.16);
}

.badge-icon-box.icon-box-red {
    background: rgba(255, 46, 99, 0.16);
}

.badge-icon-box.icon-box-green {
    background: rgba(0, 197, 102, 0.16);
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-top-text {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
}

.badge-title {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.classified-hero-info-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.classified-hero-info-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.classified-hero-description-2 {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
}

.classified-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;
}

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

.classified-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;
}

.classified-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);
    }
}

.classified-trusted-by-section {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    border-top: 1px solid #FFFFFF0D;
}

.classified-trusted-by-section .container {
    max-width: 1280px;
}

.classified-trusted-by-section .trusted-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 2.42px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF80;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.trusted-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.trusted-marquee-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: trustedMarqueeScroll 25s linear infinite;
}

.classified-trusted-by-section .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trusted-logo-img {
    opacity: 0.6;
    transition: all 0.3s ease;
    width: 100%;
}

.trusted-logo-img:hover {
    opacity: 1;
}

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

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

.classified-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: #FF2E6326;
    color: #FF2E63;
    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;
}

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

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

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

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

/* Marketplace Stats & Interactive Showcase Section */
.classified-stats-showcase {
    position: relative;
    padding: 130px 0 96px 0;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.classified-stats-showcase .classified-stats-orbit-diagram,
.classified-stats-showcase .classified-pills-stats-showcase-wrapper {
    width: 100%;
}

.classified-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 64px;
}

.classified-stats-grid .stat-number {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 56px;
    line-height: 56px;
    text-align: center;
    color: #6C4CF1;
    margin-bottom: 12px;
}

.classified-stats-grid .stat-label {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #64748B;
    margin: 0;
}

.classified-stats-title {
    margin-bottom: 16px;
}

.classified-stats-description {
    max-width: 670px;
    margin: 0 auto 40px auto;
}

.classified-bottom-pills {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bottom-pill-item {
    background: #FFFFFF;
    border: 1px solid #ECE8FA;
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #6B6880;
    transition: all 0.25s ease;
}

.bottom-pill-item:hover {
    border-color: #6C4CF166;
    box-shadow: 0px 6px 18px rgba(108, 76, 241, 0.12);
    color: #6C4CF1;
    transform: translateY(-1px);
}

.classified-arc {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.classified-arc__stage {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1440px;
    height: 360px;
    transform: translateX(-50%);
    transform-origin: top center;
}

.classified-arc__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #ECE8FA;
    pointer-events: none;
}

.classified-arc__ring--1 {
    width: 1010px;
    height: 1010px;
    left: 206px;
    top: 48px;
}

.classified-arc__ring--2 {
    width: 851px;
    height: 851px;
    left: 286px;
    top: 133px;
}

.classified-arc__center-orbit {
    position: absolute;
    left: 720px;
    top: 118px;
    width: 0;
    height: 0;
    z-index: 6;
    animation: lpSpin 9s linear infinite;
}

.classified-arc__center {
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    border-radius: 100px;
    background: #FAFAFB;
    border: 1.671px solid #ECE8FA;
    box-shadow: 0 0 0 6px rgba(197, 236, 253, 0.55), 0 14px 28px rgba(20, 18, 43, 0.12);
    animation: lpCenterUpright 9s linear infinite;
}

@keyframes lpCenterUpright {
    from {
        transform: translate(-50%, -50%) translateY(-26px) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) translateY(-26px) rotate(-360deg);
    }
}

.classified-arc__center span {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    overflow: hidden;
    background: #C5ECFD;
}

.classified-arc__center img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.classified-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.classified-orbit--outer {
    width: 1010px;
    height: 1010px;
    left: 206px;
    top: 48px;
    animation: lpSpin 48s linear infinite;
}

.classified-orbit--inner {
    width: 851px;
    height: 851px;
    left: 286px;
    top: 133px;
    animation: lpSpin 42s linear infinite reverse;
}

.classified-orbit__el {
    position: absolute;
    will-change: transform;
}

.classified-orbit--outer .classified-orbit__el {
    animation: lpSpinCcw 48s linear infinite;
}

.classified-orbit--inner .classified-orbit__el {
    animation: lpSpinCw 42s linear infinite;
}

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

@keyframes lpSpinCcw {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes lpSpinCw {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.classified-arc__fade {
    position: absolute;
    bottom: 0;
    width: 300px;
    height: 150px;
    pointer-events: none;
    z-index: 3;
}

.classified-arc__fade--l {
    left: 11%;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.classified-arc__fade--r {
    right: 11%;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.classified-av {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 100px;
    background: #FAFAFB;
    border: 1.671px solid #ECE8FA;
}

.classified-av span {
    width: 67px;
    height: 67px;
    border-radius: 999px;
    overflow: hidden;
    display: block;
}

.classified-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.classified-av--y span {
    background: #FFD9A2;
}

.classified-av--b span {
    background: #C5ECFD;
}

.classified-av--r span {
    background: #FFC7D6;
}

.classified-check {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #00C566;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 197, 102, 0.28);
}

.classified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    background: #FFFFFF;
    border: 1px solid #ECE8FA;
    border-radius: 999px;
    box-shadow: 0 6px 8px rgba(20, 18, 43, 0.06);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #14122B;
    white-space: nowrap;
}

.classified-pill svg {
    display: block;
    flex-shrink: 0;
}

.classified-pill--pay {
    background: #EFFCF5;
    border: 0.5px solid #0F9B63;
    color: #0F9B63;
    padding: 6.5px 12.5px;
}

.classified-pill--boost {
    background: #FFF0F5;
    border: none;
    color: #FF2E63;
    padding: 6px 12px;
}

.classified-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid #ECE8FA;
    box-shadow: 0 6px 8px rgba(20, 18, 43, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.classified-box i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.classified-box--home i {
    background: #FFF6EE;
}

.classified-box--car i {
    background: #F3F0FF;
}

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

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

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

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

.classified-possible-title {
    margin-bottom: 16px;
}

.classified-possible-subtitle {
    margin-bottom: 0px;
}

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

.classified-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;
}

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

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

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

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

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

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

.classified-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;
}

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

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

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

.classified-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;
}

.classified-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;
}

.classified-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;
}

.classified-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;
}

.classified-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;
}

.classified-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.classified-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;
}

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

.classified-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;
}

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

.classified-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;
}

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

.classified-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;
}

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

.classified-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;
}

.classified-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 */
.classified-compare-section {
    padding: 96px 0;
    background: #FFFFFF;
}

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

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

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

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

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

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

.classified-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;
}

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

.classified-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;
}

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

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

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

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

.classified-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;
}

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

.classified-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;
}

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

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

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

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

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

.classified-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;
}

.classified-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;
}

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

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

.classified-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;
}

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

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

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

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

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

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

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

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

.classified-compare-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

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

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

.classified-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;
}

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

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

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

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

.classified-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;
}

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

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

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

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

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

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

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

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

.classified-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;
}

.classified-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;
}

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

.pricing-offer-badge {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    background: #6752EB;
    border-radius: 9999px;
    padding: 6px 12px;
    box-shadow: 0px 8px 20px rgba(108, 76, 241, 0.28);
    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: #0F2341;
    background: #F4F1FE;
    border: 1px solid rgba(108, 76, 241, 0.5);
    border-radius: 20px;
    padding: 16px;
}

.pricing-save-banner strong {
    font-weight: 800;
    color: #6752EB;
}

.pricing-cta-btn {
    width: 100%;
    margin-top: 24px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 17px;
    line-height: 25.5px;
    box-shadow: 0px 6px 18px rgba(108, 76, 241, 0.25);
    text-align: 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;
}

.classified-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: #F4F1FE;
    display: inline-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 & Sticky Navigation Styling */
.classified-evolution-section {
    padding: 96px 0;
    background: #F6F4FF;
    position: relative;
    overflow: hidden;
}

.classified-evolution-section .container {
    max-width: 1240px;
}

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

.classified-evolution-badge {
    margin-bottom: 20px;
}

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

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

.classified-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;
}

.classified-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;
}

.classified-evolution-subtitle {
    margin-bottom: 48px;
}

.classified-pillar-block {
    padding: 0px 0 100px 0;
}

.classified-pillar-block:last-of-type {
    padding: 0;
}

.classified-pillar-block .classified-pillar-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.pillar-meta {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #ECE8FA;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.pillar-number {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 96px;
    line-height: 96px;
    color: rgba(108, 76, 241, 0.15);
}

.pillar-badge {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 1.98px;
    text-transform: uppercase;
    color: #6B6880;
}

.pillar-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.64px;
    color: #14122B;
    margin-bottom: 16px;
}

.pillar-desc {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #6B6880;
    margin-bottom: 24px;
}

.pillar-desc-badge {
    background: #AF139B;
    border-radius: 9999px;
    padding: 3px 14px 3px 3px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    margin-bottom: 24px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pillar-features-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-feature-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #ECE8FA;
    border-radius: 16px;
    transition: 0.3s ease;
}

.pillar-feature-card:hover .card-icon {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0px 10px 10px rgb(0 0 0 / 4%);
}

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

.pillar-feature-card .card-icon {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: 0.5px solid rgba(103, 82, 235, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.pillar-feature-card .card-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #14122B;
}

.pillar-feature-card .card-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding-left: 2px;
}

.card-features-list.three-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pillar-feature-card .feature-item {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #14122B;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pillar-feature-card .feature-item::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6C4CF1;
}

.classified-pillar-content-visual img {
    width: 100%;
}

.classified-sticky-tabs-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(130px) !important;
    z-index: 999;
    width: auto;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none;
}

.classified-sticky-tabs-container.is-visible {
    transform: translateX(-50%) translateY(0) !important;
}

.classified-sticky-tabs-inner {
    display: flex;
    background: #fff;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 15%);
    border-radius: 100px;
    padding: 6px;
    gap: 4px;
    pointer-events: auto;
}

.classified-sticky-tabs-inner .tab-item {
    padding: 10px 20px;
    font-family: 'Bricolage Grotesque';
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #6752EB;
    border-radius: 100px;
    transition: 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.1px;
}

.classified-sticky-tabs-inner .tab-item:hover,
.classified-sticky-tabs-inner .tab-item.active {
    background: #6752EB;
    color: #FFFFFF;
}

/* Dashboard Overview Section */
.classified-dashboard-overview-section {
    position: relative;
    padding: 96px 0;
    background: #0B0A1F;
    overflow: hidden;
}

.classified-dashboard-overview-section .container {
    max-width: 1110px;
    position: relative;
    z-index: 1;
}

.dashboard-bg-word {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 22vw;
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.1) 0%, rgba(115, 115, 115, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    width: max-content;
    max-width: none;
    z-index: 0;
}

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

.classified-dashboard-badge {
    margin-bottom: 20px;
}

.classified-dashboard-title {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.classified-dashboard-desc {
    color: rgba(255, 255, 255, 0.6);
    max-width: 708px;
    margin: 24px auto 0;
}

.classified-dashboard-preview {
    position: relative;
    margin-top: 64px;
    background: #F7F9FB;
    border-radius: 20px;
    box-shadow: 0px 40px 90px rgba(103, 73, 226, 0.55);
    overflow: hidden;
}

.dashboard-preview-tabs {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 18px 24px 0;
    border-bottom: 1.5px solid #EEEFF5;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}

.dashboard-preview-tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.dashboard-preview-tabs.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.dashboard-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    background: transparent;
    padding: 0 0 15px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #696B75;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.dashboard-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 3px;
    background: #6749E2;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-tab-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.dashboard-tab.is-active,
.dashboard-tab:hover {
    color: #6749E2;
}

.dashboard-tab.is-active::after {
    transform: scaleX(1);
}

.dashboard-tab.is-active .dashboard-tab-icon {
    opacity: 1;
    filter: none;
}

.dashboard-preview-content {
    padding: 24px;
}

.dashboard-tab-panel {
    display: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-tab-panel.is-active {
    display: block;
}

.dashboard-tab-panel.is-switching {
    opacity: 0;
    transform: translateY(10px);
}

.dashboard-tab-panel img {
    width: 100%;
    border-radius: 8px;
}

.classified-dashboard-dual {
    margin-top: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashboard-dual-title {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.dashboard-dual-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 1024px;
}

.dashboard-dual-card {
    background: #14122B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: 0.3s ease;
}

.dashboard-dual-card:hover {
    border-color: rgba(103, 82, 235, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.dual-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.dashboard-dual-card:hover .dual-card-icon {
    transform: translateY(-1px) scale(1.05);
}

.dual-card-icon.sellers {
    background: rgba(108, 76, 241, 0.15);
}

.dashboard-dual-card:hover .dual-card-icon.sellers {
    background: rgba(108, 76, 241, 0.35);
}

.dashboard-dual-card:hover .dual-card-icon.owner {
    background: rgba(255, 46, 99, 0.35);
}

.dual-card-icon.owner {
    background: rgba(255, 46, 99, 0.15);
}

.dashboard-dual-card h4 {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0 0 12px;
}

.dashboard-dual-card > p {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px;
}

.dashboard-dual-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-dual-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.8);
}

.dual-check {
    width: 16px;
    height: 16px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.classified-dashboard-features-bar {
    margin: 64px auto 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 34px;
    border-radius: 20px;
    background: linear-gradient(168deg, #6749E2 0%, #9249EB 100%);
}

.dashboard-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.dashboard-feature-item:hover .feature-item-icon {
    transform: translateY(-1px) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
}

.dashboard-feature-item h4 {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0 0 8px;
}

.dashboard-feature-item p {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 285px;
}

.classified-dashboard-cta {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.classified-dashboard-cta p {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    text-align: center;
}

.dashboard-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 38px;
    background: #00C66D;
    box-shadow: 0px 8px 24px rgba(0, 198, 109, 0.35);
    font-weight: 700;
    font-size: 17px;
    line-height: 25px;
}

.dashboard-cta-btn:hover {
    background: #00B35F;
    box-shadow: 0px 12px 28px rgba(0, 198, 109, 0.35);
}

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

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

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

.classified-how-badge {
    margin-bottom: 20px;
}

.classified-how-title {
    margin: 0;
}

.classified-how-desc {
    max-width: 716px;
    margin: 16px auto 0;
}

.classified-how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.how-step-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ECE8FA;
    border-radius: 18px;
    box-shadow: 0px 8px 24px rgba(20, 18, 43, 0.06);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.3s ease;
}

.how-step-card:hover {
    box-shadow: 0px 16px 36px rgba(20, 18, 43, 0.1);
}

.how-step-label {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16.5px;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    color: #6C4CF1;
}

.how-step-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #14122B;
    margin: 8px 0 0;
}

.how-step-desc {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6B6880;
    margin: 8px 0 0;
}

.how-step-mockup {
    margin-top: 16px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ECE8FA;
    background: #F9F8FF;
    overflow: hidden;
}

.how-step-mockup img {
    width: 100%;
    object-fit: cover;
}

.how-step-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 20px auto 0;
    padding: 6px 12px;
    border: 1px solid rgba(108, 76, 241, 0.3);
    border-radius: 9999px;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #6C4CF1;
    background: transparent;
    transition: 0.3s ease;
}

.how-step-btn:hover {
    background: rgba(108, 76, 241, 0.08);
    border-color: rgba(108, 76, 241, 0.5);
    color: #6C4CF1;
}

.how-step-btn svg {
    transition: 0.3s ease;
}

.how-step-btn:hover svg {
    transform: translateX(2px);
}

.how-step-arrow {
    position: absolute;
    top: 40px;
    right: -32px;
    width: 40px;
    height: 64px;
    z-index: 2;
    pointer-events: none;
}

.how-step-arrow img {
    width: 100%;
    height: 100%;
    display: block;
}

.how-step-card:last-child .how-step-arrow {
    display: none;
}

/* Platform Showcase Section Styling */
.classified-workflow-showcase-section {
    background: 
        radial-gradient(69.63% 93.39% at 50% 35%, rgba(108, 76, 241, 0.4) 0%, rgba(0, 0, 0, 0) 60%), 
        linear-gradient(180deg, #0B0A1F 0%, #0A0A1B 100%);
    position: relative;
    padding: 96px 0px;
}

.classified-workflow-showcase-section .container {
    max-width: 1200px;
}

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

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

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

.classified-platform-subtitle {
    margin-bottom: 48px;
    max-width: 643px;
    color: rgba(255, 255, 255, 0.6);
}

.classified-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 30px 80px rgba(108, 76, 241, 0.28);
    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: 8px;
    padding: 8px 10px;
    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 {
    background: rgba(108, 76, 241, 0.25);
    color: #FFFFFF;
}

.sidebar-links .tab-link.active {
    background: rgba(108, 76, 241, 0.25);
    color: #FFFFFF;
}

.sidebar-links .tab-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: #4F46E5;
    border-radius: 0 40px 40px 0;
}

.sidebar-links .tab-link.dropdown-toggle .tab-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 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: #6366F1;
}

.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;
}

/* Performance & Scale Section */
.classified-performance-section {
    position: relative;
    padding: 96px 0 64px 0;
    background: #0B0A1F;
    overflow: hidden;
}

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

.classified-performance-header,
.classified-performance-subheader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.classified-performance-badge {
    margin-bottom: 20px;
}

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

.classified-performance-desc {
    color: rgba(255, 255, 255, 0.6);
    max-width: 646px;
    margin: 0 auto;
}

.performance-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.performance-stat-card,
.performance-feature-card {
    background: #14122B;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    transition: 0.3s ease;
}

.performance-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
}

.performance-stat-card:hover,
.performance-feature-card:hover {
    border-color: rgba(103, 82, 235, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.performance-stat-value {
    margin: 0;
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    color: #6C4CF1;
}

.performance-stat-label {
    margin: 8px 0 0;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

.performance-stat-note {
    margin: 4px 0 0;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.performance-feature-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.performance-feature-grid--two {
    grid-template-columns: repeat(2, 1fr);
}

.performance-feature-grid--three {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}

.performance-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 28px;
}

.performance-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: 0.3s ease;
}

.performance-feature-card:hover .performance-feature-icon {
    background: rgba(108, 76, 241, 0.35);
    border-color: rgba(108, 76, 241, 0.35);
    transform: translateY(-1px) scale(1.05);
}

.performance-feature-title {
    margin: 16px 0 0;
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

.performance-feature-desc {
    margin: 8px 0 0;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.performance-savings {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 80px;
}

.performance-savings-glow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(672px, 100%);
    height: 358px;
    background: radial-gradient(circle at 50% 10%, rgba(255, 46, 99, 0.35) 0%, rgba(182, 61, 170, 0.25) 22%, rgba(108, 76, 241, 0.15) 44%, rgba(0, 0, 0, 0) 80%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.performance-savings-amount,
.performance-savings-label,
.performance-savings-prices,
.performance-savings-note,
.performance-savings-btn {
    position: relative;
    z-index: 1;
}

.performance-savings-amount {
    margin: 0;
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 140px;
    line-height: 140px;
    background: linear-gradient(155.34deg, #6C4CF1 0%, #FF2E63 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 18px 17.6px rgba(0, 0, 0, 0.35);
}

.performance-savings-label {
    margin: 12px 0 0;
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 56px;
    line-height: 50px;
    letter-spacing: -1.4px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.performance-savings-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
}

.performance-price-old {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.performance-price-divider {
    width: 1.3px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

.performance-price-new {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: #FFFFFF;
}

.performance-savings-note {
    margin: 12px 0 0;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.performance-savings-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 16px 26px;
    background: #00C566;
    box-shadow: 0px 8px 12px rgba(0, 197, 102, 0.4);
    font-weight: 600;
    font-size: 15px;
    line-height: 22.5px;
    letter-spacing: -0.15px;
}

.performance-savings-btn:hover {
    background: #00B35A;
    box-shadow: 0px 12px 20px rgba(0, 197, 102, 0.45);
}

.classified-performance-subheader {
    margin-top: 96px;
}

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

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

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

.classified-core-features-badge {
    margin-bottom: 0;
}

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

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

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

.core-feature--lavender {
    background: #F3F0FF;
}

.core-feature--pink {
    background: #FFF0F5;
}

.core-feature--mint {
    background: #EFFCF5;
}

.core-feature--peach {
    background: #FFF6EE;
}

.core-feature--sky {
    background: #EFF6FF;
}

.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 {
    background: rgba(108, 76, 241, 0.15);
    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: 20px;
    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 */
.classified-thrive-section {
    padding: 96px 0px;
    background: #F6F4FF;
    overflow: hidden;
}

.classified-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;
}

.thrive-subtitle {
    margin-bottom: 40px;
}

.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: 7px 14px;
    background: #FFFFFF;
    border: 1px solid #ECE8FA;
    border-radius: 9999px;
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #14122B;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    outline: none;
}

.thrive-tab-btn:hover {
    border-color: #6C4CF1;
    color: #6C4CF1;
}

.thrive-tab-btn.is-active {
    background: #6C4CF1;
    border-color: #6C4CF1;
    color: #FFFFFF;
    box-shadow: 0px 4px 6px -1px #C7D2FE, 0px 2px 4px -2px #C7D2FE;
}

.thrive-tab-btn .count {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    color: #6C4CF1;
    opacity: 0.7;
    transition: 0.3s ease;
    padding: 0px 6px;
    background: #F6F4FF;
    border-radius: 99px;
}

.thrive-tab-btn:hover .count {
    color: #6C4CF1;
    opacity: 1;
}

.thrive-tab-btn.is-active .count {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

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

.thrive-card {
    background: #FFFFFF;
    border: 1px solid #ECE8FA;
    border-radius: 16px;
    padding: 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:hover {
    box-shadow: 0px 10px 24px -12px rgba(14, 16, 32, 0.18);
}

.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-core-fundamentals {
    background: #F3F0FF;
}

.thrive-icon-search-discovery {
    background: #EFF6FF;
}

.thrive-icon-ads-engine {
    background: #EFFCF5;
}

.thrive-icon-monetization {
    background: #FFF6EE;
}

.thrive-icon-payments-wallet {
    background: #FFF0F5;
}

.thrive-icon-user-experience {
    background: #F3F0FF;
}

.thrive-icon-maps-location {
    background: #EFF6FF;
}

.thrive-icon-trust-safety {
    background: #EFFCF5;
}

.thrive-icon-marketing-growth {
    background: #FFF6EE;
}

.thrive-icon-admin-developer {
    background: #FFF0F5;
}

.thrive-card-title {
    font-family: 'Bricolage Grotesque';
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #14122B;
    margin: 0 0 12px 0;
}

.thrive-card-tag {
    padding: 4px 10px;
    border-radius: 9999px;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
    color: #14122B;
}

.core-fundamentals-tag {
    background: #F3F0FF;
}

.search-discovery-tag {
    background: #EFF6FF;
}

.ads-engine-tag {
    background: #EFFCF5;
}

.monetization-tag {
    background: #FFF6EE;
}

.payments-wallet-tag {
    background: #FFF0F5;
}

.user-experience-tag {
    background: #F3F0FF;
}

.maps-location-tag {
    background: #EFF6FF;
}

.trust-safety-tag {
    background: #EFFCF5;
}

.marketing-growth-tag {
    background: #FFF6EE;
}

.admin-developer-tag {
    background: #FFF0F5;
}

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

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

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

.classified-reviews-title {
    margin: 20px 0 0;
    color: #FFFFFF;
}

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

.classified-reviews-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.reviews-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #14122B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: 0.3s ease;
}

.reviews-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.reviews-stat-card:hover .reviews-stat-icon {
    transform: translateX(-1px) scale(1.05);
}

.reviews-stat-card:hover .reviews-stat-icon.reviews-stat-icon--purple {
    background: rgba(108, 76, 241, 0.35);
}

.reviews-stat-card:hover .reviews-stat-icon.reviews-stat-icon--pink {
    background: rgba(255, 46, 99, 0.35);
}

.reviews-stat-card:hover .reviews-stat-icon.reviews-stat-icon--green {
    background: rgba(0, 197, 102, 0.35);
}

.reviews-stat-icon--purple {
    background: rgba(108, 76, 241, 0.16);
}

.reviews-stat-icon--pink {
    background: rgba(255, 46, 99, 0.16);
}

.reviews-stat-icon--green {
    background: rgba(0, 197, 102, 0.16);
}

.reviews-stat-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.reviews-stat-copy strong {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
}

.reviews-stat-copy small {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(255, 255, 255, 0.55);
}

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

.classified-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;
}

.classified-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: #14122B;
    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-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 9999px;
    background: rgba(108, 76, 241, 0.18);
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #B9A8FF;
    white-space: nowrap;
}

.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;
}

.classified-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: #14122B;
    border: 1px solid rgba(108, 76, 241, 0.3);
    box-shadow: 0px 12px 40px 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-weight: 600;
    font-size: 14px;
    line-height: 21px;
    white-space: nowrap;
}

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

.classified-faqs-section .container {
    max-width: 850px;
}

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

.classified-faqs-title {
    max-width: 640px;
    margin: 24px 0 0;
    color: #FFFFFF;
}

.classified-faqs-desc {
    margin: 16px 0 0;
    color: #9A9EAB;
}

.classified-faqs-list {
    margin-top: 40px;
    background: #14122B;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.classified-faqs-list .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.classified-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;
}

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

.classified-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);
}

.classified-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;
}

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

.classified-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: rgba(255, 255, 255, 0.7);
}

/* Final CTA Section */
.classified-final-cta-section {
    position: relative;
    padding: 112px 0;
    background: #0B0A1F;
    overflow: hidden;
}

.classified-final-cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
    background: radial-gradient(
        ellipse 50% 45% at 50% 40%,
        rgba(108, 76, 241, 0.45) 0%,
        rgba(81, 57, 181, 0.22) 35%,
        rgba(0, 0, 0, 0) 70%
    );
}

.classified-final-cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 896px;
}

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

.classified-final-cta-title {
    margin: 0;
    max-width: 740px;
    color: #FFFFFF;
}

.classified-final-cta-title span {
    color: #FB4F87;
}

.classified-final-cta-desc {
    max-width: 674px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.classified-final-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 17px 26px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    box-shadow: 0 8px 12px rgba(108, 76, 241, 0.4);
}

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

.classified-final-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 */
.classified-site-footer {
    padding: 29px 0;
    background: #0B0A1F;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

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

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

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

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

.classified-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;
}

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

/* Responsive Styles Global */
@media (max-width: 1280px) {
    /* Demo Kits / See What's Possible Section */
    .classified-possible-nav--prev {
        left: -8px;
    }
    
    .classified-possible-nav--next {
        right: -8px;
    }
    /* Demo Kits / See What's Possible Section */

    /* Hero Banner */
    .classified-hero-banner {
        padding: 112px 0 36px;
    }
    .classified-hero-title {
        font-size: 56px;
        line-height: 60px;
        letter-spacing: -1.4px;
    }
    .classified-hero-content {
        padding-bottom: 96px;
    }
    .classified-hero-banner::before {
        width: 760px;
        height: 600px;
        left: calc(50% - 760px / 2);
        top: -220px;
    }
    /* Hero Banner */

    /* Marketplace Stats Showcase */
    .classified-stats-showcase {
        padding: 112px 0 80px;
        gap: 64px;
    }
    .classified-arc {
        height: 310px;
    }
    .classified-arc__stage {
        transform: translateX(-50%) scale(0.86);
    }
    .classified-stats-grid {
        margin-bottom: 56px;
    }
    .classified-stats-grid .stat-number {
        font-size: 48px;
        line-height: 48px;
    }
    /* Marketplace Stats Showcase */

    /* Pricing / Plans Section */
    .classified-pricing-card-left,
    .classified-pricing-card-right {
        padding: 32px;
    }
    .pricing-amount {
        font-size: 54px;
        line-height: 54px;
    }
    /* Pricing / Plans Section */

    /* Big Bang Evolution Section */
    .classified-evolution-title .title-bold {
        font-size: 64px;
        line-height: 60px;
    }
    .classified-evolution-title .title-outline {
        font-size: 34px;
        line-height: 32px;
    }
    .classified-evolution-title .title-outline.evolution {
        font-size: 96px;
        line-height: 90px;
        -webkit-text-stroke: 2.5px #6752EB;
    }
    .classified-pillar-block .classified-pillar-content {
        gap: 36px;
    }
    .pillar-number {
        font-size: 80px;
        line-height: 80px;
    }
    /* Big Bang Evolution Section */

    /* Dashboard Overview Section */
    .classified-dashboard-preview {
        margin-top: 56px;
        border-radius: 18px;
    }
    .dashboard-preview-tabs {
        gap: 28px;
    }
    .classified-dashboard-dual {
        margin-top: 80px;
    }
    .classified-dashboard-features-bar {
        gap: 24px;
        padding: 28px;
    }
    /* Dashboard Overview Section */

    /* How It Works Section */
    .classified-how-steps {
        gap: 20px;
    }
    .how-step-card {
        padding: 18px 20px;
    }
    .how-step-arrow {
        right: -28px;
        width: 36px;
        height: 56px;
    }
    /* How It Works Section */

    /* Platform Builder Showcase Section */
    .classified-builder-showcase {
        grid-template-columns: 220px 1fr;
    }
    .builder-video-canvas {
        padding: 16px;
    }
    .sidebar-links {
        max-height: 480px;
    }
    /* Platform Builder Showcase Section */

    /* Performance & Scale Section */
    .performance-stats-grid,
    .performance-feature-grid {
        gap: 16px;
    }
    .performance-stat-card,
    .performance-feature-card {
        padding: 24px;
    }
    .performance-stat-value {
        font-size: 42px;
        line-height: 42px;
    }
    .performance-savings-amount {
        font-size: 112px;
        line-height: 112px;
    }
    .performance-savings-label {
        font-size: 48px;
        line-height: 44px;
    }
    /* Performance & Scale Section */

    /* 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 */

    /* 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 */
    .classified-reviews-marquees {
        gap: 18px;
        height: 640px;
    }
    .reviews-marquee-track {
        gap: 18px;
    }
    .reviews-card {
        padding: 20px;
    }
    /* Customer Reviews Section */

    /* FAQs Section */
    .classified-faqs-list .faq-trigger {
        padding: 18px 22px;
    }
    .classified-faqs-list .faq-answer {
        padding: 0 22px 22px 52px;
    }
    /* FAQs Section */

    /* Final CTA Section */
    .classified-final-cta-section {
        padding: 96px 0;
    }
    /* Final CTA Section */

    /* Site Footer */
    .classified-footer-nav {
        gap: 22px;
    }
    /* Site Footer */

    /* Floating Promo Element */
    .classified-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 */
}

@media (max-width: 991px) {
    /* 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;
    }
    .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 #FFFFFF0D;
        border-radius: 16px;
        background: #0B0A1F;
        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 */

    /* Hero Banner */
    .classified-hero-banner {
        padding: 96px 0 32px;
    }
    .classified-hero-banner::before {
        width: 620px;
        height: 500px;
        left: calc(50% - 620px / 2);
        top: -180px;
        filter: blur(80px);
    }
    .classified-hero-content {
        padding-bottom: 72px;
    }

    .classified-subtitle-pill {
        letter-spacing: 1.4px;
        margin-bottom: 20px;
        text-align: center;
    }
    .classified-hero-title {
        font-size: 44px;
        line-height: 50px;
        letter-spacing: -1.1px;
        margin-bottom: 20px;
    }
    .classified-hero-description {
        margin-bottom: 28px;
        padding: 0 8px;
    }
    .classified-hero-actions {
        justify-content: center;
        margin-bottom: 20px;
    }
    .classified-feature-badges {
        justify-content: center;
        margin-bottom: 20px;
    }
    .classified-hero-info-badges {
        justify-content: center;
        gap: 16px 20px;
    }
    .classified-trusted-by-section {
        padding-top: 32px;
    }
    /* Hero Banner */

    /* Marketplace Stats Showcase */
    .classified-stats-showcase {
        padding: 80px 0 60px;
        gap: 44px;
    }
    .classified-arc {
        height: 250px;
    }
    .classified-arc__stage {
        transform: translateX(-50%) scale(0.7);
    }
    .classified-arc__fade {
        width: 180px;
        height: 110px;
    }
    .classified-arc__fade--l {
        left: 4%;
    }
    .classified-arc__fade--r {
        right: 4%;
    }
    .classified-stats-grid {
        margin-bottom: 44px;
        flex-wrap: wrap;
    }
    .classified-stats-grid .stat-divider {
        display: none;
    }
    .classified-stats-grid .stat-number {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 8px;
    }
    .classified-stats-description {
        margin-bottom: 32px;
        padding: 0 12px;
    }
    .classified-bottom-pills {
        gap: 10px;
    }
    /* Marketplace Stats Showcase */

    /* Compare Pricing Section */
    .classified-compare-section {
        padding: 88px 0;
    }
    .classified-compare-header {
        margin-bottom: 36px;
        padding: 0 14px;
    }
    .classified-compare-table-head,
    .classified-compare-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 280px) minmax(0, 240px);
    }
    .classified-compare-col-feature,
    .classified-compare-col-classified,
    .classified-compare-col-legacy,
    .classified-compare-feature,
    .classified-compare-status,
    .classified-compare-legacy {
        padding-left: 16px;
        padding-right: 16px;
    }
    .classified-compare-col-classified .classified-compare-head-brand,
    .classified-compare-head-brand {
        font-size: 16px;
        line-height: 24px;
    }
    .classified-compare-group-toggle {
        padding: 16px 18px;
    }
    .classified-compare-group-title {
        font-size: 15px;
        line-height: 22px;
    }
    /* Compare Pricing Section */

    /* Pricing / Plans Section */
    .classified-pricing-section {
        padding: 88px 0;
    }
    .classified-pricing-toggle {
        margin-top: 32px;
    }
    .classified-pricing-card {
        margin-top: 40px;
        grid-template-columns: 1fr;
    }
    .classified-pricing-card-left {
        padding: 32px 28px;
        border-right: 0;
        border-bottom: 1px solid #E2E8F0;
    }
    .classified-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 */

    /* Big Bang Evolution Section */
    .classified-evolution-section {
        padding: 88px 0;
    }
    .classified-evolution-title .title-bold {
        font-size: 52px;
        line-height: 50px;
    }
    .classified-evolution-title .title-outline {
        font-size: 28px;
        line-height: 28px;
        -webkit-text-stroke: 1.25px #6752EB;
    }
    .classified-evolution-title .title-outline.evolution {
        font-size: 72px;
        line-height: 68px;
        letter-spacing: 0.8px;
        -webkit-text-stroke: 2px #6752EB;
    }
    .classified-evolution-subtitle {
        margin-bottom: 40px;
        padding: 0 14px;
    }
    .classified-pillar-block {
        padding: 0 0 72px;
    }
    .classified-pillar-block .classified-pillar-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .classified-pillar-content-visual {
        display: flex;
        justify-content: center;
    }
    .classified-pillar-content-visual img {
        width: auto;
    }
    .pillar-meta {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .pillar-number {
        font-size: 72px;
        line-height: 72px;
    }
    .pillar-title {
        font-size: 28px;
        line-height: 36px;
    }
    .pillar-title br {
        display: none;
    }
    .classified-sticky-tabs-container {
        bottom: 16px;
        width: calc(100% - 28px);
        max-width: 569px;
    }
    .classified-sticky-tabs-inner {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
    .classified-sticky-tabs-inner::-webkit-scrollbar {
        display: none;
    }
    .classified-sticky-tabs-inner .tab-item {
        padding: 10px 16px;
        font-size: 13px;
        line-height: 17px;
        flex-shrink: 0;
    }
    /* Big Bang Evolution Section */

    /* Dashboard Overview Section */
    .classified-dashboard-overview-section {
        padding: 88px 0;
    }
    .dashboard-bg-word {
        top: 12px;
        font-size: 18vw;
    }
    .classified-dashboard-header {
        padding: 0 14px;
    }
    .classified-dashboard-title br {
        display: none;
    }
    .classified-dashboard-desc {
        margin-top: 20px;
        padding: 0 4px;
    }
    .classified-dashboard-preview {
        margin-top: 48px;
        border-radius: 16px;
    }
    .dashboard-preview-tabs {
        gap: 20px;
        padding: 16px 18px 0;
    }
    .dashboard-tab {
        gap: 8px;
        font-size: 15px;
        line-height: 22px;
        padding-bottom: 12px;
    }
    .dashboard-preview-content {
        padding: 18px;
    }
    .classified-dashboard-dual {
        margin-top: 64px;
    }
    .dashboard-dual-title {
        margin-bottom: 28px;
    }
    .dashboard-dual-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 640px;
    }
    .dashboard-dual-card {
        padding: 24px;
    }
    .classified-dashboard-features-bar {
        margin-top: 48px;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 28px 24px;
        border-radius: 16px;
    }
    .classified-dashboard-cta {
        margin-top: 40px;
        padding: 0 14px;
    }
    /* Dashboard Overview Section */

    /* How It Works Section */
    .classified-how-it-works-section {
        padding: 88px 0;
    }
    .classified-how-header {
        padding: 0 14px;
    }
    .classified-how-desc {
        margin-top: 14px;
    }
    .classified-how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    .how-step-card {
        padding: 18px 20px;
        border-radius: 16px;
    }
    .how-step-arrow {
        display: none;
    }
    /* How It Works Section */

    /* Platform Builder Showcase Section */
    .classified-workflow-showcase-section {
        padding: 88px 0;
    }
    .classified-workflow-showcase-section .container {
        overflow: hidden;
        max-width: 100%;
    }
    .classified-listing-header {
        padding: 0 14px;
    }
    .classified-platform-subtitle {
        margin-bottom: 36px;
    }
    .classified-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 */

    /* Performance & Scale Section */
    .classified-performance-section {
        padding: 88px 0 56px;
    }
    .classified-performance-header,
    .classified-performance-subheader {
        padding: 0 14px;
    }
    .classified-performance-desc {
        padding: 0 4px;
    }
    .performance-stats-grid {
        gap: 14px;
        margin-top: 40px;
    }
    .performance-stat-card,
    .performance-feature-card {
        padding: 22px;
        border-radius: 16px;
    }
    .performance-stat-value {
        font-size: 36px;
        line-height: 36px;
    }
    .performance-stat-label {
        font-size: 16px;
        line-height: 24px;
    }
    .performance-feature-grid {
        gap: 14px;
        margin-top: 20px;
    }
    .performance-feature-grid--three {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 32px;
    }
    .performance-feature-title {
        font-size: 17px;
        line-height: 26px;
    }
    .performance-savings {
        margin-top: 64px;
        padding: 0 14px;
    }
    .performance-savings-glow {
        height: 280px;
        filter: blur(24px);
    }
    .performance-savings-amount {
        font-size: 96px;
        line-height: 96px;
    }
    .performance-savings-label {
        font-size: 40px;
        line-height: 38px;
        letter-spacing: -1px;
    }
    .performance-savings-prices {
        gap: 12px;
        margin-top: 18px;
    }
    .performance-price-old {
        font-size: 26px;
        line-height: 34px;
    }
    .performance-price-new {
        font-size: 32px;
        line-height: 38px;
    }
    .performance-price-divider {
        height: 28px;
    }
    .performance-savings-btn {
        margin-top: 28px;
        padding: 16px 24px;
    }
    .classified-performance-subheader {
        margin-top: 72px;
    }
    /* Performance & Scale Section */

    /* Core Features Section */
    .classified-core-features-section {
        padding: 88px 0;
    }
    .classified-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 */

    /* Thrive Section */
    .classified-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;
        padding: 0 5px;
    }
    .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: 13px;
        line-height: 17px;
        margin-bottom: 10px;
    }
    /* Thrive Section */

    /* Customer Reviews Section */
    .classified-reviews-section {
        padding: 88px 0;
    }
    .classified-reviews-header {
        padding: 0 14px;
    }
    .classified-reviews-stats {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
    .classified-reviews-marquee-area {
        margin-top: 48px;
    }
    .classified-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;
    }
    .classified-reviews-cta {
        bottom: 20px;
        gap: 10px;
        padding: 5px 5px 5px 16px;
    }
    /* Customer Reviews Section */

    /* FAQs Section */
    .classified-faqs-section {
        padding: 88px 0;
    }
    .classified-faqs-header {
        padding: 0 14px;
    }
    .classified-faqs-title {
        margin-top: 20px;
    }
    .classified-faqs-list {
        margin-top: 32px;
        border-radius: 14px;
    }
    .classified-faqs-list .faq-trigger {
        padding: 18px 20px;
        gap: 12px;
    }
    .faq-trigger-main {
        gap: 10px;
    }
    .classified-faqs-list .faq-question {
        font-size: 15px;
        line-height: 22px;
    }
    .classified-faqs-list .faq-answer {
        padding: 0 20px 20px 48px;
        font-size: 14px;
        line-height: 22px;
    }
    /* FAQs Section */

    /* Final CTA Section */
    .classified-final-cta-section {
        padding: 88px 0;
    }
    .classified-final-cta-content {
        padding: 0 14px;
    }
    .classified-final-cta-desc {
        margin-top: 20px;
    }
    .classified-final-cta-btn {
        margin-top: 32px;
        padding: 16px 24px;
        font-size: 15px;
        line-height: 22px;
    }
    /* Final CTA Section */

    /* Site Footer */
    .classified-site-footer {
        padding: 24px 0;
    }
    .classified-footer-inner {
        gap: 20px;
        padding: 0 4px;
    }
    .classified-footer-nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .classified-footer-nav a {
        font-size: 13px;
        line-height: 18px;
    }
    /* Site Footer */

    /* Floating Promo Element */
    .classified-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 */

    /* 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 */

    /* Demo Kits / See What's Possible Section */
    .classified-possible-section {
        padding: 72px 0;
    }
    .classified-possible-section .container {
        overflow: visible;
        max-width: 100%;
    }
    .classified-possible-header {
        margin-bottom: 28px;
        padding: 0 14px;
    }
    .classified-possible-nav {
        display: none !important;
    }
    .classified-possible-slider {
        min-width: 0;
        max-width: 100%;
    }
    .classified-possible-mockup-deck,
    .classified-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;
    }
    .classified-possible-mockup-deck::-webkit-scrollbar {
        display: none;
    }
    .classified-possible-mockup-deck::after {
        display: none;
    }
    .classified-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;
    }
    .classified-possible-mockup-card:hover .mockup-overlay,
    .classified-possible-mockup-card.is-hovered .mockup-overlay {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .classified-possible-mockup-card .mockup-overlay {
        padding: 24px;
    }
    .classified-possible-mockup-card .mockup-overlay h3 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
    }
    .classified-possible-mockup-card .mockup-logo {
        font-size: 13px;
        line-height: 20px;
    }
    .classified-possible-bottom-callout {
        margin: 40px auto 0;
    }
    .classified-possible-bottom-callout .callout-desc {
        margin-bottom: 24px;
    }
    .classified-possible-cta-box {
        padding: 22px;
        border-radius: 20px;
    }
    .classified-possible-cta-box .cta-left .cta-number {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 4px;
    }
    .classified-possible-cta-box .cta-left {
        text-align: center;
    }
    /* Demo Kits / See What's Possible Section */
}

@media (max-width: 768px) {
    /* Hero Banner */
    .classified-hero-banner {
        padding: 88px 0 28px;
    }
    .classified-hero-banner::before {
        width: 480px;
        height: 420px;
        left: calc(50% - 480px / 2);
        top: -160px;
    }
    .classified-hero-content {
        padding-bottom: 56px;
    }
    .classified-hero-title {
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -0.9px;
    }
    .classified-hero-title br {
        display: none;
    }
    .classified-hero-description {
        margin-bottom: 24px;
    }
    .classified-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 420px;
        gap: 10px;
    }
    .classified-hero-actions .classified-btn-primary,
    .classified-hero-actions .classified-btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .classified-hero-actions .classified-btn-outline {
        padding: 14px 20px;
    }
    .classified-feature-badges {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 420px;
        gap: 10px;
    }
    .classified-feature-badges .badge-item {
        width: 100%;
    }
    .classified-hero-info-badges {
        justify-content: center;
        gap: 12px 16px;
    }
    .classified-hero-description-2 {
        font-size: 13px;
        line-height: 18px;
        padding: 0 12px;
    }
    .trusted-marquee-wrapper {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }
    .trusted-marquee-track {
        gap: 16px;
    }
    /* Hero Banner */

    /* Marketplace Stats Showcase */
    .classified-stats-showcase {
        padding: 70px 0 50px;
        gap: 0;
    }
    .classified-arc {
        height: 200px;
    }
    .classified-arc__stage {
        transform: translateX(-50%) scale(0.56);
    }
    .classified-arc::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 42%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 88%);
        pointer-events: none;
        z-index: 4;
    }
    .classified-arc__fade {
        width: 100px;
        height: 80px;
    }
    .classified-arc__fade--l {
        left: 0;
    }
    .classified-arc__fade--r {
        right: 0;
    }
    .classified-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 36px;
    }
    .classified-stats-grid .stat-number {
        font-size: 40px;
        line-height: 40px;
    }
    .classified-stats-title br {
        display: none;
    }
    .classified-stats-description {
        margin-bottom: 28px;
    }
    .classified-bottom-pills {
        gap: 8px;
    }
    .bottom-pill-item {
        padding: 7px 12px;
        font-size: 13px;
        line-height: 18px;
    }
    /* Marketplace Stats Showcase */

    /* Compare Pricing Section */
    .classified-compare-section {
        padding: 72px 0;
    }
    .classified-compare-header {
        margin-bottom: 28px;
        padding: 0 12px;
    }
    .classified-compare-table {
        border-radius: 16px;
    }
    .classified-compare-table-head {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 170px) minmax(0, 150px);
        min-height: 76px;
    }
    .classified-compare-col-feature,
    .classified-compare-col-classified,
    .classified-compare-col-legacy {
        padding: 14px 12px;
    }
    .classified-compare-head-tag {
        font-size: 9px;
        line-height: 13px;
    }
    .classified-compare-col-classified .classified-compare-head-brand,
    .classified-compare-head-brand {
        font-size: 14px;
        line-height: 20px;
    }
    .classified-compare-group-toggle {
        min-height: 56px;
        padding: 14px 16px;
    }
    .classified-compare-group-left {
        gap: 10px;
    }
    .classified-compare-group-title {
        font-size: 14px;
        line-height: 20px;
    }
    .classified-compare-group-count {
        font-size: 10px;
        line-height: 14px;
        padding: 2px 7px;
    }
    .classified-compare-row {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 170px) minmax(0, 150px);
        min-height: 42px;
    }
    .classified-compare-feature,
    .classified-compare-status,
    .classified-compare-legacy {
        padding: 10px 12px;
        font-size: 13px;
        line-height: 18px;
    }
    .classified-compare-status {
        gap: 6px;
    }
    .classified-compare-status-icon svg {
        width: 14px;
        height: 14px;
    }
    .classified-compare-actions {
        margin-top: 20px;
        padding: 0 12px;
    }
    .classified-show-all-btn,
    .classified-compare-skip-link {
        text-align: center;
    }
    /* Compare Pricing Section */

    /* Pricing / Plans Section */
    .classified-pricing-section {
        padding: 72px 0;
    }
    .classified-pricing-header {
        gap: 14px;
        padding: 0 12px;
    }
    .classified-pricing-toggle {
        margin-top: 28px;
        justify-content: space-between;
    }
    .pricing-toggle-btn {
        justify-content: center;
        padding: 10px 14px;
    }
    .classified-pricing-card {
        margin-top: 32px;
        border-radius: 14px;
    }
    .classified-pricing-card-left,
    .classified-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 */

    /* Big Bang Evolution Section */
    .classified-evolution-section {
        padding: 72px 0;
    }
    .classified-evolution-title .title-bold {
        font-size: 44px;
        line-height: 44px;
    }
    .classified-evolution-title .title-outline {
        font-size: 24px;
        line-height: 24px;
        -webkit-text-stroke: 1.1px #6752EB;
    }
    .classified-evolution-title .title-outline.evolution {
        font-size: 56px;
        line-height: 54px;
        letter-spacing: 0.4px;
        -webkit-text-stroke: 1.75px #6752EB;
    }
    .classified-evolution-subtitle {
        margin-bottom: 32px;
        padding: 0 12px;
    }
    .classified-pillar-block {
        padding: 0 0 56px;
    }
    .classified-pillar-block .classified-pillar-content {
        gap: 24px;
    }
    .pillar-meta {
        margin-bottom: 16px;
        padding-bottom: 16px;
        align-items: center;
    }
    .pillar-number {
        font-size: 56px;
        line-height: 56px;
    }
    .pillar-badge {
        letter-spacing: 1.2px;
    }
    .pillar-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 12px;
    }
    .pillar-desc {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 20px;
    }
    .pillar-feature-card {
        padding: 16px;
        gap: 14px;
        border-radius: 14px;
    }
    .pillar-feature-card .card-features-list,
    .card-features-list.three-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .classified-sticky-tabs-container {
        bottom: 12px;
        max-width: max-content;
    }
    .classified-sticky-tabs-inner {
        padding: 5px;
        border-radius: 20px;
    }
    .classified-sticky-tabs-inner .tab-item {
        padding: 9px 14px;
        font-size: 12px;
        line-height: 16px;
    }
    .classified-pillar-content-visual img {
        width: 100%;
    }
    /* Big Bang Evolution Section */

    /* Dashboard Overview Section */
    .classified-dashboard-overview-section {
        padding: 72px 0;
    }
    .dashboard-bg-word {
        font-size: 16vw;
        top: 8px;
    }
    .classified-dashboard-header {
        padding: 0 12px;
    }
    .classified-dashboard-badge {
        margin-bottom: 16px;
    }
    .classified-dashboard-desc {
        margin-top: 16px;
    }
    .classified-dashboard-preview {
        margin-top: 36px;
        border-radius: 14px;
    }
    .dashboard-preview-tabs {
        padding: 14px 14px 0;
    }
    .dashboard-tab {
        font-size: 14px;
        line-height: 20px;
        gap: 6px;
        padding-bottom: 11px;
    }
    .dashboard-tab-icon {
        width: 18px;
        height: 18px;
    }
    .dashboard-tab-icon svg {
        width: 18px;
        height: 18px;
    }
    .dashboard-preview-content {
        padding: 14px;
    }
    .classified-dashboard-dual {
        margin-top: 48px;
    }
    .dashboard-dual-title {
        margin-bottom: 24px;
    }
    .dashboard-dual-card {
        padding: 20px;
        border-radius: 14px;
    }
    .dashboard-dual-card h4 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .dashboard-dual-card > p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    .classified-dashboard-features-bar {
        margin-top: 40px;
        padding: 24px 18px;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .feature-item-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    .dashboard-feature-item h4 {
        font-size: 17px;
        line-height: 24px;
    }
    .dashboard-feature-item p {
        font-size: 13px;
        line-height: 20px;
        max-width: 100%;
    }
    .classified-dashboard-cta {
        margin-top: 36px;
        gap: 16px;
        padding: 0 12px;
    }
    .dashboard-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        line-height: 22px;
        text-align: center;
        justify-content: center;
    }
    /* Dashboard Overview Section */

    /* How It Works Section */
    .classified-how-it-works-section {
        padding: 72px 0;
    }
    .classified-how-header {
        padding: 0 12px;
    }
    .classified-how-badge {
        margin-bottom: 16px;
    }
    .classified-how-desc {
        margin-top: 12px;
    }
    .classified-how-steps {
        gap: 16px;
        margin-top: 32px;
    }
    .how-step-card {
        padding: 16px 18px;
        border-radius: 14px;
    }
    .how-step-title {
        font-size: 18px;
        line-height: 26px;
    }
    .how-step-desc {
        font-size: 13px;
        line-height: 19px;
    }
    .how-step-mockup {
        margin-top: 14px;
        border-radius: 10px;
    }
    .how-step-btn {
        margin-top: 16px;
    }
    /* How It Works Section */

    /* Platform Builder Showcase Section */
    .classified-workflow-showcase-section {
        padding: 72px 0;
    }
    .classified-listing-header {
        padding: 0 12px;
    }
    .classified-workflow-badge {
        margin-bottom: 16px;
    }
    .classified-platform-title {
        margin-bottom: 12px;
    }
    .classified-platform-subtitle {
        margin-bottom: 28px;
    }
    .classified-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 */

    /* Performance & Scale Section */
    .classified-performance-section {
        padding: 72px 0 48px;
    }
    .classified-performance-header,
    .classified-performance-subheader {
        padding: 0 12px;
    }
    .classified-performance-badge {
        margin-bottom: 16px;
    }
    .classified-performance-title {
        margin-bottom: 12px;
    }
    .performance-stats-grid {
        gap: 12px;
        margin-top: 32px;
    }
    .performance-stat-card,
    .performance-feature-card {
        padding: 18px 16px;
        border-radius: 14px;
    }
    .performance-stat-value {
        font-size: 30px;
        line-height: 30px;
    }
    .performance-stat-label {
        font-size: 15px;
        line-height: 22px;
    }
    .performance-stat-note {
        font-size: 12px;
        line-height: 18px;
    }
    .performance-feature-grid {
        gap: 12px;
    }
    .performance-feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .performance-feature-title {
        margin-top: 14px;
        font-size: 16px;
        line-height: 24px;
    }
    .performance-feature-desc {
        font-size: 13px;
        line-height: 19px;
    }
    .performance-savings {
        margin-top: 56px;
        padding: 0 12px;
    }
    .performance-savings-glow {
        top: -10px;
        height: 220px;
        filter: blur(20px);
    }
    .performance-savings-amount {
        font-size: 72px;
        line-height: 72px;
    }
    .performance-savings-label {
        margin-top: 8px;
        font-size: 32px;
        line-height: 30px;
        letter-spacing: -0.8px;
    }
    .performance-savings-prices {
        gap: 10px;
        margin-top: 16px;
    }
    .performance-price-old {
        font-size: 22px;
        line-height: 28px;
    }
    .performance-price-new {
        font-size: 28px;
        line-height: 34px;
    }
    .performance-price-divider {
        height: 24px;
    }
    .performance-savings-note {
        font-size: 13px;
        line-height: 18px;
    }
    .performance-savings-btn {
        margin-top: 24px;
        padding: 14px 22px;
        font-size: 14px;
        line-height: 20px;
    }
    .classified-performance-subheader {
        margin-top: 64px;
    }
    .performance-feature-grid--three {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 28px;
    }
    /* Performance & Scale Section */

    /* Core Features Section */
    .classified-core-features-section {
        padding: 72px 0;
    }
    .classified-core-features-header {
        margin-bottom: 28px;
        padding: 0 12px;
    }
    .classified-core-features-title {
        margin-top: 16px;
    }
    .classified-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 */

    /* Thrive Section */
    .classified-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: 13px;
        line-height: 17px;
        margin-bottom: 10px;
    }
    .thrive-card-tag {
        padding: 3px 8px;
        font-size: 9px;
        line-height: 14px;
    }
    /* Thrive Section */

    /* Customer Reviews Section */
    .classified-reviews-section {
        padding: 72px 0;
    }
    .classified-reviews-header {
        padding: 0 12px;
    }
    .classified-reviews-title {
        margin-top: 16px;
    }
    .classified-reviews-desc {
        margin-top: 14px;
    }
    .classified-reviews-stats {
        gap: 8px;
        margin-top: 18px;
    }
    .reviews-stat-card {
        padding: 8px 12px;
        gap: 10px;
        border-radius: 10px;
    }
    .reviews-stat-icon {
        width: 32px;
        height: 32px;
        border-radius: 7px;
    }
    .reviews-stat-copy strong {
        font-size: 12px;
        line-height: 15px;
    }
    .reviews-stat-copy small {
        font-size: 11px;
        line-height: 14px;
    }
    .classified-reviews-marquee-area {
        margin-top: 40px;
    }
    .classified-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;
    }
    .classified-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 */

    /* FAQs Section */
    .classified-faqs-section {
        padding: 72px 0;
    }
    .classified-faqs-header {
        padding: 0 12px;
    }
    .classified-faqs-title {
        margin-top: 16px;
    }
    .classified-faqs-desc {
        margin-top: 12px;
    }
    .classified-faqs-list {
        margin-top: 28px;
        border-radius: 14px;
    }
    .classified-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;
    }
    .classified-faqs-list .faq-question {
        font-size: 14px;
        line-height: 20px;
    }
    .classified-faqs-list .faq-chevron {
        width: 18px;
        height: 18px;
    }
    .classified-faqs-list .faq-answer {
        padding: 0 16px 16px 40px;
        font-size: 13px;
        line-height: 21px;
    }
    /* FAQs Section */

    /* Final CTA Section */
    .classified-final-cta-section {
        padding: 72px 0;
    }
    .classified-final-cta-content {
        padding: 0 12px;
    }
    .classified-final-cta-desc {
        margin-top: 16px;
    }
    .classified-final-cta-btn {
        margin-top: 28px;
        padding: 14px 22px;
        font-size: 14px;
        line-height: 20px;
    }
    .classified-final-cta-note {
        max-width: 320px;
        margin-top: 14px;
        line-height: 18px;
    }
    /* Final CTA Section */

    /* Site Footer */
    .classified-site-footer {
        padding: 28px 0;
    }
    .classified-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .classified-footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .classified-footer-logo {
        max-width: 120px;
    }
    .classified-footer-copy {
        white-space: normal;
    }
    .classified-footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 18px;
    }
    /* Site Footer */

    /* Floating Promo Element */
    .classified-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 */

    /* 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 */
    .classified-possible-section {
        padding: 64px 0;
    }
    .classified-possible-mockup-deck,
    .classified-possible-mockup-deck.has-hovered {
        gap: 14px;
    }
    .classified-possible-mockup-card {
        flex-basis: 272px;
        width: 272px;
        height: 380px;
        border-radius: 20px;
        border-width: 3px;
    }
    .classified-possible-mockup-card .mockup-overlay {
        padding: 20px;
    }
    .classified-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;
    }
    .classified-possible-bottom-callout {
        margin-top: 32px;
    }
    .classified-possible-bottom-callout .callout-desc {
        margin-bottom: 20px;
        font-size: 13px;
    }
    .classified-possible-cta-box {
        padding: 20px;
        border-radius: 18px;
    }
    .classified-possible-cta-box .cta-left .cta-number {
        font-size: 26px;
        line-height: 32px;
    }
    .classified-possible-cta-box .cta-left .cta-sub {
        font-size: 13px;
    }
    /* Demo Kits / See What's Possible Section */
}

@media (max-width: 576px) {
    /* Header */
    .header__action_text--bar {
        display: none;
    }
    .header__panel {
        margin: 8px 8px 0 8px;
    }
    header .classified-logo {
        width: 108px;
    }
    /* Header */

    /* Hero Banner */
    .classified-hero-banner {
        padding: 80px 0 24px;
    }
    .classified-hero-banner::before {
        width: 360px;
        height: 340px;
        left: calc(50% - 360px / 2);
        top: -140px;
        filter: blur(70px);
    }
    .classified-hero-content {
        padding-bottom: 48px;
    }
    .classified-subtitle-pill {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 1.1px;
        padding: 5px 10px;
        margin-bottom: 16px;
        max-width: 100%;
    }
    .classified-hero-title {
        font-size: 30px;
        line-height: 36px;
        letter-spacing: -0.7px;
        margin-bottom: 16px;
    }
    .classified-hero-description {
        margin-bottom: 20px;
        padding: 0 4px;
    }
    .classified-hero-actions {
        max-width: 100%;
        margin-bottom: 16px;
    }
    .classified-hero-actions .classified-btn-primary {
        padding: 15px 20px;
    }
    .classified-hero-actions .classified-btn-outline {
        font-size: 14px;
        line-height: 20px;
        padding: 13px 18px;
    }
    .classified-feature-badges {
        max-width: 100%;
        margin-bottom: 16px;
    }
    .classified-feature-badges .badge-item {
        padding: 10px 14px;
    }
    .badge-top-text {
        font-size: 12px;
    }
    .classified-hero-info-badges {
        gap: 10px 14px;
    }
    .classified-hero-info-badges li {
        font-size: 13px;
        line-height: 18px;
        gap: 6px;
    }
    .classified-hero-info-badges li svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    .classified-trusted-by-section {
        padding-top: 28px;
    }
    .classified-trusted-by-section .trusted-title {
        font-size: 10px;
        letter-spacing: 1.8px;
        margin-bottom: 10px;
    }
    /* Hero Banner */

    /* Marketplace Stats Showcase */
    .classified-stats-showcase {
        padding: 50px 0 40px;
        gap: 20px;
    }
    .classified-arc::after {
        height: 48%;
    }
    .classified-stats-grid {
        gap: 20px;
        margin-bottom: 28px;
        grid-template-columns: repeat(4, 1fr);
        justify-content: flex-start;
        overflow: auto;
        scrollbar-width: thin;
        padding-bottom: 20px;
    }
    .classified-stats-grid .stat-number {
        font-size: 34px;
        line-height: 34px;
        margin-bottom: 6px;
    }
    .classified-stats-grid .stat-label {
        font-size: 12px;
        line-height: 17px;
        padding: 0 4px;
    }
    .classified-stats-title {
        margin-bottom: 12px;
    }
    .classified-stats-description {
        margin-bottom: 24px;
        padding: 0 4px;
    }
    .classified-bottom-pills {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: auto;
        scrollbar-width: thin;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    .bottom-pill-item {
        padding: 7px 11px;
        font-size: 12px;
        line-height: 16px;
        gap: 6px;
        border-radius: 8px;
        width: max-content;
    }
    .bottom-pill-item svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    .classified-stats-grid .stat-box {
        width: max-content;
    }
    /* Marketplace Stats Showcase */

    /* Compare Pricing Section */
    .classified-compare-section {
        padding: 56px 0;
    }
    .classified-compare-header {
        padding: 0 10px;
        margin-bottom: 24px;
    }
    .classified-compare-table {
        border-radius: 14px;
    }
    .classified-compare-table-head {
        display: none;
    }
    .classified-compare-group-toggle {
        min-height: 54px;
        padding: 14px;
    }
    .classified-compare-group-left {
        gap: 8px;
        flex-wrap: wrap;
    }
    .classified-compare-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 14px;
    }
    .classified-compare-feature,
    .classified-compare-status,
    .classified-compare-legacy {
        padding: 0;
        border-left: 0;
    }
    .classified-compare-feature {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    .classified-compare-status,
    .classified-compare-legacy {
        position: relative;
        min-height: 20px;
        padding-left: 0px;
        font-size: 13px;
        line-height: 18px;
        display: flex;
        align-items: center;
    }
    .classified-compare-status::before,
    .classified-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;
    }
    .classified-compare-legacy::before {
        margin-right: 70px;
    }
    .classified-compare-status::before {
        content: "Classified";
        color: #6C4CF1;
    }
    .classified-compare-legacy::before {
        content: "Everyone Else";
        color: #6B6880;
    }
    .classified-compare-actions {
        gap: 10px;
        margin-top: 18px;
        padding: 0 10px;
    }
    .classified-show-all-btn,
    .classified-compare-skip-link {
        font-size: 13px;
        line-height: 18px;
    }
    /* Compare Pricing Section */

    /* Pricing / Plans Section */
    .classified-pricing-section {
        padding: 56px 0;
    }
    .classified-pricing-header {
        padding: 0 10px;
        gap: 12px;
    }
    .classified-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;
    }
    .classified-pricing-card {
        margin-top: 24px;
        border-radius: 12px;
    }
    .classified-pricing-card-left,
    .classified-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 */

    /* Big Bang Evolution Section */
    .classified-evolution-section {
        padding: 56px 0;
    }
    .classified-evolution-badge {
        margin-bottom: 16px;
    }
    .classified-evolution-title {
        margin-bottom: 16px;
    }
    .classified-evolution-title .title-bold {
        font-size: 36px;
        line-height: 38px;
    }
    .classified-evolution-title .title-outline {
        font-size: 20px;
        line-height: 22px;
        -webkit-text-stroke: 1px #6752EB;
    }
    .classified-evolution-title .title-outline.evolution {
        font-size: 44px;
        line-height: 44px;
        letter-spacing: 0.2px;
        -webkit-text-stroke: 1.5px #6752EB;
    }
    .classified-evolution-subtitle {
        margin-bottom: 28px;
        padding: 0 10px;
    }
    .classified-pillar-block {
        padding: 0 0 48px;
    }
    .classified-pillar-block .classified-pillar-content {
        gap: 20px;
    }
    .pillar-meta {
        gap: 8px;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }
    .pillar-number {
        font-size: 48px;
        line-height: 48px;
    }
    .pillar-badge {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 1px;
    }
    .pillar-title {
        font-size: 24px;
        line-height: 32px;
    }
    .pillar-desc {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    .pillar-desc-badge {
        margin-bottom: 16px;
        padding: 3px 12px 3px 3px;
        font-size: 11px;
        line-height: 15px;
    }
    .pillar-desc-badge svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    .pillar-features-box {
        gap: 12px;
    }
    .pillar-feature-card {
        padding: 14px;
        gap: 12px;
        border-radius: 12px;
    }
    .pillar-feature-card .card-features-list,
    .card-features-list.three-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .pillar-feature-card .feature-item {
        font-size: 13px;
        line-height: 18px;
    }
    .classified-sticky-tabs-container {
        bottom: 10px;
    }
    .classified-sticky-tabs-inner .tab-item {
        padding: 8px 12px;
        font-size: 11px;
        line-height: 15px;
    }
    /* Big Bang Evolution Section */

    /* Dashboard Overview Section */
    .classified-dashboard-overview-section {
        padding: 56px 0;
    }
    .dashboard-bg-word {
        font-size: 15vw;
        opacity: 0.9;
    }
    .classified-dashboard-header {
        padding: 0 10px;
    }
    .classified-dashboard-preview {
        margin-top: 28px;
        border-radius: 12px;
    }
    .dashboard-preview-tabs {
        padding: 12px 12px 0;
    }
    .dashboard-tab {
        font-size: 13px;
        line-height: 18px;
        padding-bottom: 10px;
    }
    .dashboard-preview-content {
        padding: 12px;
    }
    .classified-dashboard-dual {
        margin-top: 40px;
    }
    .dashboard-dual-title {
        margin-bottom: 20px;
    }
    .dashboard-dual-card {
        padding: 18px;
    }
    .dual-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    .dashboard-dual-card h4 {
        font-size: 17px;
        line-height: 24px;
    }
    .dashboard-dual-card li {
        font-size: 13px;
        line-height: 19px;
    }
    .classified-dashboard-features-bar {
        margin-top: 32px;
        padding: 22px 16px;
        border-radius: 14px;
    }
    .dashboard-feature-item h4 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 6px;
    }
    .classified-dashboard-cta {
        margin-top: 28px;
        padding: 0 10px;
        gap: 14px;
    }
    .classified-dashboard-cta p {
        font-size: 13px;
        line-height: 19px;
        padding: 0 4px;
    }
    .dashboard-cta-btn {
        width: 100%;
        max-width: 360px;
        padding: 14px 20px;
        font-size: 14px;
        line-height: 20px;
    }
    /* Dashboard Overview Section */

    /* How It Works Section */
    .classified-how-it-works-section {
        padding: 56px 0;
    }
    .classified-how-header {
        padding: 0 10px;
    }
    .classified-how-steps {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .how-step-card {
        padding: 16px;
        border-radius: 14px;
        align-items: stretch;
    }
    .how-step-title {
        font-size: 18px;
        line-height: 26px;
    }
    .how-step-desc {
        font-size: 14px;
        line-height: 20px;
    }
    .how-step-btn {
        width: 100%;
        margin-top: 16px;
    }
    /* How It Works Section */

    /* Platform Builder Showcase Section */
    .classified-workflow-showcase-section {
        padding: 56px 0;
    }
    .classified-listing-header {
        padding: 0 10px;
    }
    .classified-platform-subtitle {
        margin-bottom: 24px;
    }
    .classified-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 */

    /* Performance & Scale Section */
    .classified-performance-section {
        padding: 56px 0 40px;
    }
    .classified-performance-header,
    .classified-performance-subheader {
        padding: 0 10px;
    }
    .performance-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }
    .performance-stat-card,
    .performance-feature-card {
        padding: 20px 18px;
    }
    .performance-stat-value {
        font-size: 36px;
        line-height: 36px;
    }
    .performance-stat-label {
        font-size: 16px;
        line-height: 24px;
    }
    .performance-stat-note {
        font-size: 13px;
        line-height: 19px;
    }
    .performance-savings {
        margin-top: 48px;
        padding: 0 10px;
    }
    .performance-savings-glow {
        height: 180px;
        filter: blur(16px);
    }
    .performance-savings-amount {
        font-size: 64px;
        line-height: 64px;
    }
    .performance-savings-label {
        font-size: 28px;
        line-height: 28px;
        letter-spacing: -0.6px;
    }
    .performance-savings-prices {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 14px;
    }
    .performance-price-old {
        font-size: 20px;
        line-height: 26px;
    }
    .performance-price-new {
        font-size: 26px;
        line-height: 32px;
    }
    .performance-price-divider {
        height: 22px;
    }
    .performance-savings-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        margin-top: 22px;
        padding: 14px 20px;
    }
    .classified-performance-subheader {
        margin-top: 56px;
    }
    .performance-feature-grid--two {
        grid-template-columns: repeat(1, 1fr);
    }
    /* Performance & Scale Section */

    /* Core Features Section */
    .classified-core-features-section {
        padding: 56px 0;
    }
    .classified-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 */

    /* Thrive Section */
    .classified-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: 12px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    .thrive-card-tag {
        padding: 3px 7px;
        font-size: 9px;
        line-height: 13px;
    }
    /* Thrive Section */

    /* Customer Reviews Section */
    .classified-reviews-section {
        padding: 56px 0;
    }
    .classified-reviews-header {
        padding: 0 10px;
    }
    .classified-reviews-stats {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 360px;
        gap: 8px;
        margin-top: 16px;
    }
    .reviews-stat-card {
        width: 100%;
    }
    .classified-reviews-marquee-area {
        margin-top: 32px;
    }
    .classified-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;
    }
    .classified-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 */

    /* FAQs Section */
    .classified-faqs-section {
        padding: 56px 0;
    }
    .classified-faqs-header {
        padding: 0 10px;
    }
    .classified-faqs-list {
        margin-top: 24px;
        border-radius: 12px;
    }
    .classified-faqs-list .faq-trigger {
        padding: 14px;
        gap: 8px;
    }
    .classified-faqs-list .faq-question {
        font-size: 13px;
        line-height: 19px;
    }
    .classified-faqs-list .faq-answer {
        padding: 0 14px 14px 14px;
        font-size: 13px;
        line-height: 20px;
    }
    /* FAQs Section */

    /* Final CTA Section */
    .classified-final-cta-section {
        padding: 56px 0;
    }
    .classified-final-cta-content {
        padding: 0 10px;
    }
    .classified-final-cta-desc {
        margin-top: 14px;
    }
    .classified-final-cta-btn {
        width: 100%;
        max-width: 360px;
        justify-content: center;
        margin-top: 24px;
        padding: 14px 20px;
        font-size: 14px;
        line-height: 20px;
    }
    .classified-final-cta-note {
        max-width: 280px;
        font-size: 11px;
        line-height: 16px;
    }
    /* Final CTA Section */

    /* Site Footer */
    .classified-site-footer {
        padding: 24px 0;
    }
    .classified-footer-inner {
        gap: 16px;
        padding: 0 6px;
    }
    .classified-footer-logo {
        max-width: 110px;
    }
    .classified-footer-copy {
        font-size: 11px;
        line-height: 15px;
    }
    .classified-footer-nav {
        gap: 10px 14px;
    }
    .classified-footer-nav a {
        font-size: 12px;
        line-height: 17px;
    }
    /* Site Footer */

    /* Floating Promo Element */
    .classified-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;
    }
    .classified-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 */

    /* 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 */

    /* Demo Kits / See What's Possible Section */
    .classified-possible-section {
        padding: 56px 0;
    }
    .classified-possible-header {
        margin-bottom: 24px;
        padding: 0 12px;
    }
    .classified-possible-mockup-deck,
    .classified-possible-mockup-deck.has-hovered {
        gap: 12px;
    }
    .classified-possible-mockup-card {
        border-radius: 18px;
    }
    .classified-possible-mockup-card .mockup-overlay {
        padding: 18px;
    }
    .classified-possible-mockup-card .mockup-overlay h3 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .classified-possible-mockup-card .mockup-logo {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .classified-possible-mockup-card .mockup-card-actions {
        gap: 8px;
    }
    .classified-possible-bottom-callout {
        margin-top: 28px;
    }
    .classified-possible-bottom-callout .callout-desc {
        margin-bottom: 16px;
    }
    .classified-possible-cta-box {
        padding: 18px;
    }
    .classified-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 */
}

@media (max-width: 400px) {
    /* Header */
    .header__panel-actions .header__action_text,
    .header__panel-actions .header__action-btn {
        width: 100%;
        text-align: center;
    }
    /* Header */

    /* Compare Pricing Section */
    .classified-compare-row {
        padding: 12px;
    }
    .classified-compare-status,
    .classified-compare-legacy {
        font-size: 12px;
        line-height: 17px;
    }
    .classified-show-all-btn,
    .classified-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;
    }
    .classified-pricing-card-left,
    .classified-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 */

    /* Big Bang Evolution Section */
    .classified-evolution-title .title-bold {
        font-size: 32px;
        line-height: 34px;
    }
    .classified-evolution-title .title-outline {
        font-size: 18px;
        line-height: 20px;
    }
    .classified-evolution-title .title-outline.evolution {
        font-size: 38px;
        line-height: 40px;
        -webkit-text-stroke: 1.25px #6752EB;
    }
    .pillar-number {
        font-size: 42px;
        line-height: 42px;
    }
    .pillar-title {
        font-size: 22px;
        line-height: 30px;
    }
    .classified-sticky-tabs-inner .tab-item {
        padding: 8px 10px;
        font-size: 10px;
        line-height: 14px;
    }
    /* Big Bang Evolution Section */

    /* Dashboard Overview Section */
    .classified-dashboard-preview {
        margin-top: 24px;
    }
    .dashboard-preview-tabs {
        padding: 10px 10px 0;
    }
    .dashboard-tab {
        font-size: 12px;
        line-height: 16px;
    }
    .dashboard-dual-card {
        padding: 16px;
    }
    .dashboard-cta-btn {
        font-size: 13px;
        line-height: 18px;
        padding: 12px 16px;
    }
    /* Dashboard Overview Section */

    /* How It Works Section */
    .classified-how-steps {
        max-width: 100%;
        gap: 12px;
        margin-top: 24px;
    }
    .how-step-card {
        padding: 14px;
    }
    .how-step-title {
        font-size: 17px;
        line-height: 24px;
    }
    .how-step-desc {
        font-size: 13px;
        line-height: 19px;
    }
    /* How It Works Section */

    /* Platform Builder Showcase Section */
    .classified-workflow-showcase-section {
        padding: 48px 0;
    }
    .classified-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 */

    /* Performance & Scale Section */
    .classified-performance-section {
        padding: 48px 0 36px;
    }
    .performance-stats-grid {
        gap: 10px;
        margin-top: 24px;
    }
    .performance-stat-card,
    .performance-feature-card {
        padding: 16px;
        border-radius: 12px;
    }
    .performance-stat-value {
        font-size: 32px;
        line-height: 32px;
    }
    .performance-savings {
        margin-top: 40px;
    }
    .performance-savings-amount {
        font-size: 52px;
        line-height: 52px;
    }
    .performance-savings-label {
        font-size: 24px;
        line-height: 24px;
    }
    .performance-price-old {
        font-size: 18px;
        line-height: 24px;
    }
    .performance-price-new {
        font-size: 22px;
        line-height: 28px;
    }
    .performance-savings-btn {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 13px;
        line-height: 18px;
    }
    .classified-performance-subheader {
        margin-top: 48px;
    }
    /* Performance & Scale Section */

    /* Core Features Section */
    .classified-core-features-section {
        padding: 48px 0;
    }
    .classified-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 */

    /* Thrive Section */
    .classified-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 {
        font-size: 13px;
        line-height: 17px;
    }
    /* Thrive Section */

    /* Customer Reviews Section */
    .classified-reviews-section {
        padding: 48px 0;
    }
    .classified-reviews-stats {
        max-width: 100%;
    }
    .reviews-card {
        padding: 12px;
    }
    .reviews-card-quote {
        font-size: 12px;
        line-height: 19px;
    }
    .classified-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 */

    /* FAQs Section */
    .classified-faqs-section {
        padding: 48px 0;
    }
    .classified-faqs-list .faq-trigger {
        padding: 12px;
    }
    .classified-faqs-list .faq-question {
        font-size: 12px;
        line-height: 18px;
    }
    .classified-faqs-list .faq-answer {
        padding: 0 12px 12px;
        font-size: 12px;
        line-height: 18px;
    }
    /* FAQs Section */

    /* Final CTA Section */
    .classified-final-cta-section {
        padding: 48px 0;
    }
    .classified-final-cta-btn {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 13px;
        line-height: 18px;
    }
    .classified-final-cta-note {
        max-width: 100%;
        padding: 0 4px;
    }
    /* Final CTA Section */

    /* Site Footer */
    .classified-site-footer {
        padding: 20px 0;
    }
    .classified-footer-inner {
        gap: 14px;
    }
    .classified-footer-logo {
        max-width: 100px;
    }
    .classified-footer-nav {
        gap: 8px 12px;
    }
    .classified-footer-nav a {
        font-size: 11px;
        line-height: 16px;
    }
    /* Site Footer */

    /* Floating Promo Element */
    .classified-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 */

    /* 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 */
}

/* Reduced Motion Styles Global */
@media (prefers-reduced-motion: reduce) {
    .header__panel,
    .classified-dashboard-preview,
    .dashboard-tab,
    .dashboard-tab::after,
    .dashboard-tab-panel,
    .faq-panel {
        transition: none !important;
    }
    .classified-orbit,
    .classified-orbit__el {
        animation: none !important;
    }
    .classified-orbit__el {
        transform: translate(-50%, -50%);
    }
    .classified-arc__center-orbit {
        animation: none !important;
    }
    .classified-arc__center {
        animation: none !important;
        transform: translate(-50%, -50%) translateY(-26px);
    }
    .reviews-marquee-track,
    .reviews-marquee-col--reverse .reviews-marquee-track {
        animation: none !important;
        transform: none !important;
    }
    .faq-panel,
    .faq-chevron {
        transition: none !important;
    }
}