.mockup-wrapper {
    max-width: 1100px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 12px;
    margin: 0 30px;  

    border: 1px solid rgba(15, 23, 42, 0.06);

    box-shadow: 
        0 30px 60px rgba(15, 23, 42, 0.15),
        0 10px 20px rgba(15, 23, 42, 0.08);

    transform: translateY(0px);
    transition: all 0.4s ease;

    will-change: transform;

    overflow: visible;
}

.mockup-wrapper:hover {
    transform: translateY(-6px) scale(1.01);

    box-shadow: 
        0 45px 90px rgba(15, 23, 42, 0.18),
        0 20px 30px rgba(15, 23, 42, 0.12);
}

/* DEPLOYMENT PREMIUM SECTION */

.deployment-card {
    position: relative;
    overflow: hidden;

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.6);

    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.08),
        0 10px 20px rgba(15, 23, 42, 0.04);

    border-radius: 28px;

    padding: 40px;
}

.deployment-glow {
    position: absolute;

    top: -120px;
    left: 50%;

    transform: translateX(-50%);

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
        rgba(37,99,235,0.10) 0%,
        rgba(255,255,255,0) 70%);

    filter: blur(20px);

    z-index: -1;
}

.deployment-badge {
    background: #2563eb;
    color: white;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 600;
}

.deployment-badge-light {
    background: #eff6ff;
    color: #2563eb;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 600;
}

.deployment-text {
    color: #475569;

    line-height: 1.9;

    font-size: 1rem;

    max-width: 850px;
}

.mini-feature {
    background: rgba(252, 248, 248, 0.9);

    border: 1px solid #e2e8f0;

    border-radius: 18px;

    padding: 18px;
}

.mini-feature-title {
    font-weight: 600;

    margin-bottom: 6px;
}

.mini-feature-text {
    color: #64748b;

    font-size: 0.92rem;
}

/* CAROUSEL CONTROLS */
.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    transition: all 0.2s ease;
}

.carousel-control-prev {
    left: -22px;
}

.carousel-control-next {
    right: -22px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 16px;
    height: 16px;
    filter: invert(1) brightness(0);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1) brightness(2);
}

/* INDICATORI */
.carousel-indicators {
    bottom: -36px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    opacity: 1;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-indicators .active {
    background-color: #2563eb !important;
    transform: scale(1.3);
}


/*  FRECCE SU MOBILE VERTICAL */
/* @media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 32px;
        height: 32px;
    }

    .carousel-control-prev {
        left: 8px;
    }

    .carousel-control-next {
        right: 8px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 12px;
        height: 12px;
    }
} */

@media (max-width: 768px) {

    .mockup-wrapper {
        margin: 0 28px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 26px;
        height: 26px;
    }

    .carousel-control-prev {
        left: -13px;
    }

    .carousel-control-next {
        right: -13px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 10px;
        height: 10px;
    }
}

/* preview header */

.preview-header {
    padding-top: 12px;
}

.hero-update{
    margin-top:18px;
    font-size:14px;
    color:#64748b;
    font-weight:500;
}


/* =========================================
   BLOG SECTION
========================================= */

.blog-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #2563eb;
    transition: opacity 0.2s;
}

.blog-link:hover {
    opacity: 0.8;
}

.blog-link-subtitle {
    margin-top: 8px;
    color: #64748b;
    font-size: 0.95rem;
}

.blog-section {
    margin-top: 90px;
}

.blog-section-inner {
    background: #ffffff;
    border-radius: 28px;
    padding: 48px;
    border: 1px solid rgba(15, 23, 42, 0.06);

    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.08),
        0 10px 20px rgba(15, 23, 42, 0.04);
}

.blog-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-description {
    color: #64748b;
    max-width: 720px;
    margin: 18px auto 0 auto;
}

.blog-card {
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.25s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    background: #ffffff;
}

.blog-card-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.blog-card-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-cta {
    display: inline-block;
    margin-top: 10px;
    background: #0f172a;
    color: #fff;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.blog-cta:hover {
    background: #1e293b;
    color: #fff;
}

@media (max-width: 768px) {

    .blog-section-inner {
        padding: 32px 24px;
    }

}