/*
Theme Name: Light by CMC Agency
Theme URI: https://cmc-agency.me
Author: CMC AGENCY
Author URI: https://cmc-agency.me
Description: Light est un thème sur-mesure ultra minimaliste.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: light
Tags: light, minimal, blog
*/
/**
 * Nutri AI Landing (Tech-Organic) — Dark mode DEFAULT
 * Visual guide: prompt design.txt (palette, typography, buttons, grid, spacing, mobile sticky CTA).
 */


 .na-media-card {
  
    display: none!important;
}



:root {
    /* Palette (dark default) */
    --na-bg: #0b0f14;
    --na-surface: #0f172a;
    --na-surface-2: rgba(255, 255, 255, 0.06);
    --na-border: rgba(229, 231, 235, 0.12);

    --na-text: #f9fafb;
    --na-muted: #9ca3af;
    --na-body: #cbd5e1;

    --na-charcoal: #1a1a1a;
    --na-white: #ffffff;

    --na-accent: #43c848; /* Primary Green (CTA) */
    --na-accent-2: #1e922e; /* Secondary Green */

    /* Primary colors for buttons (gradient) - Updated to match Elementor style */
    --color-primary: #43c848;
    --color-secondary: #1e922e;
    --e-global-color-accent: #7f8f94;

    /* Typography */
    --na-font-head:
        "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto,
        Arial, sans-serif;
    --na-font-body:
        Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    /* Layout */
    --na-max: 1600px; /* Increased from 1200px for wider page */
    --na-gutter: 20px;
    --na-radius: 16px;
    --na-radius-pill: 999px;
    --na-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

    /* Spacing (8px scale) */
    --na-s-1: 8px;
    --na-s-2: 16px;
    --na-s-3: 24px;
    --na-s-4: 32px;
    --na-s-5: 48px;
    --na-s-6: 80px;

    /* Button glow */
    --na-cta-glow: 0px 4px 14px rgba(67, 200, 72, 0.4);

    color-scheme: dark;
}

/* Optional light override (not used by default). */
.na-theme-light {
    --na-bg: #ffffff;
    --na-surface: #ffffff;
    --na-surface-2: rgba(26, 26, 26, 0.04);
    --na-border: #e5e7eb;
    --na-text: #0b1220;
    --na-muted: #6b7280;
    --na-body: #374151;
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0 !important;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background:
        radial-gradient(
            1200px 700px at 20% 0%,
            rgba(67, 200, 72, 0.18),
            transparent 60%
        ),
        radial-gradient(
            900px 600px at 90% 20%,
            rgba(30, 146, 46, 0.16),
            transparent 55%
        ),
        var(--na-bg);
    color: var(--na-text);
    font-family: var(--na-font-body);
    font-size: 17px; /* Slightly larger baseline text */
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--na-accent);
    outline-offset: 3px;
}

.hide,
.hidden {
    display: none !important;
}

/* Accessibility */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.na-skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    z-index: 9999;
    background: var(--na-accent);
    color: #0a2e0c; /* Dark green text on light green background */
    padding: 10px 14px;
    border-radius: 10px;
}

.na-skip-link:focus {
    left: 10px;
}

/* Containers & grid */
.na-container {
    max-width: var(--na-max);
    padding-left: var(--na-gutter);
    padding-right: var(--na-gutter);
    margin: 0 auto;
}

.na-narrow {
    width: 100%;
    max-width: 860px;
}

/* Responsive adjustments for na-narrow */
@media (max-width: 968px) {
    .na-narrow {
        max-width: 100%;
        width: 100%;
    }

    .na-container.na-narrow {
        padding-left: var(--na-gutter);
        padding-right: var(--na-gutter);
    }
}

@media (max-width: 640px) {
    .na-container.na-narrow {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
        width: 100%;
    }
}

.na-grid {
    display: grid;
    gap: var(--na-s-4);
}

/* Header (subtle glassmorphism) - Full width */
.na-site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(11, 15, 20, 0.55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.06);
    transition:
        background 220ms ease,
        border-color 220ms ease;
}

/* Header inner container uses full width but content is constrained */
.na-site-header .na-container {
    max-width: var(--na-max);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.na-site-header.is-scrolled {
    background: rgba(11, 15, 20, 0.78);
    border-bottom-color: rgba(229, 231, 235, 0.1);
}

.na-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--na-s-2);
    padding-top: 10px;
    padding-bottom: 14px;
    max-width: 100% !important;
}

/* Header left (logo + tagline/menu) */
.na-header-left {
    display: flex;
    align-items: center;
    gap: var(--na-s-3);
    flex: 1;
}

.na-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.na-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.na-logo-text {
    font-family: var(--na-font-head);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--na-text);
}

.na-header-tagline {
    margin: 0;
    font-size: 14px;
    color: var(--na-muted);
    font-weight: 400;
    display: none; /* Hidden on mobile */
}

/* Main navigation (logged in) */
.na-nav-main {
    display: none; /* Hidden on mobile */
}

.na-menu-main {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.na-menu-main a {
    color: var(--na-text);
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 160ms ease;
}

.na-menu-main a:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* Header right (buttons/actions) */
.na-header-right {
    display: flex;
    align-items: center;
    gap: var(--na-s-2);
}

.na-header-link {
    color: var(--na-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 160ms ease;
}

.na-header-link:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* User info (logged in) - Same height as button */
.na-user-info {
    display: none; /* Hidden on mobile */
    align-items: center;
    gap: 8px;
    padding: 12px 18px; /* Match .na-btn-sm padding */
    min-height: 44px; /* Match button min-height */
    border-radius: 10px; /* Match button border-radius */
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    text-decoration: none;
    transition: background 160ms ease;
}

.na-user-info:hover {
    background: rgba(255, 255, 255, 0.08);
}

.na-user-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(67, 200, 72, 0.6);
    display: inline-block;
}

.na-username {
    font-size: 14px;
    font-weight: 500;
    color: var(--na-text);
}

/* Menu toggle button (hamburger) */
.na-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border: 1px solid rgba(229, 231, 235, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    color: var(--na-text);
    cursor: pointer;
    transition: background 160ms ease;
}

.na-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.na-menu-toggle-icon {
    width: 20px;
    height: 2px;
    background: var(--na-text);
    position: relative;
    border-radius: 999px;
    display: inline-block;
}

.na-menu-toggle-icon::before,
.na-menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--na-text);
    border-radius: 999px;
}

.na-menu-toggle-icon::before {
    top: -6px;
}

.na-menu-toggle-icon::after {
    top: 6px;
}

/* Sidebar menu panel */
.na-sidebar-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
}

.na-sidebar-menu[aria-hidden="false"] {
    pointer-events: auto;
    opacity: 1;
}

.na-sidebar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.na-sidebar-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(400px, 85vw);
    background: var(--na-surface);
    border-left: 1px solid rgba(229, 231, 235, 0.12);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 300ms ease;
}

.na-sidebar-menu[aria-hidden="false"] .na-sidebar-content {
    transform: translateX(0);
}

.na-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--na-s-3) var(--na-s-4);
    border-bottom: 1px solid rgba(229, 231, 235, 0.12);
}

.na-sidebar-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.na-sidebar-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--na-text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 160ms ease;
}

.na-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.na-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: var(--na-s-2);
}

.na-sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.na-sidebar-menu-list a {
    display: block;
    padding: 12px 16px;
    color: var(--na-text);
    text-decoration: none;
    border-radius: 10px;
    transition: background 160ms ease;
    font-weight: 500;
}

.na-sidebar-menu-list a:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* Typography scale (mobile-first) */
.na-h1,
.na-h2,
.na-h3 {
    font-family: var(--na-font-head);
    margin: 0 0 var(--na-s-2);
    letter-spacing: -0.02em;
}

.na-h1 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
}

.na-h1-secondary {
    display: block;
    font-size: 0.6em; /* 60% de la taille principale = ~21.6px sur mobile */
    font-weight: 500;
    opacity: 0.85;
    margin-top: 0.3em;
}

.na-h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
}

.na-h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
}

.na-lead {
    font-size: 19px;
    color: var(--na-body);
    margin: 0 0 var(--na-s-3);
}

.na-body {
    margin: 0 0 var(--na-s-2);
    color: var(--na-body);
}

