:root {
    /* Couleurs de base */
    --arx-bg: #020617;
    --arx-bg-soft: #020617;
    --arx-surface: rgba(15, 23, 42, 0.96);
    --arx-surface-alt: rgba(15, 23, 42, 0.85);

    /* Accents */
    --arx-accent: #f97316; /* cuivre / orange */
    --arx-accent-soft: rgba(249, 115, 22, 0.3);
    --arx-accent-alt: #38bdf8; /* bleu cyan */
    --arx-accent-alt-soft: rgba(56, 189, 248, 0.2);

    /* Texte */
    --arx-text: #e5e7eb;
    --arx-muted: #94a3b8;

    /* Bordures / Radius / Ombres */
    --arx-border: rgba(148, 163, 184, 0.35);
    --radius-sm: 0.55rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.4rem;

    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.95);
    --shadow-card: 0 18px 38px rgba(15, 23, 42, 0.9);

    /* Typo */
    --font-base: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* ForTiCod – page tarifs (pricing) */
    --brand: #2563eb; /* Bleu principal sécurité */
    --brand-soft: #dbeafe;
    --accent: #22c55e;
    --bg: #020617;
    --panel: #020617;
    --panel-soft: #020617;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border: #1f2937;
    --danger: #ef4444;
    --shadow-light: 0 12px 30px rgba(15, 23, 42, 0.75);
    --maxw: 1220px;
}

/* =========================================================
   1. RESET / BODY
   ========================================================= */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(circle at 20% 120%, rgba(129, 140, 248, 0.18), transparent 60%),
    #020617;
    color: var(--arx-text);
    font-family: var(--font-base), serif;
    font-size: 16px;
    line-height: 1.6;
}


a {
    color: inherit;
}

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

/* =========================================================
   2. HEADER & NAVIGATION
   ========================================================= */
.arx-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    padding: 0.65rem 3vw;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.86));
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(20px);
}

.arx-header-inner {
    /*max-width: 1180px;*/
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.arx-header-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
@media (max-width: 768px) {
    .arx-logo-slogan {
        font-size: 0.75rem;
        white-space: nowrap;
        margin-left: 0.5rem !important;
        margin-right: 0 !important;
    }
}
/* Logo image uniquement */
.arx-logo-title {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.arx-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    border-radius: 0.9rem;
    padding: 0.15rem 0.45rem;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.45), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.6), transparent 55%),
    #020617;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.45),
    0 16px 32px rgba(15, 23, 42, 0.95);
}

.arx-logo-text {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--arx-muted);
}

.arx-logo-text span {
    color: var(--arx-accent);
}

/* NAV DESKTOP */
.arx-main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    border-radius:50%;
}

.arx-nav-shell {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35),
    0 14px 32px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

.arx-nav-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 15% 0, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(249, 115, 22, 0.3), transparent 55%);
    opacity: 0.75;
    filter: blur(12px);
    pointer-events: none;
}

.arx-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    text-decoration: none;
    color: #e5e7eb;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    isolation: isolate;
    transition: color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.arx-nav-link span:first-child {
    position: relative;
    z-index: 1;
    color: #f9fafb;
}

.arx-nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0, rgba(248, 250, 252, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.arx-nav-link::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--arx-accent-alt), var(--arx-accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease-out;
}

.arx-nav-pulse {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--arx-accent-alt), rgba(56, 189, 248, 0.08));
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.85),
    0 0 14px rgba(56, 189, 248, 0.55);
    opacity: 0.4;
    transform: scale(0.4);
    transition: opacity 0.25s ease,
    transform 0.25s ease;
}

.arx-nav-link--cta {
    margin-left: 0.25rem;
    padding-inline: 1.25rem;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.5), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.85), transparent 65%);
    color: #0b1120;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.7),
    0 16px 40px rgba(15, 23, 42, 0.95);
}

.arx-nav-link--cta::before {
    opacity: 0.25;
}

.arx-nav-link--cta::after {
    background: linear-gradient(90deg, #ffffff, #fbbf24);
}

.arx-nav-cta-orb {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f8fafc;
    box-shadow: 0 0 12px rgba(248, 250, 252, 0.95),
    0 0 26px rgba(249, 115, 22, 0.9);
    animation: arx-cta-pulse 1.8s ease-in-out infinite;
}

@keyframes arx-cta-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.arx-nav-link:hover,
.arx-nav-link:focus-visible {
    color: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.9);
}

.arx-nav-link:hover::before,
.arx-nav-link:focus-visible::before {
    opacity: 1;
}

.arx-nav-link:hover::after,
.arx-nav-link:focus-visible::after {
    transform: scaleX(1);
}

