/**
 * CIUZO Platform - Main CSS
 * Captivant, vizual, orientat spre conversii
 */

/* ========================================
   CSS Variables
======================================== */
:root {
    --primary: #2563EB;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #F5B800;
    --accent-dark: #d9a400;
    --accent-light: #ffc520;
    --success: #22c55e;
    --success-dark: #16a34a;

    --text: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;

    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #e8f4fc;

    --border: #e5e7eb;
    --border-light: #f3f4f6;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --header-height: 72px;
    --container-max: 1200px;
    --container-padding: 24px;
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(180deg,
        #e3f0fc 0%,
        #d4e8f9 15%,
        #c5e0f6 30%,
        #e8f2fb 50%,
        #f5f9fd 70%,
        #ffffff 100%
    );
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   Container
======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 48px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: var(--text);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-success {
    background: var(--success);
    color: white;
    font-size: 1.0625rem;
    padding: 16px 32px;
}

.btn-success:hover {
    background: var(--success-dark);
    transform: translateY(-1px);
}

.btn-cta-top {
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-md);
}

.btn-cta-top:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9375rem;
    box-shadow: 0 4px 15px -3px rgba(245, 184, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: pulse-soft 2s ease-in-out infinite;
}

.btn-cta-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2.5s infinite;
}

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

.btn-cta-header:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px -5px rgba(245, 184, 0, 0.5);
}

@keyframes pulse-soft {
    0%, 100% { box-shadow: 0 4px 15px -3px rgba(245, 184, 0, 0.4); }
    50% { box-shadow: 0 4px 20px -3px rgba(245, 184, 0, 0.6); }
}

.btn-full {
    width: 100%;
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo-img {
    height: 52px;
    width: auto;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.nav-cat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
}

.nav-cat:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.nav-cat-icon {
    width: 17px;
    height: 17px;
    color: var(--primary);
}

.nav-cat.active {
    background: var(--primary);
    color: #fff;
}

.nav-cat.active .nav-cat-icon {
    color: #fff;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-auth .btn {
    padding: 10px 20px;
    font-size: 0.9375rem;
    min-height: 40px;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-dropdown .btn-cta-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-chevron {
    width: 16px !important;
    height: 16px !important;
    transition: transform 0.3s ease;
}

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

.account-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

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

.account-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 24px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -2px -2px 5px rgba(0,0,0,0.03);
}

.account-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.account-option:hover {
    background: var(--bg-light);
}

.option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.account-buyer .option-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.account-seller .option-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.account-seller .option-icon svg {
    color: var(--text);
}

.option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.option-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.option-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

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

.btn-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-user:hover {
    background: var(--bg-light);
    border-color: #cbd5e1;
}

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

.btn-user .dropdown-chevron {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
}

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

.user-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-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--text-secondary);
    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: var(--bg-light);
    color: var(--text);
}

.user-menu-item svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

.user-menu-item:hover svg {
    color: var(--primary);
}

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

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

.user-logout {
    color: #dc2626;
}

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

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   Mobile Menu
======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 24px 32px;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 8px;
}

.mobile-user-info svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.mobile-logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: #dc2626;
    cursor: pointer;
}

.mobile-logout-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}

.mobile-nav .btn {
    margin-top: 16px;
}

.mobile-nav .mobile-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: var(--radius);
}

/* Mobile Account Buttons */
.mobile-accounts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.mobile-account-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px !important;
    border-radius: var(--radius) !important;
    border: none !important;
    position: relative;
}

.mobile-account-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-account-btn span {
    font-weight: 600;
}

.mobile-buyer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: white !important;
}

.mobile-seller {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
    color: var(--text) !important;
}

