.pt-160{padding-top:160px}
.svg1{
    width: 100%;
}
.orange-bg{
    background: #f96e1e17;
}
.offre-perso{
    background: #f96e1e;
    border-radius: 10px;
}
.color-white{
    color: white;
}
.color-i{
    font-size: 90px;
    background: linear-gradient(90deg, #2647c8 0%, #142d99 42%, #02126a 100%);   
}
.radus{
    border-radius: 10px;
}
.img-fluid2{
    max-width:150%;
    height:auto;
}
.gras{
    font-weight: 600;
}
.border{
    border-style: solid;
    border: 1px;
    border-radius: 9px;
}
.orange-bg1{
    background: #f96e1e;
}

/* --- Modern Navbar Styles --- */

/* Header Shadow */
.header-main {
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    background: #fff;
}

/* Top Bar Dark */
.top-bar-dark {
    background: #1a1a1a !important;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar-dark a {
    color: rgba(255,255,255,0.8) !important;
    transition: 0.3s;
}
.top-bar-dark a:hover {
    color: #fff !important;
}

/* Main Nav Links */
.custom-nav-link {
    font-weight: 600;
    color: #333 !important;
    padding: 25px 15px !important;
    position: relative;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}
.custom-nav-link:hover, .custom-nav-link[aria-expanded="true"] {
    color: #f96e1e !important;
}
/* Underline Animation */
.custom-nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f96e1e;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.custom-nav-link:hover::after, .custom-nav-link[aria-expanded="true"]::after {
    width: 25px;
}

/* Mega Menu Styling */
.hs-mega-menu {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    padding: 20px !important;
    margin-top: 0 !important;
}

/* Mega Menu Items */
.title-with-icon-item {
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}
.title-with-icon-item:hover {
    background: #f9f9f9;
    transform: translateX(5px);
}
.title-with-icon-link {
    text-decoration: none !important;
}
.menu-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 110, 30, 0.1);
    color: #f96e1e;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}
.title-with-icon-item:hover .menu-item-icon {
    background: #f96e1e;
    color: #fff;
}
.title-with-icon-item:hover .menu-item-icon i {
    color: #fff !important;
}
.u-header__promo-title {
    font-weight: 700;
    color: #333;
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}
.u-header__promo-text {
    color: #777;
    font-size: 13px;
    line-height: 1.4;
    display: block;
}

/* Navbar Button */
.header-nav-last-item .btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 110, 30, 0.3);
    transition: all 0.3s ease;
}
.header-nav-last-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 110, 30, 0.4);
}