.arx-nav-link:hover .arx-nav-pulse,
.arx-nav-link:focus-visible .arx-nav-pulse {
    opacity: 1;
    transform: scale(1);
}

.arx-nav-link.is-active,
.arx-nav-link[aria-current="page"] {
    color: #f9fafb;
    background: rgba(15, 23, 42, 0.85);
}

.arx-nav-link.is-active::before,
.arx-nav-link[aria-current="page"]::before {
    opacity: 1;
}

.arx-nav-link.is-active::after,
.arx-nav-link[aria-current="page"]::after {
    transform: scaleX(1);
}

/* Burger mobile */
.arx-burger {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: radial-gradient(circle at 30% 0, rgba(56, 189, 248, 0.5), transparent 70%),
    rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.65),
    0 14px 40px rgba(15, 23, 42, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.arx-burger-bar {
    position: absolute;
    width: 52%;
    height: 2px;
    border-radius: 999px;
    background: #f9fafb;
    box-shadow: 0 0 8px rgba(248, 250, 252, 0.9);
    transition: transform 0.22s ease,
    opacity 0.2s ease,
    top 0.22s ease,
    bottom 0.22s ease;
}

.arx-burger-bar--top {
    top: 14px;
}

.arx-burger-bar--middle {
    top: 20px;
}

.arx-burger-bar--bottom {
    bottom: 14px;
}

.arx-burger:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.9),
    0 18px 46px rgba(15, 23, 42, 1);
    border-color: rgba(248, 250, 252, 0.7);
}

.arx-header.is-nav-open .arx-burger-bar--top {
    top: 20px;
    transform: rotate(45deg);
}

.arx-header.is-nav-open .arx-burger-bar--middle {
    opacity: 0;
}

.arx-header.is-nav-open .arx-burger-bar--bottom {
    bottom: 20px;
    transform: rotate(-45deg);
}

/* Overlay mobile */
.arx-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    padding: 12px;
    transition: opacity 0.25s ease;
}

.arx-nav-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.5), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.5), transparent 60%),
    rgba(2, 6, 23, 0.94);
    backdrop-filter: blur(24px);
    opacity: 0.6;
    background: #001226 !important;
    border-radius: 18px;
}

.arx-nav-overlay-panel {
    position: absolute;
    inset: 0;
    padding: 1.3rem 1.6rem 1.85rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    border-radius: 18px;
    transition: transform 0.26s ease-out,
    opacity 0.26s ease-out;
}

.arx-nav-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.7rem;
}

.arx-nav-overlay-label {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: rgba(226, 232, 240, 0.9);
}

.arx-overlay-close {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.65);
    background: rgba(15, 23, 42, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.arx-overlay-close-line {
    position: absolute;
    width: 52%;
    height: 2px;
    border-radius: 999px;
    background: #f9fafb;
    box-shadow: 0 0 8px rgba(248, 250, 252, 0.9);
}

.arx-overlay-close-line--left {
    transform: rotate(45deg);
}

.arx-overlay-close-line--right {
    transform: rotate(-45deg);
}

.arx-overlay-close:hover {
    border-color: rgba(248, 250, 252, 0.9);
    background: rgba(15, 23, 42, 1);
    transform: scale(1.04);
    box-shadow: 0 0 18px rgba(248, 250, 252, 0.7);
}

.arx-nav-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1%;
    border-radius: 12px;
    background: linear-gradient(145deg, #1e3a8a 0%, #0d1b3d 100%);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.25),
    0 4px 18px rgba(0, 0, 0, 0.45);
}

.arx-overlay-link {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0.85rem 1.1rem;
    border-radius: 1.1rem;
    text-decoration: none;
    color: #e5e7eb;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4),
    0 18px 40px rgba(15, 23, 42, 0.95);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.arx-overlay-link::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.55), transparent 60%);
    opacity: 0;
    filter: blur(14px);
    transition: opacity 0.25s ease;
}

.arx-overlay-link-label {
    font-size: 1.02rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.arx-overlay-link-meta {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.9);
    margin-top: 0.2rem;
}

.arx-overlay-link--cta {
    margin-top: 0.55rem;
    color: #efefef;
    font-weight: 600;
}

.arx-overlay-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 1);
}

.arx-overlay-link:hover::before {
    opacity: 1;
}

.arx-nav-overlay-footer {
    margin-top: 1.7rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(148, 163, 184, 0.95);
}

.arx-nav-overlay-footnote span {
    color: var(--arx-accent-alt);
}

.arx-header.is-nav-open .arx-nav-overlay {
    pointer-events: auto;
    opacity: 1;
}

