/**
 * CIUZO Platform - Home V3 CSS
 * New Layout Styles
 */

/* ========================================
   Page Background - Subtle Gradient
======================================== */
body.home-v3-page {
    background:
        linear-gradient(180deg,
            rgba(255,255,255,0.85) 0%,
            rgba(255,255,255,0.7) 30%,
            rgba(255,255,255,0.5) 60%,
            rgba(255,255,255,0.3) 100%
        ),
        url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1920&h=1080&fit=crop&q=80') center bottom / cover no-repeat fixed !important;
    min-height: 100vh;
}

/* Hide shapes - using image instead */
.page-shapes {
    display: none;
}

/* ========================================
   Header Override for Home-3
======================================== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: none;
    box-shadow: 0 2px 12px -2px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 100;
}

/* ========================================
   User Dropdown (Logged In)
======================================== */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-dropdown-toggle:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.user-dropdown-toggle svg {
    width: 18px;
    height: 18px;
}

.user-dropdown-toggle .dropdown-chevron {
    width: 16px;
    height: 16px;
    color: #64748b;
    transition: transform 0.2s ease;
}

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

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

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

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #334155;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.15s ease;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.user-menu-item:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.user-menu-item svg {
    width: 18px;
    height: 18px;
    color: #64748b;
}

.user-menu-item:hover svg {
    color: #2563eb;
}

.user-menu-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 8px 0;
}

.user-menu-form {
    margin: 0;
}

.user-menu-logout {
    color: #dc2626;
}

.user-menu-logout:hover {
    background: #fef2f2;
    color: #dc2626;
}

.user-menu-logout svg {
    color: #dc2626;
}

/* ========================================
   Hero V3 Section
======================================== */
.hero-v3 {
    position: relative;
    z-index: 10;
    padding: 24px 0 30px;
    background: transparent;
    overflow: visible;
}

/* Ensure all sections are above shapes */
.home-v3-page section,
.home-v3-page .container {
    position: relative;
    z-index: 10;
}

.hero-v3-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-v3-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Hero Steps */
.hero-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 18px 20px 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.7);
    max-width: 340px;
    width: 100%;
}

.hero-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-step-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.hero-step-connector {
    display: flex;
    justify-content: center;
    padding: 1px 0 1px 10px;
}

.hero-step-info {
    flex: 1;
    padding-top: 2px;
}

.hero-step-badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 2px;
}

.hero-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1px;
    line-height: 1.2;
}

.hero-step-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hero-steps-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 9px 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}

.hero-steps-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}

@media (max-width: 768px) {
    .hero-v3-row {
        flex-direction: column;
        gap: 24px;
    }
    .hero-v3-right {
        width: 100%;
    }
    .hero-steps {
        max-width: 100%;
    }
}

.hero-v3-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 550px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
}

/* Top CTA Badge - 3D Yellow */
.hero-top-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #fcd34d 0%, var(--accent) 50%, #d4a000 100%);
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow:
        0 6px 0 0 #b8860b,
        0 10px 25px -5px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-top-cta:hover {
    transform: translateY(2px);
    box-shadow:
        0 4px 0 0 #b8860b,
        0 8px 20px -5px rgba(0, 0, 0, 0.2);
}

.hero-top-cta svg {
    width: 22px;
    height: 22px;
}

/* Hero Headline */
.hero-v3-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-v3-content h1 .highlight-text {
    color: var(--primary);
}

/* Hero Subtitle */
.hero-v3-subtitle {
    font-size: 1.375rem;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 500px;
}

