/* ============================================
   FLUXSAFE - DESIGN SYSTEM
   Dark Mode • Cyan Neon • Orange Accent
   ============================================ */

:root {
    /* Backgrounds */
    --bg-dark: #0B1120;
    --bg-dark-alt: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #243447;
    --bg-elevated: #172033;

    /* Borders */
    --border-subtle: 1px solid rgba(255, 255, 255, 0.05);
    --border-hover: 1px solid rgba(34, 211, 238, 0.3);

    /* Accents */
    --cyan: #22d3ee;
    --cyan-bright: #06e6ff;
    --cyan-dark: #0891b2;
    --orange: #f97316;
    --orange-bright: #fb923c;
    --orange-dark: #ea580c;
    --red: #ef4444;
    --red-bright: #f87171;
    --red-dark: #dc2626;

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Glow effects */
    --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.35);
    --glow-cyan-strong: 0 0 30px rgba(34, 211, 238, 0.55), 0 0 60px rgba(34, 211, 238, 0.2);
    --glow-orange: 0 0 20px rgba(251, 146, 60, 0.4);
    --glow-orange-strong: 0 0 30px rgba(251, 146, 60, 0.6), 0 0 60px rgba(251, 146, 60, 0.25);
    --glow-red: 0 0 18px rgba(239, 68, 68, 0.45);
    --glow-red-strong: 0 0 30px rgba(239, 68, 68, 0.65), 0 0 60px rgba(239, 68, 68, 0.25);

    /* Shadows */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-elevated: 0 20px 50px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(251, 146, 60, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.main-logo {
    height: 55px;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.4));
    transition: filter 0.3s ease;
}

.logo-area:hover .main-logo {
    filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.7));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.62rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0 12px;
    font-size: 0.9rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
    border-radius: 2px;
}

.btn-audit-top {
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: #001219;
    padding: 11px 22px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.btn-audit-top:hover {
    box-shadow: var(--glow-cyan-strong);
    transform: translateY(-2px);
}

/* Mobile burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
    display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 88vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 80px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(34, 211, 238, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(251, 146, 60, 0.10) 0%, transparent 40%);
    z-index: 0;
}

/* Grid overlay subtle */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin-bottom: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 50px;
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: var(--text-primary);
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    line-height: 1.1;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.5));
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: #fff;
    padding: 16px 38px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    box-shadow: var(--glow-orange);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    box-shadow: var(--glow-orange-strong);
    transform: translateY(-3px);
}

.btn-main i {
    transition: transform 0.3s ease;
}

.btn-main:hover i {
    transform: translateX(5px);
}

/* ============================================
   SECTIONS GLOBALES
   ============================================ */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: var(--glow-cyan);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-title .accent {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ============================================
   AVANTAGES (6 CARDS GRID)
   ============================================ */
.advantages {
    background: var(--bg-dark-alt);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: var(--bg-card);
    padding: 35px 28px;
    border-radius: 16px;
    border: var(--border-subtle);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 211, 238, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.05));
    border: 1px solid rgba(34, 211, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(34, 211, 238, 0.1));
    box-shadow: var(--glow-cyan);
}

.advantage-icon i {
    font-size: 1.6rem;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.advantage-card h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ============================================
   TÉLÉ-ASSISTANCE
   ============================================ */
.tele-assistance {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.tele-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border-radius: 24px;
    border: var(--border-subtle);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.tele-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 70%);
    pointer-events: none;
}

.tele-wrapper::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.08), transparent 70%);
    pointer-events: none;
}

.tele-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tele-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--cyan);
    color: #001219;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    box-shadow: var(--glow-cyan);
}

.tele-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.tele-info h2 .accent {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.tele-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: white;
    padding: 17px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-orange);
    transition: all 0.3s ease;
}

.btn-download:hover {
    box-shadow: var(--glow-orange-strong);
    transform: translateY(-3px);
}

.tele-steps {
    background: rgba(11, 17, 32, 0.5);
    border: var(--border-subtle);
    border-radius: 18px;
    padding: 35px 30px;
}

.tele-steps h4 {
    color: var(--cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 700;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: #001219;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: var(--glow-cyan);
}

.step-content h5 {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.step-content a {
    color: var(--orange);
    font-weight: 700;
    text-shadow: var(--glow-orange);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
    padding: 130px 5% 80px;
    text-align: center;
    position: relative;
}

.products-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 120px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: var(--border-subtle);
    padding: 45px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 35px;
    align-items: center;
}

.product-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 211, 238, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.featured {
    border-color: rgba(251, 146, 60, 0.3);
    background: linear-gradient(135deg, var(--bg-card), rgba(251, 146, 60, 0.05));
}

.product-card.featured::before {
    background: linear-gradient(180deg, var(--orange), transparent);
    opacity: 1;
}

.product-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card.featured .product-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.18), rgba(251, 146, 60, 0.04));
    border-color: rgba(251, 146, 60, 0.3);
}

.product-icon i {
    font-size: 2.2rem;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.product-card.featured .product-icon i {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

.product-info {
    min-width: 0;
}

.product-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.product-card.featured .product-tag {
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
    color: var(--orange);
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.product-deliverable {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-deliverable i {
    text-shadow: var(--glow-cyan);
}

.product-card.featured .product-deliverable {
    color: var(--orange);
}

.product-card.featured .product-deliverable i {
    text-shadow: var(--glow-orange);
}

.product-price {
    text-align: right;
    flex-shrink: 0;
    padding-left: 20px;
    border-left: var(--border-subtle);
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
    white-space: nowrap;
}

.price-amount .currency {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.product-card.featured .price-amount .currency {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

.price-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 130px 5% 100px;
    min-height: 80vh;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.15;
}

.contact-info h1 .accent {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.channel {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.channel:hover {
    border-color: rgba(34, 211, 238, 0.25);
    transform: translateX(4px);
}

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-icon i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    font-size: 1.05rem;
}

.channel-info h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.channel-info p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0;
}

.contact-form {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: var(--shadow-card);
}

.contact-form h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.contact-form > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.92rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label .required {
    color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    background: var(--bg-dark-alt);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15), var(--glow-cyan);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 42px;
}

.field-meta {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    tab-index: -1;
}

.required-mark { color: var(--orange); }
.text-accent-orange { color: var(--orange); }

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: var(--glow-orange);
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    box-shadow: var(--glow-orange-strong);
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 18px;
}

.form-note i {
    color: var(--cyan);
    margin-right: 5px;
}

/* Form feedback messages */
.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--cyan);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-hero {
    padding: 130px 5% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 146, 60, 0.07) 0%, transparent 50%);
    z-index: 0;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 18px;
    line-height: 1.15;
}

.legal-hero h1 .accent {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.5));
}

.legal-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

.legal-toc {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.legal-toc a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-toc a:hover {
    background: var(--bg-card-hover);
    color: var(--cyan);
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.legal-toc a i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 5% 120px;
}

.legal-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: var(--border-subtle);
    padding: 50px 45px;
    margin-bottom: 35px;
    box-shadow: var(--shadow-card);
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.legal-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), transparent);
}

.legal-card:hover {
    border-color: rgba(34, 211, 238, 0.2);
    box-shadow: var(--shadow-elevated);
}

.legal-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: var(--border-subtle);
}