.arx-header.is-nav-open .arx-nav-overlay-panel {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================================
   3. STRUCTURE GÉNÉRALE – CONTENU
   ========================================================= */
.arx-home-wrapper {
    /* padding: 2.5rem 3vw 3.5rem; */
}

.arx-shell {
    max-width: 1480px;
    margin: 0 auto;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.13), transparent 55%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.18), transparent 60%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
    border-radius: var(--radius-lg);
    padding: 2.2rem 2.6rem;
    box-shadow: var(--shadow-soft);
}

/* SECTIONS */
.arx-section {
    margin-bottom: 3.2rem;
    margin-top: 2rem;
}

.arx-section-header {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    align-items: center;
    gap: 1rem;
}

.arx-section-kicker {
    color: var(--arx-accent-alt);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 0.35rem 0;
}

.arx-section-title {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.arx-section-badge {
    padding:  0.6rem;
    background: linear-gradient(135deg, var(--arx-accent), var(--arx-accent-alt));
    color: white;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8),
    0 10px 22px rgba(15, 23, 42, 0.95);
    text-align: center;
}

/* GRID SYSTEM */
.arx-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 2.1rem;
}

.arx-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

/* CARDS */
.arx-card {
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.22), transparent 55%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 1.1rem 1.2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
}

.arx-card-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.arx-card-sub {
    color: var(--arx-muted);
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
}

.arx-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.arx-list li {
    margin-bottom: 0.45rem;
    padding-left: 1.1rem;
    position: relative;
    font-size: 0.95rem;
}

.arx-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--arx-accent), rgba(249, 115, 22, 0.2));
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.75);
}

/* =========================================================
   4. PRICING – PAGE TARIFS FORTICOD
   ========================================================= */


.pricing-main {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    background: radial-gradient(circle at top, #1d283a 0, #020617 55%, #000 100%);
    color: var(--text);
    min-height: 100vh;
    padding: 40px 16px 60px;
    display: flex;
    justify-content: center;
}

.page-shell {
    width: 100%;
    max-width: var(--maxw);
}

/* Header pricing */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;

}

.pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.5);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-soft);
}

.pricing-title {
    font-size: clamp(26px, 4vw, 34px);
    margin-top: 14px;
    letter-spacing: -0.03em;
}

.pricinSubNote {
    margin: 1rem auto;
}

.pricing-sub {
    max-width: 700px;
    margin: 2rem auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.pricing-note {
    margin-top: 10px;
    font-size: 13px;
    color: var(--muted);
}

/* Grille & cartes tarifs */
.pricing-grid {
    display: grid;
    gap: 22px;
    margin-top: 26px;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
}

.plan-card {
    position: relative;
    background: radial-gradient(circle at top left, #111827 0, #020617 55%, #000 110%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 22px 20px 22px;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.plan-card--pro {
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.55) 0, #020617 55%, #000 100%);
    border-color: rgba(248, 250, 252, 0.18);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

@media (min-width: 900px) {
    .plan-card--pro {
        margin-top: -12px;
    }
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--muted);
    background: rgba(15, 23, 42, 0.9);
}

.plan-badge--pro {
    border-color: rgba(56, 189, 248, 0.9);
    color: #e0f2fe;
    background: rgba(8, 47, 73, 0.9);
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
}

.plan-tagline {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
}

.plan-price {
    margin-top: 18px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.plan-price-main {
    font-size: 26px;
    font-weight: 700;
}

.plan-price-euro {
    font-size: 16px;
    opacity: 0.9;
}

.plan-price-period {
    font-size: 13px;
    color: var(--muted);
}

.plan-ht {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.plan-cta {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-main {
    width: 100%;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease,
    box-shadow 0.1s ease,
    background 0.15s ease;
}

.btn-main--primary {
    background: linear-gradient(135deg, var(--brand), #38bdf8);
    color: #0b1120;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.55);
}

.btn-main--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
}

.plan-note {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
}

.plan-divider {
    margin: 18px 0 14px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.55), transparent);
}

.plan-section-title {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.plan-features {
    list-style: none;
    font-size: 13px;
    color: var(--text);
    display: grid;
    gap: 7px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plan-feature-icon {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.plan-feature-icon--ok {
    background: rgba(22, 163, 74, 0.2);
    color: #4ade80;
}

.plan-feature-icon--pro {
    background: rgba(37, 99, 235, 0.25);
    color: #bfdbfe;
}

.plan-feature-icon--alert {
    background: rgba(239, 68, 68, 0.16);
    color: var(--danger);
}

.plan-feature-label span {
    display: block;
}

.plan-feature-label small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

.plan-foot {
    margin-top: 18px;
    font-size: 11px;
    color: var(--muted);
}

/* Switch de facturation (neon) */
.neon-switch {
    display: inline-flex;
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 153, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 153, 255, 0.3);
}

.neon-switch button {
    padding: 8px 20px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: var(--muted);
    cursor: pointer;
    transition: 0.2s ease;
}

.neon-switch button:hover {
    color: var(--text);
}

.neon-switch button.is-active {
    background: rgba(0, 153, 255, 0.2);
    color: #b9e6ff;
    box-shadow: 0 0 14px rgba(0, 153, 255, 0.6);
    border: 1px solid rgba(0, 153, 255, 0.6);
}

/* Bloc TJM (missions ponctuelles) */
.tjm-block {
    margin-top: 34px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.5);
    display: grid;
    gap: 10px;
    font-size: 14px;
}

@media (min-width: 700px) {
    .tjm-block {
        grid-template-columns: 2.1fr 1.1fr;
        align-items: center;
    }
}

.tjm-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.tjm-text {
    color: var(--muted);
    line-height: 1.5;
}

.tjm-highlight {
    font-size: 13px;
    color: var(--brand-soft);
}

.tjm-right {
    justify-self: end;
    text-align: right;
}

.tjm-right strong {
    font-size: 18px;
}

.tjm-right small {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.tjm-right a {
    margin-top: 6px;
    display: inline-block;
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
}

.tjm-right a:hover {
    text-decoration: underline;
}

/* =========================================================
   5. FORMULAIRES (PARTENAIRES / CONTACT)
   ========================================================= */
.arx-contact-layout {
    display: block;
}

.arx-contact-aside {
    width: 100%;
    margin-bottom: 2rem;
}

.arx-contact-form-wrapper {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow-card);
    width: 100%;
}

.arx-form {
    width: 100%;
}

.arx-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    line-height: 1.7;
}

.arx-form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--arx-muted);
}