.na-muted {
    color: var(--na-muted);
}

.na-microcopy {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--na-muted);
}

/* Sections */
.na-section {
    padding: 72px 0; /* More whitespace between sections (mobile-first) */
}

.na-main {
    min-height: 60vh;
}

/* Cards */
.na-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: var(--na-radius);
    padding: var(--na-s-4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

/* Buttons (CTA system) - Elementor style */
.na-btn {
    text-align: center;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 12px 24px;
    min-height: 44px; /* touch target */
    cursor: pointer !important;
    text-decoration: none;
    box-shadow: none;
}

.na-btn:focus,
.na-btn:visited {
    color: #fff;
}

.na-btn-primary {
    font-family:
        "Poppins",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    font-size: 14px;
    font-weight: 500 !important;
    background-color: var(--e-global-color-accent);
    background-image: linear-gradient(
        120deg,
        var(--color-primary) 0%,
        var(--color-secondary) 51%,
        var(--color-primary) 100%
    );
    background-size: 200% !important;
    border-radius: 10px !important;
    border-style: none;
    border: none;
    color: #fff;
    transition: all 0.3s;
    transition-behavior: normal;
    box-shadow: none;
}

.na-btn-primary:hover {
    background-position: right center !important;
    box-shadow: none;
    color: #fff !important;
    text-decoration: none;
    transform: scale(1.05) !important;
}

/* Button light variant (outline style) */
.na-btn-light {
    font-family:
        "Poppins",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    font-size: 14px;
    font-weight: 500 !important;
    background-color: transparent !important;
    background-size: 200% !important;
    border-radius: 10px !important;
    border-style: none;
    box-shadow: inset 0 0 0 1px var(--color-primary);
    color: #fff;
    transition: all 0.3s;
    transition-behavior: normal;
}

.na-btn-light:hover {
    background-position: right center !important;
    box-shadow:
        0 0 20px var(--color-primary),
        inset 0 0 0 1px var(--color-primary) !important;
    color: #fff !important;
    text-decoration: none;
    transform: scale(1.05) !important;
}

.na-btn-lg {
    padding: 16px 32px;
    font-size: 14px;
    text-transform: uppercase;
}

.na-btn-sm {
    padding: 12px 18px;
    font-size: 13px;
}

.na-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.na-link {
    color: var(--na-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Section backgrounds (fixed selection, cover) */
.na-section.na-has-bg {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Light overlay for sections with background (improves text readability) */
.na-section.na-has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 20, 0.45); /* Subtle dark overlay */
    z-index: 0;
}

.na-section.na-has-bg > * {
    position: relative;
    z-index: 1;
}

.na-db-right,
.na-db-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hero - Full width */
.na-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 60vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Light overlay for hero section (improves text readability) */
.na-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 20, 0.45); /* Subtle dark overlay */
    z-index: 0;
}

.na-hero > * {
    position: relative;
    z-index: 1;
}

/* Full-width hero container (matches page width) */
.na-hero .na-container {
    max-width: var(--na-max);
    width: 100%;
}

.na-hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
}

.na-benefits {
    margin: 0 0 var(--na-s-3);
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.na-benefits li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.1);
}

.na-benefit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.na-benefit-icon svg {
    width: 100%;
    height: 100%;
}

.na-benefit-text {
    color: var(--na-text);
}

.na-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(67, 200, 72, 0.12);
    border: 1px solid rgba(67, 200, 72, 0.28);
    color: #c4f5c8; /* Light green text on dark green background */
    font-size: 13px;
    font-weight: 600;
    margin-left: 6px;
}

/* Media placeholder */
.na-media-card {
    display: grid;
    gap: 12px;
}

.na-media-placeholder {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(232, 245, 237, 0.06),
        rgba(255, 255, 255, 0.03)
    );
    border: 1px solid rgba(229, 231, 235, 0.12);
}

.na-scan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(67, 200, 72, 0.25),
        transparent
    );
    transform: translateX(-60%);
    animation: na-scan 2.4s ease-in-out infinite;
}

@keyframes na-scan {
    0% {
        transform: translateX(-60%);
    }
    60% {
        transform: translateX(60%);
    }
    100% {
        transform: translateX(60%);
    }
}

.na-media-placeholder-inner {
    position: relative;
    height: 100%;
    padding: 22px;
    display: grid;
    align-content: end;
    gap: 8px;
}

.na-media-title {
    margin: 0;
    font-family: var(--na-font-head);
    font-weight: 700;
}

.na-media-text {
    margin: 0;
    color: var(--na-body);
}

.na-media-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--na-muted);
    font-size: 14px;
}

.na-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(30, 146, 46, 0.2);
    border: 1px solid rgba(30, 146, 46, 0.35);
    color: #b8f5c0; /* Light green text on dark green background */
    font-weight: 600;
}

/* Feature grid */
.na-feature-grid {
    grid-template-columns: 1fr;
}

.na-feature-head {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.na-feature-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(67, 200, 72, 0.12);
    border: 1px solid rgba(67, 200, 72, 0.26);
    color: var(--color-primary);
}

.na-feature-icon svg {
    width: 20px;
    height: 20px;
}