.legal-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-card-icon i {
    font-size: 1.4rem;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.legal-card h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.legal-card h3 {
    font-size: 1.05rem;
    color: var(--cyan);
    margin: 28px 0 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: var(--glow-cyan);
}

.legal-card h3:first-of-type {
    margin-top: 0;
}

.legal-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.legal-card ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.legal-card ul li:last-child {
    border-bottom: none;
}

.legal-card ul li::before {
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 0.9rem;
}

.legal-card ul li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.legal-card a {
    color: var(--orange);
    font-weight: 600;
    transition: text-shadow 0.3s ease;
}

.legal-card a:hover {
    text-shadow: var(--glow-orange);
}

.legal-card .legal-note {
    margin-top: 24px;
    padding: 18px 22px;
    background: rgba(34, 211, 238, 0.06);
    border-left: 3px solid var(--cyan);
    border-radius: 8px;
}

.legal-card .legal-note p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.legal-card .legal-note i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    margin-right: 8px;
}

.legal-back-top {
    text-align: center;
    margin-top: 20px;
}

.legal-back-top a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--cyan);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.legal-back-top a:hover {
    background: rgba(34, 211, 238, 0.08);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .legal-card { padding: 35px 25px; }
    .legal-card-header { gap: 14px; flex-wrap: wrap; }
    .legal-card-icon { width: 48px; height: 48px; }
    .legal-toc { gap: 8px; }
    .legal-toc a { padding: 8px 14px; font-size: 0.78rem; }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #060c19;
    color: var(--text-secondary);
    padding: 60px 5% 30px;
    border-top: var(--border-subtle);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: var(--border-subtle);
}

.footer-brand .brand-name {
    color: var(--text-primary);
}

.footer-brand p {
    margin-top: 15px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    max-width: 320px;
}

.footer-col h5 {
    color: var(--cyan);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .tele-wrapper { padding: 45px 35px; }
    .tele-grid { gap: 35px; }
    .product-card { padding: 35px; gap: 25px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 5%; }
    .brand-tagline { display: none; }
    .main-logo { height: 45px; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 5%;
        gap: 5px;
        border-bottom: var(--border-subtle);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 0; margin: 0; }
    .btn-audit-top { display: none; }
    .burger { display: flex; }

    section { padding: 70px 5%; }
    .hero { padding: 60px 5%; min-height: auto; }

    .tele-wrapper { padding: 35px 25px; }
    .tele-grid { grid-template-columns: 1fr; gap: 30px; }

    .product-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px;
        text-align: center;
    }
    .product-icon { margin: 0 auto; }
    .product-price {
        text-align: center;
        padding-left: 0;
        padding-top: 18px;
        border-left: none;
        border-top: var(--border-subtle);
    }

    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form { padding: 30px 22px; }

    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .btn-main { padding: 14px 28px; font-size: 0.85rem; }
    .advantage-card { padding: 28px 22px; }
}

/* ============================================
   PARTNERS STRIP (Technologies souveraines & open source)
   ============================================ */
.partners-strip {
    background: var(--bg-dark-alt);
    padding: 50px 5% 52px;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.partners-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(34, 211, 238, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(34, 211, 238, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.partners-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.partners-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.partners-sublabel {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sovereign-flag {
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.25));
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 44px;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    filter: grayscale(1);
    opacity: 0.55;
    transition: all 0.35s ease;
    cursor: default;
}

.partner-logo i {
    font-size: 1.35rem;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.partner-logo:hover i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

@media (max-width: 768px) {
    .partners-strip { padding: 40px 5% 42px; }
    .partners-sublabel { font-size: 0.72rem; margin-bottom: 22px; padding: 0 10px; }
    .partners-logos { gap: 26px; }
    .partner-logo { font-size: 0.95rem; }
    .partner-logo i { font-size: 1.15rem; }
}

/* ============================================
   COMPLIANCE BADGES (Réassurance)
   ============================================ */
.compliance-section {
    padding: 80px 5%;
    background: var(--bg-dark-alt);
    border-top: var(--border-subtle);
}

.compliance-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.compliance-item {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.compliance-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.compliance-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 211, 238, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.compliance-item:hover::before {
    opacity: 1;
}

.compliance-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.compliance-icon i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.compliance-icon .flag-emoji {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.35));
}

.compliance-item h4 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.compliance-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .compliance-grid { grid-template-columns: 1fr; gap: 18px; }
    .compliance-section { padding: 60px 5%; }
}

/* ============================================
   PRICING TABLE (SaaS 3-col)
   ============================================ */
.pricing-section {
    padding: 30px 5% 80px;
}

.pricing-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 22px;
    padding: 42px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.22);
    box-shadow: var(--shadow-elevated);
}

.pricing-card.popular {
    border: 1px solid rgba(34, 211, 238, 0.55);
    background: linear-gradient(160deg, var(--bg-card), rgba(34, 211, 238, 0.06));
    box-shadow: var(--glow-cyan-strong);
    transform: translateY(-10px) scale(1.02);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.6), 0 0 80px rgba(34, 211, 238, 0.25);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: #001219;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    box-shadow: var(--glow-cyan);
    white-space: nowrap;
}

.pricing-card.popular .pricing-header {
    margin-top: 24px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: var(--border-subtle);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card.popular .pricing-icon {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(34, 211, 238, 0.08));
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: var(--glow-cyan);
}

.pricing-icon i {
    font-size: 1.7rem;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.pricing-tag {
    display: inline-block;
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing-name {
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: var(--text-primary);
}

.pricing-price .amount {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.pricing-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 4px;
}

.pricing-subprice {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.pricing-features li.muted {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-features li.muted i {
    color: var(--text-muted);
    text-shadow: none;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 22px;
    background: transparent;
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: var(--cyan);
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: rgba(34, 211, 238, 0.1);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.pricing-card.popular .pricing-cta {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: #fff;
    border-color: transparent;
    box-shadow: var(--glow-orange);
}

.pricing-card.popular .pricing-cta:hover {
    box-shadow: var(--glow-orange-strong);
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 22px; max-width: 520px; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
}

/* ============================================
   OTHER SERVICES (cards grid)
   ============================================ */
.other-services {
    padding: 60px 5% 80px;
}

.other-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 211, 238, 0.22);
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.service-card .product-icon i {
    font-size: 1.45rem;
}

.service-card .product-tag {
    margin-bottom: 10px;
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-card .service-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-card .service-deliverable {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card .service-deliverable i {
    text-shadow: var(--glow-cyan);
}

.service-card .service-price {
    padding-top: 16px;
    border-top: var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.service-card .service-price .amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-primary);
}

.service-card .service-price .amount .currency {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.service-card .service-price .detail {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .service-setup-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.12);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 14px;
}

.service-card .service-setup-note i {
    color: var(--cyan);
    font-size: 0.78rem;
    text-shadow: 0 0 6px rgba(34, 211, 238, 0.4);
}

.service-card .service-setup-note strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Featured variant (orange highlight) */
.service-card.urgent {
    border-color: rgba(251, 146, 60, 0.3);
    background: linear-gradient(135deg, var(--bg-card), rgba(251, 146, 60, 0.05));
}

.service-card.urgent::before {
    background: linear-gradient(180deg, var(--orange), transparent);
    opacity: 1;
}

.service-card.urgent .product-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.18), rgba(251, 146, 60, 0.04));
    border-color: rgba(251, 146, 60, 0.3);
}

.service-card.urgent .product-icon i {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

.service-card.urgent .product-tag {
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
    color: var(--orange);
}

.service-card.urgent .service-deliverable {
    color: var(--orange);
}

.service-card.urgent .service-deliverable i {
    text-shadow: var(--glow-orange);
}

.service-card.urgent .service-price .amount .currency {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: 80px 5% 100px;
    background: var(--bg-dark-alt);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.22);
}

.faq-item.active {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: var(--glow-cyan);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-item.active .faq-question {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.faq-icon i {
    color: var(--cyan);
    font-size: 0.85rem;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.faq-item.active .faq-icon i {
    color: #001219;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 26px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-top: 4px;
    border-top: var(--border-subtle);
    padding-top: 18px;
}

@media (max-width: 768px) {
    .faq-question { padding: 18px 20px; font-size: 0.92rem; }
    .faq-item.active .faq-answer { padding: 0 20px 20px; }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
    padding: 130px 5% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(34, 211, 238, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(251, 146, 60, 0.07) 0%, transparent 50%);
    z-index: 0;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 18px;
    line-height: 1.15;
}

.blog-hero h1 .accent {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.5));
}

.blog-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

.blog-grid {
    max-width: 1150px;
    margin: 0 auto;
    padding: 40px 5% 120px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 18px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 211, 238, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.blog-category {
    display: inline-block;
    padding: 3px 11px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-category.alert {
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
    color: var(--orange);
}

.blog-card h2 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.blog-card:hover h2 {
    color: var(--cyan);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding-top: 14px;
    border-top: var(--border-subtle);
    width: 100%;
}

.blog-readmore i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-readmore {
    color: var(--cyan-bright);
    text-shadow: var(--glow-cyan);
}

.blog-card:hover .blog-readmore i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .blog-grid { padding: 30px 5% 80px; gap: 18px; }
    .blog-card { padding: 26px 22px; }
}

/* ============================================
   DOSSIERS EXPERTS (ARTICLES RÉDIGÉS)
   ============================================ */
.dossiers-section {
    background: var(--bg-dark-alt);
    padding: 90px 5% 100px;
    position: relative;
    overflow: hidden;
}

.dossiers-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(251, 146, 60, 0.06) 0%, transparent 45%);
    z-index: 0;
    pointer-events: none;
}

.dossiers-section .section-header,
.dossiers-grid {
    position: relative;
    z-index: 1;
}

.dossiers-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.dossier-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 38px 32px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dossier-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dossier-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 211, 238, 0.28);
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

.dossier-card:hover::after { opacity: 1; }

.dossier-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 1.4rem;
    text-shadow: var(--glow-cyan);
}