.arx-form-group input,
.arx-form-group textarea,
.arx-form-group select {
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.7rem;
    font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.95);
    color: var(--arx-text);
    outline: none;
    transition: border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.arx-form-group input:focus,
.arx-form-group textarea:focus,
.arx-form-group select:focus {
    border-color: var(--arx-accent-alt);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.8),
    0 0 18px rgba(56, 189, 248, 0.4);
    background: rgba(15, 23, 42, 0.98);
}

.arx-btn-submit {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--arx-accent), var(--arx-accent-alt));
    border: none;
    color: #0f172a;
    padding: 0.85rem;
    margin: 10px auto;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9),
    0 18px 40px rgba(15, 23, 42, 0.95);
    transition: transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.arx-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 1);
    filter: brightness(1.05);
}

/* Ligne de formulaire en 2 colonnes sur desktop */
.arx-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

/* Bloc de formulaire */
.arx-form-block {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.arx-form-block-title {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--arx-muted);
}

/* Full width */
.arx-form-group-full {
    grid-column: 1 / -1;
}

/* =========================================================
   6. RESPONSIVE GLOBAL
   ========================================================= */
@media (max-width: 900px) {
    .arx-header {
        padding-inline: 1.4rem;
    }

    .arx-header-inner {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .arx-main-nav {
        display: none;
    }

    .arx-burger {
        display: inline-flex;
    }

    .arx-home-wrapper {
        padding-top: 2rem;
    }

    .arx-two-col {
        grid-template-columns: minmax(0, 1fr);
    }

    .arx-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .arx-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .arx-btn-submit {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .arx-form-footer-note {
        font-size: 70%;
    }
}

@media (max-width: 600px) {
    .arx-shell {
        padding: 1.5rem 1.3rem;
    }


    .arx-grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .arx-section-title {
        font-size: 1.6rem;
    }

    .arx-nav-overlay-panel {
        padding-inline: 1.2rem;
    }

    .pricing-main {
        padding: 26px 12px 40px;
    }

    .plan-card {
        padding: 18px 16px 18px;
    }

    .tjm-right {
        text-align: left;
        justify-self: start;
    }
}


/* ============================
   Page Tarifs : nav de sections
   ============================ */

/* Cacher le texte "Menu des tarifs" sur desktop (on n'affiche que les boutons) */
@media (min-width: 769px) {
    .pricing-nav-title {
        display: none;
    }
}

/* En-tête du menu (texte + burger) */
.pricing-nav-header {
    column-gap: 2rem; /* espace entre le texte et le burger */
}

/* Wrapper global nav + burger
   -> placé sous le header principal dans tarifs.html.twig
*/
.pricing-nav-mobile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    max-width: 100%;
    margin: 2rem auto 1.5rem;
    padding: 2rem 0 0;
}

/* Comportement sticky du bloc tarifs sous le header principal
   - position: sticky pour rester collé sous le header
   - top ≈ hauteur du header sticky (.arx-header)
   - z-index en dessous du header mais au-dessus du contenu
*/
.pricing-nav-header--fixed {
    position: sticky;
    top: 64px; /* adapte si tu modifies la hauteur du header */
    z-index: 8500;
}

/* Nav (desktop & tablette) */
.pricing-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    margin: 0.75rem auto 1.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 25px;
    background:
            radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%),
            radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.18), transparent 55%),
            rgba(15, 23, 42, 0.9);

    box-shadow:
            0 0 0 1px rgba(148, 163, 184, 0.35),
            0 14px 32px rgba(15, 23, 42, 0.9);

    /*border-radius: 999px;*/
    max-width: 100%;
    overflow: hidden;
}