/* Big CTA Button - 3D Yellow */
.hero-big-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #fcd34d 0%, var(--accent) 50%, #d4a000 100%);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 14px 24px;
    gap: 8px;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow:
        0 8px 0 0 #b8860b,
        0 12px 30px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    border: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-big-cta:hover {
    transform: translateY(2px);
    box-shadow:
        0 6px 0 0 #b8860b,
        0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.hero-big-cta:active {
    transform: translateY(4px);
    box-shadow:
        0 4px 0 0 #b8860b,
        0 8px 20px -5px rgba(0, 0, 0, 0.2);
}

.hero-big-cta strong {
    font-weight: 800;
}

.hero-big-cta svg {
    width: 28px;
    height: 28px;
}

/* Quick Info Badge - Dark Blue */
.hero-quick-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    box-shadow:
        0 6px 20px -5px rgba(37, 99, 235, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-quick-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 30px -5px rgba(37, 99, 235, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.hero-quick-badge svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Categories V3 Section
======================================== */
.categories-v3 {
    padding: 2px 0 0px;
    background: white;
}

.categories-v3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cat-card-v3 {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow:
        0 2px 8px -2px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #dbdbdb !important;
}

.cat-card-v3:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 30px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.cat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cat-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.cat-card-v3:hover .cat-card-icon {
    transform: scale(1.1);
}

.cat-icon-auto {
    background: var(--primary);
}

.cat-icon-imobiliare {
    background: var(--primary);
}

.cat-icon-electronice {
    background: var(--primary);
}

.cat-card-content {
    flex: 1;
    min-width: 0;
}

.cat-card-content h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-card-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 12px;
}

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

.cat-count-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.cat-count-number {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
}

.cat-count-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Yellow 3D Button */
.cat-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 16px;
    background: linear-gradient(180deg, #fcd34d 0%, var(--accent) 50%, #d4a000 100%);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    border: none;
    box-shadow:
        0 3px 0 0 #b8860b,
        0 4px 8px -2px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-left: auto;
}

.cat-card-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.cat-card-btn:hover {
    transform: translateY(1px);
    box-shadow:
        0 2px 0 0 #b8860b,
        0 3px 6px -2px rgba(0, 0, 0, 0.15);
}

.cat-card-btn:hover svg {
    transform: translateX(2px);
}

.cat-card-btn:hover svg {
    transform: translateX(4px);
}

/* ========================================
   How Section - Compact Inline
======================================== */
.how-section-compact {
    padding: 5px 0;
    background: white;
}

.how-compact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.how-compact-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.how-steps-inline {
    display: flex;
    align-items: center;
    gap: 16px;
}

.how-step-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-light);
}

.how-step-inline svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.how-step-inline span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.how-step-arrow-inline {
    display: flex;
    align-items: center;
}

.how-step-arrow-inline svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
}

/* ========================================
   Stats Bar - Compact
======================================== */
.stats-bar {
    padding: 20px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-bar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-highlight .stat-icon {
    background: var(--accent);
}

.stat-highlight .stat-icon svg {
    color: var(--text);
}

/* ========================================
   Seller Section V2 - Compact
======================================== */
.seller-section-v2 {
    padding: 32px 0;
    background: var(--bg-light);
}

.seller-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.seller-banner-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-text-main {
    font-size: 1.125rem;
    font-weight: 800;
}

.banner-text-sub {
    font-size: 1rem;
    opacity: 0.9;
}

.banner-text-highlight {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--accent);
}

.seller-banner svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.seller-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.seller-benefits-v2 {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-light);
}

.seller-benefits-v2 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.seller-benefits-v2 ul {
    list-style: none;
    margin-bottom: 16px;
}

.seller-benefits-v2 ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text);
    padding: 6px 0;
}

.seller-benefits-v2 ul li svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

.seller-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(180deg, #fcd34d 0%, var(--accent) 50%, #d4a000 100%);
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 0 0 #b8860b;
    transition: all 0.2s ease;
}

.seller-cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 #b8860b;
}

.seller-cta-btn svg {
    width: 18px;
    height: 18px;
}

.seller-requests {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.request-card-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.request-card-v2:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
}

.request-card-img {
    width: 80px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.request-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.request-card-info {
    flex: 1;
    min-width: 0;
}

.request-card-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.request-card-title strong {
    color: var(--primary);
}

.request-card-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.request-card-meta svg {
    width: 14px;
    height: 14px;
}

.request-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.request-badge-boost {
    background: var(--accent);
    color: var(--text);
}

.request-badge-new {
    background: var(--primary);
    color: white;
}

/* ========================================
   Comparison Section V2 - Compact
======================================== */
.comparison-section-v2 {
    padding: 32px 0;
    background: white;
}

.comparison-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.comparison-old-v2 {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-light);
}

.comparison-old-v2 h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.old-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.old-item > svg {
    width: 24px;
    height: 24px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.old-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-item-content strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
}

.old-item-content span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.comparison-new-v2 {
    display: flex;
    gap: 16px;
}

.ciuzo-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 20px;
    flex: 1;
}

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

.ciuzo-card-header svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.ciuzo-card-header span {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.ciuzo-benefits {
    list-style: none;
}

.ciuzo-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: white;
    padding: 6px 0;
}

.ciuzo-benefits li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.ciuzo-image {
    width: 140px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.ciuzo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Responsive - Tablet
======================================== */
@media (max-width: 1024px) {
    .hero-v3-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 20px;
    }

    .cta-bar-divider {
        display: none;
    }

    .categories-v3-grid {
        gap: 20px;
    }

    .cat-card-v3 {
        padding: 24px;
    }

    .how-steps-grid {
        gap: 16px;
    }

    .how-step {
        max-width: 240px;
    }

    .how-compact-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .how-steps-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .stats-bar-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .split-grid {
        gap: 32px;
    }
}

