/* ===== Section Réalisations ===== */
.realisations-section {
    background: linear-gradient(145deg, #37517e 0%, #2c3e50 100%);
}

/* Browser mockup card */
.browser-mockup {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #fff;
}

.browser-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
}

.card-featured.browser-mockup {
    transform: translateY(-6px) scale(1.02);
    border: 2px solid #47b2e4 !important;
    box-shadow: 0 24px 64px rgba(71, 178, 228, 0.35);
}

.card-featured.browser-mockup:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 36px 80px rgba(71, 178, 228, 0.45);
}

/* Browser chrome bar */
.browser-bar {
    background: #e8e8e8;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.browser-dot-red    { background: #ff5f57; }
.browser-dot-yellow { background: #febc2e; }
.browser-dot-green  { background: #28c840; }

.browser-url-bar {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.7rem;
    color: #555;
    margin-left: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #ddd;
}

/* Preview area */
.browser-preview {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.browser-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
}

/* Price badge */
.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #47b2e4, #2980b9);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 7px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(71, 178, 228, 0.4);
}

/* CTA banner at bottom */
.cta-realisation-banner {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

/* Responsive: stack centered on mobile, scale reset on small screens */
@media (max-width: 991.98px) {
    .card-featured.browser-mockup {
        transform: none;
    }
    .card-featured.browser-mockup:hover {
        transform: translateY(-10px);
    }
}