/* Feature visuals - Solution section graphics */
.na-feature-visual {
    position: relative;
    min-height: 180px;
    margin-bottom: var(--na-s-3);
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    padding: var(--na-s-3);
    border: 1px solid rgba(229, 231, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Weight loss chart SVG styles */
.na-chart-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.na-chart-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 8px 12px;
}

.na-precision-value {
    font-size: 24px;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
}

.na-precision-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Before/After comparison visual */
.na-comparison-visual {
    flex-direction: column;
    padding: var(--na-s-2);
}

.na-comparison-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.na-comparison-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.na-comparison-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.na-comparison-before .na-comparison-label {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.na-comparison-after .na-comparison-label {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.na-comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.na-bar-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.na-bar-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.na-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.na-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.na-bar-over {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.na-bar-under {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.na-bar-stagnant {
    background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.na-bar-optimal {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.na-bar-value {
    font-size: 9px;
    font-weight: 600;
}

.na-bar-negative {
    color: #fca5a5;
}

.na-bar-positive {
    color: #86efac;
}

.na-comparison-arrow {
    font-size: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}

/* Personalization data points visual */
.na-personalization-visual {
    min-height: 200px;
}

.na-data-points-container {
    position: relative;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.na-data-center {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    z-index: 2;
}

.na-data-number {
    font-size: 28px;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
}

.na-data-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.2;
}

.na-data-orbits {
    position: absolute;
    width: 100%;
    height: 100%;
}

.na-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate-orbit 30s linear infinite;
}

.na-orbit-1 {
    width: 140px;
    height: 140px;
    margin-left: -70px;
    margin-top: -70px;
}

.na-orbit-2 {
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
    animation-direction: reverse;
    animation-duration: 40s;
}

.na-data-point {
    position: absolute;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: rotate(calc(var(--angle))) translateX(var(--radius, 60px)) rotate(calc(-1 * var(--angle)));
}

.na-orbit-1 .na-data-point {
    --radius: 70px;
}

.na-orbit-2 .na-data-point {
    --radius: 100px;
}

@keyframes rotate-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3-column feature grid */
.na-feature-grid-3 {
    grid-template-columns: 1fr;
}

/* Logos */
.na-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: var(--na-s-3) 0 var(--na-s-4);
}

.na-logo-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(229, 231, 235, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--na-muted);
    font-weight: 600;
    font-size: 13px;
}

.na-proof-grid {
    grid-template-columns: 1fr;
}

.na-proof-top {
    margin-bottom: var(--na-s-3);
}

.na-proof-left .na-h2 {
    margin-bottom: 0;
}

.na-proof-reviews {
    margin-top: var(--na-s-2);
}

.na-quote-text {
    margin: 0;
    font-size: 17px;
    color: var(--na-text);
}

.na-quote-author {
    margin-top: 14px;
    color: var(--na-muted);
    font-size: 14px;
}

.na-badge-list {
    margin: 0;
    padding-left: 18px;
    color: var(--na-body);
}

.na-badge-list li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.na-badge-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.na-badge-icon svg {
    width: 100%;
    height: 100%;
}

/* FAQ */
.na-faq-list {
    display: grid;
    gap: 12px;
}

.na-faq-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: 16px;
    padding: 12px 14px;
}

.na-faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-family: var(--na-font-body);
    list-style: none;
}

.na-faq-item summary::-webkit-details-marker {
    display: none;
}

.na-faq-body p {
    margin: 10px 0 0;
    color: var(--na-body);
}

/* Final CTA */
.na-final-cta .na-cta-card {
    border-radius: 24px;
    padding: var(--na-s-5);
    background: linear-gradient(
        180deg,
        rgba(67, 200, 72, 0.12),
        rgba(15, 23, 42, 0.65)
    );
    border: 1px solid rgba(67, 200, 72, 0.22);
    text-align: center;
}

.na-cta-actions {
    margin-top: var(--na-s-3);
    display: grid;
    gap: 12px;
    justify-items: center;
}

/* Footer */
.na-site-footer {
    padding: 48px 0 96px; /* extra for mobile sticky bar */
    border-top: 1px solid rgba(229, 231, 235, 0.1);
    background: rgba(11, 15, 20, 0.55);
    backdrop-filter: blur(10px);
}

.na-footer-inner {
    max-width: var(--na-max);
    margin: 0 auto;
    padding: 0 var(--na-gutter);
}

.na-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* Footer Column 1: Logo + Description */
.na-footer-col-1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.na-footer-logo {
    margin-bottom: 8px;
}

.na-footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.na-footer-brand {
    margin: 0 0 16px;
    font-family: var(--na-font-head);
    font-weight: 700;
    font-size: 24px;
    color: var(--na-text);
}

.na-footer-description {
    margin: 0;
    color: var(--na-body);
    font-size: 14px;
    line-height: 1.6;
}

.na-footer-thanks {
    margin: 0;
    color: var(--na-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Footer Column 2: Navigation */
.na-footer-col-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.na-footer-title {
    margin: 0 0 12px;
    font-family: var(--na-font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--na-text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.na-footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.na-footer-nav-list li {
    margin: 0;
}

.na-footer-nav-list a {
    color: var(--na-body);
    text-decoration: none;
    font-size: 14px;
    transition: color 160ms ease;
}

.na-footer-nav-list a:hover {
    color: var(--na-text);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Footer Column 3: Newsletter */
.na-footer-col-3 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.na-footer-newsletter-desc {
    margin: 0;
    color: var(--na-body);
    font-size: 13px;
    line-height: 1.6;
}

.na-footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.na-footer-newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(229, 231, 235, 0.15);
    border-radius: 8px;
    color: var(--na-text);
    font-size: 14px;
    font-family: var(--na-font-body);
    transition:
        border-color 160ms ease,
        background 160ms ease;
}

.na-footer-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.na-footer-newsletter-form input[type="email"]::placeholder {
    color: var(--na-muted);
}

.na-footer-newsletter-form .na-btn {
    width: 100%;
    justify-content: center;
}

/* Footer Column 4: Reserved */
.na-footer-col-4 {
    min-height: 1px; /* Reserved for future content */
}

/* Screen reader only */
.na-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Sticky CTA (mobile) */
.na-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px 12px;
    background: rgba(11, 15, 20, 0.72);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(229, 231, 235, 0.12);
}

.na-sticky-cta-inner {
    max-width: var(--na-max);
    margin: 0 auto;
    padding: 0 var(--na-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.na-sticky-cta-text {
    font-weight: 700;
    font-family: var(--na-font-head);
    letter-spacing: -0.02em;
}

/* Tablet and small desktop improvements */
@media (min-width: 640px) and (max-width: 767px) {
    .na-hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .na-h1 {
        font-size: 42px;
    }

    .na-h2 {
        font-size: 32px;
    }

    .na-h3 {
        font-size: 22px;
    }

    .na-hero-grid {
        gap: var(--na-s-5);
    }

    .na-feature-grid {
        gap: var(--na-s-4);
    }

    .na-feature-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .na-proof-grid {
        gap: var(--na-s-4);
    }
}

@media (min-width: 768px) {
    :root {
        --na-gutter: 32px;
    }

    /* Header responsive */
    .na-header-tagline {
        display: block;
    }

    .na-nav-main {
        display: block;
    }

    .na-user-info {
        display: flex;
    }

    .na-menu-toggle {
        display: inline-flex;
    }

    .na-section {
        padding: 120px 0;
    } /* More whitespace on desktop */

    .na-h1 {
        font-size: 58px;
    }
    .na-h1-secondary {
        font-size: 0.6em;
    } /* ~34.8px sur desktop, proportionnellement plus petit */
    .na-h2 {
        font-size: 42px;
    }
    .na-h3 {
        font-size: 25px;
    }

    .na-hero {
        padding-top: 160px;
        padding-bottom: 160px;
        min-height: 70vh;
    }

    .na-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--na-s-6);
    }

    .na-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--na-s-4);
    }

    .na-feature-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .na-proof-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        gap: var(--na-s-5);
    }

    /* Footer responsive: 4 columns on desktop */
    .na-footer-grid {
        grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
        gap: 40px;
    }

    .na-footer-newsletter-form {
        flex-direction: row;
        gap: 8px;
    }

    .na-footer-newsletter-form input[type="email"] {
        flex: 1;
    }

    .na-footer-newsletter-form .na-btn {
        width: auto;
        min-width: 120px;
    }

    /* Sticky bar hidden on desktop */
    .na-sticky-cta {
        display: none;
    }
    .na-site-footer {
        padding-bottom: 36px;
    }
}

/* Large desktop improvements */
@media (min-width: 1024px) {
    .na-hero-grid {
        gap: var(--na-s-6);
    }

    .na-feature-grid {
        gap: var(--na-s-5);
    }

    .na-feature-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .na-proof-grid {
        gap: var(--na-s-6);
    }
}

/* Mobile-specific responsive improvements */
@media (max-width: 639px) {
    /* Hero section mobile improvements */
    .na-hero {
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .na-hero-grid {
        gap: var(--na-s-4);
    }

    .na-hero-copy {
        margin-bottom: var(--na-s-4);
    }

    .na-hero-visual {
        margin-top: var(--na-s-4);
    }

    /* Typography adjustments for mobile */
    .na-h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .na-h1-secondary {
        font-size: 0.65em;
        margin-top: 0.4em;
    }

    .na-h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .na-h3 {
        font-size: 20px;
    }

    .na-lead {
        font-size: 17px;
    }

    /* Benefits list mobile */
    .na-benefits {
        gap: 10px;
    }

    .na-benefits li {
        padding: 10px 12px;
        font-size: 14px;
    }

    .na-benefit-text {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Feature cards mobile */
    .na-feature {
        padding: var(--na-s-3);
    }

    .na-feature-head {
        margin-bottom: 8px;
    }

    /* Feature visuals mobile */
    .na-feature-visual {
        min-height: 150px;
        padding: var(--na-s-2);
    }

    .na-chart-badge {
        top: 8px;
        right: 8px;
        padding: 6px 10px;
    }

    .na-precision-value {
        font-size: 20px;
    }

    .na-comparison-container {
        flex-direction: column;
        gap: 15px;
    }

    .na-comparison-arrow {
        transform: rotate(90deg);
    }

    .na-data-points-container {
        height: 160px;
    }

    .na-orbit-1 {
        width: 120px;
        height: 120px;
        margin-left: -60px;
        margin-top: -60px;
    }

    .na-orbit-2 {
        width: 170px;
        height: 170px;
        margin-left: -85px;
        margin-top: -85px;
    }

    .na-orbit-1 .na-data-point {
        --radius: 60px;
    }

    .na-orbit-2 .na-data-point {
        --radius: 85px;
    }

    .na-data-point {
        font-size: 7px;
        padding: 2px 5px;
    }

    .na-data-center {
        width: 60px;
        height: 60px;
    }

    .na-data-number {
        font-size: 22px;
    }

    /* Proof section mobile */
    .na-proof-grid {
        gap: var(--na-s-4);
    }

    .na-proof-left {
        margin-bottom: var(--na-s-4);
    }

    /* Logos mobile */
    .na-logos {
        gap: 8px;
    }

    .na-logo-pill {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* FAQ mobile */
    .na-faq-item {
        padding: 10px 12px;
    }

    .na-faq-item summary {
        font-size: 15px;
        line-height: 1.4;
    }

    /* CTA card mobile */
    .na-cta-card {
        padding: var(--na-s-4) !important;
    }

    .na-cta-actions {
        gap: 10px;
    }

    .na-btn-lg {
        padding: 14px 24px;
        font-size: 13px;
    }

    /* Media placeholder mobile */
    .na-media-placeholder {
        min-height: 240px;
    }

    .na-media-title {
        font-size: 14px;
    }

    .na-media-text {
        font-size: 13px;
    }

    /* Section padding mobile */
    .na-section {
        padding: 48px 0;
    }

    /* Container padding mobile */
    .na-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Ensure na-narrow containers are responsive on mobile */
    .na-container.na-narrow {
        max-width: 100%;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Cards mobile */
    .na-card {
        padding: var(--na-s-3);
    }
}

/* Scroll reveal */
.na-reveal {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 500ms ease,
        transform 500ms ease;
}

.na-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    html * {
        transition-delay: 0s !important;
        transition-duration: 0s !important;
    }
    .na-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .na-scan-overlay {
        animation: none;
    }
    .na-btn-primary:hover,
    .na-btn-light:hover {
        transform: none !important;
    }
}

/**
 * Account page (`page-mon-compte.php`)
 * - Logged out: slideshow + modern auth card
 * - Logged in: simple dashboard cards
 */
.na-account-section {
    padding-top: 48px;
}

.na-notice {
    margin: 0 0 var(--na-s-3);
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(229, 231, 235, 0.12);
    background: rgba(15, 23, 42, 0.65);
    color: var(--na-text);
    backdrop-filter: blur(10px);
}

.na-notice-success {
    border-color: rgba(67, 200, 72, 0.3);
    background: rgba(67, 200, 72, 0.1);
}

.na-notice-error {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(239, 68, 68, 0.1);
}

.na-account-grid {
    display: grid;
    gap: var(--na-s-4);
    align-items: stretch;
    grid-template-columns: 1fr;
}

.na-account-left {
    order: 2;
    min-width: 0;
}

.na-account-right {
    order: 1;
    min-width: 0;
}

.na-account-slideshow {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    height: 100%;
}

.na-account-slides {
    position: relative;
    min-height: 600px;
    height: 100%;
}

.na-account-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 450ms ease,
        transform 450ms ease;
    pointer-events: none;
}

.na-account-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.na-account-slide-media {
    position: absolute;
    inset: 0;
}

.na-account-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.na-account-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 15, 20, 0.2) 0%,
            rgba(11, 15, 20, 0.88) 78%
        ),
        radial-gradient(
            700px 380px at 20% 15%,
            rgba(67, 200, 72, 0.22),
            transparent 60%
        );
}

.na-account-slide-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: var(--na-s-5);
    display: grid;
    align-content: end;
    gap: 10px;
    text-align: center;
}