/* Boutons du menu (même style que les liens du nav principal) */
.pricing-nav-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    background: transparent;

    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    color: #e5e7eb;

    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;

    cursor: pointer;
    isolation: isolate;

    transition:
            color 0.25s ease,
            background 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease;
}

.pricing-nav-btn span:first-child {
    position: relative;
    z-index: 1;
    color: #f9fafb;
}

.pricing-nav-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0, rgba(248, 250, 252, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.pricing-nav-btn::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--arx-accent-alt), var(--arx-accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease-out;
}

/* Hover / focus */
.pricing-nav-btn:hover,
.pricing-nav-btn:focus-visible {
    color: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.9);
}

.pricing-nav-btn:hover::before,
.pricing-nav-btn:focus-visible::before {
    opacity: 1;
}

.pricing-nav-btn:hover::after,
.pricing-nav-btn:focus-visible::after {
    transform: scaleX(1);
}

.pricing-nav-btn:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

/* État actif (bouton sélectionné) */
.pricing-nav-btn.is-active {
    color: #f9fafb;
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.95);
}

.pricing-nav-btn.is-active::before {
    opacity: 1;
}

.pricing-nav-btn.is-active::after {
    transform: scaleX(1);
}

/* ---------- Burger mobile ---------- */

.pricing-nav-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);

    background:
            radial-gradient(circle at 30% 0, rgba(56, 189, 248, 0.5), transparent 70%),
            rgba(15, 23, 42, 0.95);

    box-shadow:
            0 0 14px rgba(56, 189, 248, 0.65),
            0 14px 40px rgba(15, 23, 42, 0.95);

    display: none;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    padding: 0;
    outline: none;
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease,
            background 0.2s ease;
}

.pricing-nav-toggle-bar {
    position: absolute;
    width: 52%;
    height: 2px;
    border-radius: 999px;
    background: #f9fafb;
    box-shadow: 0 0 8px rgba(248, 250, 252, 0.9);

    transition:
            transform 0.22s ease,
            opacity 0.2s ease,
            top 0.22s ease,
            bottom 0.22s ease;
}

.pricing-nav-toggle-bar--top    { top: 14px; }
.pricing-nav-toggle-bar--middle { top: 20px; }
.pricing-nav-toggle-bar--bottom { bottom: 14px; }

.pricing-nav-toggle:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow:
            0 0 18px rgba(56, 189, 248, 0.9),
            0 18px 46px rgba(15, 23, 42, 1);
    border-color: rgba(248, 250, 252, 0.7);
}

.pricing-nav-toggle.is-open .pricing-nav-toggle-bar--top {
    top: 20px;
    transform: rotate(45deg);
}
.pricing-nav-toggle.is-open .pricing-nav-toggle-bar--middle {
    opacity: 0;
}
.pricing-nav-toggle.is-open .pricing-nav-toggle-bar--bottom {
    bottom: 20px;
    transform: rotate(-45deg);
}

/* ---------- Responsive mobile ---------- */
@media (max-width: 768px) {
    .pricing-nav-header--fixed {
        background: rgba(15, 23, 42, 0.0);
        backdrop-filter: none;
        padding: 0.6rem 0.8rem 0.9rem;
        border-radius: 0 0 12px 12px;
    }

    .pricing-nav-toggle {
        display: inline-flex;
        margin-bottom: 0.5rem;
    }

    .pricing-nav {
        display: none;
        margin: 0 auto 1rem;
        padding: 0.75rem 0.5rem;
        row-gap: 0.5rem;
    }

    .pricing-nav.is-open {
        display: flex;
    }

    .pricing-nav-btn {
        flex: 1 1 calc(50% - 0.4rem);
        font-size: 0.8rem;
        padding-inline: 0.75rem;
    }
}
