/*
 * Landing pages: shared styles for buyout, tradein, commission, order.
 * Replaces inline <style> blocks and style="..." attributes.
 */

.landing-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    border: 1px solid #333;
}

.landing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.landing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-btn {
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* Hero decorative gradient blobs */
.hero-blob {
    width: 300px;
    height: 300px;
    filter: blur(50px);
}

.hero-blob-sm {
    width: 200px;
    height: 200px;
    filter: blur(40px);
}

/* 3-rem icons in feature cards */
.feature-icon {
    font-size: 3rem;
}

/* 48-pixel circular badge for contact rows */
.contact-bullet {
    width: 48px;
    height: 48px;
}

.contact-bullet-whatsapp {
    background-color: #25D366;
}

.contact-bullet-telegram {
    background-color: #0088cc;
}

/* "Order from Europe / China / UAE" pill badge */
.region-badge {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Smooth scroll for the catalog carousel on /order */
.scroll-smooth {
    scroll-behavior: smooth;
}
