

.pricing-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 80px 20px;
    background: var(--section-light-bg);
    overflow: hidden;
}

.pricing-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    max-width: 1150px;
}

.pricing-left,
.pricing-right {
    background: var(--section-light-card);
    border: 1px solid rgba(23, 33, 29, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-left:hover,
.pricing-right:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pricing-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
    padding: 35px 25px;
}

.pricing-left h2 {
    margin-bottom: 25px;
    color: var(--section-light-text);
    font-family: var(--font-heading);
    font-size: 2rem !important;
}

.pricing-button {
    width: 100%;
    margin-bottom: 14px;
    padding: 16px 18px;
    border: none;
    border-radius: 16px;
    background: rgba(23, 33, 29, 0.06);
    color: var(--section-light-text);
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem !important;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.pricing-button:hover {
    transform: translateX(4px);
    background: var(--section-light-hover);
    color: var(--white);
}

.pricing-button.active {
    color: var(--white);
    background: var(--section-light-accent);
    box-shadow: var(--shadow-soft);
}

.pricing-button.active:hover {
    background: var(--section-light-hover);
    box-shadow: var(--shadow-hover);
}

.pricing-button i {margin-right: 10px;}

.pricing-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    padding: 35px 30px;
}

.pricing-detail {
    display: none;
    width: 100%;
    animation: fadeDetail 0.35s ease;
}

.pricing-detail.active {display: block;}

.pricing-detail h3 {
    margin-bottom: 16px;
    color: var(--section-light-text);
    font-family: var(--font-heading);
    font-size: 1.7rem !important;
}

.pricing-detail p {
    margin-bottom: 0;
    color: var(--section-light-muted);
    font-family: var(--font-body);
    font-size: 1.05rem !important;
    line-height: 1.8;
}

.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg > *:not(.particles) {
    position: relative;
    z-index: 2;
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    top: -50px;
    width: 22px;
    height: 22px;
    opacity: 0;
    animation: fall linear infinite;
}

@keyframes fadeDetail {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.35;
    }
    100% {
        opacity: 0;
        transform: translateY(110vh) translateX(var(--drift)) rotate(360deg);
    }
}

.pricing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-container {width: 100%;}

.pricing-cta {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 42px;
}

.pricing-quote-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    color: var(--section-light-accent);

    font-size: 1.05rem !important;
    font-weight: 600;
    font-family: var(--font-heading);

    text-decoration: none;
    letter-spacing: 0.04em;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;

    overflow: hidden;

    backdrop-filter: blur(6px);

    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.pricing-quote-btn::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 8px;

    width: 0;
    height: 2px;

    background: var(--section-light-accent);

    transform: translateX(-50%);

    transition: width 0.4s ease;
}

.pricing-quote-btn:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,0.10);

    border-color: rgba(255,255,255,0.22);

    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.pricing-quote-btn:hover::after {width: 60%;}

/* Copyright RZU Informatique */