.dossier-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.dossier-card h3 {
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.dossier-card:hover h3 { color: var(--cyan); }

.dossier-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 26px;
    flex-grow: 1;
}

.btn-read-article {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: 50px;
    color: var(--cyan);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-read-article i { transition: transform 0.3s ease; }

.btn-read-article:hover {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
    border-color: var(--cyan-bright);
}

.btn-read-article:hover i { transform: translateX(4px); }

/* ============================================
   CERT-FR LIVE FEED
   ============================================ */
.cert-section {
    padding: 90px 5% 110px;
    position: relative;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.live-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.8);
    animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.cert-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    min-height: 180px;
}

.cert-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-left: 3px solid var(--cyan);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    animation: certFadeIn 0.5s ease both;
}

@keyframes certFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.cert-card:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--cyan-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.cert-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.cert-card-date i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.cert-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.cert-card:hover h4 { color: var(--cyan); }

.cert-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cert-card-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    transition: all 0.3s ease;
    padding-top: 12px;
    border-top: var(--border-subtle);
    width: 100%;
}

.cert-card-link i { transition: transform 0.3s ease; }

.cert-card:hover .cert-card-link {
    color: var(--cyan-bright);
    text-shadow: var(--glow-cyan);
}

.cert-card:hover .cert-card-link i { transform: translate(3px, -3px); }

.cert-loading,
.cert-error {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 50px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
}

.cert-loading i { color: var(--cyan); font-size: 1.4rem; }

.cert-error i { color: var(--orange); font-size: 1.3rem; }

.cert-source {
    max-width: 1180px;
    margin: 36px auto 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.cert-source a {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

.cert-source a:hover { text-shadow: var(--glow-cyan); }

/* ============================================
   ARTICLE MODAL (DOSSIER COMPLET)
   ============================================ */
.article-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.article-modal.open {
    display: flex;
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.article-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.article-modal-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    width: 100%;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark-alt) 100%);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 22px;
    box-shadow: var(--shadow-elevated), 0 0 60px rgba(34, 211, 238, 0.08);
    padding: 60px 60px 50px;
    margin: auto;
    animation: modalSlide 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.article-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 2;
}

.article-modal-close:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    border-color: var(--cyan-bright);
    box-shadow: var(--glow-cyan);
    transform: rotate(90deg);
}

.full-article-header {
    margin-bottom: 34px;
    padding-bottom: 26px;
    border-bottom: var(--border-subtle);
}

.full-article-header .dossier-meta { margin-bottom: 20px; }

.full-article h1 {
    color: var(--text-primary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.full-article-body { color: var(--text-secondary); }

.full-article-body .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 30px;
    padding-left: 18px;
    border-left: 3px solid var(--cyan);
}

.full-article-body h2 {
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 36px 0 16px;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 16px;
}

.full-article-body h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    border-radius: 2px;
}

.full-article-body p {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.full-article-body strong { color: var(--text-primary); font-weight: 700; }

.full-article-body em { color: var(--text-primary); font-style: italic; }

.full-article-body code {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: var(--cyan);
    padding: 2px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.full-article-body ul,
.full-article-body ol {
    margin: 16px 0 22px;
    padding-left: 8px;
    list-style: none;
}

.full-article-body ul li,
.full-article-body ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 0.98rem;
}

.full-article-body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--cyan);
    font-size: 0.85rem;
    text-shadow: var(--glow-cyan);
}

.full-article-body ol {
    counter-reset: article-counter;
}

.full-article-body ol li {
    counter-increment: article-counter;
    padding-left: 38px;
}

.full-article-body ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.78rem;
    box-shadow: var(--glow-cyan);
}

.article-cta {
    margin-top: 40px;
    padding: 28px 26px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(251, 146, 60, 0.05));
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 16px;
    text-align: center;
}

.article-cta p {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 18px;
}

.article-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.88rem;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

.article-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan-strong);
}

body.modal-open { overflow: hidden; }

@media (max-width: 768px) {
    .dossiers-section { padding: 70px 5% 80px; }
    .dossiers-grid { gap: 20px; grid-template-columns: 1fr; }
    .dossier-card { padding: 30px 24px 26px; }
    .dossier-card h3 { font-size: 1.2rem; }

    .cert-section { padding: 70px 5% 90px; }
    .cert-grid { gap: 16px; grid-template-columns: 1fr; }

    .article-modal { padding: 20px 12px; }
    .article-modal-content { padding: 50px 26px 36px; border-radius: 18px; }
    .article-modal-close { top: 12px; right: 12px; width: 38px; height: 38px; }
    .full-article-body .lead { font-size: 1rem; padding-left: 14px; }
    .full-article-body h2 { font-size: 1.15rem; }
    .article-cta { padding: 22px 18px; }
}

/* ============================================
   SERVICES v2 — Bouclier TPE (3 niveaux)
   Variants : Essentiel (vert) • Avancé (cyan) • Sérénité (orange/SOC)
   ============================================ */

/* Tighter section header used at top of pricing block */
.section-header.tight {
    margin-bottom: 36px;
}

/* Setup line shown under the main monthly price */
.pricing-setup {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 10px;
    text-align: center;
}