.na-account-slide-content .na-h2 {
    margin: 0;
    text-align: center;
}

.na-account-slide-content .na-lead {
    margin: 0;
    max-width: 44ch;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.na-account-slideshow-controls {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.na-account-nav {
    min-height: 40px;
    height: 40px;
    width: 44px;
    padding: 0;
    border-radius: 12px !important;
    font-size: 18px;
    line-height: 1;
}

.na-account-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.na-account-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(229, 231, 235, 0.2);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.na-account-dot.is-active {
    background: rgba(67, 200, 72, 0.9);
    border-color: rgba(67, 200, 72, 0.9);
    transform: scale(1.15);
}

.na-auth {
    padding: var(--na-s-5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.na-auth-head .na-h2 {
    margin-bottom: 6px;
}

.na-auth-head .na-body {
    margin: 0;
}

.na-auth-tabs {
    margin-top: var(--na-s-3);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, 0.12);
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

/* Hide tabs when lostpassword panel is active (handled by PHP, but ensure it's hidden). */
.na-auth[data-active-tab="lostpassword"] .na-auth-tabs {
    display: none;
}

.na-auth-tab {
    border: 0;
    background: transparent;
    color: var(--na-text);
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--na-font-head);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.na-auth-tab:hover {
    background: rgba(255, 255, 255, 0.05);
}

.na-auth-tab.is-active {
    background: linear-gradient(
        120deg,
        rgba(67, 200, 72, 0.22),
        rgba(30, 146, 46, 0.16)
    );
    box-shadow: inset 0 0 0 1px rgba(67, 200, 72, 0.35);
}

.na-auth-panels {
    margin-top: var(--na-s-3);
}

.na-auth-panel {
    animation: na-auth-fade 240ms ease;
}

@keyframes na-auth-fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.na-auth-form {
    display: grid;
    gap: 14px;
}

.na-field {
    display: grid;
    gap: 8px;
}

.na-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--na-text);
}

.na-input {
    width: 100%;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(229, 231, 235, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--na-text);
    font-size: 16px;
    outline: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.na-input::placeholder {
    color: rgba(156, 163, 175, 0.9);
}

.na-input:focus {
    border-color: rgba(67, 200, 72, 0.55);
    box-shadow: 0 0 0 4px rgba(67, 200, 72, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.na-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.na-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--na-muted);
    user-select: none;
}

.na-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.na-auth-submit {
    width: 100%;
    justify-content: center;
}

.na-auth-hint {
    margin: 0;
    font-size: 14px;
}

.na-auth-grid-2 {
    grid-template-columns: 1fr;
}

.na-link-button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--na-accent);
    font-weight: 600;
}

.na-link-button:hover {
    text-decoration: underline;
}

.na-link-button:focus {
    outline: 2px solid var(--na-accent);
    outline-offset: 3px;
}

.na-auth-back {
    margin-bottom: var(--na-s-2);
}

.na-account-dashboard-grid .na-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: var(--na-s-2);
}

@media (min-width: 900px) {
    .na-account-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--na-s-5);
        height: 70vh;
    }

    .na-account-left {
        order: 1;
        height: 100%;
    }

    .na-account-right {
        order: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .na-auth {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
    }

    .na-account-slideshow,
    .na-account-slides {
        height: 100%;
        min-height: 0;
    }

    .na-auth-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/**
 * Variation 3 — Ancienne Homepage (A/B test).
 * Scope all rules under `.na-abold` to avoid impacting other pages.
 */

/* Center all titles */
.na-abold .na-abold-title-center {
    text-align: center;
}

/* Hero section: 100vh with flexbox layout */
.na-abold .na-abold-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.na-abold .na-abold-hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--na-s-4) var(--na-gutter);
}

.na-abold .na-abold-hero-copy {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.na-abold .na-abold-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: var(--na-s-3);
}

/* Hero USPs: positioned at bottom, horizontal, smaller */
.na-abold .na-abold-hero-usps-wrapper {
    padding: var(--na-s-3) var(--na-gutter) var(--na-s-4);
    flex-shrink: 0;
}

.na-abold .na-abold-hero-usps {
    display: grid;
    gap: var(--na-s-3);
    grid-template-columns: repeat(4, 1fr);
}

/* USP blocks: slightly smaller than main content but readable */
.na-abold .na-abold-usp {
    padding: var(--na-s-3) var(--na-s-2);
    text-align: left; /* Align text under subtitles */
}

.na-abold .na-abold-usp .na-h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
    margin-top: 0;
    font-weight: 600;
    text-align: left;
}

.na-abold .na-abold-usp .na-body {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left;
}

.na-abold .na-abold-features-container {
    max-width: 1000px;
    margin: 0 auto;
}

.na-abold .na-abold-feature-list {
    display: grid;
    gap: var(--na-s-4);
    margin-top: var(--na-s-4);
}

.na-abold .na-abold-feature {
    display: grid;
    gap: var(--na-s-3);
    align-items: center;
}

/* Align text under subtitles in feature cards */
.na-abold .na-abold-feature-copy {
    text-align: left;
}

.na-abold .na-abold-feature-copy .na-h3 {
    text-align: left;
    margin-top: 0;
}

.na-abold .na-abold-feature-copy .na-body {
    text-align: left;
}

/* Align text under subtitles in VS section */
.na-abold .na-abold-vs-item {
    text-align: left;
}

.na-abold .na-abold-vs-item .na-h3 {
    text-align: left;
    margin-top: 0;
}

.na-abold .na-abold-vs-item .na-body {
    text-align: left;
}