/* ========================================
   Responsive - Mobile
======================================== */
@media (max-width: 768px) {
    .hero-v3 {
        padding: 40px 0 60px;
    }

    .hero-top-cta {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .hero-v3-content h1 {
        font-size: 2rem;
    }

    .hero-v3-subtitle {
        font-size: 1.0625rem;
    }

    .hero-big-cta {
        font-size: 1.125rem;
        padding: 16px 28px;
    }

    .hero-big-cta svg {
        width: 20px;
        height: 20px;
    }

    .hero-quick-badge {
        font-size: 0.9375rem;
        padding: 10px 18px;
    }

    /* Categories */
    .categories-v3 {
        padding: 24px 0;
    }

    .categories-v3-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cat-card-v3 {
        padding: 24px;
    }

    .cat-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .cat-card-content h3 {
        font-size: 1.25rem;
    }

    /* How Section - Compact */
    .how-section-compact {
        padding: 24px 0;
    }

    .how-compact-wrapper h2 {
        font-size: 1.25rem;
    }

    .how-step-inline {
        padding: 10px 14px;
    }

    .how-step-inline span {
        font-size: 0.8125rem;
    }

    .how-step-arrow-inline svg {
        width: 16px;
        height: 16px;
    }

    /* Stats Bar */
    .stats-bar {
        padding: 16px 0;
    }

    .stats-bar-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .stat-item {
        gap: 8px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
    }

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

    .stat-number {
        font-size: 1.125rem;
    }

    /* Seller Section V2 */
    .seller-section-v2 {
        padding: 24px 0;
    }

    .seller-banner {
        padding: 12px 16px;
    }

    .banner-text-main,
    .banner-text-highlight {
        font-size: 1rem;
    }

    .seller-content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Comparison Section V2 */
    .comparison-section-v2 {
        padding: 24px 0;
    }

    .comparison-grid-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-new-v2 {
        flex-direction: column;
    }

    .ciuzo-image {
        width: 100%;
        height: 120px;
    }

    .split-seller h2 {
        font-size: 1.5rem;
    }

    .badge-discount {
        font-size: 1.25rem;
        padding: 6px 12px;
    }

    .split-live {
        padding: 24px;
    }

    .live-request {
        padding: 12px;
    }

    .request-img {
        width: 44px;
        height: 44px;
    }

    .request-title {
        font-size: 0.875rem;
    }

    .request-price {
        font-size: 0.9375rem;
    }

    /* Comparison */
    .comparison-section {
        padding: 32px 0;
    }

    .comparison-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-card {
        padding: 24px;
    }

    .comparison-header h3 {
        font-size: 1.25rem;
    }

    .comparison-list li {
        font-size: 0.9375rem;
        padding: 10px 0;
    }

    .comparison-cta .btn-lg {
        width: 100%;
        padding: 16px 32px;
    }
}

/* ========================================
   Responsive - Small Mobile
======================================== */
@media (max-width: 480px) {
    .hero-v3 {
        padding: 32px 0 48px;
    }

    .hero-top-cta {
        font-size: 0.9375rem;
        padding: 10px 18px;
        gap: 6px;
    }

    .hero-top-cta svg {
        width: 18px;
        height: 18px;
    }

    .hero-v3-content h1 {
        font-size: 1.625rem;
    }

    .hero-v3-subtitle {
        font-size: 1rem;
    }

    .hero-big-cta {
        font-size: 1rem;
        padding: 14px 24px;
    }

    .hero-big-cta svg {
        width: 18px;
        height: 18px;
    }

    .hero-quick-badge {
        font-size: 0.875rem;
        padding: 8px 14px;
    }

    .cat-card-v3 {
        padding: 20px;
    }

    .how-step-inline {
        padding: 8px 12px;
    }

    .how-step-inline svg {
        width: 16px;
        height: 16px;
    }

    .how-step-inline span {
        font-size: 0.75rem;
    }

    .how-compact-wrapper h2 {
        font-size: 1.125rem;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }

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

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    /* Seller Section V2 - Small Mobile */
    .seller-banner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .seller-banner svg {
        display: none;
    }

    .seller-benefits-v2 {
        padding: 16px;
    }

    .request-card-v2 {
        padding: 10px;
    }

    .request-card-img {
        width: 60px;
        height: 44px;
    }

    .request-card-title {
        font-size: 0.8125rem;
    }

    /* Comparison V2 - Small Mobile */
    .comparison-old-v2,
    .ciuzo-card {
        padding: 16px;
    }

    .comparison-old-v2 h3,
    .ciuzo-card-header span {
        font-size: 1.125rem;
    }

    .live-request {
        gap: 10px;
    }

    .request-img {
        width: 40px;
        height: 40px;
    }
}