.pricing-setup strong {
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* ----------- Tier 1 : ESSENTIEL (vert sobre) ----------- */
.pricing-card.essential {
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.pricing-card.essential:hover {
    border-color: rgba(74, 222, 128, 0.55);
    box-shadow: 0 0 24px rgba(74, 222, 128, 0.25), var(--shadow-elevated);
}

.pricing-card.essential .pricing-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.18), rgba(74, 222, 128, 0.04));
    border-color: rgba(74, 222, 128, 0.35);
}

.pricing-card.essential .pricing-icon i {
    color: #4ade80;
    text-shadow: 0 0 18px rgba(74, 222, 128, 0.5);
}

.pricing-card.essential .pricing-tag {
    color: #4ade80;
}

.pricing-card.essential .pricing-price .currency {
    color: #4ade80;
    text-shadow: 0 0 18px rgba(74, 222, 128, 0.45);
}

.pricing-card.essential .pricing-features li i {
    color: #4ade80;
    text-shadow: 0 0 14px rgba(74, 222, 128, 0.4);
}

.pricing-card.essential .pricing-cta {
    border-color: rgba(74, 222, 128, 0.45);
    color: #4ade80;
}

.pricing-card.essential .pricing-cta:hover {
    background: rgba(74, 222, 128, 0.1);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

/* ----------- Tier 2 : AVANCÉ — repris du .popular existant -----------
   Override : badge "OFFRE PHARE" en orange pour bien capter l'œil      */
.pricing-card.popular .popular-badge {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: #fff;
    box-shadow: var(--glow-orange);
}

/* ----------- Tier 3 : SÉRÉNITÉ (orange / SOC) ----------- */
.pricing-card.premium {
    border: 1px solid rgba(251, 146, 60, 0.35);
    background: linear-gradient(160deg, var(--bg-card), rgba(251, 146, 60, 0.05));
}

.pricing-card.premium:hover {
    border-color: rgba(251, 146, 60, 0.6);
    box-shadow: var(--glow-orange-strong);
}

.pricing-card.premium .pricing-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.22), rgba(251, 146, 60, 0.05));
    border-color: rgba(251, 146, 60, 0.45);
}

.pricing-card.premium .pricing-icon i {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

.pricing-card.premium .pricing-tag {
    color: var(--orange);
}

.pricing-card.premium .pricing-price .currency {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

.pricing-card.premium .pricing-features li i {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

.pricing-card.premium .pricing-cta {
    border-color: rgba(251, 146, 60, 0.5);
    color: var(--orange);
}

.pricing-card.premium .pricing-cta:hover {
    background: rgba(251, 146, 60, 0.1);
    box-shadow: var(--glow-orange);
}

/* ----------- Section "Abonnements spécialisés" : 2 cartes centrées ----------- */
.subs-section {
    padding-top: 20px;
}

.subs-grid {
    max-width: 880px;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .subs-grid { grid-template-columns: 1fr; max-width: 520px; }
    .pricing-setup { font-size: 0.74rem; }
}

/* ============================================
   OFFRE DE LANCEMENT — Bandeau promotionnel
   ============================================ */
.launch-offer-wrapper {
    padding: 70px 5% 90px;
    display: flex;
    justify-content: center;
    position: relative;
}

.launch-offer {
    position: relative;
    width: 100%;
    max-width: 1080px;
    border-radius: 28px;
    padding: 3px;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(245, 158, 11, 0.18);
}

/* Bordure rotative néon orange */
.launch-offer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220%;
    aspect-ratio: 1;
    background: conic-gradient(
        from 0deg,
        rgba(245, 158, 11, 0) 0deg,
        #f59e0b 35deg,
        #fbbf24 60deg,
        #fb923c 85deg,
        rgba(245, 158, 11, 0) 130deg,
        rgba(245, 158, 11, 0) 220deg,
        #f59e0b 255deg,
        #fbbf24 280deg,
        rgba(245, 158, 11, 0) 330deg,
        rgba(245, 158, 11, 0) 360deg
    );
    transform: translate(-50%, -50%);
    animation: launch-rotate 6s linear infinite;
    z-index: 0;
}

@keyframes launch-rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.launch-offer-content {
    position: relative;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(251, 146, 60, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #141b32 50%, #0f172a 100%);
    border-radius: 25px;
    padding: 65px 55px;
    text-align: center;
    overflow: hidden;
}

/* Grille décorative subtile */
.launch-offer-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.launch-offer-content > * {
    position: relative;
    z-index: 1;
}

/* Badge supérieur */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.55);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        0 0 20px rgba(245, 158, 11, 0.35),
        inset 0 0 12px rgba(245, 158, 11, 0.1);
    animation: launch-badge-pulse 2.8s ease-in-out infinite;
}

@keyframes launch-badge-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.35), inset 0 0 12px rgba(245, 158, 11, 0.1); }
    50%      { box-shadow: 0 0 32px rgba(245, 158, 11, 0.6),  inset 0 0 18px rgba(245, 158, 11, 0.18); }
}

.launch-badge .rocket {
    display: inline-block;
    font-size: 1rem;
    animation: launch-rocket 2s ease-in-out infinite;
}

@keyframes launch-rocket {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50%      { transform: translateY(-4px) rotate(10deg); }
}

/* Titre principal */
.launch-title {
    font-size: clamp(2rem, 5.2vw, 3.6rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1.6px;
    line-height: 1.1;
    margin-bottom: 26px;
}

.launch-discount {
    display: inline-block;
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px rgba(245, 158, 11, 0.65));
    font-size: 1.18em;
    animation: launch-discount-pulse 3s ease-in-out infinite;
}

@keyframes launch-discount-pulse {
    0%, 100% { filter: drop-shadow(0 0 24px rgba(245, 158, 11, 0.65)); transform: scale(1); }
    50%      { filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.95)); transform: scale(1.03); }
}

/* Texte explicatif */
.launch-text {
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto 22px;
    line-height: 1.7;
}

.launch-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.launch-text .nowrap {
    white-space: nowrap;
}

/* Bloc condition */
.launch-condition {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    max-width: 780px;
    margin: 0 auto 32px;
    padding: 18px 24px;
    background: rgba(245, 158, 11, 0.06);
    border-left: 3px solid #f59e0b;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
}

.launch-condition i {
    color: #fbbf24;
    font-size: 1.15rem;
    margin-top: 3px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.5));
}

.launch-condition strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Bandeau "places limitées" */
.launch-limit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 50px;
    color: #fca5a5;
    font-size: 0.9rem;
    margin-bottom: 38px;
}

.launch-limit i {
    color: #ef4444;
    animation: launch-flame 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
}

@keyframes launch-flame {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.75; transform: scale(1.18); }
}

.launch-limit strong {
    color: #ffffff;
    font-weight: 800;
}