/* Feature/Promo Card Styles */
.promo-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    z-index: 1;
}
.promo-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 110, 30, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.promo-card:hover::after {
    opacity: 1;
}
.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 110, 30, 0.15);
    border-color: #f96e1e;
}
.promo-card .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(249, 110, 30, 0.08);
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    color: #f96e1e;
    font-size: 28px;
    animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.promo-card:hover .icon-wrapper {
    background: #f96e1e;
    color: #fff;
    box-shadow: 0 10px 20px rgba(249, 110, 30, 0.4);
    transform: scale(1.1);
    animation: none;
}
.promo-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease, transform 0.3s ease;
}
.promo-card:hover h5 {
    color: #f96e1e;
    transform: translateY(-3px);
}
.promo-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* OS Selection Cards */
.os-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    z-index: 1;
}
.os-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 110, 30, 0.12);
    border-color: rgba(249, 110, 30, 0.2);
}
.os-card .os-img-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.4s ease;
}
.os-card:hover .os-img-wrap {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: scale(1.1);
}
.os-card img {
    max-width: 45px;
    max-height: 45px;
    transition: transform 0.5s ease;
}
.os-card:hover img {
    transform: rotate(360deg);
}
.os-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 1.25rem;
}
.os-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Pro Feature Card */
.pro-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}
.pro-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(249, 110, 30, 0.12);
    border-color: rgba(249, 110, 30, 0.2);
}
.pro-feature-card .icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 110, 30, 0.1) 0%, rgba(249, 110, 30, 0.05) 100%);
    color: #f96e1e;
    border-radius: 12px;
    font-size: 26px;
    margin-right: 20px;
    transition: all 0.4s ease;
}
.pro-feature-card:hover .icon-box {
    background: #f96e1e;
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 18px rgba(249, 110, 30, 0.3);
}
.pro-feature-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #1a1a1a;
}
.pro-feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Pro FAQ Styles */
.pro-faq-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.pro-faq-item:hover {
    box-shadow: 0 10px 30px rgba(249, 110, 30, 0.08);
    border-color: rgba(249, 110, 30, 0.2);
    transform: translateY(-2px);
}
.pro-faq-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
}
.pro-faq-header:focus {
    outline: none;
    text-decoration: none;
}
.pro-faq-header h6 {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}
.pro-faq-header[aria-expanded="true"] h6 {
    color: #f96e1e;
}
.pro-faq-header .icon-toggle {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f9f9f9;
}
.pro-faq-header[aria-expanded="true"] .icon-toggle {
    transform: rotate(180deg);
    background: #f96e1e;
    color: #fff;
}
.pro-faq-body {
    padding: 0 25px 25px;
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* VPS Pricing Cards Modern */
.vps-pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.vps-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #f96e1e;
}
.vps-pricing-card.featured {
    border: 2px solid #f96e1e;
    background: #fff;
    box-shadow: 0 10px 30px rgba(249, 110, 30, 0.1);
    transform: scale(1.02);
    z-index: 2;
}
.vps-pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 110, 30, 0.2);
}
.vps-pricing-card .plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}
.vps-pricing-card .plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f96e1e;
    line-height: 1;
    margin: 1.5rem 0;
}
.vps-pricing-card .plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #95a5a6;
}
.vps-pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    text-align: left;
}
.vps-pricing-card .plan-features li {
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
}

/* Modern Page Header Section */
.page-header-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 160px !important;
    padding-bottom: 120px !important;
    background-attachment: scroll !important;
}

/* Dark Gradient Overlay */
.page-header-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(249, 110, 30, 0.85) 100%);
    z-index: -1;
}

/* Subtle Pattern Overlay */
.page-header-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: -1;
}

.page-header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}

.page-header-content p.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .page-header-section {
        padding-top: 120px !important;
        padding-bottom: 80px !important;
    }
    .page-header-content h1 {
        font-size: 2.5rem;
    }
}

/* Mise en avant des gros VPS (Tableau) */
.vps-pricing-row.vps-featured {
    border: 2px solid #f96e1e !important;
    background-color: #fffbf8 !important;
    transform: scale(1.02);
    z-index: 5;
    position: relative;
    box-shadow: 0 8px 25px rgba(249, 110, 30, 0.15) !important;
}
.vps-pricing-row.vps-featured:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 12px 35px rgba(249, 110, 30, 0.25) !important;
}
.vps-pricing-row.vps-featured td:first-child {
    position: relative;
}
.vps-pricing-row.vps-featured td:first-child::after {
    content: "NOUVEAU";
    position: absolute;
    top: 5px;
    left: 5px;
    background: #f96e1e;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    animation: pulse-badge 2s infinite;
    pointer-events: none;
}
@keyframes pulse-badge {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

/* Custom Plan Section Modernization */
.custom-plan-box {
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    padding: 50px 40px;
    transition: transform 0.3s ease;
}
.custom-plan-box:hover {
    transform: translateY(-5px);
}

.single-vps-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 25px 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 140px;
}

.single-vps-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(249, 110, 30, 0.15);
    border-color: rgba(249, 110, 30, 0.3);
}

.single-vps-item img {
    transition: transform 0.5s ease;
    margin-bottom: 15px;
}

.single-vps-item:hover img {
    transform: scale(1.15) rotate(10deg);
}

.single-vps-item h6 {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.single-vps-item h5 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
}

.custom-plan-info-box {
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.custom-plan-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f96e1e;
}

.custom-plan-info-box .price {
    font-size: 3.5rem;
    color: #f96e1e;
    text-shadow: 0 5px 15px rgba(249, 110, 30, 0.2);
}
.vps-pricing-card .plan-features li i {
    color: #f96e1e;
    margin-right: 12px;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}