.mobile-badge {
    position: absolute;
    right: 12px;
    background: #ef4444;
    color: white !important;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

/* ========================================
   Main Content
======================================== */
main {
    padding-top: var(--header-height);
}

/* ========================================
   Animations
======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes float-delayed-2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.float-animation-delayed {
    animation: float-delayed 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.float-animation-delayed-2 {
    animation: float-delayed-2 5s ease-in-out infinite;
    animation-delay: 1s;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    z-index: 10;
    padding: 24px 0 32px;
    background:
        url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1920&h=600&fit=crop&q=80') bottom center / cover no-repeat,
        linear-gradient(180deg,
            #a8c8e8 0%,
            #b8d4f0 20%,
            #c8e0f5 40%,
            #d8ecfa 60%,
            #e8f4fc 80%,
            #f5faff 100%
        );
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(160, 195, 230, 0.88) 0%,
        rgba(180, 210, 240, 0.85) 30%,
        rgba(210, 230, 250, 0.88) 60%,
        rgba(240, 248, 255, 0.95) 80%,
        #f8fbff 100%
    );
    pointer-events: none;
}

/* Animated background shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blob 12s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(200, 230, 255, 0.4) 50%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(220, 240, 255, 0.3) 50%, transparent 70%);
    bottom: 0;
    left: -100px;
    animation-delay: 3s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.15) 0%, rgba(245, 184, 0, 0.05) 50%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 6s;
}

/* Hero Split Layout */
.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Buyer (Left) */
.hero-buyer {
    text-align: left;
}

.hero-buyer h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text) !important;
    font-weight:700;
    line-height: 1.5;
    margin-bottom: 20px;
}


/* Hero Steps */
.hero-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.1);
}

.step-num {
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-step span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.step-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-light);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline-subtle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.btn-outline-subtle svg {
    width: 18px;
    height: 18px;
}

.btn-outline-subtle:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

/* Hero Seller (Right) */
.hero-seller {
    display: flex;
    justify-content: flex-end;
}

.seller-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    max-width: 340px;
    border: 1px solid var(--border-light);
}

.seller-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.promo-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 10px;
    animation: pulse-promo 2s ease-in-out infinite;
}

@keyframes pulse-promo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-text {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.seller-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.seller-card > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.seller-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.seller-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text);
}

.seller-benefits svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

.seller-card .btn {
    width: 100%;
    padding: 12px 20px;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* Form Box */
.hero-form {
    position: relative;
    z-index: 10;
}

.form-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group label svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--text);
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group select:hover {
    border-color: var(--primary);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(245, 184, 0, 0.5);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 12px;
}

.form-note svg {
    width: 14px;
    height: 14px;
    color: var(--success);
}

/* ========================================
   Centered Inline Form (New Layout)
======================================== */
.hero-form-centered {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.search-form-inline {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 100;
}

.search-form-inline .form-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.search-form-inline .form-group {
    flex: 1;
    min-width: 0;
}

.search-form-inline .form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.search-form-inline .form-group label svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.search-form-inline .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--text);
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.search-form-inline .form-group select:hover {
    border-color: var(--primary);
}

.search-form-inline .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-form-inline .btn-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-height: 48px;
    white-space: nowrap;
}

.search-form-inline .btn-cta svg {
    width: 18px;
    height: 18px;
}

/* Search Input with Autocomplete */
.form-group-search {
    flex: 2 !important;
    position: relative;
}

.form-group-city {
    flex: 0 0 160px !important;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--text);
    background: white;
    transition: all 0.2s ease;
}

.search-input-wrapper input::placeholder {
    color: var(--text-light);
}

.search-input-wrapper input:hover {
    border-color: var(--primary);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--border);
    padding: 12px;
    z-index: 1000;
    display: none;
    max-height: 320px;
    overflow-y: auto;
}

.search-suggestions.active {
    display: block;
    animation: fadeSlideDown 0.2s ease-out;
}

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

.suggestions-group {
    margin-bottom: 12px;
}

.suggestions-group:last-child {
    margin-bottom: 0;
}

.suggestions-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    padding: 4px 8px;
    margin-bottom: 4px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9375rem;
    color: var(--text);
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.suggestion-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.suggestion-item svg {
    width: 16px;
    height: 16px;
    color: var(--text-light);
    flex-shrink: 0;
}

.suggestion-item:hover svg {
    color: var(--primary);
}

/* Responsive for inline form */
@media (max-width: 900px) {
    .search-form-inline .form-row {
        flex-wrap: wrap;
    }

    .form-group-search {
        flex: 1 1 100% !important;
    }

    .form-group-city {
        flex: 1 1 calc(50% - 8px) !important;
    }

    .search-form-inline .btn-cta {
        flex: 1 1 calc(50% - 8px);
    }
}

@media (max-width: 500px) {
    .search-form-inline {
        padding: 16px;
    }

    .search-form-inline .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-group-search,
    .form-group-city {
        flex: 1 1 100% !important;
    }

    .search-form-inline .btn-cta {
        width: 100%;
        margin-top: 4px;
    }

    .search-suggestions {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 60vh;
    }
}