/* Bouton CTA — gros bouton néon orange qui vibre / brille */
.btn-launch {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #f59e0b 0%, #fb923c 50%, #f59e0b 100%);
    background-size: 200% 100%;
    color: #1a0f00;
    padding: 20px 46px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, color 0.25s ease;
    box-shadow:
        0 0 28px rgba(245, 158, 11, 0.55),
        0 0 60px rgba(245, 158, 11, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    animation: launch-btn-glow 2.6s ease-in-out infinite;
}

@keyframes launch-btn-glow {
    0%, 100% {
        box-shadow:
            0 0 28px rgba(245, 158, 11, 0.55),
            0 0 60px rgba(245, 158, 11, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
        background-position: 0% 50%;
    }
    50% {
        box-shadow:
            0 0 45px rgba(245, 158, 11, 0.9),
            0 0 95px rgba(245, 158, 11, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.45);
        background-position: 100% 50%;
    }
}

/* Reflet qui balaie le bouton */
.btn-launch::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.55),
        transparent
    );
    transform: skewX(-22deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.btn-launch:hover {
    transform: translateY(-4px) scale(1.04);
    animation:
        launch-btn-vibrate 0.25s ease-in-out infinite,
        launch-btn-glow 2.6s ease-in-out infinite;
}

.btn-launch:hover::before {
    left: 125%;
}

@keyframes launch-btn-vibrate {
    0%, 100% { transform: translateY(-4px) scale(1.04) rotate(0deg); }
    25%      { transform: translateY(-4px) scale(1.04) rotate(-0.7deg); }
    75%      { transform: translateY(-4px) scale(1.04) rotate(0.7deg); }
}

.btn-launch i {
    transition: transform 0.3s ease;
}

.btn-launch:hover i {
    transform: translateX(7px);
}

.btn-launch:focus-visible {
    outline: 3px solid #fbbf24;
    outline-offset: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .launch-offer-wrapper {
        padding: 50px 4% 70px;
    }
    .launch-offer-content {
        padding: 50px 24px;
    }
    .launch-badge {
        font-size: 0.7rem;
        padding: 7px 16px;
        letter-spacing: 1.6px;
    }
    .launch-condition {
        font-size: 0.88rem;
        padding: 15px 18px;
        gap: 10px;
    }
    .launch-limit {
        font-size: 0.82rem;
        padding: 9px 18px;
    }
    .btn-launch {
        padding: 16px 28px;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        gap: 10px;
    }
}

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
    .launch-offer::before,
    .launch-badge,
    .launch-badge .rocket,
    .launch-discount,
    .launch-limit i,
    .btn-launch,
    .btn-launch:hover {
        animation: none !important;
    }
}

/* ============================================
   BOUTON SECONDAIRE CYAN (En savoir plus)
   Utilisé sur les service-card pour rediriger
   vers une page dédiée.
   ============================================ */
.btn-secondary-cyan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 11px 20px;
    background: transparent;
    border: 1.5px solid rgba(34, 211, 238, 0.45);
    color: var(--cyan);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.25);
    align-self: stretch;
}

.btn-secondary-cyan i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-secondary-cyan:hover {
    border-color: var(--cyan);
    background: rgba(34, 211, 238, 0.08);
    box-shadow: var(--glow-cyan);
    color: var(--cyan-bright);
    text-shadow: 0 0 14px rgba(34, 211, 238, 0.65);
}

.btn-secondary-cyan:hover i {
    transform: translateX(4px);
}

/* ============================================
   PAGE FLUXSAFE HOME (B2C)
   ============================================ */

/* ----- HERO ----- */
.home-hero {
    padding: 160px 5% 70px;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.home-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    text-shadow: var(--glow-cyan);
}

.home-hero-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.home-hero-subtitle {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: var(--glow-cyan);
}

.home-hero-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto;
}

/* ----- LES 3 PILIERS ----- */
.home-pillars {
    padding: 60px 5% 70px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.6;
    transition: opacity 0.35s ease;
}

.pillar-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated), var(--glow-cyan);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pillar-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.pillar-number {
    padding: 5px 12px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.pillar-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pillar-subtitle {
    color: var(--cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 22px;
    font-style: italic;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.pillar-list li i {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-top: 5px;
    flex-shrink: 0;
    text-shadow: var(--glow-cyan);
}

.pillar-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ----- BANDEAU BONUS (Orange) ----- */
.home-bonus-section {
    padding: 30px 5% 70px;
}

.bonus-banner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08), rgba(249, 115, 22, 0.04));
    border: 1.5px solid rgba(251, 146, 60, 0.35);
    border-radius: 22px;
    padding: 44px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(251, 146, 60, 0.12);
}

.bonus-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--orange-bright), var(--orange-dark));
    box-shadow: var(--glow-orange);
}

.bonus-banner::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-ribbon {
    position: absolute;
    top: 18px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    box-shadow: var(--glow-orange);
    z-index: 2;
}

.bonus-content {
    position: relative;
    z-index: 1;
}

.bonus-title {
    color: var(--text-primary);
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.3;
}

.bonus-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 820px;
}

.bonus-intro strong {
    color: var(--orange-bright);
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bonus-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 14px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

.bonus-list li i {
    color: var(--orange-bright);
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
    text-shadow: var(--glow-orange);
}

.bonus-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ----- TARIFS & CONDITIONS ----- */
.home-pricing {
    padding: 40px 5% 100px;
}

.home-pricing-card {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1.5px solid rgba(34, 211, 238, 0.25);
    border-radius: 24px;
    padding: 44px 44px 38px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elevated), 0 0 60px rgba(34, 211, 238, 0.08);
}

.home-pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan-dark), var(--cyan), var(--cyan-dark));
    box-shadow: var(--glow-cyan);
}

.pricing-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 34px;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 20px;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row-main {
    padding-top: 8px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.pricing-row-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.pricing-row-label > i {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-row-label h4 {
    color: var(--text-primary);
    font-size: 1.02rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-row-label p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.pricing-row-value {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.big-amount {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.big-currency {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    margin-left: 2px;
}

.big-detail {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.strike-price {
    text-decoration: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.6);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.free-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--glow-orange);
}

.discount-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    box-shadow: var(--glow-orange);
}

.new-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
    line-height: 1;
}

.tiny-detail {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 220px;
}

.ok-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-shadow: var(--glow-cyan);
}

.btn-home-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.02rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.35);
}

.btn-home-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-home-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-orange-strong), 0 10px 30px rgba(251, 146, 60, 0.5);
}

.btn-home-cta:hover i:last-child {
    transform: translateX(5px);
}

.home-cta-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 16px;
    font-style: italic;
}

/* ----- RESPONSIVE PAGE FLUXSAFE HOME ----- */
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }
    .bonus-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .home-hero {
        padding: 130px 5% 50px;
    }
    .bonus-banner {
        padding: 40px 26px 32px;
    }
    .bonus-ribbon {
        position: static;
        margin-bottom: 16px;
    }
    .home-pricing-card {
        padding: 34px 22px 28px;
    }
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .pricing-row-value {
        align-items: flex-start;
        text-align: left;
        padding-left: 58px;
    }
    .btn-home-cta {
        flex-direction: column;
        gap: 8px;
        padding: 18px 22px;
        font-size: 0.92rem;
        text-align: center;
    }
    .btn-home-cta i:last-child {
        display: none;
    }
}

/* ============================================
   PAGE FLUXSAFE AUDIT (B2B)
   Réutilise .pillars-grid et .pillar-card du
   design system FluxSafe Home.
   ============================================ */

/* Accent orange réutilisable sur .section-title */
.section-title .accent-orange {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

/* ----- HERO ----- */
.audit-hero {
    padding: 160px 5% 70px;
    position: relative;
    overflow: hidden;
}

.audit-hero::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.audit-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.audit-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    text-shadow: var(--glow-cyan);
}

.audit-hero-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.audit-hero-subtitle {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: var(--glow-cyan);
}

.audit-hero-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto;
}

/* ----- LES 3 VOLETS (réutilise .pillars-grid + .pillar-card) ----- */
.audit-pillars {
    padding: 60px 5% 70px;
}

/* Petits ronds colorés inline pour le feu tricolore */
.dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 3px;
    vertical-align: middle;
}
.dot-red {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}
.dot-orange {
    background: var(--orange);
    box-shadow: var(--glow-orange);
}
.dot-green {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* ----- BANDEAU ZÉRO FRICTION ----- */
.audit-friction-section {
    padding: 30px 5% 70px;
}

.friction-banner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1.5px solid rgba(34, 211, 238, 0.3);
    border-radius: 22px;
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.friction-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.7;
}