.na-abold .na-abold-feature-media {
    display: grid;
    place-items: center;
    padding: var(--na-s-3);
    overflow: visible; /* Allow images to be fully visible */
}

/* Significantly reduce image sizes */
.na-abold .na-abold-feature-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}

.na-abold .na-abold-collage {
    position: relative;
    width: min(280px, 100%);
    min-height: 320px; /* Allow enough space for rotated images */
    margin: var(--na-s-2) auto;
    overflow: visible; /* Show images in their entirety */
}

.na-abold .na-abold-collage-img {
    position: absolute;
    width: 70%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--na-shadow);
    object-fit: contain; /* Show full image without cropping */
}

/* Positions adjusted to show full images while maintaining overlap effect */
.na-abold .na-abold-collage-img-1 {
    left: 0;
    top: 10%;
    transform: rotate(-8deg);
    z-index: 3;
}
.na-abold .na-abold-collage-img-2 {
    left: 15%;
    top: 0;
    transform: rotate(4deg);
    z-index: 2;
}
.na-abold .na-abold-collage-img-3 {
    left: 25%;
    top: 15%;
    transform: rotate(10deg);
    z-index: 1;
}

/* ============================================================================
 * Experts IA Video Carousel - Landing Variation 3
 * Modern carousel with autoplay videos
 * ============================================================================ */

/* Feature layout override for experts */
.na-abold .na-abold-feature-experts {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--na-s-4);
}

@media (min-width: 900px) {
    .na-abold .na-abold-feature-experts {
        grid-template-columns: 1fr 1.4fr;
        align-items: center;
    }
}

/* Carousel wrapper */
.na-abold .na-abold-experts-carousel-wrapper {
    position: relative;
    padding: 0;
}

/* Carousel container */
.na-abold .na-experts-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(148, 163, 184, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.na-abold .na-experts-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Carousel slide */
.na-abold .na-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.na-abold .na-carousel-video-container {
    position: relative;
    aspect-ratio: 9 / 14;
    max-height: 500px;
    overflow: hidden;
}

@media (min-width: 900px) {
    .na-abold .na-carousel-video-container {
        aspect-ratio: 9 / 12;
        max-height: 550px;
    }
}

.na-abold .na-carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video overlay with gradient and text */
.na-abold .na-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 24px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.na-abold .na-carousel-label {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.na-abold .na-carousel-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Tone-based glow effects */
.na-abold .na-carousel-slide.is-green .na-carousel-label {
    color: #4ade80;
}
.na-abold .na-carousel-slide.is-orange .na-carousel-label {
    color: #fb923c;
}
.na-abold .na-carousel-slide.is-purple .na-carousel-label {
    color: #c084fc;
}

/* Navigation buttons */
.na-abold .na-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.na-abold .na-abold-experts-carousel-wrapper:hover .na-carousel-btn {
    opacity: 1;
}

.na-abold .na-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.na-abold .na-carousel-prev {
    left: -24px;
}

.na-abold .na-carousel-next {
    right: -24px;
}

@media (max-width: 900px) {
    .na-abold .na-carousel-prev {
        left: 12px;
    }
    .na-abold .na-carousel-next {
        right: 12px;
    }
    .na-abold .na-carousel-btn {
        opacity: 1;
        width: 40px;
        height: 40px;
    }
}

/* Carousel dots */
.na-abold .na-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.na-abold .na-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.na-abold .na-carousel-dot:hover {
    background: rgba(148, 163, 184, 0.6);
}

.na-abold .na-carousel-dot.is-active {
    transform: scale(1.3);
}

.na-abold .na-carousel-dot.is-green.is-active {
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
}

.na-abold .na-carousel-dot.is-orange.is-active {
    background: #fb923c;
    box-shadow: 0 0 12px rgba(251, 146, 60, 0.5);
}

.na-abold .na-carousel-dot.is-purple.is-active {
    background: #c084fc;
    box-shadow: 0 0 12px rgba(192, 132, 252, 0.5);
}

/* Experience CTA: make taller */
.na-abold .na-abold-experience-card {
    padding: var(--na-s-6) var(--na-s-4);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.na-abold .na-abold-mid-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: var(--na-s-5);
}

/* Reviews header: title and rating side by side */
.na-abold .na-abold-reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--na-s-4);
    flex-wrap: wrap;
    margin-bottom: var(--na-s-4);
}

.na-abold .na-abold-reviews-header .na-h2 {
    margin: 0;
    text-align: center;
    flex: 1;
    min-width: 300px;
}

/* Small rating block next to title */
.na-abold .na-abold-reviews-rating-small {
    flex-shrink: 0;
}

.na-abold .na-abold-reviews-rating-small .na-card {
    padding: var(--na-s-2);
    min-width: 140px;
    max-width: 180px;
}

/* Remove top border line and adjust rating display */
.na-abold .na-abold-reviews-rating-small .na-rating-display {
    font-size: 0.85em;
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Make the rating number bigger */
.na-abold .na-abold-reviews-rating-small .na-rating-number {
    font-size: 56px !important;
    line-height: 1;
}

.na-abold .na-abold-reviews-rating-small .na-rating-display * {
    font-size: inherit;
}

.na-abold .na-proof-reviews {
    margin-top: var(--na-s-4);
}

.na-abold .na-abold-reviews-more {
    display: flex;
    justify-content: center;
    margin-top: var(--na-s-4);
}

.na-abold .na-abold-list {
    margin: 0 0 var(--na-s-3);
    padding-left: 18px;
    color: var(--na-body);
}

.na-abold .na-abold-center-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--na-s-3);
}

.na-abold .na-abold-vs-grid {
    display: grid;
    gap: var(--na-s-3);
    margin-top: var(--na-s-4);
}

.na-abold .na-abold-vs-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

@media (min-width: 900px) {
    .na-abold .na-abold-hero-usps {
        grid-template-columns: repeat(4, 1fr);
    }

    .na-abold .na-abold-feature {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .na-abold .na-abold-feature.na-abold-feature-reverse {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .na-abold
        .na-abold-feature.na-abold-feature-reverse
        .na-abold-feature-copy {
        order: 2;
    }

    .na-abold
        .na-abold-feature.na-abold-feature-reverse
        .na-abold-feature-media {
        order: 1;
    }

    .na-abold .na-abold-reviews-header {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .na-abold .na-abold-reviews-header .na-h2 {
        flex: 0 1 auto;
        text-align: left;
    }

    .na-abold .na-abold-reviews-rating-small {
        flex: 0 0 auto;
    }

    .na-abold .na-abold-vs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .na-abold .na-abold-experience-card {
        padding: var(--na-s-6) var(--na-s-5);
        min-height: 400px;
    }
}

@media (max-width: 899px) {
    .na-abold .na-abold-hero-usps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--na-s-3);
    }

    .na-abold .na-abold-usp {
        padding: var(--na-s-3) var(--na-s-2);
    }

    .na-abold .na-abold-usp .na-h3 {
        font-size: 16px;
    }

    .na-abold .na-abold-usp .na-body {
        font-size: 14px;
    }
}

/* Mobile improvements for variation 3 (na-abold) */
@media (max-width: 639px) {
    .na-abold .na-abold-hero {
        min-height: auto;
        padding: 0;
    }

    .na-abold .na-abold-hero-inner {
        padding: var(--na-s-4) var(--na-gutter);
        min-height: 60vh;
    }

    .na-abold .na-abold-hero-copy {
        max-width: 100%;
    }

    .na-abold .na-abold-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .na-abold .na-abold-hero-actions .na-btn {
        width: 100%;
    }

    .na-abold .na-abold-hero-usps {
        grid-template-columns: 1fr;
        gap: var(--na-s-2);
    }

    .na-abold .na-abold-hero-usps-wrapper {
        padding: var(--na-s-3) var(--na-gutter);
    }

    .na-abold .na-abold-usp {
        padding: var(--na-s-2);
    }

    .na-abold .na-abold-feature {
        grid-template-columns: 1fr;
        gap: var(--na-s-3);
    }

    .na-abold .na-abold-feature-copy {
        order: 1;
    }

    .na-abold .na-abold-feature-media {
        order: 2;
    }

    .na-abold .na-abold-feature-img {
        width: 100%;
        height: auto;
    }

    .na-abold .na-abold-vs-grid {
        grid-template-columns: 1fr;
        gap: var(--na-s-3);
    }

    .na-abold .na-abold-mid-cta {
        flex-direction: column;
        gap: 10px;
    }

    .na-abold .na-abold-mid-cta .na-btn {
        width: 100%;
    }

    .na-abold .na-abold-reviews-header {
        flex-direction: column;
        gap: var(--na-s-3);
        text-align: center;
    }

    .na-abold .na-abold-reviews-header .na-h2 {
        font-size: 24px;
    }
}

/**
 * Pricing page (`page-tarifs.php` and `page-forfaits.php`)
 * Modern SAAS-style pricing cards with annual/monthly toggle.
 */

/* Section styling for forfaits page */
.na-main.na-pricing .na-section.na-pricing {
    padding: 24px 16px;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.95) 0%,
        rgba(15, 23, 42, 0.98) 100%
    );
}