/* Hero Visual - Right Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* App Mockup */
.app-mockup {
    position: relative;
    width: 100%;
    max-width: 380px;
}

/* Floating notification bubble */
.notif-bubble {
    position: absolute;
    top: -15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--success);
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 8px 24px -4px rgba(34, 197, 94, 0.4);
    z-index: 10;
}

.notif-bubble svg {
    width: 16px;
    height: 16px;
}

/* App Screen */
.app-screen {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.12),
        0 30px 60px -30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.app-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: white;
}

.app-logo-small img {
    height: 24px;
    filter: brightness(0) invert(1);
}

.app-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.app-body {
    padding: 16px;
}

/* Request Card */
.app-request-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 100%);
    border-radius: 10px;
    margin-bottom: 14px;
}

.request-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.request-info {
    flex: 1;
}

.request-title {
    display: block;
    font-weight: 700;
    color: var(--text);
    font-size: 0.9375rem;
}

.request-meta {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.request-status {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Offers Header */
.app-offers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.app-offers-header span:first-child {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
}

.offers-count {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Offers List */
.app-offers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-offer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #fafafa;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.app-offer-item:hover {
    background: #f5f5f5;
}

.app-offer-item.best {
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.08) 0%, rgba(245, 184, 0, 0.03) 100%);
    border: 1px solid rgba(245, 184, 0, 0.2);
}

.best-tag {
    position: absolute;
    top: -6px;
    left: 12px;
    background: var(--accent);
    color: var(--text);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.offer-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.offer-text {
    flex: 1;
    min-width: 0;
}

.offer-dealer-name {
    display: block;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text);
}

.offer-car-name {
    font-size: 0.6875rem;
    color: var(--text-secondary);
}

.offer-amount {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text);
}

.offer-amount.best {
    color: var(--success);
}

/* Offer animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.offer-animate-1 {
    animation: slideInRight 0.5s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.offer-animate-2 {
    animation: slideInRight 0.5s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.offer-animate-3 {
    animation: slideInRight 0.5s ease-out forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

/* Decorative circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.deco-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.02) 100%);
    bottom: -30px;
    left: -40px;
    z-index: -1;
}

.deco-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.15) 0%, rgba(245, 184, 0, 0.03) 100%);
    top: 40px;
    right: -20px;
    z-index: -1;
}

/* ========================================
   Categories Section
======================================== */
.categories {
    position: relative;
    z-index: 1;
    padding: 8px 0 8px;
    background: transparent;
}

.categories-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
}

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

.cat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 4px 20px -5px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.03);
}

.cat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px -15px rgba(0,0,0,0.2),
        0 0 0 1px rgba(0,0,0,0.05);
}

/* Glow effect */
.cat-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
    pointer-events: none;
}

.cat-card:hover .cat-glow {
    opacity: 0.25;
    transform: scale(1.5);
}

.cat-auto .cat-glow {
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.cat-imobiliare .cat-glow {
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

.cat-electronice .cat-glow {
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
}

/* Icon */
.cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.cat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2;
}

.cat-card:hover .cat-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow:
        0 12px 28px -5px rgba(37, 99, 235, 0.3),
        0 6px 16px -2px rgba(37, 99, 235, 0.2);
}

.cat-auto .cat-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow:
        0 8px 20px -5px rgba(245, 158, 11, 0.35),
        0 4px 12px -2px rgba(37, 99, 235, 0.15);
}

.cat-imobiliare .cat-icon {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow:
        0 8px 20px -5px rgba(59, 130, 246, 0.35),
        0 4px 12px -2px rgba(37, 99, 235, 0.15);
}

.cat-electronice .cat-icon {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    box-shadow:
        0 8px 20px -5px rgba(139, 92, 246, 0.35),
        0 4px 12px -2px rgba(37, 99, 235, 0.15);
}

/* Info */
.cat-info {
    flex: 1;
    min-width: 0;
}

.cat-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.cat-info p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Arrow */
.cat-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cat-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.cat-card:hover .cat-arrow {
    background: var(--primary);
}

.cat-card:hover .cat-arrow svg {
    color: white;
    transform: translateX(3px);
}