.friction-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.friction-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(34, 211, 238, 0.05));
    border: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    font-size: 1.45rem;
    flex-shrink: 0;
}

.friction-title {
    color: var(--text-primary);
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.3;
}

.friction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.friction-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.friction-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.friction-item h4 {
    color: var(--text-primary);
    font-size: 1.02rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.friction-item p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

.friction-item strong {
    color: var(--text-primary);
}

/* ----- TARIFS & CONDITIONS ----- */
.audit-pricing {
    padding: 40px 5% 100px;
}

.audit-pricing-card {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), rgba(251, 146, 60, 0.04));
    border: 1.5px solid rgba(251, 146, 60, 0.4);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elevated), 0 0 60px rgba(251, 146, 60, 0.1);
}

.audit-pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-bright));
    box-shadow: var(--glow-orange);
}

.audit-pricing-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 38px 44px;
    border-bottom: 1px solid rgba(251, 146, 60, 0.15);
}

.audit-price-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.audit-price-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    width: fit-content;
}

.audit-price-left h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}

.audit-price-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.audit-price-meta strong {
    color: var(--text-secondary);
}

.audit-price-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
}

.audit-amount {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.audit-currency {
    color: var(--orange);
    text-shadow: var(--glow-orange);
    margin-left: 2px;
}

.audit-detail {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
}

.audit-eligible-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(251, 146, 60, 0.4);
    color: var(--orange-bright);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(251, 146, 60, 0.3);
}

.audit-eligible-badge:hover {
    background: rgba(251, 146, 60, 0.22);
    border-color: var(--orange);
    box-shadow: var(--glow-orange);
}

.audit-eligible-badge strong {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.78rem;
    margin-left: 2px;
}

/* Bloc Bonus Fidélité */
.audit-bonus-block {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(249, 115, 22, 0.04));
    padding: 32px 44px;
    position: relative;
    border-bottom: 1px solid rgba(251, 146, 60, 0.2);
}

.audit-bonus-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 16px;
    box-shadow: var(--glow-orange);
}

.audit-bonus-title {
    color: var(--text-primary);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.3;
}

.audit-bonus-title::before {
    content: "🎁 ";
}

.audit-bonus-text {
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.audit-bonus-text strong {
    color: var(--orange-bright);
}

.audit-bonus-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-style: italic;
    margin: 0;
}

.audit-bonus-note i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA final */
.btn-audit-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 32px 44px 12px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.02rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.35);
}

.btn-audit-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-audit-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-orange-strong), 0 10px 30px rgba(251, 146, 60, 0.5);
}

.btn-audit-cta:hover i:last-child {
    transform: translateX(5px);
}

.audit-cta-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0 44px 32px;
    font-style: italic;
}

/* ----- RESPONSIVE PAGE FLUXSAFE AUDIT ----- */
@media (max-width: 992px) {
    .friction-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 720px) {
    .audit-hero {
        padding: 130px 5% 50px;
    }
    .friction-banner {
        padding: 32px 26px;
    }
    .friction-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .audit-pricing-main {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        text-align: center;
    }
    .audit-price-left {
        align-items: center;
    }
    .audit-price-right {
        align-items: center;
        text-align: center;
    }
    .audit-bonus-block {
        padding: 28px 24px;
    }
    .btn-audit-cta {
        margin: 26px 22px 10px;
        flex-direction: column;
        gap: 8px;
        padding: 18px 22px;
        font-size: 0.92rem;
        text-align: center;
    }
    .btn-audit-cta i:last-child {
        display: none;
    }
    .audit-cta-note {
        margin: 0 22px 28px;
    }
}

/* ============================================
   AUDIT SPOTLIGHT — Bandeau horizontal premium
   Placé juste sous la grille Bouclier TPE sur
   services.html et offre-lancement.html
   ============================================ */
.audit-spotlight {
    padding: 30px 5% 70px;
    position: relative;
}

.audit-spotlight-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1.5px solid rgba(34, 211, 238, 0.4);
    border-radius: 24px;
    padding: 44px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elevated), 0 0 50px rgba(34, 211, 238, 0.12);
    transition: all 0.35s ease;
}

.audit-spotlight-wrapper:hover {
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: var(--shadow-elevated), 0 0 80px rgba(34, 211, 238, 0.25);
}

.audit-spotlight-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan-dark), var(--cyan), var(--cyan-bright), var(--cyan), var(--cyan-dark));
    box-shadow: var(--glow-cyan);
}

/* Halo radial décoratif */
.audit-spotlight-glow {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: spotlightPulse 6s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

/* Tag "Étape n°1 recommandée" */
.audit-spotlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.35);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    text-shadow: var(--glow-cyan);
}

/* Badge promo (visible uniquement sur offre-lancement) */
.audit-spotlight-discount {
    position: absolute;
    top: 20px;
    right: 24px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--glow-orange);
    z-index: 2;
    animation: spotlightPulse 3s ease-in-out infinite;
}

/* Grid 2 colonnes : contenu + prix */
.audit-spotlight-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.audit-spotlight-content {
    min-width: 0;
}

.audit-spotlight-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(34, 211, 238, 0.05));
    border: 1px solid rgba(34, 211, 238, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.audit-spotlight-icon i {
    font-size: 1.6rem;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.audit-spotlight-title {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.2;
}

.audit-spotlight-title .accent {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.audit-spotlight-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 600px;
}

.audit-spotlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audit-spotlight-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.55;
}

.audit-spotlight-features li i {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-top: 5px;
    flex-shrink: 0;
    text-shadow: var(--glow-cyan);
}

/* Bloc prix */
.audit-spotlight-price-block {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 18px;
    padding: 30px 28px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.audit-spotlight-label {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.audit-spotlight-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.audit-spotlight-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.5);
    font-weight: 600;
}

.audit-spotlight-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.audit-spotlight-price--promo .audit-spotlight-amount {
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
}

.audit-spotlight-currency {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    margin-left: 2px;
}

.audit-spotlight-price--promo .audit-spotlight-currency {
    color: var(--orange);
    text-shadow: var(--glow-orange);
}

.audit-spotlight-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
}

.audit-spotlight-bonus {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.12), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.86rem;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 22px;
}

.audit-spotlight-bonus i {
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.audit-spotlight-bonus strong {
    color: var(--orange-bright);
    font-weight: 800;
}

.audit-spotlight-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CTA principal du spotlight (orange) */
.btn-audit-spotlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(251, 146, 60, 0.3);
}

.btn-audit-spotlight i {
    transition: transform 0.3s ease;
}

.btn-audit-spotlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-orange-strong), 0 10px 25px rgba(251, 146, 60, 0.45);
}

.btn-audit-spotlight:hover i {
    transform: translateX(4px);
}

/* Le bouton secondaire cyan dans le spotlight prend toute la largeur */
.audit-spotlight-actions .btn-secondary-cyan {
    margin-top: 0;
    align-self: stretch;
}

/* ----- RESPONSIVE AUDIT SPOTLIGHT ----- */
@media (max-width: 992px) {
    .audit-spotlight-wrapper {
        padding: 38px 32px;
    }
    .audit-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .audit-spotlight-glow {
        width: 320px;
        height: 320px;
    }
    .audit-spotlight-discount {
        top: 16px;
        right: 16px;
        font-size: 0.7rem;
        padding: 6px 13px;
    }
}