.vps-pricing-card .cpu-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.vps-pricing-card.featured .cpu-tag {
    background: rgba(249, 110, 30, 0.1);
    color: #f96e1e;
}
.vps-pricing-card .new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f96e1e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(249, 110, 30, 0.3);
    animation: pulse-orange 2s infinite;
}
@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(249, 110, 30, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(249, 110, 30, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 110, 30, 0); }
}
/* =======================
   NEW HERO SECTION PRO
   ======================= */
.hero-section-pro {
    background: #0b0f19; /* Fond sombre moderne */
    position: relative;
}
.hero-section-pro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(249, 110, 30, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(249, 110, 30, 0.05) 0%, transparent 40%);
    z-index: 0;
}
.hero-bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}
.hero-badge {
    display: inline-block;
    padding: 4px 0;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    border: none;
    background: transparent;
}
/* Status discret pour pages gaming (remplace hero-badge) */
.game-hero-status {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.45); font-size: 0.78rem; font-weight: 500;
}
.game-hero-status-dot {
    width: 6px; height: 6px; background: #22c55e;
    border-radius: 50%; flex-shrink: 0;
    animation: gameStatusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
}
@keyframes gameStatusPulse {
    0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.7);}
    50%{box-shadow:0 0 0 8px rgba(34,197,94,0);}
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 auto 1.5rem;
    color: #fff;
    max-width: 1000px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    letter-spacing: -1.5px;
}
.hero-lead {
    font-size: 1.15rem;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 850px;
    margin: 0 auto;
}
.feature-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.feature-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(249, 110, 30, 0.3);
}
.feature-pill i {
    color: #f96e1e;
    width: 20px;
    height: 20px;
}
.feature-pill span {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}
.hero-img-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 110, 30, 0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-img-blob { width: 300px; height: 300px; }
}

/* =======================
   CLEAN BOXED COUNTERS
   ======================= */
.counter-section {
    background: #ffffff;
}

.counter-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.counter-card:hover {
    border-color: #f96e1e;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: #fff5f0;
    color: #f96e1e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.counter-number {
    font-size: 2.5rem !important;
    color: #333;
    font-weight: 800;
    line-height: 1;
}

/* =======================
   TAB FEATURE VISUALS
   ======================= */
.tab-visual-box {
    background: #ffffff;
    border: 1px solid #f5f5f5;
    border-radius: 30px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.tab-visual-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(at 0% 0%, rgba(249, 110, 30, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 110, 30, 0.03) 0px, transparent 50%);
    z-index: 0;
}

.tab-visual-box .main-icon-wrapper {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 140px;
    height: 140px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(249, 110, 30, 0.1);
    animation: floatVisual 5s ease-in-out infinite;
}

.tab-visual-box .main-icon-wrapper i {
    width: 70px;
    height: 70px;
    color: #f96e1e;
    filter: drop-shadow(0 5px 15px rgba(249, 110, 30, 0.2));
}

.tab-visual-box .deco-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.tab-visual-box .shape-1 { width: 250px; height: 250px; background: rgba(249, 110, 30, 0.05); top: -100px; right: -50px; animation: pulseShape 8s infinite alternate; }
.tab-visual-box .shape-2 { width: 200px; height: 200px; background: rgba(249, 110, 30, 0.03); bottom: -80px; left: -40px; animation: pulseShape 10s infinite alternate-reverse; }