/* Count badge */
.cat-count {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cat-auto:hover .cat-count {
    background: #fef3c7;
    color: #92400e;
}

.cat-imobiliare:hover .cat-count {
    background: #dbeafe;
    color: #1e40af;
}

.cat-electronice:hover .cat-count {
    background: #ede9fe;
    color: #5b21b6;
}

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

.hiw-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hiw-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.hiw-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.hiw-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.hiw-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hiw-step-content h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.hiw-step-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

.hiw-cta .btn-lg {
    padding: 16px 32px;
    font-size: 1.0625rem;
}

.hiw-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.hiw-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hiw-trust svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

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

    .hiw-content h2 {
        font-size: 1.5rem;
    }

    .hiw-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hiw-steps {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .hiw-step {
        justify-content: flex-start;
    }

    .hiw-trust {
        gap: 16px;
    }

    .hiw-trust span {
        font-size: 0.8125rem;
    }
}

/* ========================================
   Why + Live Combined Section
======================================== */
.why-live-section {
    padding: 80px 0;
    background:
        linear-gradient(180deg,
            #e8f1fc 0%,
            #d4e6f9 20%,
            #bdd8f5 50%,
            #a8ccf0 80%,
            #93c0eb 100%
        );
    position: relative;
    overflow: hidden;
}

.why-live-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-live-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Why CIUZO */
.why-live-left {
    color: var(--text);
}

.why-live-header {
    margin-bottom: 32px;
}

.why-live-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.why-live-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.text-accent {
    color: var(--primary);
}

/* Advantages Compact Grid */
.advantages-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.advantage-block {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,1);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px -8px rgba(0,0,0,0.12);
}

.advantage-block:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.15);
}

.advantage-buyers {
    border-left: 3px solid var(--primary);
}

.advantage-sellers {
    border-left: 3px solid var(--accent);
}

.advantage-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

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

.advantage-buyers .advantage-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.advantage-sellers .advantage-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.advantage-block h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantage-buyers h4 {
    color: var(--primary);
}

.advantage-sellers h4 {
    color: var(--accent-dark);
}

.advantage-block ul {
    list-style: none;
}

.advantage-block li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text);
    padding: 6px 0;
}

.advantage-block li svg {
    width: 14px;
    height: 14px;
    color: var(--success);
    flex-shrink: 0;
}

.btn-why {
    padding: 14px 28px;
    font-size: 1rem;
}

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