.na-pricing .na-container {
    max-width: 1400px;
    width: 100%;
}

.na-pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.na-pricing-header .na-h1,
.na-pricing-title {
    color: #e2e8f0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.na-pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.na-pricing-toggle {
    display: inline-flex;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.na-pricing-toggle-btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(203, 213, 225, 0.75);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
}

.na-pricing-toggle-btn:hover {
    color: #cbd5e1;
    background: rgba(148, 163, 184, 0.1);
}

.na-pricing-toggle-btn.is-active,
.na-pricing-toggle-btn[aria-pressed="true"] {
    background: rgba(67, 200, 72, 0.15);
    color: #43c848;
    border: 1px solid rgba(67, 200, 72, 0.3);
}

.na-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
}

/* Fade-in animation for pricing cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade transition for period changes */
@keyframes fadeTransition {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.na-pricing-card {
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.35);
    backdrop-filter: blur(10px);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    transition: all 300ms ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Fade-in animation for forfaits page cards */
.na-main.na-pricing .na-pricing-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delays for cards on forfaits page */
.na-main.na-pricing .na-pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.na-main.na-pricing .na-pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.na-main.na-pricing .na-pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.na-pricing-card.fade-transition {
    animation: fadeTransition 0.4s ease;
}

.na-pricing-card:hover {
    border-color: rgba(67, 200, 72, 0.4);
    background: rgba(2, 6, 23, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(67, 200, 72, 0.15);
}

.na-pricing-card-premium {
    z-index: 3;
    border-color: rgba(67, 200, 72, 0.3);
    background: rgba(67, 200, 72, 0.05);
}

.na-pricing-card-premium:hover {
    border-color: rgba(67, 200, 72, 0.5);
    background: rgba(67, 200, 72, 0.1);
}

.na-pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        135deg,
        #43c848 0%,
        rgba(67, 200, 72, 0.8) 100%
    );
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(67, 200, 72, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.na-pricing-card-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.na-pricing-card-title {
    color: #e2e8f0;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.na-pricing-card-price {
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.na-pricing-price-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.na-pricing-price-amount {
    color: #43c848;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.na-pricing-price-suffix {
    font-size: 16px;
    color: var(--na-muted);
    line-height: 1.1;
}

.na-pricing-price-annual {
    display: block;
    font-size: 14px;
    color: var(--na-muted);
    margin-top: 4px;
    line-height: 1.4;
    text-align: center;
}

.na-pricing-price-period {
    color: rgb(122 130 138 / 75%);
    font-size: 13px;
    font-weight: 600;
}

.na-pricing-card-description {
    color: rgba(203, 213, 225, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.na-pricing-card-body {
    flex: 1;
    margin-bottom: 16px;
}

.pricing-block {
    color: rgba(203, 213, 225, 0.9);
    font-size: 12px;
    line-height: 1.7;
}

.pricing-block br {
    margin-bottom: 6px;
    display: block;
    content: "";
}

.na-pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2px;
}

.na-pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.na-pricing-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.na-pricing-feature-text {
    color: var(--na-text);
    font-size: 12px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.na-pricing-feature-disabled .na-pricing-feature-text {
    color: var(--na-muted);
    opacity: 0.6;
}

/* Tooltip styles */
.na-pricing-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    cursor: help;
    outline: none;
}

.na-pricing-tooltip-icon {
    width: 14px;
    height: 14px;
    color: var(--na-muted);
    transition:
        color 180ms ease,
        transform 180ms ease;
    flex-shrink: 0;
}

.na-pricing-tooltip-wrapper:hover .na-pricing-tooltip-icon,
.na-pricing-tooltip-wrapper:focus .na-pricing-tooltip-icon {
    color: var(--color-primary);
    transform: scale(1.1);
}

.na-pricing-tooltip-content {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(67, 200, 72, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--na-text);
    max-width: 300px;
    min-width: 200px;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 200ms ease,
        transform 200ms ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    text-align: left;
}

.na-pricing-tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(15, 23, 42, 0.98);
}

.na-pricing-tooltip-content::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: rgba(67, 200, 72, 0.3);
    margin-top: -1px;
}

.na-pricing-tooltip-wrapper:hover .na-pricing-tooltip-content,
.na-pricing-tooltip-wrapper:focus .na-pricing-tooltip-content,
.na-pricing-tooltip-wrapper.is-active .na-pricing-tooltip-content {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Tooltip focus styles for accessibility */
.na-pricing-tooltip-wrapper:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Tooltip positioning adjustments for edge cases */
.na-pricing-tooltip-wrapper:last-child .na-pricing-tooltip-content {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(4px);
}

.na-pricing-tooltip-wrapper:last-child:hover .na-pricing-tooltip-content,
.na-pricing-tooltip-wrapper:last-child:focus .na-pricing-tooltip-content,
.na-pricing-tooltip-wrapper:last-child.is-active .na-pricing-tooltip-content {
    transform: translateX(0) translateY(0);
}

.na-pricing-tooltip-wrapper:last-child .na-pricing-tooltip-content::after,
.na-pricing-tooltip-wrapper:last-child .na-pricing-tooltip-content::before {
    left: auto;
    right: 16px;
    transform: translateX(0);
}

/* Responsive tooltip adjustments */
@media (max-width: 767px) {
    .na-pricing-tooltip-content {
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(0);
        max-width: calc(100vw - 32px);
        min-width: 200px;
        font-size: 12px;
        padding: 10px 14px;
        z-index: 100;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .na-pricing-tooltip-content::after,
    .na-pricing-tooltip-content::before {
        top: auto;
        bottom: -8px;
        border-top-color: transparent;
        border-bottom-color: rgba(15, 23, 42, 0.98);
    }
}

@media (max-width: 480px) {
    .na-pricing-tooltip-content {
        max-width: calc(100vw - 24px);
        min-width: 180px;
        font-size: 11px;
        padding: 10px 12px;
    }
}

/* Tooltip styles for forfaits page (using tooltip-icon class) */
.tooltip-icon {
    position: relative;
    display: inline-block;
    margin-left: 6px;
    cursor: help;
    vertical-align: middle;
}

.tooltip-icon-svg {
    width: 14px;
    height: 14px;
    color: rgba(148, 163, 184, 0.6);
    transition: color 200ms ease;
    vertical-align: middle;
    flex-shrink: 0;
}

.tooltip-icon:hover .tooltip-icon-svg,
.tooltip-icon:focus .tooltip-icon-svg {
    color: #43c848;
}

.tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    color: #e2e8f0;
    font-size: 12px;
    line-height: 1.5;
    white-space: normal;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 200ms ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(15, 23, 42, 0.98);
}

.tooltip-icon:hover .tooltip-content,
.tooltip-icon:focus .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 767px) {
    .tooltip-icon {
        position: relative;
    }

    .tooltip-content {
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(0);
        max-width: calc(100vw - 32px);
        width: auto;
        min-width: 200px;
        font-size: 12px;
        padding: 10px 12px;
        z-index: 100;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .tooltip-content::after {
        top: auto;
        bottom: -8px;
        border-top-color: transparent;
        border-bottom-color: rgba(15, 23, 42, 0.98);
    }

    .tooltip-icon:focus .tooltip-content,
    .tooltip-icon.is-focused .tooltip-content {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .tooltip-content {
        max-width: calc(100vw - 24px);
        min-width: 180px;
        font-size: 11px;
        padding: 10px 12px;
    }
}

.na-pricing-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.na-pricing-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 200ms ease;
    position: relative;
    box-shadow: 0 0 0 rgba(67, 200, 72, 0);
}

.na-pricing-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    opacity: 0;
    box-shadow:
        0 0 20px rgba(67, 200, 72, 0.6),
        0 0 40px rgba(67, 200, 72, 0.4);
    transition: opacity 300ms ease;
    pointer-events: none;
    z-index: -1;
}

.na-pricing-cta:hover::before,
.na-pricing-cta:focus::before {
    opacity: 1;
}

.na-pricing-cta:hover {
    box-shadow:
        0 0 20px rgba(67, 200, 72, 0.6),
        0 0 40px rgba(67, 200, 72, 0.4);
    transform: translateY(-1px);
}

.na-pricing-footer-note {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.na-pricing-footer-note p {
    color: rgba(203, 213, 225, 0.7);
    font-size: 13px;
    margin: 0;
}

@media (min-width: 768px) {
    .na-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 16px;
        max-width: 1120px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .na-pricing .na-container {
        max-width: 1600px;
    }

    .na-pricing-grid {
        max-width: 1400px;
    }

    .na-pricing-toggle-wrapper {
        margin-bottom: var(--na-s-6);
    }
}

/* Responsive adjustments for pricing section */
@media (max-width: 1200px) {
    .na-pricing-grid {
        gap: 0;
        max-width: 900px;
    }

    .na-pricing-card {
        padding: 24px 20px;
    }
}

@media (max-width: 968px) {
    .na-main.na-pricing .na-section.na-pricing {
        padding: 32px 16px;
        min-height: auto;
    }

    .na-main.na-pricing .na-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .na-pricing-header .na-h1,
    .na-pricing-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .na-main.na-pricing .na-section.na-pricing {
        padding: 24px 12px;
    }

    .na-main.na-pricing .na-container {
        padding-left: 0;
        padding-right: 0;
    }

    .na-pricing-header .na-h1,
    .na-pricing-title {
        font-size: 24px;
    }

    .na-pricing-card {
        padding: 20px 16px;
    }
}

/* Mobile responsive - scroll horizontal pour toutes les pages pricing */
@media (max-width: 768px) {
    .na-pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 20px;
        scrollbar-width: thin;
        scrollbar-color: rgba(148, 163, 184, 0.3) transparent;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .na-pricing-grid::-webkit-scrollbar {
        height: 4px;
    }

    .na-pricing-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .na-pricing-grid::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.3);
        border-radius: 2px;
    }

    .na-pricing-card {
        flex: 0 0 calc(85% - 20px);
        scroll-snap-align: center;
        padding: 16px;
        min-width: 0;
    }

    /* Prix plus compact sur mobile */
    .na-pricing-price-amount {
        font-size: 32px;
    }

    /* Pricing toggle mobile */
    .na-pricing-toggle-wrapper {
        margin-bottom: var(--na-s-4);
    }

    .na-pricing-toggle {
        gap: 8px;
    }

    .na-pricing-toggle-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Pricing features mobile */
    .na-pricing-features {
        gap: 10px;
    }

    .na-pricing-feature {
        font-size: 14px;
        padding: 8px 0;
    }

    .na-pricing-feature-text {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Container sans narrow sur mobile pour bienvenue */
    .na-bienvenue-section .na-container {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .na-bienvenue-pricing-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Pour la page forfaits, ajuster le padding */
    .na-main.na-pricing .na-pricing-grid {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding: 0 10px;
    }

    .na-main.na-pricing .na-pricing-card {
        flex: 0 0 calc(85% - 10px);
    }

    /* Header et toggle plus compacts pour bienvenue */
    .na-bienvenue-pricing-wrapper .na-pricing-header {
        margin-bottom: 20px;
    }

    .na-bienvenue-pricing-wrapper .na-pricing-header .na-h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .na-bienvenue-pricing-wrapper .na-pricing-header .na-lead {
        font-size: 14px;
    }

    .na-bienvenue-pricing-wrapper .na-pricing-toggle-wrapper {
        margin-bottom: 20px;
    }

    /* Card header plus compact pour bienvenue */
    .na-bienvenue-pricing-wrapper .na-pricing-card-header {
        margin-bottom: 16px;
    }

    .na-bienvenue-pricing-wrapper .na-pricing-card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .na-bienvenue-pricing-wrapper .na-pricing-card-description {
        font-size: 13px;
        margin-bottom: 0;
    }

    /* Footer button plus compact pour bienvenue */
    .na-bienvenue-pricing-wrapper .na-pricing-card-footer {
        margin-top: 16px;
    }

    .na-bienvenue-pricing-wrapper .na-pricing-cta {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Badge plus petit pour bienvenue */
    .na-bienvenue-pricing-wrapper .na-pricing-card-badge {
        font-size: 11px;
        padding: 4px 12px;
        top: -10px;
    }

    /* Pricing block text mobile (page forfaits) */
    .pricing-block {
        font-size: 14px;
        line-height: 1.6;
    }

    .pricing-block br {
        display: block;
        margin: 4px 0;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .na-pricing-card {
        flex: 0 0 calc(90% - 20px);
        padding: 14px;
    }

    .na-pricing-price-amount {
        font-size: 28px;
    }

    .na-pricing-card-title {
        font-size: 20px;
    }

    .na-pricing-card-description {
        font-size: 13px;
    }

    .na-pricing-feature-text {
        font-size: 13px;
    }

    .na-pricing-toggle-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .na-pricing-header .na-h1,
    .na-pricing-title {
        font-size: 22px;
    }

    .na-pricing-header .na-lead {
        font-size: 15px;
    }
}

/**
 * Affiliation page (`page-affiliation.php`)
 * Modern SAAS-style affiliate program page with hero, benefits, FAQ, and steps.
 */
.na-affiliation-hero {
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.na-affiliation-hero .na-container {
    max-width: 1400px;
}

.na-affiliation-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--na-s-5);
    align-items: start;
}

.na-affiliation-hero-left {
    display: flex;
    flex-direction: column;
    gap: var(--na-s-4);
}

.na-affiliation-hero-left .na-h1 {
    margin-bottom: 0;
    text-align: left;
}

.na-affiliation-hero-left .na-lead {
    margin-bottom: 0;
    font-size: 20px;
    text-align: left;
}

.na-affiliation-hero-left .na-body {
    margin-bottom: 0;
    text-align: left;
}

.na-affiliation-hero-left .na-highlight {
    background: linear-gradient(
        120deg,
        rgba(67, 200, 72, 0.12),
        rgba(30, 146, 46, 0.08)
    );
    border: 1px solid rgba(67, 200, 72, 0.25);
    border-radius: var(--na-radius);
    padding: var(--na-s-3);
    margin-top: 0;
    text-align: left;
}

.na-affiliation-hero-left .na-highlight strong {
    color: var(--color-primary);
    font-weight: 700;
}

.na-affiliation-hero-right {
    display: flex;
    align-items: stretch;
}

.na-affiliation-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--na-s-3);
    margin-top: var(--na-s-4);
}

.na-affiliation-benefit-card {
    text-align: center;
    padding: var(--na-s-4);
    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        border-color 200ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.na-affiliation-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(67, 200, 72, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.na-affiliation-benefit-icon {
    margin-bottom: var(--na-s-2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    width: 100%;
}

.na-affiliation-benefit-icon svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.na-affiliation-benefit-icon svg {
    width: 48px;
    height: 48px;
}

.na-affiliation-benefit-card .na-h3 {
    margin-bottom: var(--na-s-2);
    font-size: 20px;
    text-align: center;
    width: 100%;
}

.na-affiliation-benefit-card .na-body {
    margin: 0;
    font-size: 15px;
    text-align: center;
    width: 100%;
}

.na-affiliation-highlight {
    background: linear-gradient(
        135deg,
        rgba(67, 200, 72, 0.1),
        rgba(30, 146, 46, 0.06)
    );
    border: 1px solid rgba(67, 200, 72, 0.25);
    padding: var(--na-s-5);
    text-align: left;
    height: 100%;
    display: flex;
    align-items: center;
}

.na-affiliation-highlight-content {
    width: 100%;
}

.na-affiliation-highlight-content .na-h2 {
    margin-bottom: var(--na-s-3);
    color: var(--na-text);
    font-size: 28px;
}

.na-affiliation-highlight-content .na-body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* FAQ Section */
.na-affiliation-faq {
    padding-top: 80px;
    padding-bottom: 80px;
    background: rgba(15, 23, 42, 0.3);
}

.na-affiliation-faq .na-h2 {
    text-align: center;
    margin-bottom: var(--na-s-5);
}

.na-faq-list {
    display: grid;
    gap: var(--na-s-2);
}

.na-faq-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: var(--na-radius);
    overflow: hidden;
    transition:
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.na-faq-item:hover {
    border-color: rgba(67, 200, 72, 0.25);
}

.na-faq-item[open] {
    border-color: rgba(67, 200, 72, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.na-faq-question {
    display: block;
    padding: var(--na-s-4);
    font-family: var(--na-font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--na-text);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
    transition: color 200ms ease;
}

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

.na-faq-question::-webkit-details-marker {
    display: none;
}

.na-faq-question::after {
    content: "+";
    position: absolute;
    right: var(--na-s-4);
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--na-muted);
    transition:
        transform 200ms ease,
        color 200ms ease;
}

.na-faq-item[open] .na-faq-question::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
    color: var(--color-primary);
}

.na-faq-body {
    padding: 0 var(--na-s-4) var(--na-s-4);
}

.na-faq-body .na-body {
    margin-bottom: var(--na-s-2);
}

.na-faq-body .na-body:last-child {
    margin-bottom: 0;
}

.na-affiliation-payment-methods {
    list-style: none;
    margin: var(--na-s-3) 0;
    padding: 0;
    display: grid;
    gap: var(--na-s-2);
}

.na-affiliation-payment-methods li {
    padding: var(--na-s-2) var(--na-s-3);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(229, 231, 235, 0.1);
}

.na-affiliation-payment-methods strong {
    color: var(--color-primary);
}

/* How It Works Section */
.na-affiliation-how {
    padding-top: 80px;
    padding-bottom: 120px;
}

.na-affiliation-how-header {
    text-align: center;
    margin-bottom: var(--na-s-6);
}

.na-affiliation-how-header .na-h2 {
    margin-bottom: var(--na-s-3);
}

.na-affiliation-steps {
    display: grid;
    gap: var(--na-s-4);
    margin-bottom: var(--na-s-5);
}

.na-affiliation-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--na-s-4);
    padding: var(--na-s-4);
    align-items: start;
    position: relative;
    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        border-color 200ms ease;
}

.na-affiliation-step:hover {
    transform: translateX(8px);
    border-color: rgba(67, 200, 72, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.na-affiliation-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(
        120deg,
        var(--color-primary),
        var(--color-secondary)
    );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--na-font-head);
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(67, 200, 72, 0.4);
}

.na-affiliation-step-content .na-h3 {
    margin-bottom: var(--na-s-2);
    font-size: 22px;
}

.na-affiliation-step-content .na-body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.na-affiliation-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--na-s-3);
}

.na-affiliation-cta-title {
    font-family: var(--na-font-head);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--na-text);
}