@media (max-width: 600px) {
    .audit-spotlight {
        padding: 20px 4% 50px;
    }
    .audit-spotlight-wrapper {
        padding: 30px 22px;
        border-radius: 18px;
    }
    .audit-spotlight-tag {
        font-size: 0.66rem;
        padding: 6px 12px;
        letter-spacing: 1.1px;
        margin-bottom: 22px;
    }
    .audit-spotlight-discount {
        position: static;
        margin-bottom: 14px;
        align-self: flex-start;
    }
    .audit-spotlight-price-block {
        padding: 24px 20px;
    }
    .audit-spotlight-amount {
        font-size: 2.4rem;
    }
}

/* ============================================
   NAVBAR : Lien URGENCE (rouge avec pulse)
   ============================================ */
.nav-links a.nav-urgent {
    color: var(--red-bright);
    font-weight: 800;
    position: relative;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.nav-links a.nav-urgent::before {
    content: "";
    position: absolute;
    inset: -4px -8px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a.nav-urgent:hover {
    color: #fff;
    text-shadow: var(--glow-red);
}

.nav-links a.nav-urgent:hover::before {
    opacity: 1;
}

.nav-links a.nav-urgent.active {
    color: #fff;
    text-shadow: var(--glow-red);
}

.nav-links a.nav-urgent.active::before {
    opacity: 1;
}

/* Mini point rouge pulsant à côté du libellé (souligne l'urgence) */
.nav-links a.nav-urgent::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    margin-left: 5px;
    box-shadow: var(--glow-red);
    animation: urgentPulse 1.8s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.3); }
}

/* Accent rouge réutilisable sur les titres */
.accent-red {
    color: var(--red-bright);
    text-shadow: var(--glow-red);
}

/* Eyebrow rouge pour la section Urgence sur services.html */
.urgence-eyebrow {
    color: var(--red-bright) !important;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.urgence-eyebrow i {
    margin-right: 6px;
    color: var(--red);
}

/* Section Urgence sur services.html / offre-lancement.html */
.urgence-section {
    padding: 60px 5% 70px;
    position: relative;
}

.urgence-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 250px;
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.urgence-section .section-header,
.urgence-section .urgence-grid {
    position: relative;
    z-index: 1;
}

.urgence-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ============================================
   PAGE FLUXSAFE URGENCE
   ============================================ */

/* ----- HERO ----- */
.urgence-hero {
    padding: 160px 5% 60px;
    position: relative;
    overflow: hidden;
}

.urgence-hero::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.urgence-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.urgence-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: var(--red-bright);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.urgence-hero-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.urgence-hero-subtitle {
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    color: var(--red-bright);
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: var(--glow-red);
}

.urgence-hero-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 740px;
    margin: 0 auto 32px;
}

.urgence-hero-desc strong {
    color: var(--text-primary);
}

.urgence-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Boutons d'appel (urgence) */
.btn-urgence-call,
.btn-urgence-form {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-urgence-call {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #fff;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.btn-urgence-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-red-strong), 0 10px 28px rgba(239, 68, 68, 0.5);
}

.btn-urgence-form {
    background: transparent;
    border: 1.5px solid rgba(239, 68, 68, 0.5);
    color: var(--red-bright);
}

.btn-urgence-form:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--red);
    color: #fff;
    box-shadow: var(--glow-red);
}

/* ----- 2 CARTES SERVICES ----- */
.urgence-services {
    padding: 50px 5% 60px;
}

.urgence-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
}

.urgence-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 22px;
    padding: 34px 30px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.urgence-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.7;
    transition: opacity 0.35s ease;
}

.urgence-card--data::before {
    background: linear-gradient(90deg, transparent, var(--orange-bright), transparent);
}

.urgence-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated), 0 0 40px rgba(239, 68, 68, 0.15);
}

.urgence-card--data:hover {
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: var(--shadow-elevated), 0 0 40px rgba(251, 146, 60, 0.15);
}

.urgence-card:hover::before {
    opacity: 1;
}

.urgence-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.urgence-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.04));
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.urgence-card-icon i {
    font-size: 1.6rem;
    color: var(--red-bright);
    text-shadow: var(--glow-red);
}

.urgence-card--data .urgence-card-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 146, 60, 0.04));
    border-color: rgba(251, 146, 60, 0.3);
}

.urgence-card--data .urgence-card-icon i {
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
}

.urgence-card-tag {
    padding: 5px 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--red-bright);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.urgence-card--data .urgence-card-tag {
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
    color: var(--orange-bright);
}

.urgence-card-title {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.3;
}

.urgence-card-sub {
    color: var(--red-bright);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 22px;
    font-style: italic;
}

.urgence-card--data .urgence-card-sub {
    color: var(--orange-bright);
}

.urgence-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.urgence-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.urgence-card-list li i {
    color: var(--red-bright);
    font-size: 0.88rem;
    margin-top: 5px;
    flex-shrink: 0;
    text-shadow: var(--glow-red);
}

.urgence-card--data .urgence-card-list li i {
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
}

.urgence-card-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.urgence-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(249, 115, 22, 0.03));
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 22px;
}

/* Bande "Option sur demande" — sous la liste des prestations incluses */
.urgence-option-band {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08), rgba(249, 115, 22, 0.02));
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
}

.urgence-option-band::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--orange-bright), var(--orange-dark));
    box-shadow: var(--glow-orange);
}

.urgence-option-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: stretch;
    box-shadow: var(--glow-orange);
}

.urgence-option-badge i {
    font-size: 0.78rem;
}

.urgence-option-content {
    padding: 12px 16px;
    flex: 1;
    min-width: 0;
}

.urgence-option-content h5 {
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.3;
}

.urgence-option-content h5 strong {
    color: var(--orange-bright);
    text-shadow: 0 0 8px rgba(251, 146, 60, 0.3);
}

.urgence-option-content p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.urgence-option-content p strong {
    color: var(--text-primary);
    font-weight: 700;
}

@media (max-width: 560px) {
    .urgence-option-band {
        flex-direction: column;
    }
    .urgence-option-badge {
        padding: 6px 12px;
        align-self: flex-start;
        margin: 10px 0 0 12px;
        border-radius: 50px;
    }
    .urgence-option-content {
        padding: 10px 16px 14px;
    }
}

.urgence-guarantee i {
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.urgence-guarantee strong {
    color: var(--orange-bright);
}

.urgence-card-price {
    padding: 18px 0;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 22px;
}

.urgence-card-amount {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.urgence-card-currency {
    color: var(--red-bright);
    text-shadow: var(--glow-red);
    margin-left: 2px;
}

.urgence-card--data .urgence-card-currency {
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
}

.urgence-card-detail {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 700;
    text-align: right;
}

.btn-urgence-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #fff;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.urgence-card--data .btn-urgence-cta {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.3);
}

.btn-urgence-cta i {
    transition: transform 0.3s ease;
}

.btn-urgence-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-red-strong), 0 8px 24px rgba(239, 68, 68, 0.45);
}

.urgence-card--data .btn-urgence-cta:hover {
    box-shadow: var(--glow-orange-strong), 0 8px 24px rgba(251, 146, 60, 0.45);
}

.btn-urgence-cta:hover i {
    transform: translateX(4px);
}

/* ----- PROCESS 4 ÉTAPES ----- */
.urgence-process {
    padding: 50px 5% 70px;
}

.urgence-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.urgence-step {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.urgence-step:hover {
    background: var(--bg-card-hover);
    border-color: rgba(239, 68, 68, 0.22);
    transform: translateY(-3px);
}

.urgence-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    box-shadow: var(--glow-red);
}