@keyframes floatVisual {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulseShape {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

/* --- CloudFive Guarantees Section --- */
.guarantee-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: flex-start;
}
.guarantee-card:hover {
    border-color: rgba(249, 110, 30, 0.3);
    box-shadow: 0 12px 30px rgba(249, 110, 30, 0.1) !important;
    transform: translateY(-4px);
}
.guarantee-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(249, 110, 30, 0.1);
    color: #f96e1e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}
.guarantee-icon i, .guarantee-icon svg {
    width: 24px;
    height: 24px;
}
.guarantee-content h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
    font-size: 1.05rem;
}
.guarantee-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #555;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInIndicator 0.5s ease-out 0.2s forwards;
}
.mouse-scroll {
    width: 22px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: block;
    position: relative;
    transition: border-color 0.3s ease;
}
.mouse-scroll:hover {
    border-color: #f96e1e;
}
.mouse-scroll::after {
    content: '';
    width: 4px;
    height: 8px;
    background: #f96e1e;
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    animation: mouseWheel 1.5s infinite;
}
@keyframes mouseWheel {
    0% { top: 6px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@keyframes fadeInIndicator {
    from { opacity: 0; bottom: 20px; }
    to { opacity: 1; bottom: 30px; }
}

/* --- Offres Page Enhancements --- */
.offres-search-wrapper {
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.offres-search-wrapper:focus-within {
    border-color: #f96e1e;
    box-shadow: 0 10px 30px rgba(249, 110, 30, 0.1);
}
.offres-search-wrapper .input-group-text {
    background: transparent;
    color: #f96e1e;
    padding-left: 20px;
    border: none;
}
.offres-search-wrapper input {
    border: none !important;
    font-weight: 500;
    height: 50px;
    background: transparent;
}
.offres-search-wrapper input:focus {
    background: transparent;
    box-shadow: none;
}

.btn-filter-custom {
    background: #fff;
    border: 1px solid #eee;
    color: #555;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-filter-custom:hover, .btn-filter-custom.active {
    background: #f96e1e;
    color: #fff;
    border-color: #f96e1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 110, 30, 0.3);
}

.service-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(249, 110, 30, 0.2);
}
.service-card-modern .icon-box-new {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    transition: all 0.4s ease;
}
.service-card-modern:hover .icon-box-new {
    transform: scale(1.1) rotate(5deg);
}
.service-card-modern h5 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.service-card-modern p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.service-card-modern .btn-discover {
    color: #f96e1e;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card-modern:hover .btn-discover {
    gap: 12px;
}
.game-bg { background: rgba(249, 110, 30, 0.1); color: #f96e1e; }
.vps-bg { background: rgba(52, 152, 219, 0.1); color: #3498db; }
.web-bg { background: rgba(46, 204, 113, 0.1); color: #2ecc71; }
.service-card-modern img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* --- Modern VPS CTA Section --- */
.vps-cta-card {
    background: #ffffff;
    background-image: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vps-cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 110, 30, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.vps-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 70px -15px rgba(249, 110, 30, 0.15);
    border-color: rgba(249, 110, 30, 0.2);
}

.vps-cta-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(249, 110, 30, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f96e1e;
    margin-bottom: 15px;
    font-size: 30px;
    border: 1px solid rgba(249, 110, 30, 0.15);
    animation: floatIcon 4s ease-in-out infinite;
}

.vps-cta-card h3 {
    font-size: 2.4rem;
    letter-spacing: -0.5px;
    font-weight: 800;
    color: #0f172a;
}

.vps-cta-card p {
    color: #475569;
    font-size: 0.95rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vps-feature-list li {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin: 4px;
    transition: all 0.3s ease;
    cursor: default;
}
.vps-feature-list li:hover {
    border-color: #f96e1e;
    background: #fff5f0;
    transform: translateY(-3px);
    color: #f96e1e;
}
.vps-feature-list li i {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: #f96e1e;
}

.vps-badge-price {
    background: rgba(249, 110, 30, 0.1);
    color: #f96e1e;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
}

.vps-cta-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vps-cta-image-wrap i {
    font-size: 200px;
    color: rgba(249, 110, 30, 0.03);
    position: absolute;
    z-index: 0;
}

/* ================================================
   PRO PRICING CARD — Style épuré (identique RedM)
   ================================================ */
.pro-pricing-card {
    border: none !important;
    border-radius: 16px !important;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.pro-pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
    background: linear-gradient(90deg, #f96e1e, #ff9f43);
    z-index: -1;
}
.pro-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pro-pricing-card .plan-name {
    font-weight: 700;
    color: #2d3436;
    margin-top: 10px;
    font-size: 1rem;
}
.pro-pricing-card .pricing-header .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f96e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.pro-pricing-card .pricing-header .price span {
    font-size: 0.9rem;
    color: #b2bec3;
    font-weight: 600;
    margin-top: 10px;
}
.pro-pricing-card .pricing-feature-list li {
    padding: 5px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #636e72;
    font-weight: 500;
    font-size: 0.85rem;
    list-style: none;
}
.pro-pricing-card .pricing-feature-list li:last-child {
    border-bottom: none;
}
.pro-pricing-card .pricing-feature-list li i {
    color: #f96e1e !important;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}
.pro-pricing-card hr {
    margin: 4px 0;
    border-color: #f0f0f0;
}
.pro-pricing-card.popular-price .plan-name {
    color: #f96e1e;
}
.pro-pricing-card.popular-price {
    border: 1px solid rgba(249,110,30,0.3) !important;
    box-shadow: 0 15px 35px rgba(249,110,30,0.15);
    z-index: 2;
}
/* Description sous le titre */
.pro-pricing-card .pt-5 p {
    font-size: 0.85rem;
    color: #b2bec3;
}

/* ================================================
   RAM BADGE — Supprimer le style pilule orange
   ================================================ */
.pricing-feature-list .ram-badge {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    font-weight: 700;
    color: inherit;
}

/* ================================================
   PRICING CARDS — HAUTEUR ÉGALE (toutes pages games)
   ================================================ */

/* Bouton d'achat : pleine largeur */
#discover .pro-pricing-card .card-body .btn {
    display: block;
    width: 100%;
}
/* ================================================
   ANTI-DDOS PIPELINE DIAGRAM
   ================================================ */
.ddos-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 0;
}
.ddos-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
}
.ddos-step .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}
.ddos-step .icon-wrapper svg,
.ddos-step .icon-wrapper i {
    width: 26px;
    height: 26px;
    color: #2d3436;
    stroke: #2d3436;
}
.ddos-step .icon-wrapper.final {
    background: linear-gradient(135deg, #f96e1e, #ff9f43);
    border-color: #f96e1e;
    box-shadow: 0 6px 20px rgba(249,110,30,0.35);
}
.ddos-step .icon-wrapper.final svg,
.ddos-step .icon-wrapper.final i {
    color: #fff;
    stroke: #fff;
}
.ddos-step h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
}
.ddos-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 60px;
    height: 64px;
    margin-bottom: 24px;
}
.ddos-connector .line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #dee2e6, #f96e1e44);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.ddos-connector .particles {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    overflow: hidden;
    height: 12px;
    display: flex;
    align-items: center;
}
.ddos-connector .p {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    animation: flow 2s linear infinite;
}
.ddos-connector .p-bad { background: #e17055; }
.ddos-connector .p-good { background: #00b894; }
.ddos-connector .p:nth-child(1) { animation-delay: 0s; }
.ddos-connector .p:nth-child(2) { animation-delay: 0.5s; }
.ddos-connector .p:nth-child(3) { animation-delay: 1s; }
.ddos-connector .p:nth-child(4) { animation-delay: 1.5s; }
@keyframes flow {
    0%   { left: -10px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}
@media (max-width: 576px) {
    .ddos-pipeline { flex-direction: column; }
    .ddos-connector { width: 2px; height: 40px; margin: 0 0 0 0; }
    .ddos-connector .line { width: 2px; height: 100%; top: 0; transform: none; }
    .ddos-connector .particles { display: none; }
}


/* Lien note Trustpilot (accueil, tête des témoignages) */
.cf-trustpilot-inline {
  display: inline-flex; align-items: center; gap: 7px;
  color: #5b6572; font-size: 0.95rem; text-decoration: none;
}
.cf-trustpilot-inline:hover { color: #f96e1e; text-decoration: none; }

/* Cartes d'offres — encadrement soigné, hauteurs alignées (section 7.30) */
.vps-offer-card {
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid #e9ecef; border-radius: 14px;
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  text-align: center;
}
.vps-offer-card:hover {
  border-color: rgba(249, 110, 30, 0.4);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.09);
  transform: translateY(-3px);
}
.vps-offer-card .vps-offer-specs { flex-grow: 1; }
.vps-offer-card .vps-offer-btn { width: 100%; }
/* Carte « Populaire » : accent + légère surélévation */
.vps-offer-card.is-popular,
.vps-offer-card.popular {
  border: 1.5px solid #f96e1e;
  box-shadow: 0 14px 36px rgba(249, 110, 30, 0.16);
  transform: translateY(-6px);
}

/* Anti-DDoS mis en avant dans les inclusions des cartes d'offres */
.vps-offer-trust-item strong {
  font-weight: 800;
  color: #1a1a2e;
}