.na-affiliation-cta .na-btn {
    display: inline-flex;
}

/* Responsive Design */
@media (min-width: 768px) {
    .na-affiliation-hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--na-s-6);
        align-items: start;
    }

    .na-affiliation-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--na-s-3);
    }

    .na-affiliation-steps {
        gap: var(--na-s-5);
    }

    .na-affiliation-step {
        padding: var(--na-s-5);
    }
}

@media (min-width: 1024px) {
    .na-affiliation-hero {
        padding-top: 100px;
        padding-bottom: 80px;
        min-height: calc(100vh - 180px);
    }

    .na-affiliation-hero-grid {
        gap: var(--na-s-6);
    }

    .na-affiliation-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--na-s-4);
    }

    .na-affiliation-faq {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .na-affiliation-how {
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .na-affiliation-steps {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Commission Calculator Section */
.na-affiliation-calculator {
    padding-top: 80px;
    padding-bottom: 80px;
    background: rgba(15, 23, 42, 0.3);
}

.na-affiliation-calculator-header {
    text-align: center;
    margin-bottom: var(--na-s-5);
}

.na-affiliation-calculator-header .na-h2 {
    margin-bottom: var(--na-s-3);
}

.na-affiliation-calculator-header .na-lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.na-affiliation-calculator-wrapper {
    padding: var(--na-s-5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.na-affiliation-calculator-form {
    display: grid;
    gap: var(--na-s-4);
    margin-bottom: var(--na-s-5);
}

.na-affiliation-calculator-field {
    display: flex;
    flex-direction: column;
    gap: var(--na-s-2);
}

.na-affiliation-calculator-label {
    font-family: var(--na-font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--na-text);
}

.na-affiliation-calculator-plan-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--na-s-2);
    padding: var(--na-s-4);
    background: linear-gradient(
        120deg,
        rgba(67, 200, 72, 0.1),
        rgba(30, 146, 46, 0.06)
    );
    border: 1px solid rgba(67, 200, 72, 0.25);
    border-radius: 12px;
    text-align: center;
}

.na-affiliation-calculator-plan-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: linear-gradient(
        120deg,
        var(--color-primary),
        var(--color-secondary)
    );
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(67, 200, 72, 0.4);
}

.na-affiliation-calculator-plan-name {
    font-family: var(--na-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--na-text);
}

.na-affiliation-calculator-plan-price {
    font-family: var(--na-font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Slider container */
.na-affiliation-slider-container {
    display: flex;
    align-items: center;
    gap: var(--na-s-3);
    margin-top: var(--na-s-2);
}

.na-affiliation-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(229, 231, 235, 0.2);
    outline: none;
    opacity: 0.7;
    transition: opacity 200ms ease;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.na-affiliation-slider:hover {
    opacity: 1;
}

.na-affiliation-slider:focus {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(67, 200, 72, 0.1);
}

/* Webkit browsers (Chrome, Safari, Edge) */
.na-affiliation-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 200ms ease;
}

.na-affiliation-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--color-primary-hover);
}

/* Firefox */
.na-affiliation-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 200ms ease;
}