/* Right Side - Live Mockup */
.why-live-right {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

/* Floating Stats - New Style */
.mockup-float-top,
.mockup-float-bottom {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
    z-index: 10;
}

.mockup-float-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float 4s ease-in-out infinite;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.mockup-float-bottom {
    bottom: 0;
    right: 0;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.mockup-float-bottom svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.float-divider {
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

/* Section Title Helper */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 40px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ef4444;
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* App Device */
.app-mockup-device {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 28px;
    padding: 10px;
    box-shadow:
        0 35px 70px -25px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255,255,255,0.3);
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.app-mockup-device::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.device-notch {
    width: 80px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    margin: 0 auto 10px;
}

/* Mockup Header */
.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px 14px 0 0;
}

.mockup-logo {
    height: 22px;
    filter: brightness(0) invert(1);
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: white;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Mockup Content */
.mockup-content {
    background: white;
    padding: 8px;
}

.mockup-request {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.mockup-request:last-child {
    margin-bottom: 0;
}

.mockup-request:hover {
    background: white;
    border-color: var(--primary);
    transform: translateX(4px);
}

.mockup-request-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-avatar svg {
    width: 18px;
    height: 18px;
    color: white;
}

.mockup-avatar-auto {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.mockup-avatar-imobiliare {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.mockup-avatar-electronice {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.mockup-request-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mockup-request-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

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

.mockup-request-meta svg {
    width: 10px;
    height: 10px;
}

.mockup-request-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.mockup-offers {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    min-width: 30px;
    text-align: center;
}

/* Mockup Footer */
.mockup-footer {
    padding: 12px;
    background: white;
    border-radius: 0 0 14px 14px;
}

.mockup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mockup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(245, 184, 0, 0.4);
}

.mockup-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mockup-cta:hover svg {
    transform: translateX(4px);
}

/* Responsive - Why Live Section */
@media (max-width: 1024px) {
    .why-live-grid {
        gap: 40px;
    }

    .why-live-header h2 {
        font-size: 1.875rem;
    }

    .advantages-compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .advantage-block {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .why-live-section {
        padding: 60px 0;
    }

    .why-live-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-live-left {
        text-align: center;
    }

    .why-live-header h2 {
        font-size: 1.5rem;
    }

    .advantages-compact {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .advantage-block {
        padding: 16px;
    }

    .advantage-block h4 {
        font-size: 0.8125rem;
    }

    .advantage-block li {
        font-size: 0.75rem;
    }

    .btn-why {
        width: 100%;
        justify-content: center;
    }

    .mockup-float-top,
    .mockup-float-bottom {
        display: none;
    }

    .app-mockup-device {
        border-radius: 24px;
        max-width: 100%;
    }

    .mockup-request {
        padding: 12px;
    }

    .mockup-avatar {
        width: 36px;
        height: 36px;
    }

    .mockup-avatar svg {
        width: 16px;
        height: 16px;
    }

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

    .mockup-price {
        font-size: 0.875rem;
    }

    .mockup-offers {
        font-size: 0.6875rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .advantages-compact {
        grid-template-columns: 1fr;
    }

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

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

/* ========================================
   CTA Banner
======================================== */
.cta-banner {
    padding: 48px 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 24px 48px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: background 0.2s;
}

.cta-button:hover {
    background: rgba(255,255,255,0.2);
}

.cta-main {
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cta-sub {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ========================================
   Sellers CTA
======================================== */
.sellers-cta {
    padding: 80px 0;
    background: transparent;
}

.cta-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(29, 78, 216, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: white;
    box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.3);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.0625rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.cta-benefits .benefit svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 24px;
    position: relative;
    margin-top: 100px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.95) 100%);
    transform: translateY(-99px);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   Responsive - Tablet
======================================== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 20px;
    }

    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hero-header h1 {
        font-size: 2.5rem;
    }

    .hero-header {
        margin-bottom: 40px;
    }

    .hero-grid {
        grid-template-columns: 360px 1fr;
        gap: 40px;
    }

    .offer-card.offer-2 {
        margin-left: 20px;
    }

    .offer-card.offer-3 {
        margin-left: 40px;
    }

    .categories-grid {
        gap: 20px;
    }

    .cta-box {
        padding: 48px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ========================================
   Responsive - Mobile
======================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --container-padding: 20px;
    }

    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }

    /* Header */
    .nav-main,
    .nav-auth {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 32px 0 40px;
        min-height: auto;
    }

    .hero-shapes .shape {
        opacity: 0.3;
    }

    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-buyer {
        text-align: center;
    }

    .hero-buyer h1 {
        font-size: 1.5rem;
    }

    .hero-steps {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-seller {
        justify-content: center;
    }

    .seller-card {
        max-width: 100%;
    }

    /* Categories */
    .categories {
        padding: 32px 0 48px;
    }

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

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

    .cat-card {
        padding: 20px;
    }

    .cat-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

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

    .cat-info h3 {
        font-size: 1rem;
    }

    .cat-info p {
        font-size: 0.75rem;
    }

    .cat-arrow {
        width: 32px;
        height: 32px;
    }

    .cat-arrow svg {
        width: 16px;
        height: 16px;
    }

    /* Stats Banner */
    .stats-banner {
        padding: 48px 0;
    }

    .stats-content {
        flex-direction: column;
        gap: 16px;
    }

    .big-number {
        font-size: 3rem;
    }

    .stats-text {
        font-size: 1.25rem;
        text-align: center;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 32px 0;
    }

    .cta-button {
        padding: 20px;
    }

    .cta-main {
        font-size: 1.25rem;
    }

    .cta-sub {
        font-size: 1rem;
    }

    /* Sellers CTA */
    .sellers-cta {
        padding: 60px 0;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cta-benefits .benefit {
        font-size: 0.875rem;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        text-align: center;
    }
}

/* ========================================
   Responsive - Small Mobile
======================================== */
@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }

    .hero-header h1 {
        font-size: 1.375rem;
    }

    .form-box {
        padding: 20px 16px;
    }

    .form-header h3 {
        font-size: 1.125rem;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .cta-benefits .benefit {
        justify-content: flex-start;
        text-align: left;
    }
}

/* ========================================
   Safe Area (iPhone notch)
======================================== */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer-bottom {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .mobile-menu {
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
    }
}