.urgence-step h4 {
    color: var(--text-primary);
    font-size: 1.02rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.urgence-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.urgence-step p strong {
    color: var(--text-primary);
}

/* ----- TRUST BAND ----- */
.urgence-trust {
    padding: 30px 5% 60px;
}

.urgence-trust-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    box-shadow: var(--shadow-card);
}

.urgence-trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.urgence-trust-item > i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.urgence-trust-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.urgence-trust-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

/* ----- CTA FINAL ----- */
.urgence-cta-section {
    padding: 30px 5% 100px;
}

.urgence-cta-card {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), rgba(239, 68, 68, 0.05));
    border: 1.5px solid rgba(239, 68, 68, 0.35);
    border-radius: 24px;
    padding: 44px 44px 38px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elevated), 0 0 50px rgba(239, 68, 68, 0.1);
}

.urgence-cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-bright), var(--red), var(--red-dark));
    box-shadow: var(--glow-red);
}

.urgence-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: var(--red-bright);
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 20px;
    text-shadow: var(--glow-red);
}

.urgence-cta-card h2 {
    color: var(--text-primary);
    font-size: clamp(1.3rem, 2.6vw, 1.85rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.35;
}

.urgence-cta-card > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 28px;
    max-width: 620px;
}

.urgence-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ----- RESPONSIVE URGENCE ----- */
@media (max-width: 992px) {
    .urgence-grid,
    .urgence-cards {
        grid-template-columns: 1fr;
        max-width: 620px;
    }
    .urgence-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .urgence-trust-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 28px;
    }
}

@media (max-width: 720px) {
    .urgence-hero {
        padding: 130px 5% 50px;
    }
    .urgence-process-grid {
        grid-template-columns: 1fr;
    }
    .urgence-cta-card {
        padding: 34px 26px 30px;
    }
    .urgence-cta-actions {
        flex-direction: column;
    }
    .btn-urgence-call,
    .btn-urgence-form {
        justify-content: center;
        width: 100%;
    }
    /* Sur mobile : le mini point pulsant prend trop de place dans le burger,
       donc on garde le rouge mais on retire le point */
    .nav-links a.nav-urgent::after {
        display: none;
    }
}

/* ============================================
   FLUXSAFE HOME SPOTLIGHT — Bandeau horizontal
   premium B2C (thème orange).
   Placé en section 5 de services.html /
   offre-lancement.html, miroir du Audit Spotlight.
   ============================================ */
.home-spotlight {
    padding: 30px 5% 70px;
    position: relative;
}

.home-spotlight-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1.5px solid rgba(251, 146, 60, 0.4);
    border-radius: 24px;
    padding: 44px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elevated), 0 0 50px rgba(251, 146, 60, 0.12);
    transition: all 0.35s ease;
}

.home-spotlight-wrapper:hover {
    border-color: rgba(251, 146, 60, 0.6);
    box-shadow: var(--shadow-elevated), 0 0 80px rgba(251, 146, 60, 0.22);
}

.home-spotlight-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-bright), var(--orange), var(--orange-dark));
    box-shadow: var(--glow-orange);
}

/* Halo radial décoratif (orange chaud, côté droit) */
.home-spotlight-glow {
    position: absolute;
    top: -25%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.16) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: homeSpotlightPulse 7s ease-in-out infinite;
}

@keyframes homeSpotlightPulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.07); }
}

/* Tag VIP "Offre B2C" */
.home-spotlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(251, 146, 60, 0.4);
    color: var(--orange-bright);
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 8px rgba(251, 146, 60, 0.4);
}

/* Badge promo (visible uniquement sur offre-lancement) */
.home-spotlight-discount {
    position: absolute;
    top: 20px;
    right: 24px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--glow-orange-strong);
    z-index: 2;
    animation: homeSpotlightPulse 3s ease-in-out infinite;
}

/* Grid 2 colonnes : contenu + prix */
.home-spotlight-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.home-spotlight-content {
    min-width: 0;
}

.home-spotlight-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.22), rgba(251, 146, 60, 0.05));
    border: 1px solid rgba(251, 146, 60, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.home-spotlight-icon i {
    font-size: 1.6rem;
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
}

.home-spotlight-title {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.2;
}

.home-spotlight-title .accent-orange {
    color: var(--orange-bright);
    text-shadow: var(--glow-orange);
}

.home-spotlight-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 600px;
}

.home-spotlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-spotlight-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.55;
}

.home-spotlight-features li i {
    color: var(--cyan);
    font-size: 0.95rem;
    margin-top: 4px;
    flex-shrink: 0;
    text-shadow: var(--glow-cyan);
    width: 18px;
    text-align: center;
}

.home-spotlight-features li strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Bloc prix */
.home-spotlight-price-block {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(251, 146, 60, 0.25);
    border-radius: 18px;
    padding: 30px 28px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.home-spotlight-label {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.3);
    color: var(--orange-bright);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.home-spotlight-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.home-spotlight-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.home-spotlight-currency {
    color: var(--orange);
    text-shadow: var(--glow-orange);
    margin-left: 2px;
}

.home-spotlight-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
}

.home-spotlight-setup {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 0 14px;
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-spotlight-setup strong {
    color: var(--text-primary);
}

.home-spotlight-setup .price-old {
    text-decoration: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.5);
    color: var(--text-muted);
    font-weight: 600;
    margin: 0 4px;
}

.home-spotlight-setup .price-new {
    color: var(--orange-bright);
    font-weight: 800;
    text-shadow: var(--glow-orange);
}

.home-spotlight-freedom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0 0 22px;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.25);
}

.home-spotlight-freedom i {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.home-spotlight-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CTA principal du Home spotlight (orange plein) */
.btn-home-spotlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(251, 146, 60, 0.3);
}

.btn-home-spotlight i {
    transition: transform 0.3s ease;
}

.btn-home-spotlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-orange-strong), 0 10px 25px rgba(251, 146, 60, 0.45);
}

.btn-home-spotlight:hover i {
    transform: translateX(4px);
}

/* Le bouton secondaire cyan dans le spotlight prend toute la largeur */
.home-spotlight-actions .btn-secondary-cyan {
    margin-top: 0;
    align-self: stretch;
}

/* ----- Section Maintenance Web (carte centrée seule) ----- */
.single-card-section .single-card-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.single-card-section .single-card-wrapper .service-card {
    height: 100%;
}

/* ----- RESPONSIVE HOME SPOTLIGHT ----- */
@media (max-width: 992px) {
    .home-spotlight-wrapper {
        padding: 38px 32px;
    }
    .home-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .home-spotlight-glow {
        width: 320px;
        height: 320px;
    }
    .home-spotlight-discount {
        top: 16px;
        right: 16px;
        font-size: 0.7rem;
        padding: 6px 13px;
    }
}

@media (max-width: 600px) {
    .home-spotlight {
        padding: 20px 4% 50px;
    }
    .home-spotlight-wrapper {
        padding: 30px 22px;
        border-radius: 18px;
    }
    .home-spotlight-tag {
        font-size: 0.66rem;
        padding: 6px 12px;
        letter-spacing: 1.1px;
        margin-bottom: 22px;
    }
    .home-spotlight-discount {
        position: static;
        margin-bottom: 14px;
        align-self: flex-start;
    }
    .home-spotlight-price-block {
        padding: 24px 20px;
    }
    .home-spotlight-amount {
        font-size: 2.4rem;
    }
}