.na-affiliation-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    background: var(--color-primary-hover);
}

/* Slider value display */
.na-affiliation-slider-value {
    min-width: 40px;
    text-align: center;
    padding: 8px 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: 8px;
    font-family: var(--na-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 200ms ease;
}

.na-affiliation-slider-value:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(67, 200, 72, 0.3);
}

.na-affiliation-calculator-result {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--na-s-3);
    margin-bottom: var(--na-s-4);
    padding: var(--na-s-4);
    background: rgba(67, 200, 72, 0.08);
    border: 1px solid rgba(67, 200, 72, 0.2);
    border-radius: var(--na-radius);
}

.na-affiliation-calculator-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--na-s-3);
    background: rgba(15, 23, 42, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(229, 231, 235, 0.12);
}

.na-affiliation-calculator-result-highlight {
    background: linear-gradient(
        120deg,
        rgba(67, 200, 72, 0.15),
        rgba(30, 146, 46, 0.1)
    );
    border-color: rgba(67, 200, 72, 0.3);
}

.na-affiliation-calculator-result-label {
    font-family: var(--na-font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--na-text);
}

.na-affiliation-calculator-result-value {
    font-family: var(--na-font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.na-affiliation-calculator-result-highlight
    .na-affiliation-calculator-result-value {
    font-size: 36px;
}

.na-affiliation-calculator-note {
    padding: var(--na-s-3);
    background: rgba(67, 200, 72, 0.06);
    border: 1px solid rgba(67, 200, 72, 0.15);
    border-radius: 10px;
    text-align: center;
}

.na-affiliation-calculator-note .na-body {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.na-affiliation-calculator-note strong {
    color: var(--color-primary);
    font-weight: 700;
}

@media (min-width: 768px) {
    .na-affiliation-calculator-result {
        grid-template-columns: 1fr 1fr;
        gap: var(--na-s-4);
    }

    .na-affiliation-calculator-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--na-s-2);
    }

    .na-affiliation-calculator-result-value {
        font-size: 40px;
    }

    .na-affiliation-calculator-result-highlight
        .na-affiliation-calculator-result-value {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .na-affiliation-calculator {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .na-affiliation-calculator-wrapper {
        padding: var(--na-s-6);
    }
}
