@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

/* ======================================================
   MYEINVITE — DESIGN SYSTEM COMMUN
   Accueil, offres, navigation, composants et footer
   ====================================================== */

        :root {
            --mye-primary: #6d5dfc;
            --mye-primary-dark: #5746ef;
            --mye-primary-soft: #eeeaff;
            --mye-secondary: #ec4899;
            --mye-accent: #14b8a6;
            --mye-ink: #11182c;
            --mye-copy: #56617a;
            --mye-muted: #7b849a;
            --mye-line: #e7eaf1;
            --mye-surface: #ffffff;
            --mye-surface-alt: #f7f8fc;
            --mye-success: #10b981;
            --mye-warning: #f59e0b;
            --mye-shadow-sm: 0 12px 34px rgba(24, 23, 56, .08);
            --mye-shadow-lg: 0 32px 80px rgba(62, 50, 141, .18);
            --mye-radius-sm: 14px;
            --mye-radius: 22px;
            --mye-radius-lg: 32px;

            /* Navigation publique centralisée */
            --mye-nav-font: "DM Sans", Arial, sans-serif;
            --mye-nav-font-size: .91rem;
            --mye-nav-font-size-compact: .86rem;
            --mye-nav-font-size-mobile: .94rem;
            --mye-nav-font-weight: 600;
            --mye-nav-cta-font-size: .89rem;
            --mye-nav-cta-font-size-compact: .84rem;
            --mye-nav-cta-font-size-mobile: .93rem;
            --mye-nav-height: 82px;
            --mye-nav-height-scrolled: 74px;
            --mye-nav-height-mobile: 72px;
            --mye-nav-height-mobile-scrolled: 68px;
            --mye-nav-logo-width: 154px;
            --mye-nav-logo-width-tablet: 142px;
            --mye-nav-logo-width-mobile: 132px;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 96px;
        }

        body.mye-page {
            margin: 0;
            overflow-x: hidden;
            color: var(--mye-ink);
            background: var(--mye-surface);
            font-family: "DM Sans", Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

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

        .mye-page h1,
        .mye-page h2,
        .mye-page h3,
        .mye-page h4,
        .mye-page h5,
        .mye-page h6 {
            margin-top: 0;
            color: var(--mye-ink);
            font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
            letter-spacing: -.035em;
        }

        .mye-page p {
            color: var(--mye-copy);
        }

        .mye-page a {
            text-decoration: none;
        }

        .mye-container {
            width: min(1180px, calc(100% - 40px));
            margin-inline: auto;
        }

        .mye-section {
            position: relative;
            padding: 104px 0;
        }

        .mye-section--soft {
            background: var(--mye-surface-alt);
        }

        .mye-section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--mye-primary-dark);
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .mye-section-kicker::before {
            width: 28px;
            height: 2px;
            content: "";
            border-radius: 99px;
            background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
        }

        .mye-section-head {
            max-width: 700px;
            margin-bottom: 48px;
        }

        .mye-section-head--center {
            margin-inline: auto;
            text-align: center;
        }

        .mye-section-head--center .mye-section-kicker::before {
            display: none;
        }

        .mye-section-title {
            margin-bottom: 16px;
            font-size: clamp(2rem, 4vw, 3.25rem);
            font-weight: 800;
            line-height: 1.12;
        }

        .mye-section-lead {
            max-width: 650px;
            margin: 0;
            font-size: 1.08rem;
            line-height: 1.75;
        }

        .mye-section-head--center .mye-section-lead {
            margin-inline: auto;
        }

        .mye-btn {
            display: inline-flex;
            min-height: 52px;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 22px;
            border: 1px solid transparent;
            border-radius: 14px;
            font-size: .98rem;
            font-weight: 700;
            line-height: 1;
            transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
        }

        .mye-btn:hover {
            transform: translateY(-2px);
        }

        .mye-btn--primary {
            color: #fff;
            background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 60%, var(--mye-secondary));
            box-shadow: 0 14px 28px rgba(109, 93, 252, .28);
        }

        .mye-btn--primary:hover,
        .mye-btn--primary:focus {
            color: #fff;
            box-shadow: 0 18px 36px rgba(109, 93, 252, .36);
        }

        .mye-btn--secondary {
            color: var(--mye-ink);
            border-color: var(--mye-line);
            background: rgba(255, 255, 255, .78);
            box-shadow: 0 8px 24px rgba(17, 24, 44, .06);
        }

        .mye-btn--secondary:hover,
        .mye-btn--secondary:focus {
            color: var(--mye-primary-dark);
            border-color: #cfc8ff;
            background: #fff;
        }

        .mye-icon-box {
            display: inline-grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border-radius: 14px;
            color: var(--mye-primary);
            background: var(--mye-primary-soft);
            font-size: 1.15rem;
        }

        /* Loading state */
        #spinner {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: grid;
            place-items: center;
            background: #fff;
            transition: opacity .35s ease, visibility .35s ease;
        }

#spinner.is-hidden {
            visibility: hidden;
            opacity: 0;
        }

        #spinner:not(.show):not(.is-hidden) {
            visibility: hidden;
            opacity: 0;
        }

        .mye-loader {
            width: 44px;
            height: 44px;
            border: 4px solid var(--mye-primary-soft);
            border-top-color: var(--mye-primary);
            border-radius: 50%;
            animation: mye-spin .8s linear infinite;
        }

        .mye-spinner-dot {
            width: 3rem;
            height: 3rem;
        }

        @keyframes mye-spin {
            to { transform: rotate(360deg); }
        }

        /* Navigation publique commune — config/menu.php */
        .mye-page .navbar {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1040;
            min-height: var(--mye-nav-height);
            padding: 12px max(24px, calc((100vw - 1180px) / 2));
            border-bottom: 1px solid rgba(231, 234, 241, .66);
            background: rgba(255, 255, 255, .84);
            box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
            backdrop-filter: blur(20px) saturate(145%);
            -webkit-backdrop-filter: blur(20px) saturate(145%);
            transition: min-height .25s ease, box-shadow .25s ease, background-color .25s ease;
        }

        .mye-page .navbar.is-scrolled {
            min-height: var(--mye-nav-height-scrolled);
            background: rgba(255, 255, 255, .96);
            box-shadow: 0 14px 34px rgba(17, 24, 44, .09);
        }

        .mye-page .mye-navbar-shell {
            display: flex;
            width: 100%;
            max-width: 1180px;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-inline: auto;
        }

        .mye-page .mye-navbar-brand {
            display: inline-flex;
            min-height: 52px;
            align-items: center;
            flex: 0 0 auto;
            margin: 0;
            padding: 2px 0;
        }

        .mye-page .navbar-brand img {
            display: block;
            width: clamp(var(--mye-nav-logo-width-mobile), 11vw, var(--mye-nav-logo-width));
            height: auto;
            max-height: 48px;
            object-fit: contain;
        }

        .mye-page .mye-navbar-collapse {
            min-width: 0;
            align-items: center;
        }

        .mye-page .mye-navbar-nav {
            align-items: center;
            gap: 2px;
        }

        .mye-page .navbar .nav-link {
            position: relative;
            display: inline-flex;
            min-height: 44px;
            align-items: center;
            justify-content: center;
            gap: 7px;
            margin: 0;
            padding: 10px 11px !important;
            border-radius: 11px;
            color: #3f485e !important;
            font-family: var(--mye-nav-font);
            font-size: var(--mye-nav-font-size);
            font-weight: var(--mye-nav-font-weight);
            letter-spacing: -.012em;
            line-height: 1;
            white-space: nowrap;
            transition: color .2s ease, background-color .2s ease, transform .2s ease;
        }

        .mye-page .navbar .nav-link:not(.mye-lang-link)::after {
            position: absolute;
            right: 12px;
            bottom: 4px;
            left: 12px;
            height: 2px;
            content: "";
            border-radius: 99px;
            background: linear-gradient(90deg, var(--mye-primary), #8b5cf6, var(--mye-secondary));
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .22s ease;
        }

        .mye-page .navbar .nav-link:hover,
        .mye-page .navbar .nav-link.active,
        .mye-page .navbar .nav-link[aria-current="page"] {
            color: var(--mye-primary-dark) !important;
            background: rgba(109, 93, 252, .075);
        }

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

        .mye-page .navbar .mye-lang-link {
            min-height: 38px;
            margin-left: 5px;
            padding: 8px 11px !important;
            border: 1px solid #ddd8ff;
            border-radius: 999px;
            color: var(--mye-primary-dark) !important;
            background: #f6f4ff;
            font-size: .84rem;
        }

        .mye-page .navbar .mye-lang-link:hover,
        .mye-page .navbar .mye-lang-link:focus-visible {
            border-color: #c9c1ff;
            color: var(--mye-primary-dark) !important;
            background: #efecff;
            transform: translateY(-1px);
        }

        .mye-page .mye-nav-cta {
            display: inline-flex;
            min-height: 46px;
            align-items: center;
            justify-content: center;
            gap: 9px;
            flex: 0 0 auto;
            margin-left: 12px;
            padding: 12px 17px;
            border: 1px solid transparent;
            border-radius: 13px;
            color: #fff;
            background: linear-gradient(135deg, var(--mye-primary), #8067fa 58%, #9369f5);
            box-shadow: 0 11px 24px rgba(109, 93, 252, .25);
            font-family: var(--mye-nav-font);
            font-size: var(--mye-nav-cta-font-size);
            font-weight: 700;
            letter-spacing: -.012em;
            line-height: 1;
            white-space: nowrap;
            transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
        }

        .mye-page .mye-nav-cta:hover,
        .mye-page .mye-nav-cta:focus-visible {
            color: #fff;
            filter: saturate(1.08);
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(109, 93, 252, .33);
        }

        .mye-page .mye-nav-cta i {
            font-size: .78rem;
            transition: transform .2s ease;
        }

        .mye-page .mye-nav-cta:hover i {
            transform: translateX(3px);
        }

        .mye-page .mye-navbar-toggler {
            display: none;
            width: 46px;
            height: 46px;
            place-items: center;
            margin-left: auto;
            padding: 0;
            border: 1px solid #dedaf4;
            border-radius: 13px;
            color: var(--mye-ink);
            background: #fff;
            box-shadow: 0 8px 20px rgba(17, 24, 44, .07);
        }

        .mye-page .mye-navbar-toggler:focus {
            box-shadow: 0 0 0 4px rgba(109, 93, 252, .15);
        }

        .mye-page .mye-menu-icon {
            display: grid;
            width: 20px;
            gap: 4px;
        }

        .mye-page .mye-menu-icon span {
            display: block;
            width: 100%;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: transform .2s ease, opacity .2s ease;
        }

        .mye-page .mye-navbar-toggler[aria-expanded="true"] .mye-menu-icon span:first-child {
            transform: translateY(6px) rotate(45deg);
        }

        .mye-page .mye-navbar-toggler[aria-expanded="true"] .mye-menu-icon span:nth-child(2) {
            opacity: 0;
        }

        .mye-page .mye-navbar-toggler[aria-expanded="true"] .mye-menu-icon span:last-child {
            transform: translateY(-6px) rotate(-45deg);
        }

        .mye-page .navbar a:focus-visible,
        .mye-page .navbar button:focus-visible {
            outline: 3px solid rgba(109, 93, 252, .24);
            outline-offset: 3px;
        }

        /* Compatibilité avec l’ancien bouton de config/menu.php. */
        .mye-page .navbar .btn,
        .mye-page .navbar .rounded-pill {
            border-color: transparent;
            color: #fff !important;
            background: var(--mye-primary) !important;
            box-shadow: 0 10px 24px rgba(109, 93, 252, .25);
            font-family: var(--mye-nav-font);
            font-size: .9rem;
            font-weight: 700;
        }

        /*
         * Couche de compatibilité : elle uniformise aussi les anciennes pages
         * dont le <body> ne possède pas encore la classe "mye-page".
         * Le sélecteur s'appuie sur l'attribut stable du menu public.
         */
        nav.navbar[aria-label="Navigation principale"] {
            min-height: var(--mye-nav-height);
            font-family: var(--mye-nav-font);
        }

        nav.navbar[aria-label="Navigation principale"].is-scrolled {
            min-height: var(--mye-nav-height-scrolled);
        }

        nav.navbar[aria-label="Navigation principale"] .navbar-brand img {
            display: block;
            width: clamp(var(--mye-nav-logo-width-mobile), 11vw, var(--mye-nav-logo-width));
            height: auto;
            max-height: 48px;
            object-fit: contain;
        }

        nav.navbar[aria-label="Navigation principale"] .navbar-nav {
            align-items: center;
            gap: 2px;
            font-family: var(--mye-nav-font);
        }

        nav.navbar[aria-label="Navigation principale"] .nav-link {
            font-family: var(--mye-nav-font) !important;
            font-size: var(--mye-nav-font-size) !important;
            font-weight: var(--mye-nav-font-weight) !important;
            letter-spacing: -.012em;
            line-height: 1;
            white-space: nowrap;
        }

        nav.navbar[aria-label="Navigation principale"] :is(.mye-nav-cta, .btn, .rounded-pill) {
            font-family: var(--mye-nav-font) !important;
            font-size: var(--mye-nav-cta-font-size) !important;
            font-weight: 700;
        }

        @media (max-width: 1100px) {
            nav.navbar[aria-label="Navigation principale"] .nav-link {
                font-size: var(--mye-nav-font-size-compact) !important;
            }

            nav.navbar[aria-label="Navigation principale"] :is(.mye-nav-cta, .btn, .rounded-pill) {
                font-size: var(--mye-nav-cta-font-size-compact) !important;
            }
        }

        @media (max-width: 991px) {
            nav.navbar[aria-label="Navigation principale"] {
                min-height: var(--mye-nav-height-mobile);
            }

            nav.navbar[aria-label="Navigation principale"].is-scrolled {
                min-height: var(--mye-nav-height-mobile-scrolled);
            }

            nav.navbar[aria-label="Navigation principale"] .navbar-brand img {
                width: var(--mye-nav-logo-width-tablet);
                max-height: 44px;
            }

            nav.navbar[aria-label="Navigation principale"] .navbar-nav {
                width: 100%;
                align-items: stretch;
            }

            nav.navbar[aria-label="Navigation principale"] .nav-link {
                width: 100%;
                font-size: var(--mye-nav-font-size-mobile) !important;
                white-space: normal;
            }

            nav.navbar[aria-label="Navigation principale"] :is(.mye-nav-cta, .btn, .rounded-pill) {
                font-size: var(--mye-nav-cta-font-size-mobile) !important;
            }
        }

        @media (max-width: 520px) {
            nav.navbar[aria-label="Navigation principale"] .navbar-brand img {
                width: var(--mye-nav-logo-width-mobile);
            }
        }

        /* Hero */
        .mye-hero {
            position: relative;
            min-height: 780px;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 150px 0 90px;
            background:
                radial-gradient(circle at 82% 24%, rgba(236, 72, 153, .13), transparent 28%),
                radial-gradient(circle at 14% 12%, rgba(109, 93, 252, .15), transparent 30%),
                linear-gradient(180deg, #fbfaff 0%, #fff 100%);
        }

        .mye-hero::before,
        .mye-hero::after {
            position: absolute;
            content: "";
            pointer-events: none;
            border-radius: 50%;
            filter: blur(1px);
        }

        .mye-hero::before {
            top: 130px;
            right: -130px;
            width: 350px;
            height: 350px;
            border: 1px solid rgba(109, 93, 252, .18);
        }

        .mye-hero::after {
            bottom: -220px;
            left: -120px;
            width: 500px;
            height: 500px;
            background: rgba(20, 184, 166, .06);
        }

        .mye-hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
            gap: 72px;
            align-items: center;
        }

        .mye-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 22px;
            padding: 8px 12px;
            border: 1px solid #ddd8ff;
            border-radius: 999px;
            color: var(--mye-primary-dark);
            background: rgba(255, 255, 255, .78);
            box-shadow: 0 8px 24px rgba(71, 54, 169, .08);
            font-size: .82rem;
            font-weight: 700;
        }

        .mye-eyebrow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--mye-success);
            box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
        }

        .mye-hero-title {
            max-width: 680px;
            margin-bottom: 24px;
            font-size: clamp(2.8rem, 5.5vw, 5.15rem);
            font-weight: 800;
            line-height: 1.02;
        }

        .mye-gradient-text {
            color: transparent;
            background: linear-gradient(110deg, var(--mye-primary-dark), #8b5cf6 45%, var(--mye-secondary));
            -webkit-background-clip: text;
            background-clip: text;
        }

        .mye-hero-lead {
            max-width: 620px;
            margin-bottom: 30px;
            color: var(--mye-copy);
            font-size: clamp(1.06rem, 2vw, 1.22rem);
            line-height: 1.72;
        }

        .mye-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 28px;
        }

        .mye-trust-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 22px;
            color: var(--mye-muted);
            font-size: .91rem;
            font-weight: 600;
        }

        .mye-trust-row span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .mye-trust-row i {
            color: var(--mye-success);
        }

        /* Product mock-up */
        .mye-product-visual {
            position: relative;
            padding: 28px 0 34px;
        }

        .mye-dashboard {
            position: relative;
            z-index: 2;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .86);
            border-radius: var(--mye-radius-lg);
            background: rgba(255, 255, 255, .92);
            box-shadow: var(--mye-shadow-lg);
        }

        .mye-dashboard-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 17px 20px;
            border-bottom: 1px solid var(--mye-line);
        }

        .mye-window-dots {
            display: flex;
            gap: 6px;
        }

        .mye-window-dots i {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d7dbe7;
        }

        .mye-window-dots i:first-child { background: #fb7185; }
        .mye-window-dots i:nth-child(2) { background: #fbbf24; }
        .mye-window-dots i:nth-child(3) { background: #34d399; }

        .mye-dashboard-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--mye-muted);
            font-size: .74rem;
            font-weight: 700;
        }

        .mye-dashboard-label::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--mye-success);
        }

        .mye-dashboard-body {
            display: grid;
            grid-template-columns: 118px 1fr;
            min-height: 430px;
        }

        .mye-dashboard-side {
            padding: 24px 14px;
            color: #c8c9ff;
            background: linear-gradient(165deg, #1e1a55, #2d237c);
        }

        .mye-side-brand {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 28px;
            color: #fff;
            font-size: .78rem;
            font-weight: 800;
        }

        .mye-side-brand i {
            display: grid;
            width: 28px;
            height: 28px;
            place-items: center;
            border-radius: 9px;
            background: var(--mye-primary);
        }

        .mye-side-nav {
            display: grid;
            gap: 9px;
        }

        .mye-side-nav span {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px;
            border-radius: 9px;
            font-size: .66rem;
            font-weight: 600;
        }

        .mye-side-nav span:first-child {
            color: #fff;
            background: rgba(255, 255, 255, .12);
        }

        .mye-dashboard-main {
            min-width: 0;
            padding: 25px;
            background: #fbfbfe;
        }

        .mye-dashboard-heading {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 20px;
        }

        .mye-dashboard-heading h3 {
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .mye-dashboard-heading p {
            margin: 0;
            font-size: .7rem;
        }

        .mye-live-pill {
            padding: 6px 9px;
            border-radius: 999px;
            color: #047857;
            background: #d1fae5;
            font-size: .62rem;
            font-weight: 800;
        }

        .mye-stat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 11px;
            margin-bottom: 15px;
        }

        .mye-stat-card {
            min-width: 0;
            padding: 14px;
            border: 1px solid var(--mye-line);
            border-radius: 13px;
            background: #fff;
        }

        .mye-stat-card small {
            display: block;
            overflow: hidden;
            margin-bottom: 7px;
            color: var(--mye-muted);
            font-size: .58rem;
            font-weight: 700;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .mye-stat-value {
            display: flex;
            align-items: baseline;
            gap: 6px;
            color: var(--mye-ink);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 1.18rem;
            font-weight: 800;
        }

        .mye-stat-value em {
            color: var(--mye-success);
            font-family: "DM Sans", sans-serif;
            font-size: .54rem;
            font-style: normal;
        }

        .mye-chart-card,
        .mye-guest-card {
            padding: 15px;
            border: 1px solid var(--mye-line);
            border-radius: 14px;
            background: #fff;
        }

        .mye-chart-card {
            margin-bottom: 12px;
        }

        .mye-card-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 13px;
            color: var(--mye-ink);
            font-size: .65rem;
            font-weight: 800;
        }

        .mye-card-label span:last-child {
            color: var(--mye-primary);
        }

        .mye-progress {
            height: 8px;
            overflow: hidden;
            border-radius: 99px;
            background: #ebeef5;
        }

        .mye-progress > span {
            display: block;
            width: 84%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
        }

        .mye-guest-row {
            display: grid;
            grid-template-columns: 26px 1fr auto;
            gap: 9px;
            align-items: center;
            padding: 7px 0;
            border-bottom: 1px solid #f0f1f6;
        }

        .mye-guest-row:last-child {
            border-bottom: 0;
        }

        .mye-avatar {
            display: grid;
            width: 26px;
            height: 26px;
            place-items: center;
            border-radius: 9px;
            color: var(--mye-primary-dark);
            background: var(--mye-primary-soft);
            font-size: .53rem;
            font-weight: 800;
        }

        .mye-guest-name {
            min-width: 0;
            color: var(--mye-ink);
            font-size: .6rem;
            font-weight: 700;
        }

        .mye-guest-name span {
            display: block;
            margin-top: 2px;
            color: var(--mye-muted);
            font-size: .51rem;
            font-weight: 500;
        }

        .mye-guest-status {
            padding: 4px 7px;
            border-radius: 99px;
            color: #047857;
            background: #d1fae5;
            font-size: .48rem;
            font-weight: 800;
        }

        .mye-floating-card {
            position: absolute;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 185px;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, .92);
            border-radius: 15px;
            background: rgba(255, 255, 255, .94);
            box-shadow: 0 18px 42px rgba(46, 34, 119, .18);
            backdrop-filter: blur(12px);
        }

        .mye-floating-card--checkin {
            right: -28px;
            bottom: 4px;
        }

        .mye-floating-card--rsvp {
            top: 0;
            left: -34px;
        }

        .mye-floating-icon {
            display: grid;
            width: 36px;
            height: 36px;
            flex: 0 0 36px;
            place-items: center;
            border-radius: 11px;
            color: #047857;
            background: #d1fae5;
        }

        .mye-floating-card--rsvp .mye-floating-icon {
            color: #a21caf;
            background: #fae8ff;
        }

        .mye-floating-copy strong,
        .mye-floating-copy span {
            display: block;
        }

        .mye-floating-copy strong {
            color: var(--mye-ink);
            font-size: .75rem;
        }

        .mye-floating-copy span {
            margin-top: 2px;
            color: var(--mye-muted);
            font-size: .63rem;
        }

        /* Social proof */
        .mye-proof {
            position: relative;
            z-index: 5;
            margin-top: -38px;
        }

        .mye-proof-panel {
            display: grid;
            grid-template-columns: 1.3fr repeat(3, 1fr);
            overflow: hidden;
            border: 1px solid var(--mye-line);
            border-radius: var(--mye-radius);
            background: #fff;
            box-shadow: var(--mye-shadow-sm);
        }

        .mye-proof-intro,
        .mye-proof-stat {
            min-height: 128px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 25px 28px;
        }

        .mye-proof-stat {
            border-left: 1px solid var(--mye-line);
        }

        .mye-proof-intro strong {
            display: block;
            margin-bottom: 6px;
            color: var(--mye-ink);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 1.1rem;
        }

        .mye-proof-intro span {
            color: var(--mye-copy);
            font-size: .91rem;
        }

        .mye-proof-number {
            margin-bottom: 5px;
            color: var(--mye-primary-dark);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 1.65rem;
            font-weight: 800;
        }

        .mye-proof-label {
            color: var(--mye-muted);
            font-size: .78rem;
            font-weight: 600;
        }

        /* Use cases */
        .mye-use-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .mye-use-card {
            position: relative;
            min-height: 390px;
            overflow: hidden;
            padding: 30px;
            border: 1px solid var(--mye-line);
            border-radius: var(--mye-radius);
            background: #fff;
            box-shadow: 0 14px 36px rgba(17, 24, 44, .05);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .mye-use-card:hover {
            border-color: #d8d2ff;
            box-shadow: 0 24px 55px rgba(50, 39, 118, .12);
            transform: translateY(-6px);
        }

        .mye-use-card h3 {
            margin: 22px 0 10px;
            font-size: 1.32rem;
            font-weight: 800;
        }

        .mye-use-card p {
            margin-bottom: 22px;
            line-height: 1.65;
        }

        .mye-text-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--mye-primary-dark);
            font-weight: 800;
        }

        .mye-use-preview {
            position: absolute;
            right: 24px;
            bottom: -26px;
            left: 24px;
            height: 135px;
            overflow: hidden;
            border: 1px solid var(--mye-line);
            border-radius: 18px 18px 0 0;
            background: linear-gradient(145deg, #f7f5ff, #fff);
        }

        .mye-mini-invite {
            width: 110px;
            height: 150px;
            margin: 18px auto 0;
            padding: 16px 10px;
            border-radius: 14px;
            color: #fff;
            text-align: center;
            background: linear-gradient(160deg, #6d5dfc, #ec4899);
            box-shadow: 0 12px 30px rgba(109, 93, 252, .3);
            transform: rotate(-3deg);
        }

        .mye-mini-invite i {
            margin-bottom: 10px;
            font-size: 1.35rem;
        }

        .mye-mini-invite strong,
        .mye-mini-invite small {
            display: block;
        }

        .mye-mini-invite strong { font-size: .7rem; }
        .mye-mini-invite small { margin-top: 5px; opacity: .78; font-size: .5rem; }

        .mye-mini-ticket {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 64px;
            width: 230px;
            min-height: 82px;
            margin: 26px auto;
            overflow: hidden;
            border-radius: 13px;
            color: #fff;
            background: #17143f;
            box-shadow: 0 12px 30px rgba(23, 20, 63, .24);
        }

        .mye-ticket-copy {
            padding: 14px;
        }

        .mye-ticket-copy strong,
        .mye-ticket-copy small {
            display: block;
        }

        .mye-ticket-copy strong { font-size: .68rem; }
        .mye-ticket-copy small { margin-top: 5px; color: #c8c9ee; font-size: .5rem; }

        .mye-ticket-qr {
            display: grid;
            place-items: center;
            border-left: 1px dashed rgba(255, 255, 255, .35);
            color: #fff;
            font-size: 1.65rem;
        }

        .mye-mini-vcard {
            width: 225px;
            margin: 25px auto;
            padding: 15px;
            border-radius: 15px;
            color: #fff;
            background: linear-gradient(135deg, #0f766e, #14b8a6);
            box-shadow: 0 12px 30px rgba(20, 184, 166, .26);
        }

        .mye-vcard-top {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mye-vcard-avatar {
            display: grid;
            width: 34px;
            height: 34px;
            place-items: center;
            border-radius: 50%;
            color: #0f766e;
            background: #fff;
            font-size: .65rem;
            font-weight: 800;
        }

        .mye-vcard-top strong,
        .mye-vcard-top small {
            display: block;
        }

        .mye-vcard-top strong { font-size: .68rem; }
        .mye-vcard-top small { opacity: .75; font-size: .5rem; }

        /* Process */
        .mye-process-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .mye-process-grid::before {
            position: absolute;
            top: 31px;
            right: 16.6%;
            left: 16.6%;
            height: 1px;
            content: "";
            background: linear-gradient(90deg, transparent, #cfc8ff 12%, #cfc8ff 88%, transparent);
        }

        .mye-process-item {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .mye-process-number {
            display: grid;
            width: 64px;
            height: 64px;
            margin: 0 auto 22px;
            place-items: center;
            border: 8px solid #fff;
            border-radius: 50%;
            color: #fff;
            background: var(--mye-primary);
            box-shadow: 0 0 0 1px #ddd8ff, 0 12px 24px rgba(109, 93, 252, .22);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-weight: 800;
        }

        .mye-process-item h3 {
            margin-bottom: 10px;
            font-size: 1.14rem;
        }

        .mye-process-item p {
            max-width: 290px;
            margin: 0 auto;
            line-height: 1.65;
        }

        /* Features */
        .mye-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .mye-feature-card {
            padding: 27px;
            border: 1px solid var(--mye-line);
            border-radius: 18px;
            background: #fff;
            transition: border-color .2s ease, transform .2s ease;
        }

        .mye-feature-card:hover {
            border-color: #d1caff;
            transform: translateY(-3px);
        }

        .mye-feature-card h3 {
            margin: 18px 0 9px;
            font-size: 1.05rem;
        }

        .mye-feature-card p {
            margin: 0;
            font-size: .92rem;
            line-height: 1.65;
        }

        /* Templates */
        .mye-template-toolbar {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 36px;
        }

        .mye-template-toolbar .mye-section-head {
            margin-bottom: 0;
        }

        .mye-slider-controls {
            display: flex;
            gap: 10px;
        }

        .mye-slider-button {
            display: grid;
            width: 46px;
            height: 46px;
            place-items: center;
            border: 1px solid var(--mye-line);
            border-radius: 13px;
            color: var(--mye-ink);
            background: #fff;
            cursor: pointer;
            transition: color .2s ease, border-color .2s ease, transform .2s ease;
        }

        .mye-slider-button:hover {
            color: var(--mye-primary);
            border-color: #ccc5ff;
            transform: translateY(-2px);
        }

        .mye-template-viewport {
            display: grid;
            grid-auto-columns: calc((100% - 66px) / 4);
            grid-auto-flow: column;
            gap: 22px;
            overflow-x: auto;
            padding: 4px 3px 26px;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-color: #cfc8ff transparent;
            scrollbar-width: thin;
        }

        .mye-template-card {
            position: relative;
            min-width: 0;
            overflow: hidden;
            padding: 12px;
            border: 1px solid var(--mye-line);
            border-radius: 20px;
            background: #fff;
            box-shadow: 0 12px 30px rgba(17, 24, 44, .06);
            scroll-snap-align: start;
        }

        .mye-template-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 5;
            border-radius: 14px;
            background: linear-gradient(145deg, #f3f1ff, #fafafa);
        }

        .mye-template-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            transition: transform .35s ease;
        }

        .mye-template-card:hover img {
            transform: scale(1.025);
        }

        .mye-template-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 6px 9px;
            border-radius: 999px;
            color: var(--mye-primary-dark);
            background: rgba(255, 255, 255, .9);
            box-shadow: 0 6px 16px rgba(17, 24, 44, .12);
            font-size: .65rem;
            font-weight: 800;
        }

        .mye-template-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 15px 5px 4px;
        }

        .mye-template-meta strong {
            color: var(--mye-ink);
            font-size: .9rem;
        }

        .mye-template-meta span {
            color: var(--mye-muted);
            font-size: .76rem;
        }

        .mye-template-note {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-top: 26px;
            padding: 22px 24px;
            border: 1px solid #dcd6ff;
            border-radius: 18px;
            background: linear-gradient(110deg, #f6f3ff, #fff6fb);
        }

        .mye-template-note p {
            margin: 0;
            color: #47415f;
        }

        /* Pricing */
        .mye-pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            align-items: stretch;
        }

        .mye-price-card {
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 32px;
            border: 1px solid var(--mye-line);
            border-radius: var(--mye-radius);
            background: #fff;
            box-shadow: 0 14px 36px rgba(17, 24, 44, .05);
        }

        .mye-price-card--featured {
            border-color: #cfc8ff;
            background: linear-gradient(180deg, #f7f5ff 0%, #fff 45%);
            box-shadow: 0 22px 52px rgba(81, 65, 176, .15);
            transform: translateY(-10px);
        }

        .mye-popular-badge {
            position: absolute;
            top: 18px;
            right: 18px;
            padding: 6px 9px;
            border-radius: 999px;
            color: #fff;
            background: var(--mye-primary);
            font-size: .65rem;
            font-weight: 800;
            letter-spacing: .03em;
            text-transform: uppercase;
        }

        .mye-price-card h3 {
            margin: 20px 0 8px;
            font-size: 1.2rem;
        }

        .mye-price-card > p {
            min-height: 48px;
            margin-bottom: 20px;
            line-height: 1.55;
        }

        .mye-price {
            min-height: 62px;
            display: flex;
            align-items: baseline;
            gap: 5px;
            margin-bottom: 22px;
            color: var(--mye-ink);
        }

        .mye-price strong {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 2.25rem;
            letter-spacing: -.05em;
        }

        .mye-price span {
            color: var(--mye-muted);
            font-size: .8rem;
        }

        .mye-price-features {
            display: grid;
            gap: 12px;
            margin: 0 0 28px;
            padding: 0;
            list-style: none;
        }

        .mye-price-features li {
            display: flex;
            gap: 9px;
            color: #495269;
            font-size: .9rem;
        }

        .mye-price-features i {
            margin-top: 3px;
            color: var(--mye-success);
        }

        .mye-price-card .mye-btn {
            width: 100%;
            margin-top: auto;
        }

        .mye-pricing-footnote {
            margin: 27px 0 0;
            color: var(--mye-muted);
            text-align: center;
            font-size: .86rem;
        }

        /* Trust */
        .mye-trust-panel {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            overflow: hidden;
            border-radius: var(--mye-radius-lg);
            color: #fff;
            background: linear-gradient(135deg, #17143f, #2d237c);
            box-shadow: var(--mye-shadow-lg);
        }

        .mye-trust-copy {
            padding: 58px;
        }

        .mye-trust-copy .mye-section-kicker {
            color: #bcb7ff;
        }

        .mye-trust-copy h2 {
            margin-bottom: 18px;
            color: #fff;
            font-size: clamp(2rem, 4vw, 3rem);
        }

        .mye-trust-copy p {
            margin-bottom: 26px;
            color: #c8c9e2;
            font-size: 1rem;
            line-height: 1.72;
        }

        .mye-trust-copy .mye-btn--secondary {
            color: #fff;
            border-color: rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .08);
            box-shadow: none;
        }

        .mye-trust-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            padding: 48px;
            background: rgba(255, 255, 255, .04);
        }

        .mye-trust-point {
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 18px;
            background: rgba(255, 255, 255, .055);
        }

        .mye-trust-point i {
            margin-bottom: 18px;
            color: #a9fff5;
            font-size: 1.35rem;
        }

        .mye-trust-point strong {
            display: block;
            margin-bottom: 7px;
            color: #fff;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: .95rem;
        }

        .mye-trust-point span {
            color: #b8b9d2;
            font-size: .8rem;
            line-height: 1.55;
        }

        /* FAQ */
        .mye-faq-grid {
            display: grid;
            grid-template-columns: .8fr 1.2fr;
            gap: 70px;
            align-items: start;
        }

        .mye-faq-intro {
            position: sticky;
            top: 120px;
        }

        .mye-faq-list {
            display: grid;
            gap: 12px;
        }

        .mye-faq-item {
            overflow: hidden;
            border: 1px solid var(--mye-line);
            border-radius: 16px;
            background: #fff;
        }

        .mye-faq-item summary {
            position: relative;
            padding: 22px 56px 22px 22px;
            color: var(--mye-ink);
            cursor: pointer;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: .98rem;
            font-weight: 700;
            list-style: none;
        }

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

        .mye-faq-item summary::after {
            position: absolute;
            top: 50%;
            right: 21px;
            display: grid;
            width: 28px;
            height: 28px;
            place-items: center;
            content: "+";
            border-radius: 9px;
            color: var(--mye-primary);
            background: var(--mye-primary-soft);
            transform: translateY(-50%);
        }

        .mye-faq-item[open] summary::after {
            content: "−";
        }

        .mye-faq-answer {
            padding: 0 22px 22px;
        }

        .mye-faq-answer p {
            margin: 0;
            line-height: 1.7;
        }

        /* Final CTA */
        .mye-final-cta {
            padding: 20px 0 104px;
        }

        .mye-final-card {
            position: relative;
            overflow: hidden;
            padding: 70px 40px;
            border-radius: var(--mye-radius-lg);
            color: #fff;
            text-align: center;
            background: linear-gradient(120deg, var(--mye-primary-dark), #7c3aed 55%, var(--mye-secondary));
            box-shadow: var(--mye-shadow-lg);
        }

        .mye-final-card::before,
        .mye-final-card::after {
            position: absolute;
            content: "";
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 50%;
        }

        .mye-final-card::before {
            top: -140px;
            left: -90px;
            width: 320px;
            height: 320px;
        }

        .mye-final-card::after {
            right: -80px;
            bottom: -170px;
            width: 360px;
            height: 360px;
        }

        .mye-final-card > * {
            position: relative;
            z-index: 1;
        }

        .mye-final-card h2 {
            max-width: 770px;
            margin: 0 auto 16px;
            color: #fff;
            font-size: clamp(2rem, 4vw, 3.3rem);
        }

        .mye-final-card p {
            max-width: 620px;
            margin: 0 auto 28px;
            color: rgba(255, 255, 255, .82);
            font-size: 1.05rem;
        }

        .mye-final-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .mye-final-actions .mye-btn--secondary {
            color: var(--mye-primary-dark);
            background: #fff;
        }

        .mye-final-actions .mye-btn--primary {
            border-color: rgba(255, 255, 255, .3);
            background: rgba(23, 20, 63, .28);
            box-shadow: none;
        }

        /* Reveal animation */
        .mye-reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity .65s ease, transform .65s ease;
        }

        .mye-reveal.is-visible {
            opacity: 1;
            transform: none;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .mye-page .navbar .nav-link {
                padding-inline: 8px !important;
                font-size: var(--mye-nav-font-size-compact);
            }

            .mye-page .mye-nav-cta {
                margin-left: 8px;
                padding-inline: 14px;
                font-size: var(--mye-nav-cta-font-size-compact);
            }

            .mye-hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 38px;
            }

            .mye-hero-title {
                font-size: clamp(2.7rem, 5vw, 4rem);
            }

            .mye-floating-card--checkin { right: -6px; }
            .mye-floating-card--rsvp { left: -6px; }
            .mye-trust-copy { padding: 46px; }
            .mye-trust-points { padding: 36px; }
        }

        @media (max-width: 991px) {
            .mye-page .navbar {
                min-height: var(--mye-nav-height-mobile);
                padding: 9px 18px;
                background: rgba(255, 255, 255, .97);
            }

            .mye-page .navbar.is-scrolled {
                min-height: var(--mye-nav-height-mobile-scrolled);
            }

            .mye-page .mye-navbar-shell {
                gap: 0;
            }

            .mye-page .mye-navbar-brand {
                min-height: 50px;
            }

            .mye-page .navbar-brand img {
                width: var(--mye-nav-logo-width-tablet);
                max-height: 44px;
            }

            .mye-page .mye-navbar-toggler {
                display: grid;
            }

            .mye-page .navbar-collapse {
                width: 100%;
                flex-basis: 100%;
                max-height: calc(100vh - 86px);
                overflow-y: auto;
                margin-top: 10px;
                padding: 12px;
                border: 1px solid var(--mye-line);
                border-radius: 18px;
                background: #fff;
                box-shadow: 0 22px 50px rgba(17, 24, 44, .14);
            }

            .mye-page .mye-navbar-nav {
                width: 100%;
                align-items: stretch;
                gap: 3px;
            }

            .mye-page .navbar .nav-link {
                width: 100%;
                min-height: 47px;
                justify-content: flex-start;
                padding: 12px 14px !important;
                border-radius: 11px;
                font-size: var(--mye-nav-font-size-mobile);
            }

            .mye-page .navbar .nav-link::after {
                display: none;
            }

            .mye-page .navbar .nav-link:hover,
            .mye-page .navbar .nav-link.active,
            .mye-page .navbar .nav-link[aria-current="page"] {
                background: var(--mye-primary-soft);
            }

            .mye-page .navbar .mye-lang-link {
                min-height: 46px;
                margin: 8px 0 0;
                border-radius: 11px;
            }

            .mye-page .mye-nav-cta {
                width: 100%;
                min-height: 50px;
                margin: 12px 0 0;
                border-radius: 12px;
                font-size: var(--mye-nav-cta-font-size-mobile);
            }

            .mye-hero {
                padding-top: 130px;
            }

            .mye-hero-grid {
                grid-template-columns: 1fr;
                gap: 52px;
            }

            .mye-hero-copy {
                max-width: 760px;
                text-align: center;
                margin-inline: auto;
            }

            .mye-hero-lead {
                margin-inline: auto;
            }

            .mye-hero-actions,
            .mye-trust-row {
                justify-content: center;
            }

            .mye-product-visual {
                width: min(680px, 100%);
                margin-inline: auto;
            }

            .mye-proof-panel {
                grid-template-columns: repeat(3, 1fr);
            }

            .mye-proof-intro {
                grid-column: 1 / -1;
                min-height: auto;
                text-align: center;
                border-bottom: 1px solid var(--mye-line);
            }

            .mye-use-grid,
            .mye-pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .mye-use-card:last-child,
            .mye-price-card:last-child {
                grid-column: 1 / -1;
            }

            .mye-price-card--featured {
                transform: none;
            }

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

            .mye-template-viewport {
                grid-auto-columns: calc((100% - 44px) / 3);
            }

            .mye-trust-panel,
            .mye-faq-grid {
                grid-template-columns: 1fr;
            }

            .mye-faq-intro {
                position: static;
            }
        }

        @media (max-width: 767px) {
            .mye-container {
                width: min(100% - 30px, 680px);
            }

            .mye-section {
                padding: 78px 0;
            }

            .mye-section-head {
                margin-bottom: 36px;
            }

            .mye-hero {
                min-height: auto;
                padding: 118px 0 75px;
            }

            .mye-hero-title {
                font-size: clamp(2.35rem, 11vw, 3.4rem);
            }

            .mye-hero-actions .mye-btn {
                flex: 1 1 220px;
            }

            .mye-dashboard-body {
                grid-template-columns: 1fr;
            }

            .mye-dashboard-side {
                display: none;
            }

            .mye-dashboard-main {
                padding: 18px;
            }

            .mye-floating-card--rsvp {
                top: -8px;
                left: -5px;
            }

            .mye-floating-card--checkin {
                right: -5px;
                bottom: 2px;
            }

            .mye-proof {
                margin-top: -24px;
            }

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

            .mye-proof-stat {
                min-height: auto;
                align-items: center;
                border-top: 1px solid var(--mye-line);
                border-left: 0;
                text-align: center;
            }

            .mye-use-grid,
            .mye-pricing-grid,
            .mye-feature-grid {
                grid-template-columns: 1fr;
            }

            .mye-use-card:last-child,
            .mye-price-card:last-child {
                grid-column: auto;
            }

            .mye-process-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .mye-process-grid::before {
                display: none;
            }

            .mye-template-toolbar {
                align-items: flex-start;
            }

            .mye-template-viewport {
                grid-auto-columns: calc((100% - 22px) / 2);
            }

            .mye-template-note {
                align-items: flex-start;
                flex-direction: column;
            }

            .mye-trust-copy {
                padding: 38px 28px;
            }

            .mye-trust-points {
                grid-template-columns: 1fr;
                padding: 28px;
            }

            .mye-final-card {
                padding: 54px 24px;
            }

            .mye-final-actions .mye-btn {
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            .mye-page .navbar {
                padding-inline: 14px;
            }

            .mye-page .navbar-brand img {
                width: var(--mye-nav-logo-width-mobile);
            }

            .mye-page .mye-navbar-toggler {
                width: 44px;
                height: 44px;
            }

            .mye-eyebrow {
                font-size: .72rem;
            }

            .mye-stat-grid {
                gap: 6px;
            }

            .mye-stat-card {
                padding: 10px 8px;
            }

            .mye-stat-value {
                font-size: .93rem;
            }

            .mye-stat-value em {
                display: none;
            }

            .mye-dashboard-main {
                min-height: 370px;
            }

            .mye-floating-card {
                min-width: 0;
                padding: 9px 11px;
            }

            .mye-floating-icon {
                width: 30px;
                height: 30px;
                flex-basis: 30px;
            }

            .mye-floating-copy strong { font-size: .65rem; }
            .mye-floating-copy span { font-size: .55rem; }

            .mye-template-toolbar {
                display: block;
            }

            .mye-slider-controls {
                margin-top: 20px;
            }

            .mye-template-viewport {
                grid-auto-columns: 82%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: .01ms !important;
            }
            .mye-reveal {
                opacity: 1;
                transform: none;
            }
        }
    

/* ======================================================
   FOOTER COMMUN
   ====================================================== */

    .mye-footer-wrap {
        --footer-primary: var(--mye-primary, #6d5dfc);
        --footer-primary-dark: var(--mye-primary-dark, #5746ef);
        --footer-secondary: var(--mye-secondary, #ec4899);
        --footer-ink: #11182c;
        --footer-bg: #101225;
        --footer-bg-soft: #171a33;
        --footer-copy: #aeb5cc;
        --footer-line: rgba(255, 255, 255, .1);
        --footer-success: #22c55e;
        position: relative;
        color: #fff;
        font-family: "DM Sans", Arial, sans-serif;
    }

    .mye-footer-wrap *,
    .mye-footer-wrap *::before,
    .mye-footer-wrap *::after {
        box-sizing: border-box;
    }

    .mye-footer-container {
        width: min(1180px, calc(100% - 40px));
        margin-inline: auto;
    }

    /* Newsletter premium */
    .mye-footer-newsletter-zone {
        position: relative;
        z-index: 3;
        margin-bottom: -95px;
    }

    .mye-footer-newsletter {
        position: relative;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 50px;
        align-items: center;
        overflow: hidden;
        padding: 42px 46px;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: 28px;
        background:
            radial-gradient(circle at 92% 10%, rgba(255, 255, 255, .18), transparent 25%),
            linear-gradient(120deg, var(--footer-primary-dark), #7c3aed 56%, var(--footer-secondary));
        box-shadow: 0 28px 70px rgba(40, 28, 110, .3);
    }

    .mye-footer-newsletter::before {
        position: absolute;
        top: -145px;
        right: -90px;
        width: 300px;
        height: 300px;
        content: "";
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        pointer-events: none;
    }

    .mye-footer-newsletter-copy,
    .mye-footer-newsletter-form {
        position: relative;
        z-index: 1;
    }

    .mye-footer-newsletter-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, .78);
        font-size: .75rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .mye-footer-newsletter-label::before {
        width: 7px;
        height: 7px;
        content: "";
        border-radius: 50%;
        background: #8ff5df;
        box-shadow: 0 0 0 5px rgba(143, 245, 223, .14);
    }

    .mye-footer-newsletter h2 {
        margin: 0 0 8px;
        color: #fff;
        font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
        font-size: clamp(1.55rem, 3vw, 2.15rem);
        font-weight: 800;
        letter-spacing: -.035em;
        line-height: 1.2;
    }

    .mye-footer-newsletter-copy p {
        max-width: 470px;
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .94rem;
        line-height: 1.6;
    }

    .mye-newsletter-input-group {
        position: relative;
        display: flex;
        min-height: 58px;
        align-items: center;
        padding: 6px 6px 6px 20px;
        border: 1px solid rgba(255, 255, 255, .34);
        border-radius: 16px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 14px 35px rgba(26, 18, 80, .2);
    }

    .mye-newsletter-input-group > i {
        flex: 0 0 auto;
        color: #858ca3;
        font-size: .95rem;
    }

    .mye-newsletter-input {
        min-width: 0;
        flex: 1 1 auto;
        height: 44px;
        padding: 0 14px;
        border: 0;
        outline: 0;
        color: var(--footer-ink);
        background: transparent;
        font: inherit;
        font-size: .92rem;
    }

    .mye-newsletter-input::placeholder {
        color: #8a91a5;
    }

    .mye-newsletter-submit {
        min-width: 126px;
        height: 46px;
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 17px;
        border: 0;
        border-radius: 12px;
        color: #fff;
        background: var(--footer-ink);
        box-shadow: 0 9px 20px rgba(17, 24, 44, .22);
        cursor: pointer;
        font: inherit;
        font-size: .82rem;
        font-weight: 800;
        transition: transform .2s ease, background-color .2s ease;
    }

    .mye-newsletter-submit:hover {
        background: #262d43;
        transform: translateY(-1px);
    }

    .mye-newsletter-consent {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        margin-top: 11px;
        color: rgba(255, 255, 255, .78);
        font-size: .76rem;
        line-height: 1.45;
    }

    .mye-newsletter-consent input {
        width: 15px;
        height: 15px;
        flex: 0 0 15px;
        margin-top: 2px;
        accent-color: #fff;
    }

    .mye-newsletter-consent a {
        color: #fff;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    #messagetextnews {
        min-height: 18px;
        margin: 7px 0 0;
        color: #fff !important;
        font-size: .78rem;
        font-weight: 600;
    }

    /* Main footer */
    .mye-footer {
        position: relative;
        overflow: hidden;
        padding: 168px 0 0;
        background:
            radial-gradient(circle at 12% 15%, rgba(109, 93, 252, .13), transparent 24%),
            radial-gradient(circle at 88% 75%, rgba(236, 72, 153, .08), transparent 25%),
            var(--footer-bg);
    }

    .mye-footer::before {
        position: absolute;
        top: -210px;
        left: -150px;
        width: 460px;
        height: 460px;
        content: "";
        border: 1px solid rgba(255, 255, 255, .055);
        border-radius: 50%;
        pointer-events: none;
    }

    .mye-footer-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.65fr .8fr .8fr .9fr;
        gap: 54px;
        padding-bottom: 52px;
    }

    .mye-footer-brand {
        display: inline-flex;
        align-items: center;
        gap: 11px;
        margin-bottom: 20px;
        color: #fff;
        font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
        font-size: 1.25rem;
        font-weight: 800;
        letter-spacing: -.025em;
    }

    .mye-footer-brand:hover {
        color: #fff;
    }

    .mye-footer-brand-mark {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 13px;
        color: #fff;
        background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
        box-shadow: 0 12px 28px rgba(109, 93, 252, .28);
    }

    .mye-footer-about {
        max-width: 390px;
        margin: 0 0 23px;
        color: var(--footer-copy);
        font-size: .91rem;
        line-height: 1.72;
    }

    .mye-footer-status {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 25px;
        padding: 7px 11px;
        border: 1px solid rgba(34, 197, 94, .22);
        border-radius: 999px;
        color: #a7f3d0;
        background: rgba(34, 197, 94, .08);
        font-size: .72rem;
        font-weight: 700;
    }

    .mye-footer-status::before {
        width: 7px;
        height: 7px;
        content: "";
        border-radius: 50%;
        background: var(--footer-success);
        box-shadow: 0 0 0 5px rgba(34, 197, 94, .1);
    }

    .mye-footer-socials {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
    }

    .mye-footer-social {
        display: grid;
        width: 40px;
        height: 40px;
        place-items: center;
        border: 1px solid var(--footer-line);
        border-radius: 12px;
        color: #d6daea;
        background: rgba(255, 255, 255, .035);
        transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
    }

    .mye-footer-social:hover {
        color: #fff;
        border-color: rgba(255, 255, 255, .26);
        background: var(--footer-primary);
        transform: translateY(-3px);
    }

    .mye-footer-wrap .mye-footer .mye-footer-title {
        margin: 9px 0 20px;
        color: #fff !important;
        font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
        font-size: .86rem;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .mye-footer-links {
        display: grid;
        gap: 12px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mye-footer-links a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--footer-copy);
        font-size: .88rem;
        transition: color .2s ease, transform .2s ease;
    }

    .mye-footer-links a::before {
        width: 0;
        height: 1px;
        content: "";
        background: #bcb7ff;
        transition: width .2s ease;
    }

    .mye-footer-links a:hover {
        color: #fff;
        transform: translateX(2px);
    }

    .mye-footer-links a:hover::before {
        width: 12px;
    }

    .mye-footer-values {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 24px;
    }

    .mye-footer-value {
        padding: 6px 9px;
        border: 1px solid var(--footer-line);
        border-radius: 999px;
        color: #bfc5d8;
        background: rgba(255, 255, 255, .025);
        font-size: .69rem;
        font-weight: 700;
    }

    /* Reassurance */
    .mye-footer-trustbar {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 22px 0;
        border-top: 1px solid var(--footer-line);
    }

    .mye-footer-trustitems {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 28px;
    }

    .mye-footer-trustitem {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #c9cede;
        font-size: .77rem;
        font-weight: 600;
    }

    .mye-footer-trustitem i {
        color: #9ff6e2;
    }

    .mye-footer-language {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        gap: 8px;
        color: #c9cede;
        font-size: .77rem;
        font-weight: 600;
    }

    .mye-footer-bottom {
        position: relative;
        z-index: 1;
        padding: 22px 0 28px;
        border-top: 1px solid var(--footer-line);
    }

    .mye-footer-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
    }

    .mye-footer-copyright {
        margin: 0;
        color: #858da8;
        font-size: .76rem;
        line-height: 1.5;
    }

    .mye-footer-copyright strong {
        color: #c8cddd;
        font-weight: 700;
    }

    .mye-footer-mini-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px 20px;
    }

    .mye-footer-mini-links a {
        color: #858da8;
        font-size: .76rem;
        transition: color .2s ease;
    }

    .mye-footer-mini-links a:hover {
        color: #fff;
    }

    /* Floating WhatsApp */
    .mye-whatsapp-float {
        position: fixed;
        right: 24px;
        bottom: 24px;
        z-index: 1060;
        display: inline-flex;
        min-height: 56px;
        align-items: center;
        gap: 10px;
        padding: 7px 8px 7px 17px;
        border: 1px solid rgba(255, 255, 255, .62);
        border-radius: 999px;
        color: #fff;
        background: #121a2d;
        box-shadow: 0 17px 42px rgba(8, 14, 29, .25);
        font-size: .8rem;
        font-weight: 800;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .mye-whatsapp-float:hover {
        color: #fff;
        box-shadow: 0 20px 48px rgba(8, 14, 29, .34);
        transform: translateY(-3px);
    }

    .mye-whatsapp-float-icon {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        background: #22c55e;
        font-size: 1.28rem;
        box-shadow: 0 8px 18px rgba(34, 197, 94, .3);
    }

    /* Cookies */
    .mye-cookie-banner {
        position: fixed;
        right: 190px;
        bottom: 24px;
        left: 24px;
        z-index: 1055;
        display: flex;
        max-width: 760px;
        align-items: center;
        gap: 15px;
        padding: 15px 16px;
        border: 1px solid rgba(17, 24, 44, .11);
        border-radius: 17px;
        color: #505a70;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 20px 55px rgba(17, 24, 44, .18);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mye-cookie-icon {
        display: grid;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        place-items: center;
        border-radius: 13px;
        color: var(--footer-primary);
        background: #eeeaff;
        font-size: 1rem;
    }

    .mye-cookie-copy {
        min-width: 0;
        flex: 1 1 auto;
    }

    .mye-cookie-copy strong {
        display: block;
        margin-bottom: 2px;
        color: var(--footer-ink);
        font-size: .84rem;
    }

    .mye-cookie-copy p {
        margin: 0;
        color: #687188;
        font-size: .74rem;
        line-height: 1.45;
    }

    .mye-cookie-copy a:not(.mye-cookie-accept) {
        color: var(--footer-primary-dark);
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .mye-cookie-accept {
        display: inline-flex;
        min-height: 40px;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        padding: 9px 15px;
        border-radius: 11px;
        color: #fff;
        background: var(--footer-primary);
        font-size: .75rem;
        font-weight: 800;
        transition: background-color .2s ease, transform .2s ease;
    }

    .mye-cookie-accept:hover {
        color: #fff;
        background: var(--footer-primary-dark);
        transform: translateY(-1px);
    }

    .mye-visually-hidden {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        clip-path: inset(50%) !important;
    }

    @media (max-width: 991px) {
        .mye-footer-newsletter {
            grid-template-columns: 1fr;
            gap: 26px;
        }

        .mye-footer-grid {
            grid-template-columns: 1.4fr repeat(2, 1fr);
            gap: 42px;
        }

        .mye-footer-brand-column {
            grid-column: 1 / -1;
        }

        .mye-footer-about {
            max-width: 650px;
        }
    }

    @media (max-width: 767px) {
        .mye-footer-container {
            width: min(100% - 30px, 680px);
        }

        .mye-footer-newsletter-zone {
            margin-bottom: -78px;
        }

        .mye-footer-newsletter {
            padding: 31px 24px;
            border-radius: 23px;
        }

        .mye-footer {
            padding-top: 145px;
        }

        .mye-footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 38px 28px;
        }

        .mye-footer-trustbar,
        .mye-footer-bottom-inner {
            align-items: flex-start;
            flex-direction: column;
        }

        .mye-footer-mini-links {
            justify-content: flex-start;
        }

        .mye-whatsapp-float {
            right: 16px;
            bottom: 16px;
            min-height: 52px;
            padding: 5px;
        }

        .mye-whatsapp-float-label {
            display: none;
        }

        .mye-cookie-banner {
            right: 15px;
            bottom: 82px;
            left: 15px;
            max-width: none;
        }
    }

    @media (max-width: 560px) {
        .mye-newsletter-input-group {
            display: grid;
            grid-template-columns: auto 1fr;
            padding: 8px 8px 8px 16px;
        }

        .mye-newsletter-submit {
            width: 100%;
            grid-column: 1 / -1;
            margin-top: 6px;
        }

        .mye-footer-grid {
            grid-template-columns: 1fr;
        }

        .mye-footer-brand-column {
            grid-column: auto;
        }

        .mye-cookie-banner {
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .mye-cookie-copy {
            width: calc(100% - 58px);
        }

        .mye-cookie-accept {
            width: 100%;
            margin-left: 57px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .mye-footer-wrap *,
        .mye-footer-wrap *::before,
        .mye-footer-wrap *::after {
            animation-duration: .01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .01ms !important;
        }
    }

/* ======================================================
   PAGE OFFRES
   ====================================================== */

.mye-offers-hero,
.mye-help-offers-intro,
.mye-qr-intro {
    position: relative;
    overflow: hidden;
    padding: 154px 0 92px;
    background:
        radial-gradient(circle at 12% 18%, rgba(109, 93, 252, .18), transparent 30%),
        radial-gradient(circle at 88% 28%, rgba(236, 72, 153, .13), transparent 28%),
        linear-gradient(180deg, #fbfaff 0%, #fff 100%);
}

.mye-offers-hero::before,
.mye-offers-hero::after,
.mye-help-offers-intro::before,
.mye-help-offers-intro::after,
.mye-qr-intro::before,
.mye-qr-intro::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(109, 93, 252, .12);
    border-radius: 50%;
    pointer-events: none;
}

.mye-offers-hero::before,
.mye-help-offers-intro::before,
.mye-qr-intro::before {
    top: 105px;
    right: -135px;
    width: 360px;
    height: 360px;
}

.mye-offers-hero::after,
.mye-help-offers-intro::after,
.mye-qr-intro::after {
    bottom: -260px;
    left: -150px;
    width: 510px;
    height: 510px;
}

.mye-offers-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: 76px;
    align-items: center;
}

.mye-offers-title {
    max-width: 760px;
    margin: 0 0 24px;
    font-size: clamp(2.75rem, 5.4vw, 5rem);
    font-weight: 800;
    line-height: 1.03;
}

.mye-offers-lead {
    max-width: 680px;
    margin: 0 0 30px;
    color: var(--mye-copy);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.72;
}

.mye-offers-value-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: var(--mye-radius-lg);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--mye-shadow-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mye-offers-value-card::before {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 210px;
    height: 210px;
    content: "";
    border-radius: 50%;
    background: rgba(109, 93, 252, .08);
}

.mye-offers-value-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.mye-offers-value-head strong {
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
}

.mye-offers-value-head span {
    padding: 6px 9px;
    border-radius: 999px;
    color: #047857;
    background: #d1fae5;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mye-offers-value-list {
    position: relative;
    display: grid;
    gap: 11px;
}

.mye-offers-value-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--mye-line);
    border-radius: 15px;
    background: #fff;
}

.mye-offers-value-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    color: var(--mye-primary);
    background: var(--mye-primary-soft);
}

.mye-offers-value-copy strong,
.mye-offers-value-copy span {
    display: block;
}

.mye-offers-value-copy strong {
    margin-bottom: 2px;
    color: var(--mye-ink);
    font-size: .82rem;
}

.mye-offers-value-copy span {
    color: var(--mye-muted);
    font-size: .68rem;
}

.mye-offers-value-price {
    color: var(--mye-primary-dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.mye-plan-jump-zone {
    position: relative;
    z-index: 5;
    margin-top: -31px;
}

.mye-plan-jump {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding: 7px;
    border: 1px solid var(--mye-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--mye-shadow-sm);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mye-plan-jump a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 11px;
    color: var(--mye-copy);
    font-size: .82rem;
    font-weight: 800;
    transition: color .2s ease, background-color .2s ease;
}

.mye-plan-jump a:hover,
.mye-plan-jump a:first-child {
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
}

.mye-offers-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.mye-offer-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    padding: 32px;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: #fff;
    box-shadow: 0 14px 38px rgba(17, 24, 44, .055);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.mye-offer-card:hover {
    border-color: #d7d1ff;
    box-shadow: 0 24px 54px rgba(54, 42, 132, .12);
    transform: translateY(-5px);
}

.mye-offer-card--featured {
    border-color: #cfc8ff;
    background: linear-gradient(180deg, #f7f5ff 0%, #fff 46%);
    box-shadow: 0 24px 56px rgba(72, 56, 168, .15);
}

.mye-offer-card-topline {
    height: 4px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
    opacity: 0;
}

.mye-offer-card--featured .mye-offer-card-topline {
    opacity: 1;
}

.mye-offer-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 19px;
}

.mye-offer-card-head .mye-icon-box {
    flex: 0 0 48px;
}

.mye-offer-tag {
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mye-offer-card h3 {
    margin: 0 0 9px;
    font-size: 1.28rem;
}

.mye-offer-description {
    min-height: 68px;
    margin: 0 0 19px;
    color: var(--mye-copy);
    font-size: .91rem;
    line-height: 1.6;
}

.mye-offer-price {
    min-height: 68px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 22px;
    color: var(--mye-ink);
}

.mye-offer-price strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -.055em;
}

.mye-offer-price span {
    color: var(--mye-muted);
    font-size: .76rem;
    line-height: 1.35;
}

.mye-offer-feature-title {
    margin-bottom: 13px;
    color: var(--mye-ink);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mye-offer-features {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.mye-offer-features li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    color: #4e586d;
    font-size: .87rem;
    line-height: 1.45;
}

.mye-offer-features i {
    margin-top: 3px;
    color: var(--mye-success);
}

.mye-offer-card .mye-btn {
    width: 100%;
    margin-top: auto;
}

.mye-offer-microcopy {
    margin: 11px 0 0;
    color: var(--mye-muted);
    text-align: center;
    font-size: .7rem;
}

.mye-offers-common-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mye-offers-common-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 13px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--mye-line);
    border-radius: 17px;
    background: #fff;
}

.mye-offers-common-item i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    color: var(--mye-primary);
    background: var(--mye-primary-soft);
}

.mye-offers-common-item strong,
.mye-offers-common-item span {
    display: block;
}

.mye-offers-common-item strong {
    margin-bottom: 3px;
    color: var(--mye-ink);
    font-size: .85rem;
}

.mye-offers-common-item span {
    color: var(--mye-muted);
    font-size: .72rem;
    line-height: 1.45;
}

.mye-comparison-shell {
    overflow: hidden;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: #fff;
    box-shadow: var(--mye-shadow-sm);
}

.mye-comparison-scroll {
    overflow-x: auto;
}

.mye-comparison-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

.mye-comparison-table th,
.mye-comparison-table td {
    padding: 17px 20px;
    border-bottom: 1px solid var(--mye-line);
    text-align: center;
    vertical-align: middle;
}

.mye-comparison-table thead th {
    color: var(--mye-ink);
    background: #fafafe;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .86rem;
    font-weight: 800;
}

.mye-comparison-table thead th:first-child,
.mye-comparison-table tbody th {
    width: 34%;
    text-align: left;
}

.mye-comparison-table tbody th {
    color: #414b61;
    background: #fff;
    font-size: .82rem;
    font-weight: 700;
}

.mye-comparison-table tbody td {
    color: var(--mye-copy);
    font-size: .8rem;
}

.mye-comparison-table tr:last-child th,
.mye-comparison-table tr:last-child td {
    border-bottom: 0;
}

.mye-comparison-table .fa-check {
    color: var(--mye-success);
}

.mye-comparison-table .fa-minus {
    color: #c0c5d3;
}

.mye-comparison-plan {
    display: block;
    margin-bottom: 4px;
}

.mye-comparison-price {
    color: var(--mye-primary-dark);
    font-family: "DM Sans", sans-serif;
    font-size: .69rem;
    font-weight: 700;
}

.mye-comparison-note {
    padding: 15px 20px;
    border-top: 1px solid var(--mye-line);
    color: var(--mye-muted);
    background: #fafafe;
    font-size: .72rem;
    line-height: 1.5;
}

.mye-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mye-service-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--mye-line);
    border-radius: 20px;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mye-service-card:hover {
    border-color: #d3ccff;
    box-shadow: 0 18px 40px rgba(39, 30, 94, .09);
    transform: translateY(-4px);
}

.mye-service-card h3 {
    margin: 20px 0 9px;
    font-size: 1.08rem;
}

.mye-service-card p {
    margin: 0 0 22px;
    color: var(--mye-copy);
    font-size: .88rem;
    line-height: 1.65;
}

.mye-service-card .mye-text-link {
    margin-top: auto;
}

.mye-offers-disclaimer {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-top: 26px;
    padding: 17px 19px;
    border: 1px solid #dcd7ff;
    border-radius: 15px;
    color: #55506d;
    background: #f8f6ff;
    font-size: .78rem;
    line-height: 1.55;
}

.mye-offers-disclaimer i {
    margin-top: 2px;
    color: var(--mye-primary);
}

@media (max-width: 1050px) {
    .mye-offers-hero-grid {
        gap: 42px;
    }

    .mye-offers-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mye-offer-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    .mye-offers-hero-grid {
        grid-template-columns: 1fr;
    }

    .mye-offers-hero-copy {
        max-width: 780px;
        margin-inline: auto;
        text-align: center;
    }

    .mye-offers-lead {
        margin-inline: auto;
    }

    .mye-offers-hero-copy .mye-hero-actions,
    .mye-offers-hero-copy .mye-trust-row {
        justify-content: center;
    }

    .mye-offers-value-card {
        width: min(680px, 100%);
        margin-inline: auto;
    }

    .mye-offers-common-grid,
    .mye-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mye-service-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .mye-offers-hero,
    .mye-help-offers-intro,
    .mye-qr-intro {
        padding: 125px 0 75px;
    }

    .mye-offers-title {
        font-size: clamp(2.35rem, 11vw, 3.45rem);
    }

    .mye-plan-jump {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .mye-plan-jump a {
        flex: 0 0 auto;
    }

    .mye-offers-pricing-grid,
    .mye-offers-common-grid,
    .mye-service-grid {
        grid-template-columns: 1fr;
    }

    .mye-offer-card:last-child,
    .mye-service-card:last-child {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .mye-offers-value-card {
        padding: 18px;
    }

    .mye-offers-value-row {
        grid-template-columns: 38px 1fr;
    }

    .mye-offers-value-icon {
        width: 38px;
        height: 38px;
    }

    .mye-offers-value-price {
        grid-column: 2;
        font-size: .85rem;
    }

    .mye-offer-card {
        padding: 26px 22px;
    }
}

/* ======================================================
   PAGES INTERNES COMMUNES
   ====================================================== */

.mye-content-page {
    background: #fff;
}

.mye-content-page > .container-xxl,
.mye-content-page > .container-xxl.bg-white {
    max-width: none;
    overflow: visible;
    background: transparent !important;
}

.mye-content-page .hero-header {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    padding: 142px 0 72px !important;
    background:
        radial-gradient(circle at 16% 20%, rgba(109, 93, 252, .17), transparent 30%),
        radial-gradient(circle at 84% 24%, rgba(236, 72, 153, .11), transparent 28%),
        linear-gradient(180deg, #faf9ff 0%, #fff 100%) !important;
}

.mye-content-page .hero-header::before,
.mye-content-page .hero-header::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(109, 93, 252, .12);
    border-radius: 50%;
    pointer-events: none;
}

.mye-content-page .hero-header::before {
    top: 95px;
    right: -120px;
    width: 330px;
    height: 330px;
}

.mye-content-page .hero-header::after {
    bottom: -240px;
    left: -150px;
    width: 470px;
    height: 470px;
}

.mye-content-page .hero-header .container,
.mye-content-page .hero-header .row,
.mye-content-page .hero-header .col-12 {
    position: relative;
    z-index: 1;
}

.mye-content-page .hero-header .container,
.mye-content-page .hero-header .container.my-5,
.mye-content-page .hero-header .row,
.mye-content-page .hero-header .row.py-5 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.mye-content-page .hero-header h1,
.mye-content-page .hero-header .text-white {
    max-width: 900px;
    margin-inline: auto;
    color: var(--mye-ink) !important;
    font-size: clamp(2.45rem, 5vw, 4.55rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.06;
}

.mye-title-rule,
.mye-content-page .hero-header hr {
    width: 74px;
    height: 4px;
    margin: 22px auto 0;
    border: 0;
    border-radius: 99px;
    opacity: 1;
    background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary)) !important;
}

.mye-content-page .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--mye-primary-dark) !important;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.5;
    text-transform: uppercase;
}

.mye-content-page .section-title span {
    display: none;
}

.mye-content-page .section-title.justify-content-center {
    justify-content: center !important;
    text-align: center;
}

.mye-content-page main a:not(.mye-btn),
.mye-content-page .container a:not(.btn):not(.mye-footer-brand):not(.mye-footer-social):not(.mye-cookie-accept) {
    color: var(--mye-primary-dark);
}

.mye-content-page .btn-primary,
.mye-content-page .btn-secondary,
.mye-content-page .btn-outline-primary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 13px !important;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}

.mye-content-page .btn-primary {
    border-color: transparent !important;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 60%, var(--mye-secondary)) !important;
    box-shadow: 0 12px 26px rgba(109, 93, 252, .24);
}

.mye-content-page .btn-primary:hover,
.mye-content-page .btn-secondary:hover,
.mye-content-page .btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Centre d’aide */
.mye-help .container.py-9 {
    width: min(980px, calc(100% - 30px));
    margin: 0 auto;
    padding: 86px 0 !important;
}

.mye-help .accordion {
    display: grid;
    gap: 12px;
}

.mye-help .accordion-item {
    overflow: hidden;
    border: 1px solid var(--mye-line) !important;
    border-radius: 16px !important;
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 24, 44, .035);
}

.mye-help .accordion-header {
    margin: 0;
}

.mye-help .accordion-button {
    min-height: 68px;
    padding: 18px 22px;
    color: var(--mye-ink);
    background: #fff;
    box-shadow: none !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .94rem;
    font-weight: 700;
}

.mye-help .accordion-button:not(.collapsed) {
    color: var(--mye-primary-dark);
    background: #f8f6ff;
}

.mye-help .accordion-button::after {
    width: 30px;
    height: 30px;
    display: grid;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 9px;
    background-color: var(--mye-primary-soft);
    background-size: 13px;
}

.mye-help .accordion-body {
    padding: 22px 24px 25px;
    color: var(--mye-copy);
    line-height: 1.72;
}

.mye-help .accordion-body ul {
    display: grid;
    gap: 8px;
    padding-left: 20px;
}

.mye-help .newsletter {
    display: none;
}

.mye-help .container-xxl.py-5.wow {
    padding: 72px 0 92px !important;
    background: var(--mye-surface-alt);
}

.mye-help .container-xxl.py-5.wow > .container {
    max-width: 760px;
    padding: 42px !important;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: #fff;
    box-shadow: var(--mye-shadow-sm);
    text-align: center;
}

/* Générateur QR */
.mye-qr > .container-xxl > .wow.fadeInUp:first-of-type {
    padding: 76px 20px 24px;
}

.mye-qr #reservation {
    padding: 18px 0 90px;
}

.mye-qr #reservation > .container {
    width: min(1180px, calc(100% - 30px));
    max-width: none;
}

.mye-qr #reservation .card {
    overflow: visible;
    border: 1px solid var(--mye-line) !important;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--mye-shadow-sm) !important;
}

.mye-qr #reservation .card-body {
    padding: 28px;
}

.mye-qr .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 7px;
    border: 1px solid var(--mye-line);
    border-radius: 16px;
    background: var(--mye-surface-alt);
}

.mye-qr .nav-tabs .nav-item {
    margin: 0;
}

.mye-qr .nav-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    border: 0;
    border-radius: 11px;
    color: var(--mye-copy);
    background: transparent;
    font-size: .78rem;
    font-weight: 700;
}

.mye-qr .nav-tabs .nav-link i,
.mye-qr .container-xxl.py-5 i {
    color: var(--mye-primary) !important;
}

.mye-qr .nav-tabs .nav-link.active,
.mye-qr .nav-tabs .nav-link:hover {
    color: var(--mye-primary-dark);
    background: #fff;
    box-shadow: 0 7px 18px rgba(29, 23, 71, .08);
}

.mye-qr .tab-pane {
    padding: 20px 4px 4px;
}

.mye-qr .tab-pane h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.mye-qr .form-floating > .form-control,
.mye-qr .form-floating > .form-select,
.mye-qr textarea.form-control {
    border: 1px solid #dfe3ec;
    border-radius: 13px;
    box-shadow: none;
}

.mye-qr .form-floating > .form-control:focus,
.mye-qr .form-floating > .form-select:focus,
.mye-qr textarea.form-control:focus {
    border-color: #bdb5ff;
    box-shadow: 0 0 0 4px rgba(109, 93, 252, .1);
}

.mye-qr .col-xl-4 .card {
    position: sticky;
    top: 106px;
    align-items: center;
    padding: 24px;
}

.mye-qr .col-xl-4 .card-body {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 18px !important;
}

.mye-qr .qrframe {
    width: min(250px, 100%);
    aspect-ratio: 1;
    display: grid;
    overflow: hidden;
    place-items: center;
    border: 12px solid #f5f3ff;
    border-radius: 22px;
    background: #fff;
}

.mye-qr-output-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.mye-qr #png {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
}

.mye-qr > .container-xxl.py-5.wow {
    padding: 88px 0 !important;
    background: var(--mye-surface-alt);
}

.mye-qr > .container-xxl.py-5.wow > .container {
    width: min(900px, calc(100% - 30px));
    padding: 48px !important;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: #fff;
    box-shadow: var(--mye-shadow-sm);
}

.mye-qr > .container-xxl.py-5.wow h2 {
    margin: 38px 0 16px !important;
    text-align: left !important;
    font-size: 1.35rem;
}

.mye-qr > .container-xxl.py-5.wow p {
    text-align: left !important;
    line-height: 1.72;
}

.mye-qr > .container-xxl.py-5.wow li {
    margin-bottom: 8px;
    color: var(--mye-copy);
    line-height: 1.6;
}

/* À propos */
.mye-about .container-xxl.py-12 {
    padding: 96px 0 112px;
}

.mye-about .container-xxl.py-12 > .container {
    width: min(1180px, calc(100% - 30px));
    max-width: none;
}

.mye-about .container-xxl.py-12 h1 {
    margin-bottom: 24px !important;
    font-size: clamp(1.8rem, 3.6vw, 2.75rem);
    line-height: 1.22;
}

.mye-about .container-xxl.py-12 p {
    line-height: 1.75;
}

.mye-about .skill {
    display: inline-flex;
    margin: 0 7px 9px 0 !important;
    padding: 8px 12px;
    border: 1px solid #ded9ff;
    border-radius: 999px;
    background: #f8f6ff;
}

.mye-about .skill p {
    margin: 0 !important;
    color: var(--mye-primary-dark);
    font-size: .76rem;
    font-weight: 700;
}

.mye-about .skill .progress {
    display: none;
}

.mye-about .col-lg-6:last-child {
    position: relative;
}

.mye-about .col-lg-6:last-child::before {
    position: absolute;
    inset: 8% -3% -3% 8%;
    content: "";
    border-radius: 28px;
    background: linear-gradient(135deg, var(--mye-primary-soft), #fff0f8);
}

.mye-about .col-lg-6 img {
    position: relative;
    width: 100%;
    border-radius: 26px;
    box-shadow: var(--mye-shadow-lg);
}

/* Contact */
.mye-contact .container-xxl.py-5 {
    padding: 96px 0 112px !important;
}

.mye-contact .container-xxl.py-5 > .container {
    width: min(780px, calc(100% - 30px));
    padding: 48px !important;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius-lg);
    background: linear-gradient(145deg, #fff, #faf9ff);
    box-shadow: var(--mye-shadow-lg);
}

.mye-contact .container-xxl.py-5 h1 {
    margin-bottom: 18px !important;
    padding: 19px;
    border: 1px solid var(--mye-line);
    border-radius: 16px;
    color: var(--mye-ink);
    background: #fff;
    font-size: clamp(1rem, 2.3vw, 1.3rem);
    letter-spacing: -.02em;
}

.mye-contact .container-xxl.py-5 h1 i {
    margin-right: 10px;
    color: var(--mye-primary);
}

.mye-contact .container-xxl.py-5 h1:last-child {
    padding: 8px 0 0;
    border: 0;
    background: transparent;
}

/* Affiliation */
.mye-affiliation .container-xxl.py-1 {
    padding: 92px 0 112px !important;
}

.mye-affiliation .container-xxl.py-1 > .container {
    width: min(940px, calc(100% - 30px));
    padding: 48px !important;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: #fff;
    box-shadow: var(--mye-shadow-sm);
}

.mye-affiliation .container-xxl.py-1 h2 {
    margin: 40px 0 14px !important;
    text-align: left !important;
    font-size: 1.45rem;
}

.mye-affiliation .container-xxl.py-1 p {
    margin-bottom: 15px !important;
    line-height: 1.78;
}

/* Pages légales */
.mye-legal .container-xxl.py-1 {
    padding: 88px 0 115px !important;
    background: var(--mye-surface-alt);
}

.mye-legal .container-xxl.py-1 > .container {
    width: min(960px, calc(100% - 30px));
    padding: 56px !important;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: #fff;
    box-shadow: var(--mye-shadow-sm);
}

.mye-legal .container-xxl.py-1 h2 {
    margin: 44px 0 16px !important;
    padding-top: 22px;
    border-top: 1px solid var(--mye-line);
    text-align: left !important;
    font-size: 1.35rem;
    letter-spacing: -.025em;
}

.mye-legal .container-xxl.py-1 .section-title + h2 {
    margin-top: 15px !important;
    padding-top: 0;
    border-top: 0;
}

.mye-legal .container-xxl.py-1 p {
    margin-bottom: 13px !important;
    color: #505a70;
    font-size: .92rem;
    line-height: 1.78;
}

/* États d’erreur */
.mye-error .hero-header {
    display: none;
}

.mye-error .container-xxl.py-5.wow {
    min-height: 690px;
    display: flex;
    align-items: center;
    padding: 145px 0 110px !important;
    background:
        radial-gradient(circle at 18% 22%, rgba(109, 93, 252, .14), transparent 29%),
        radial-gradient(circle at 84% 72%, rgba(236, 72, 153, .1), transparent 28%),
        #fbfaff;
}

.mye-error .container-xxl.py-5.wow .col-lg-6 {
    width: min(620px, 100%);
    padding: 48px;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius-lg);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--mye-shadow-lg);
}

.mye-error .container-xxl.py-5.wow .display-1 {
    display: grid;
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 24px;
    color: var(--mye-primary) !important;
    background: var(--mye-primary-soft);
    font-size: 2.2rem;
}

.mye-error .container-xxl.py-5.wow h1 {
    margin-bottom: 14px !important;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.mye-error .container-xxl.py-5.wow p {
    max-width: 500px;
    margin: 0 auto 26px !important;
    line-height: 1.7;
}

.mye-error .mye-footer-newsletter-zone {
    display: none;
}

.mye-error .mye-footer {
    padding-top: 72px;
}

/* ======================================================
   AUTHENTIFICATION : CONNEXION ET INSCRIPTION
   ====================================================== */

.mye-auth {
    min-height: 100vh;
    padding: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(109, 93, 252, .22), transparent 31%),
        radial-gradient(circle at 88% 82%, rgba(236, 72, 153, .15), transparent 30%),
        linear-gradient(145deg, #f8f6ff 0%, #fff 48%, #fff6fb 100%);
}

.mye-auth::before,
.mye-auth::after {
    position: fixed;
    content: "";
    border: 1px solid rgba(109, 93, 252, .12);
    border-radius: 50%;
    pointer-events: none;
}

.mye-auth::before {
    top: 80px;
    right: -160px;
    width: 420px;
    height: 420px;
}

.mye-auth::after {
    bottom: -250px;
    left: -180px;
    width: 520px;
    height: 520px;
}

.mye-auth > .container-xxl,
.mye-auth > .container-xxl.bg-black {
    max-width: none;
    padding: 0 !important;
    background: transparent !important;
}

.mye-auth .navbar {
    min-height: 82px;
    border-bottom: 0;
    background: rgba(255, 255, 255, .72);
}

.mye-auth .logo-top-center {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mye-auth #layoutAuthentication {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 126px 20px 70px;
}

.mye-auth #layoutAuthentication > .row,
.mye-auth #layoutAuthentication .row.justify-content-center {
    --bs-gutter-x: 0;
    margin-inline: auto;
}

.mye-login #layoutAuthentication .col-lg-4 {
    width: min(500px, 100%);
}

.mye-register #layoutAuthentication .col-lg-7 {
    width: min(850px, 100%);
}

.mye-auth .card {
    overflow: visible;
    margin-top: 0 !important;
    border: 1px solid rgba(255, 255, 255, .9) !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 32px 80px rgba(50, 38, 122, .17) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mye-auth .card > .px-lg-7 {
    padding: 0 !important;
}

.mye-auth .card-header {
    padding: 34px 34px 10px;
    border: 0;
    background: transparent;
}

.mye-auth .card-header h1 {
    margin: 0 !important;
    color: var(--mye-ink);
    font-size: clamp(1.8rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.045em;
}

.mye-auth .card-header h1::after {
    width: 48px;
    height: 4px;
    display: block;
    margin: 15px auto 0;
    content: "";
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
}

.mye-auth .card-body {
    padding: 26px 34px 34px;
}

.mye-auth .form-floating,
.mye-auth .form-floating * {
    overflow: visible !important;
}

.mye-auth .form-floating > .form-control,
.mye-auth .form-floating > .form-select {
    min-height: 60px;
    border: 1px solid #dfe3ec;
    border-radius: 13px;
    color: var(--mye-ink);
    background-color: #fff;
    box-shadow: none;
    font-size: .93rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mye-auth .form-floating > .form-control {
    padding-right: 4.5rem;
}

.mye-auth .form-floating > .form-control:focus,
.mye-auth .form-floating > .form-select:focus {
    border-color: #bcb4ff;
    box-shadow: 0 0 0 4px rgba(109, 93, 252, .1);
}

.mye-auth .form-floating > label {
    color: #747d92;
    font-size: .86rem;
}

.mye-auth input.valid,
.mye-auth select.valid {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .1) !important;
}

.mye-auth input.invalid,
.mye-auth select.invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, .09) !important;
}

.mye-auth .icon-container {
    position: absolute;
    top: 30px;
    right: 15px;
    z-index: 20;
    display: flex;
    gap: 10px;
    transform: translateY(-50%);
}

.mye-auth .info-icon {
    color: var(--mye-primary);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}

.mye-auth .info-icon:hover,
.mye-auth .eye-icon.active {
    color: var(--mye-primary-dark);
    transform: scale(1.12);
}

.mye-auth .popup {
    position: absolute;
    right: 0;
    bottom: 118%;
    z-index: 9999;
    width: 270px;
    padding: 14px;
    border: 1px solid var(--mye-line);
    border-radius: 14px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    box-shadow: 0 18px 45px rgba(17, 24, 44, .2);
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.mye-auth .popup.active {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.mye-auth .popup ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.mye-auth .pw-check {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    font-size: .76rem;
}

.mye-auth .pw-check.valid { color: #16a34a; }
.mye-auth .pw-check.invalid { color: #dc2626; }

.mye-auth .strength-container {
    width: 100%;
    margin-top: 7px;
}

.mye-auth .strength-bg {
    padding: 3px;
    border-radius: 99px;
    background: #e9ecf3;
}

.mye-auth .strength-bar {
    width: 0;
    height: 7px;
    border-radius: 99px;
    background: linear-gradient(90deg, #fb7185, #fbbf24, #34d399);
    transition: width .35s ease;
}

.mye-auth .strength-text {
    margin-top: 4px;
    color: var(--mye-muted);
    font-size: .67rem;
}

.mye-auth .form-check {
    margin: 7px 0 18px;
    color: var(--mye-copy);
    font-size: .82rem;
}

.mye-auth .form-check-input {
    border-color: #cbd0dd;
    accent-color: var(--mye-primary);
}

.mye-auth #show .mye-auth-check {
    margin-left: 5px;
}

.mye-auth .mye-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mye-auth .btn-primary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 21px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 60%, var(--mye-secondary));
    box-shadow: 0 12px 25px rgba(109, 93, 252, .24);
    font-weight: 700;
}

.mye-auth #passblock,
.mye-auth .d-flex[id="passblock"] {
    gap: 14px;
    flex-wrap: wrap;
}

.mye-auth #passblock .btn {
    margin-left: auto;
}

.mye-register #connexion {
    width: 100%;
    margin-top: 5px;
}

.mye-auth .card-footer {
    margin-top: 20px;
    padding: 17px 0 0 !important;
    border-top: 1px solid var(--mye-line);
    background: transparent;
}

.mye-auth .card-footer a,
.mye-auth #reset {
    color: var(--mye-primary-dark);
    font-weight: 700;
}

.mye-auth #timer {
    margin-top: 8px;
    color: #dc2626;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.45rem;
}

.mye-auth #hourglass {
    display: block;
    margin-top: 15px;
    color: var(--mye-muted);
    font-size: .75rem;
}

.mye-auth #FormVerify {
    max-width: 430px !important;
    margin: 10px auto 30px;
    padding: 26px !important;
    border: 1px solid var(--mye-line) !important;
    border-radius: 18px !important;
    background: #f9f8ff;
    box-shadow: none !important;
}

.mye-auth #phoneMessage,
.mye-auth #message,
.mye-auth #messagecode,
.mye-auth #messageregister,
.mye-auth #messageloggedin,
.mye-auth #messageloggedinvalidate {
    margin-top: 8px;
    font-size: .76rem !important;
}

@media (max-width: 991px) {
    .mye-qr .col-xl-4 .card {
        position: static;
        margin-top: 28px;
    }

    .mye-about .container-xxl.py-12 .row {
        gap: 48px !important;
    }
}

@media (max-width: 767px) {
    .mye-content-page .hero-header {
        min-height: 320px;
        padding: 120px 0 55px !important;
    }

    .mye-help .container-xxl.py-5.wow > .container,
    .mye-qr > .container-xxl.py-5.wow > .container,
    .mye-contact .container-xxl.py-5 > .container,
    .mye-affiliation .container-xxl.py-1 > .container,
    .mye-legal .container-xxl.py-1 > .container {
        padding: 30px 22px !important;
    }

    .mye-qr #reservation .card-body {
        padding: 19px;
    }

    .mye-qr .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .mye-qr .nav-tabs .nav-item {
        flex: 0 0 auto;
    }

    .mye-about .container-xxl.py-12 {
        padding: 72px 0 90px;
    }

    .mye-error .container-xxl.py-5.wow .col-lg-6 {
        padding: 35px 23px;
    }

    .mye-auth #layoutAuthentication {
        padding: 112px 15px 45px;
    }

    .mye-auth .card-header {
        padding: 27px 22px 8px;
    }

    .mye-auth .card-body {
        padding: 22px;
    }

    .mye-auth #passblock,
    .mye-auth .d-flex[id="passblock"] {
        align-items: stretch !important;
        flex-direction: column;
    }

    .mye-auth #passblock .btn {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 520px) {
    .mye-content-page .hero-header h1,
    .mye-content-page .hero-header .text-white {
        font-size: clamp(2.05rem, 12vw, 3rem);
    }

    .mye-help .accordion-button {
        padding: 16px;
        font-size: .85rem;
    }

    .mye-help .accordion-body {
        padding: 18px;
    }

    .mye-auth .popup {
        right: -8px;
        width: min(270px, calc(100vw - 54px));
    }
}

/* ======================================================
   ÉVÉNEMENTS PUBLICS — CATALOGUE ET FICHE DÉTAILLÉE
   ====================================================== */

.mye-public-events,
.mye-public-event {
    background: #f8f8fc;
}

.mye-public-nav {
    position: relative;
    z-index: 10;
    padding: 22px 0;
}

.mye-public-nav-inner {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mye-public-brand,
.mye-public-brand .navbar-brand,
.mye-public-brand .logo-top-center {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.mye-public-brand img,
.mye-event-navbar .navbar-brand img,
.mye-event-navbar .logo-top-center img {
    width: auto;
    max-width: 174px;
    max-height: 52px;
    object-fit: contain;
}

.mye-public-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mye-public-nav-link {
    padding: 12px 15px;
    color: var(--mye-ink);
    font-weight: 700;
}

.mye-public-nav-link:hover {
    color: var(--mye-primary);
}

.mye-public-nav-cta {
    min-height: 46px;
    padding: 12px 18px;
}

/* Catalogue */
.mye-events-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    background:
        radial-gradient(circle at 9% 18%, rgba(236, 72, 153, .13), transparent 28%),
        radial-gradient(circle at 87% 25%, rgba(109, 93, 252, .20), transparent 34%),
        linear-gradient(145deg, #fbfaff 0%, #f6f2ff 52%, #fff8fc 100%);
}

.mye-events-hero::before {
    position: absolute;
    top: 118px;
    left: -80px;
    width: 230px;
    height: 230px;
    content: "";
    border: 1px solid rgba(109, 93, 252, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(109, 93, 252, .035), 0 0 0 68px rgba(236, 72, 153, .025);
}

.mye-events-hero-grid {
    display: grid;
    min-height: 575px;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: clamp(48px, 7vw, 94px);
    padding-top: 38px;
    padding-bottom: 94px;
}

.mye-events-eyebrow,
.mye-event-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(109, 93, 252, .16);
    border-radius: 999px;
    color: var(--mye-primary-dark);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 8px 28px rgba(54, 43, 127, .07);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.mye-events-hero-copy h1 {
    max-width: 700px;
    margin: 22px 0 20px;
    font-size: clamp(3rem, 6vw, 5.3rem);
    font-weight: 800;
    line-height: .99;
    letter-spacing: -.07em;
}

.mye-events-hero-copy > p {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
    line-height: 1.72;
}

.mye-events-hero-actions,
.mye-event-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mye-events-trust,
.mye-event-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 30px;
}

.mye-events-trust span,
.mye-event-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #65708a;
    font-size: .88rem;
    font-weight: 700;
}

.mye-events-trust i,
.mye-event-assurances i {
    color: var(--mye-success);
}

.mye-events-hero-visual {
    position: relative;
    width: min(100%, 520px);
    justify-self: end;
    padding: 18px;
}

.mye-events-visual-glow {
    position: absolute;
    inset: 10% -2% -4% 8%;
    border-radius: 46% 54% 44% 56% / 52% 42% 58% 48%;
    background: linear-gradient(145deg, rgba(109, 93, 252, .30), rgba(236, 72, 153, .18));
    filter: blur(18px);
    transform: rotate(-4deg);
}

.mye-events-hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: .92;
    border: 9px solid rgba(255, 255, 255, .72);
    border-radius: 40px 40px 112px 40px;
    object-fit: cover;
    box-shadow: 0 38px 85px rgba(56, 45, 123, .24);
    transform: rotate(1.5deg);
}

.mye-events-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 228px;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 18px;
    background: rgba(255, 255, 255, .91);
    box-shadow: 0 18px 50px rgba(33, 26, 83, .16);
    backdrop-filter: blur(14px);
}

.mye-events-floating-card--top {
    top: 2%;
    left: -9%;
}

.mye-events-floating-card--bottom {
    right: -8%;
    bottom: 8%;
}

.mye-events-floating-card > span:last-child {
    display: grid;
    gap: 2px;
}

.mye-events-floating-card strong {
    color: var(--mye-ink);
    font-size: .88rem;
}

.mye-events-floating-card small {
    color: var(--mye-muted);
    font-size: .72rem;
}

.mye-events-floating-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), var(--mye-secondary));
}

.mye-events-live-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: var(--mye-success);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .13);
}

.mye-events-discovery {
    position: relative;
    z-index: 4;
    padding: 0 0 110px;
    background: #f8f8fc;
}

.mye-events-search-card {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.6fr);
    gap: 30px;
    margin-top: -62px;
    padding: 28px;
    border: 1px solid rgba(225, 224, 239, .86);
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 26px 70px rgba(35, 30, 82, .13);
    backdrop-filter: blur(16px);
}

.mye-events-search-intro h2 {
    margin: 0 0 7px;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 800;
}

.mye-events-search-intro p {
    margin: 0;
    font-size: .9rem;
}

.mye-events-filters {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(190px, 1.5fr) minmax(145px, 1fr) minmax(145px, 1fr) auto;
    gap: 12px;
}

.mye-events-field label {
    display: block;
    margin: 0 0 8px 3px;
    color: #3f4960;
    font-size: .75rem;
    font-weight: 800;
}

.mye-events-control {
    position: relative;
}

.mye-events-control i {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 16px;
    color: var(--mye-primary);
    transform: translateY(-50%);
}

.mye-events-control .form-control {
    padding-left: 44px;
}

.mye-events-field .form-control,
.mye-events-field .form-select,
.mye-public-event .form-control,
.mye-public-event .form-select {
    min-height: 52px;
    border: 1px solid #e3e5ee;
    border-radius: 13px;
    color: var(--mye-ink);
    background-color: #fbfbfd;
    box-shadow: none;
}

.mye-events-field .form-control:focus,
.mye-events-field .form-select:focus,
.mye-public-event .form-control:focus,
.mye-public-event .form-select:focus {
    border-color: rgba(109, 93, 252, .62);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(109, 93, 252, .10);
}

.mye-events-reset {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border: 1px solid #e0e2eb;
    border-radius: 13px;
    color: #687188;
    background: #fff;
    font-weight: 700;
    transition: .2s ease;
}

.mye-events-reset:hover {
    color: var(--mye-primary-dark);
    border-color: #cac4ff;
    background: var(--mye-primary-soft);
}

.mye-events-results-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin: 76px 0 30px;
}

.mye-events-results-label {
    display: block;
    margin-bottom: 9px;
    color: var(--mye-primary-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.mye-events-results-head h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.mye-events-results-head p {
    max-width: 460px;
    margin: 0 0 5px;
    line-height: 1.65;
}

.mye-events-grid > [class*="col"] {
    display: flex;
}

.mye-events-grid .card,
.mye-events-grid .event-card,
.mye-events-grid > article {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid #e7e7ef !important;
    border-radius: 22px !important;
    background: #fff;
    box-shadow: 0 14px 38px rgba(27, 23, 66, .08) !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mye-events-grid .card:hover,
.mye-events-grid .event-card:hover,
.mye-events-grid > article:hover {
    border-color: #d9d3ff !important;
    box-shadow: 0 24px 58px rgba(42, 34, 106, .15) !important;
    transform: translateY(-7px);
}

.mye-events-grid .card-img-top,
.mye-events-grid .event-image,
.mye-events-grid article > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.mye-events-grid .card-body,
.mye-events-grid .event-card-body {
    padding: 22px;
}

.mye-events-grid h3,
.mye-events-grid h4,
.mye-events-grid h5,
.mye-events-grid .card-title {
    margin-bottom: 11px;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    white-space: normal !important;
}

.mye-events-grid .badge {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
}

.mye-events-grid .btn,
.mye-events-grid a.btn {
    min-height: 43px;
    padding: 11px 16px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
    font-weight: 700;
}

.mye-events-grid .text-muted,
.mye-events-grid p {
    color: var(--mye-copy) !important;
}

.mye-events-skeletons .card,
.mye-events-skeletons [class*="skeleton"] {
    background: linear-gradient(100deg, #f0f1f5 20%, #fafafd 40%, #f0f1f5 60%);
    background-size: 200% 100%;
    animation: mye-skeleton 1.35s infinite linear;
}

@keyframes mye-skeleton {
    to { background-position-x: -200%; }
}

/* Fiche événement */
.mye-event-shell {
    max-width: none;
    background: #f8f8fc;
}

.mye-event-header {
    z-index: 6;
    background: #fff;
}

.mye-event-navbar {
    width: min(1180px, calc(100% - 40px));
    min-height: 82px;
    margin-inline: auto;
}

.mye-event-navbar #createaccount {
    min-height: 46px;
}

.mye-event-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 12%, rgba(236, 72, 153, .28), transparent 30%),
        radial-gradient(circle at 90% 25%, rgba(139, 92, 246, .32), transparent 34%),
        linear-gradient(135deg, #15112b 0%, #252052 48%, #19142f 100%);
}

.mye-event-hero::after {
    position: absolute;
    right: -130px;
    bottom: -190px;
    width: 460px;
    height: 460px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(255, 255, 255, .025), 0 0 0 108px rgba(255, 255, 255, .018);
}

.mye-event-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 620px;
    align-items: center;
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
    gap: clamp(48px, 8vw, 104px);
    padding-top: 78px;
    padding-bottom: 86px;
}

.mye-event-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .72);
    font-size: .87rem;
    font-weight: 700;
}

.mye-event-back:hover {
    color: #fff;
}

.mye-event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.mye-event-badge {
    color: #e9e6ff;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.mye-event-badge--verified i {
    color: #58e6ac;
}

.mye-event-hero-copy h1 {
    max-width: 720px;
    margin: 22px 0 17px;
    color: #fff;
    font-size: clamp(2.8rem, 5.4vw, 5rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.06em;
}

.mye-event-organizer {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .68) !important;
    font-size: 1.05rem;
}

.mye-event-organizer strong {
    color: #fff;
}

.mye-event-hero .mye-btn--secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, .19);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.mye-event-hero .mye-btn--secondary:hover {
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .14);
}

.mye-event-assurances span {
    color: rgba(255, 255, 255, .68);
}

.mye-event-soldout {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 13px 19px;
    border: 1px solid rgba(248, 113, 113, .42);
    border-radius: 14px;
    color: #fecaca;
    background: rgba(127, 29, 29, .25);
    font-weight: 800;
}

.mye-event-soldout--small {
    min-height: 38px;
    padding: 8px 13px;
    color: #b91c1c;
    border-color: #fecaca;
    background: #fff1f2;
    font-size: .78rem;
}

.mye-event-cover-wrap {
    position: relative;
    width: min(100%, 530px);
    justify-self: end;
}

.mye-event-cover-orbit {
    position: absolute;
    inset: -25px 15px 25px -25px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 38px;
    transform: rotate(-4deg);
}

.mye-event-cover {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 490px;
    aspect-ratio: 1 / .88;
    border: 8px solid rgba(255, 255, 255, .12);
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 42px 90px rgba(3, 2, 17, .40);
}

.mye-event-cover-status {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: -17px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 15px;
    color: var(--mye-ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 50px rgba(4, 3, 24, .25);
    font-size: .83rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.mye-event-content {
    padding: 84px 0 110px;
    background:
        radial-gradient(circle at 85% 10%, rgba(109, 93, 252, .06), transparent 25%),
        #f8f8fc;
}

.mye-event-container {
    width: min(1120px, calc(100% - 40px));
}

.mye-event-panel {
    padding: clamp(26px, 5vw, 54px);
    border: 1px solid #e6e6ef;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 22px 65px rgba(30, 25, 72, .09);
}

.mye-event-panel-head {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 22px;
    margin-bottom: 24px;
    padding-bottom: 27px;
    border-bottom: 1px solid var(--mye-line);
}

.mye-event-panel-head .mye-section-kicker {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.mye-event-panel-head h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 800;
}

.mye-event-panel-head .mye-btn {
    min-height: 44px;
    padding: 11px 16px;
}

.mye-event-meta {
    margin: 0 0 34px;
    padding: 17px 19px;
    border: 1px solid #ebeaf2;
    border-radius: 15px;
    background: #fafafe;
    font-size: .9rem;
    line-height: 1.8;
}

.mye-event-meta b {
    color: var(--mye-ink);
}

.mye-event-panel > h5.mt-4,
.mye-event-reservation > h5.mt-4 {
    margin: 42px 0 0 !important;
    font-size: 1.22rem;
    font-weight: 800;
}

.mye-event-panel > h5.mt-4 + hr,
.mye-event-reservation > h5.mt-4 + hr {
    width: 48px;
    height: 3px;
    margin: 12px 0 20px;
    border: 0;
    border-radius: 99px;
    color: transparent;
    background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
    opacity: 1;
}

.mye-event-panel > p:not(.mye-event-meta) {
    margin-bottom: 10px;
    padding: 13px 15px;
    border: 1px solid #eeedf4;
    border-radius: 13px;
    color: #3d465c;
    background: #fbfbfd;
    font-weight: 600;
    line-height: 1.62;
}

.mye-event-panel > p i {
    width: 24px;
    margin-right: 7px;
    color: var(--mye-primary) !important;
    text-align: center;
}

.mye-public-event .fa-circle-check {
    color: var(--mye-success);
}

.mye-public-event .fa-circle-xmark {
    color: #ef4444;
}

.mye-event-reservation .fa-user,
.mye-event-reservation .fa-envelope {
    color: var(--mye-primary);
}

.mye-event-conditions {
    text-align: justify;
}

.mye-event-reservation {
    scroll-margin-top: 30px;
    margin: 54px -18px 0;
    padding: 38px 18px 24px;
    border-top: 1px solid var(--mye-line);
}

.mye-reservation-container {
    max-width: none;
    padding: 0;
}

.mye-ticket-list {
    display: grid;
    gap: 15px;
}

.mye-ticket-card {
    overflow: hidden;
    margin: 0 !important;
    border: 1px solid #e7e5f1 !important;
    border-radius: 18px !important;
    background: #fff;
    box-shadow: 0 10px 28px rgba(32, 27, 74, .06) !important;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mye-ticket-card:hover {
    border-color: #cec7ff !important;
    box-shadow: 0 18px 38px rgba(50, 39, 125, .12) !important;
    transform: translateY(-2px);
}

.mye-ticket-card .card-body {
    padding: 21px;
}

.mye-ticket-card .border-bottom {
    border-color: #ecebf3 !important;
}

.mye-ticket-card h5 a {
    color: var(--mye-ink) !important;
    font-weight: 800;
}

.mye-ticket-card .badge {
    padding: 7px 10px;
    border-radius: 999px;
}

.mye-ticket-card .bg-primary,
.mye-ticket-card .badge.bg-primary {
    color: #087453;
    background: #dff9ef !important;
}

.mye-ticket-card .form-select {
    min-width: 90px;
}

.mye-reservation-sidebar-inner {
    position: sticky;
    top: 24px;
}

.mye-reservation-card {
    overflow: hidden;
    border: 1px solid #dedbec !important;
    border-radius: 20px !important;
    background: #fff;
    box-shadow: 0 22px 54px rgba(31, 25, 78, .13);
}

.mye-reservation-card-title {
    padding: 19px 21px !important;
    color: #fff;
    border: 0 !important;
    background: linear-gradient(135deg, #211a4f, #4b3f9e) !important;
}

.mye-reservation-card-title h5 {
    color: #fff;
}

.mye-reservation-card .card-body {
    padding: 16px !important;
}

.mye-step-header {
    margin: 10px 0 12px;
    padding: 13px 14px !important;
    border: 0 !important;
    border-radius: 12px;
    background: #f2f0ff !important;
}

.mye-step-header h5 {
    color: #3c3287;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.mye-reservation-card .table {
    margin-bottom: 12px !important;
    font-size: .78rem;
}

.mye-reservation-card .table > :not(caption) > * > * {
    padding: 9px 5px;
    border-color: #ecebf2;
}

.mye-reservation-card .table .bg-light {
    background: #fafafe !important;
}

.mye-reservation-card .btn-primary,
.mye-public-event #connexion,
.mye-public-event #verifier,
.mye-public-event #Payer,
.mye-public-event #Reserver {
    min-height: 43px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 62%, var(--mye-secondary));
    box-shadow: 0 11px 24px rgba(109, 93, 252, .22);
    font-weight: 800;
}

.mye-public-event button:disabled {
    cursor: not-allowed;
    filter: grayscale(.35);
    opacity: .56;
    box-shadow: none !important;
}

.mye-public-event .form-floating {
    position: relative;
}

.mye-public-event .form-floating > label {
    color: #737c91;
}

.mye-public-event .form-check {
    margin-bottom: 9px;
}

.mye-public-event .form-check-input:checked {
    border-color: var(--mye-primary);
    background-color: var(--mye-primary);
}

.mye-public-event .icon-container {
    position: absolute;
    z-index: 20;
    top: 29px;
    right: 14px;
    display: flex;
    gap: 8px;
    transform: translateY(-50%);
}

.mye-public-event .info-icon {
    color: var(--mye-primary);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: transform .25s ease, color .25s ease;
}

.mye-public-event .eye-icon:hover,
.mye-public-event .eye-icon.active {
    color: var(--mye-primary-dark);
    transform: scale(1.15);
}

.mye-public-event .eye-icon.active {
    transform: scale(1.15) rotate(8deg);
}

.mye-public-event input.valid,
.mye-public-event select.valid {
    border-color: #32b886;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .10);
}

.mye-public-event input.invalid,
.mye-public-event select.invalid {
    border-color: #ef7180;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, .09);
}

.mye-public-event .hidden {
    display: none;
}

.mye-public-event #compteur,
.mye-public-event #timer {
    display: none;
    margin-top: 7px;
    color: #dc2626;
    font-size: 1.45rem;
    font-weight: 800;
}

.mye-public-event #compt,
.mye-public-event #hourglass {
    color: var(--mye-copy);
    font-size: .76rem;
    font-weight: 700;
}

.mye-event-share {
    padding: 22px;
    border: 1px solid #e8e6f0;
    border-radius: 18px;
    background: linear-gradient(145deg, #faf9ff, #fff);
}

.mye-event-share .tab-pane {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.mye-event-share .tab-pane > a:first-child,
.mye-event-share .tab-pane > p {
    flex: 0 0 100%;
}

.mye-event-share .tab-pane > p {
    overflow-wrap: anywhere;
    margin: 0 0 10px;
    padding: 11px 13px;
    border: 1px dashed #d8d2ff;
    border-radius: 10px;
    color: var(--mye-primary-dark);
    background: #f4f2ff;
    font-size: .8rem;
}

.mye-event-share .text-black,
.mye-event-share .fa-share {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #e3e1ed;
    border-radius: 13px;
    color: #4e5670 !important;
    background: #fff;
    font-size: 1rem !important;
    transition: .2s ease;
}

.mye-event-share .text-black:hover {
    color: #fff !important;
    border-color: var(--mye-primary);
    background: var(--mye-primary);
    transform: translateY(-2px);
}

.mye-event-panel > .container-xxl.py-5 {
    margin-top: 48px;
    padding: 0 !important;
}

.mye-event-panel > .container-xxl.py-5 > .container {
    padding: 34px !important;
    border: 1px solid #e2defa;
    border-radius: 22px;
    background: linear-gradient(135deg, #f2efff, #fff4fa);
}

.mye-event-panel .section-title {
    margin-bottom: 18px;
    color: var(--mye-primary-dark) !important;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .mye-events-search-card {
        grid-template-columns: 1fr;
    }

    .mye-events-filters {
        grid-template-columns: 1.35fr 1fr 1fr auto;
    }
}

@media (max-width: 991px) {
    .mye-events-hero-grid,
    .mye-event-hero-grid {
        grid-template-columns: 1fr;
    }

    .mye-events-hero-grid {
        padding-top: 62px;
        padding-bottom: 145px;
    }

    .mye-events-hero-copy,
    .mye-event-hero-copy {
        text-align: center;
    }

    .mye-events-hero-copy h1,
    .mye-events-hero-copy > p,
    .mye-event-hero-copy h1 {
        margin-right: auto;
        margin-left: auto;
    }

    .mye-events-hero-actions,
    .mye-events-trust,
    .mye-event-hero-actions,
    .mye-event-assurances,
    .mye-event-badges {
        justify-content: center;
    }

    .mye-events-hero-visual,
    .mye-event-cover-wrap {
        width: min(88%, 540px);
        justify-self: center;
    }

    .mye-event-hero-grid {
        padding-top: 64px;
        padding-bottom: 100px;
    }

    .mye-event-back {
        justify-content: center;
    }

    .mye-reservation-sidebar-inner {
        position: static;
    }
}

@media (max-width: 767px) {
    .mye-public-nav-actions .mye-public-nav-link {
        display: none;
    }

    .mye-public-nav-cta {
        min-height: 42px;
        padding: 10px 13px;
        font-size: .78rem;
    }

    .mye-events-hero-grid {
        gap: 50px;
        padding-top: 38px;
    }

    .mye-events-hero-copy h1,
    .mye-event-hero-copy h1 {
        font-size: clamp(2.5rem, 13vw, 3.8rem);
    }

    .mye-events-floating-card--top {
        left: -3%;
    }

    .mye-events-floating-card--bottom {
        right: -3%;
    }

    .mye-events-search-card {
        margin-top: -72px;
        padding: 22px;
    }

    .mye-events-filters {
        grid-template-columns: 1fr;
    }

    .mye-events-reset {
        width: 100%;
    }

    .mye-events-results-head {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 60px;
    }

    .mye-event-navbar {
        width: min(100% - 20px, 1180px);
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    .mye-event-hero-grid {
        gap: 54px;
        padding-top: 48px;
        padding-bottom: 86px;
    }

    .mye-event-content {
        padding: 48px 0 80px;
    }

    .mye-event-container {
        width: min(100% - 24px, 1120px);
    }

    .mye-event-panel {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .mye-event-panel-head {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .mye-event-panel-head .mye-btn,
    .mye-event-panel-head .mye-event-soldout {
        width: 100%;
        margin-top: 8px;
    }

    .mye-event-reservation {
        margin-right: -6px;
        margin-left: -6px;
        padding-right: 6px;
        padding-left: 6px;
    }

    .mye-ticket-card .card-body {
        padding: 17px;
    }

    .mye-event-share {
        padding: 17px;
    }
}

@media (max-width: 520px) {
    .mye-public-nav {
        padding: 14px 0;
    }

    .mye-public-nav-inner {
        width: min(100% - 22px, 1180px);
    }

    .mye-public-brand img,
    .mye-event-navbar .navbar-brand img,
    .mye-event-navbar .logo-top-center img {
        max-width: 132px;
    }

    .mye-public-nav-cta i {
        display: none;
    }

    .mye-events-hero-actions .mye-btn,
    .mye-event-hero-actions .mye-btn,
    .mye-event-hero-actions .mye-event-soldout {
        width: 100%;
    }

    .mye-events-trust,
    .mye-event-assurances {
        align-items: center;
        flex-direction: column;
    }

    .mye-events-hero-visual,
    .mye-event-cover-wrap {
        width: 100%;
    }

    .mye-events-hero-image {
        border-radius: 28px 28px 70px 28px;
    }

    .mye-events-floating-card {
        min-width: 0;
        padding: 10px 12px;
    }

    .mye-events-floating-card--top {
        top: 0;
        left: -5px;
    }

    .mye-events-floating-card--bottom {
        right: -5px;
        bottom: 3%;
    }

    .mye-events-floating-card small {
        display: none;
    }

    .mye-events-search-card {
        border-radius: 22px;
    }

    .mye-event-cover {
        border-width: 5px;
        border-radius: 24px;
    }

    .mye-event-cover-status {
        right: 10px;
    }

    .mye-reservation-card .card-body {
        padding: 12px !important;
    }

    .mye-event-panel > .container-xxl.py-5 > .container {
        padding: 25px 17px !important;
    }
}

/* ======================================================
   CENTRE D’AIDE — DÉCLINAISON DE LA PAGE OFFRES
   ====================================================== */

.mye-help-offers {
    background: #fff;
}

.mye-help-offers-intro {
    text-align: center;
}

.mye-help-offers-intro .mye-container {
    position: relative;
    z-index: 1;
}

.mye-help-offers-intro .mye-section-head {
    max-width: 820px;
    margin: 0 auto 25px;
}

.mye-help-offers-intro .mye-eyebrow {
    margin-right: auto;
    margin-left: auto;
}

.mye-help-offers-intro .mye-section-title {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    line-height: 1.04;
}

.mye-help-offers-intro .mye-section-lead {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
}

.mye-help-offers-intro .mye-help-offers-search {
    margin-right: auto;
    margin-left: auto;
}

.mye-help-offers-intro .mye-hero-actions,
.mye-help-offers-intro .mye-trust-row {
    justify-content: center;
}

/* La page Help utilise actuellement mye-offers-hero : centrer ses outils. */
.mye-help-offers .mye-offers-hero .mye-help-offers-search {
    margin-right: auto;
    margin-left: auto;
}

.mye-help-offers .mye-offers-hero .mye-hero-actions {
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
}

.mye-help-offers-search {
    position: relative;
    display: flex;
    width: min(100%, 670px);
    align-items: center;
    margin-bottom: 24px;
    padding: 6px;
    border: 1px solid #dedbea;
    border-radius: 17px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 42px rgba(36, 30, 84, .10);
}

.mye-help-offers-search > i {
    position: absolute;
    left: 21px;
    color: var(--mye-primary);
    font-size: 1rem;
}

.mye-help-offers-search input {
    width: 100%;
    min-height: 52px;
    padding: 11px 47px 11px 46px;
    border: 0;
    outline: 0;
    border-radius: 12px;
    color: var(--mye-ink);
    background: transparent;
    font: 600 .94rem/1.3 "DM Sans", sans-serif;
}

.mye-help-offers-search input::placeholder {
    color: #9097a9;
    font-weight: 500;
}

.mye-help-offers-search button {
    position: absolute;
    right: 12px;
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 0;
    border-radius: 10px;
    color: #657087;
    background: #f0eff7;
    transition: color .2s ease, background-color .2s ease;
}

.mye-help-offers-search button:hover {
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
}

.mye-help-jump {
    width: min(100%, 940px);
}

.mye-help-jump a:first-child {
    color: var(--mye-copy);
    background: transparent;
}

.mye-help-jump a:hover,
.mye-help-jump a.is-active {
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
}

.mye-help-offers-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mye-help-offers-category {
    position: relative;
    display: grid;
    min-height: 118px;
    align-items: center;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    color: var(--mye-ink);
    background: var(--mye-surface);
    box-shadow: 0 14px 38px rgba(17, 24, 44, .055);
    font-family: "DM Sans", Arial, sans-serif;
    text-align: left;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.mye-help-offers-category::before {
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 3px;
    content: "";
    border-radius: 0 0 99px 99px;
    background: linear-gradient(90deg, transparent, rgba(109, 93, 252, .38), transparent);
    opacity: 0;
    transition: opacity .2s ease;
}

.mye-help-offers-category:hover,
.mye-help-offers-category.is-active {
    border-color: #d1cbff;
    background: linear-gradient(145deg, #fff, #faf8ff);
    box-shadow: 0 22px 52px rgba(53, 42, 132, .12);
    transform: translateY(-4px);
}

.mye-help-offers-category:hover::before,
.mye-help-offers-category.is-active::before {
    opacity: 1;
}

.mye-help-offers-category.is-active .mye-icon-box {
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
    box-shadow: 0 11px 24px rgba(109, 93, 252, .22);
}

.mye-help-offers-category > span:nth-child(2) {
    display: grid;
    gap: 5px;
}

.mye-help-offers-category strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .9rem;
    line-height: 1.3;
}

.mye-help-offers-category small {
    color: var(--mye-muted);
    font-size: .74rem;
    line-height: 1.45;
}

.mye-help-offers-category b {
    display: grid;
    min-width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 10px;
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .76rem;
}

.mye-help-offers-guide-grid {
    grid-template-columns: .72fr 1.28fr;
    gap: 64px;
}

.mye-help-offers-result-count {
    display: inline-flex;
    margin: 22px 0 20px;
    padding: 8px 12px;
    border: 1px solid #ddd8ff;
    border-radius: 999px;
    color: var(--mye-primary-dark);
    background: #f4f2ff;
    font-size: .75rem;
    font-weight: 800;
}

.mye-help-offers-support-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
    padding: 17px;
    border: 1px solid #e3e4eb;
    border-radius: 17px;
    background: rgba(255, 255, 255, .82);
}

.mye-help-offers-support-card .mye-icon-box {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    color: #087453;
    background: #dff9ef;
}

.mye-help-offers-support-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--mye-ink);
    font-size: .8rem;
}

.mye-help-offers-support-card p {
    margin: 0;
    color: var(--mye-copy);
    font-size: .74rem;
    line-height: 1.55;
}

.mye-help-offers-support-card b {
    color: var(--mye-primary-dark);
}

.mye-help-offers-accordion .accordion {
    display: grid;
    gap: 12px;
}

.mye-help-offers-accordion .accordion-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mye-line) !important;
    border-radius: var(--mye-radius) !important;
    background: var(--mye-surface);
    box-shadow: 0 14px 38px rgba(17, 24, 44, .055);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mye-help-offers-accordion .accordion-item::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
    opacity: 0;
    transition: opacity .2s ease;
}

.mye-help-offers-accordion .accordion-item:hover {
    border-color: #d7d1ff !important;
    box-shadow: 0 24px 54px rgba(54, 42, 132, .12);
    transform: translateY(-3px);
}

.mye-help-offers-accordion .accordion-item:hover::before {
    opacity: 1;
}

.mye-help-offers-accordion .accordion-item[hidden] {
    display: none !important;
}

.mye-help-offers-accordion .accordion-header {
    margin: 0;
}

.mye-help-offers-accordion .accordion-button {
    position: relative;
    min-height: 76px;
    padding: 15px 100px 15px 17px;
    color: var(--mye-ink);
    background: var(--mye-surface);
    box-shadow: none !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.4;
}

.mye-help-offers-accordion .accordion-button:not(.collapsed) {
    color: var(--mye-primary-dark);
    background: linear-gradient(180deg, #f7f5ff 0%, var(--mye-surface) 100%);
}

.mye-help-offers-accordion .accordion-button::before {
    position: absolute;
    top: 50%;
    right: 54px;
    content: attr(data-guide-number);
    color: #a09ac2;
    font: 800 .64rem/1 "DM Sans", sans-serif;
    letter-spacing: .05em;
    transform: translateY(-50%);
}

.mye-help-offers-accordion .accordion-button::after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 29px;
    height: 29px;
    margin: 0;
    border-radius: 9px;
    background-color: var(--mye-primary-soft);
    background-position: center;
    background-size: 13px;
    transform: translateY(-50%);
}

.mye-help-offers-accordion .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}

.mye-help-guide-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    margin-right: 13px;
    place-items: center;
    border-radius: 12px;
    color: var(--mye-primary);
    background: var(--mye-primary-soft);
    font-size: .85rem;
}

.mye-help-offers-accordion .accordion-button:not(.collapsed) .mye-help-guide-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
}

.mye-help-offers-accordion .accordion-body {
    padding: 6px 22px 25px 70px;
    border-top: 1px solid #eeedf4;
    color: var(--mye-copy);
    background: var(--mye-surface);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.72;
}

.mye-help-offers-accordion .accordion-body > p:first-child {
    margin: 18px 0 17px !important;
    color: #414b62;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.7;
}

.mye-help-offers-accordion .accordion-body ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: mye-help-step;
}

.mye-help-offers-accordion .accordion-body li {
    position: relative;
    min-height: 29px;
    padding: 4px 0 4px 38px;
    color: #59637a;
    font-size: .9rem;
    line-height: 1.62;
    counter-increment: mye-help-step;
}

.mye-help-offers-accordion .accordion-body li::before {
    position: absolute;
    top: 3px;
    left: 0;
    display: grid;
    width: 27px;
    height: 27px;
    content: counter(mye-help-step);
    place-items: center;
    border: 1px solid #ded9ff;
    border-radius: 9px;
    color: var(--mye-primary-dark);
    background: #f5f3ff;
    font-size: .66rem;
    font-weight: 800;
}

.mye-help-offers-accordion .accordion-body a {
    color: var(--mye-primary-dark);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(109, 93, 252, .28);
    text-underline-offset: 3px;
}

.mye-help-offers-empty {
    padding: 50px 22px;
    border: 1px dashed #d7d3ea;
    border-radius: 18px;
    background: #fff;
    text-align: center;
}

.mye-help-offers-empty .mye-icon-box {
    margin-bottom: 16px;
}

.mye-help-offers-empty h3 {
    margin-bottom: 7px;
    font-size: 1.18rem;
    font-weight: 800;
}

.mye-help-offers-empty p {
    margin-bottom: 18px;
}

@media (max-width: 1100px) {
    .mye-help-offers-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .mye-help-offers-search {
        margin-right: auto;
        margin-left: auto;
    }

    .mye-help-offers-guide-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .mye-help-offers-guide-grid .mye-faq-intro {
        position: static;
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .mye-help-offers-support-card {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .mye-help-offers-intro .mye-section-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .mye-help-jump {
        justify-content: flex-start;
    }

    .mye-help-offers-category-grid {
        grid-template-columns: 1fr;
    }

    .mye-help-offers-accordion .accordion-button {
        min-height: 68px;
        padding: 13px 52px 13px 13px;
        font-size: .82rem;
    }

    .mye-help-offers-accordion .accordion-button::before {
        display: none;
    }

    .mye-help-offers-accordion .accordion-button::after {
        right: 12px;
    }

    .mye-help-guide-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        margin-right: 10px;
    }

    .mye-help-offers-accordion .accordion-body {
        padding: 4px 16px 22px;
    }
}

@media (max-width: 520px) {
    .mye-help-offers-search {
        padding: 4px;
        border-radius: 14px;
    }

    .mye-help-offers-search input {
        min-height: 49px;
        padding-left: 42px;
        font-size: .82rem;
    }

    .mye-help-offers-search > i {
        left: 18px;
    }

    .mye-help-offers-category {
        min-height: 104px;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        padding: 17px;
    }

    .mye-help-offers-category .mye-icon-box {
        width: 44px;
        height: 44px;
    }

    .mye-help-offers-accordion .accordion-body li {
        padding-left: 35px;
        font-size: .82rem;
    }
}

/* ======================================================
   GÉNÉRATEUR DE QR CODE — PRÉSENTATION MODERNE SANS HERO
   ====================================================== */

.mye-qr-modern {
    background: var(--mye-surface);
}

/* QR Studio — le générateur devient l’élément principal du premier écran */
.mye-qr-studio-hero {
    position: relative;
    overflow: hidden;
    padding: 112px 0 70px;
    background:
        radial-gradient(circle at 10% 12%, rgba(109, 93, 252, .16), transparent 27%),
        radial-gradient(circle at 91% 8%, rgba(236, 72, 153, .11), transparent 25%),
        linear-gradient(180deg, #fbfaff 0%, #f7f8fc 58%, #fff 100%);
}

.mye-qr-studio-hero::before,
.mye-qr-studio-hero::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(109, 93, 252, .11);
    border-radius: 50%;
    pointer-events: none;
}

.mye-qr-studio-hero::before {
    top: 90px;
    right: -150px;
    width: 390px;
    height: 390px;
}

.mye-qr-studio-hero::after {
    bottom: -330px;
    left: -190px;
    width: 570px;
    height: 570px;
}

.mye-qr-studio-hero > .mye-container {
    position: relative;
    z-index: 1;
}

.mye-qr-studio-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
    gap: 54px;
    align-items: center;
    margin-bottom: 28px;
}

.mye-qr-studio-copy {
    max-width: 720px;
}

.mye-qr-studio-copy .mye-eyebrow {
    margin-bottom: 14px;
}

.mye-qr-studio-title {
    max-width: 760px;
    margin: 0 0 15px;
    font-size: clamp(2.35rem, 4.35vw, 4rem);
    font-weight: 800;
    line-height: 1.03;
}

.mye-qr-studio-lead {
    max-width: 690px;
    margin: 0;
    color: var(--mye-copy);
    font-size: clamp(.98rem, 1.45vw, 1.12rem);
    line-height: 1.66;
}

.mye-qr-studio-copy .mye-trust-row {
    gap: 10px 18px;
    margin-top: 17px;
    font-size: .81rem;
}

.mye-qr-quick-start {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(204, 197, 255, .82);
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 20px 48px rgba(58, 44, 145, .11);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mye-qr-quick-start::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--mye-primary), #8b5cf6, var(--mye-secondary));
}

.mye-qr-quick-start-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

.mye-qr-quick-start-head span {
    color: var(--mye-primary-dark);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mye-qr-quick-start-head strong {
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: .82rem;
    text-align: right;
}

.mye-qr-quick-start ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mye-qr-quick-start li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(247, 248, 252, .86);
}

.mye-qr-quick-start li > span {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
    box-shadow: 0 7px 16px rgba(109, 93, 252, .22);
    font-size: .69rem;
    font-weight: 800;
}

.mye-qr-quick-start li div,
.mye-qr-quick-start li strong,
.mye-qr-quick-start li small {
    display: block;
}

.mye-qr-quick-start li strong {
    margin-bottom: 1px;
    color: var(--mye-ink);
    font-size: .78rem;
}

.mye-qr-quick-start li small {
    color: var(--mye-muted);
    font-size: .67rem;
    line-height: 1.35;
}

.mye-qr-quick-start > p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 12px 0 0;
    color: #0f766e;
    font-size: .68rem;
    font-weight: 700;
}

.mye-qr-studio-shell {
    overflow: hidden;
    border: 1px solid rgba(209, 205, 231, .9);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 32px 80px rgba(45, 35, 112, .16), 0 2px 0 rgba(255, 255, 255, .9) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mye-qr-studio-toolbar {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 18px;
    border-bottom: 1px solid var(--mye-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(249, 249, 253, .94));
}

.mye-qr-studio-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.mye-qr-studio-logo {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 65%, var(--mye-secondary));
    box-shadow: 0 9px 20px rgba(109, 93, 252, .25);
    font-size: 1.08rem;
}

.mye-qr-studio-brand > span:last-child,
.mye-qr-studio-brand strong,
.mye-qr-studio-brand small {
    display: block;
}

.mye-qr-studio-brand strong {
    margin-bottom: 2px;
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: .91rem;
}

.mye-qr-studio-brand small {
    color: var(--mye-muted);
    font-size: .68rem;
}

.mye-qr-studio-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-size: .68rem;
    font-weight: 800;
}

.mye-qr-studio-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mye-success);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}

.mye-qr-studio-shell .mye-qr-workbench {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 16px;
    padding: 18px;
}

.mye-qr-studio-shell .mye-qr-editor-card,
.mye-qr-studio-shell .mye-qr-preview-card {
    border-radius: 20px;
    box-shadow: none;
}

.mye-qr-studio-shell .mye-qr-editor-card {
    padding: 23px;
    background: #fff;
}

.mye-qr-studio-shell .mye-qr-card-head,
.mye-qr-studio-shell .mye-qr-preview-head {
    margin-bottom: 18px;
}

.mye-qr-studio-shell .mye-qr-tabs {
    gap: 5px;
    padding: 6px;
}

.mye-qr-studio-shell .mye-qr-tabs .nav-link {
    min-height: 38px;
    padding: 8px 11px;
    font-size: .73rem;
}

.mye-qr-tab-pro {
    padding: 3px 5px;
    border-radius: 999px;
    color: #8a3d09;
    background: #fff2d8;
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.mye-qr-studio-shell .mye-qr-tab-content .tab-pane {
    padding-top: 23px;
}

.mye-qr-studio-shell .mye-qr-form-heading {
    margin-bottom: 18px;
}

.mye-qr-studio-shell .mye-field .form-control,
.mye-qr-studio-shell .mye-field .form-select {
    min-height: 51px;
}

.mye-qr-studio-shell .mye-qr-preview-card {
    position: relative;
    top: auto;
    padding: 22px;
    border-color: #d6d0ff;
    background: linear-gradient(180deg, #f6f4ff 0%, #fff 55%);
}

.mye-qr-studio-shell .mye-qr-preview-card .qrframe {
    width: min(218px, 100%);
    margin: 2px auto 14px;
    border-width: 10px;
    border-radius: 19px;
}

.mye-qr-studio-shell .mye-qr-preview-help {
    margin-bottom: 14px;
    padding: 11px;
    font-size: .69rem;
}

.mye-qr-studio-shell .mye-qr-assurances {
    gap: 10px;
    margin: 0;
    padding: 0 18px 18px;
}

.mye-qr-studio-shell .mye-qr-assurances > div {
    gap: 10px;
    padding: 12px;
    border-radius: 13px;
    background: #fbfbfe;
}

.mye-qr-studio-shell .mye-qr-assurances > div > i {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    border-radius: 10px;
    font-size: .82rem;
}

.mye-qr-studio-shell .mye-qr-assurances strong {
    font-size: .77rem;
}

.mye-qr-studio-shell .mye-qr-assurances small {
    font-size: .65rem;
}

@media (max-width: 1050px) {
    .mye-qr-studio-intro {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 34px;
    }

    .mye-qr-studio-shell .mye-qr-workbench {
        grid-template-columns: minmax(0, 1fr) 310px;
    }
}

@media (max-width: 991px) {
    .mye-qr-studio-hero {
        padding-top: 100px;
    }

    .mye-qr-studio-intro {
        grid-template-columns: 1fr;
        margin-bottom: 22px;
    }

    .mye-qr-studio-copy {
        max-width: 790px;
        margin-inline: auto;
        text-align: center;
    }

    .mye-qr-studio-copy .mye-eyebrow {
        margin-right: auto;
        margin-left: auto;
    }

    .mye-qr-studio-copy .mye-trust-row {
        justify-content: center;
    }

    .mye-qr-quick-start {
        display: none;
    }
}

@media (max-width: 860px) {
    .mye-qr-studio-shell .mye-qr-workbench {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mye-qr-studio-hero {
        padding: 94px 0 54px;
    }

    .mye-qr-studio-intro {
        margin-bottom: 18px;
    }

    .mye-qr-studio-title {
        font-size: clamp(2.1rem, 10vw, 3.05rem);
    }

    .mye-qr-studio-lead {
        font-size: .93rem;
    }

    .mye-qr-studio-shell {
        border-radius: 21px;
    }

    .mye-qr-studio-toolbar {
        min-height: 60px;
        padding: 9px 12px;
    }

    .mye-qr-studio-status {
        padding: 7px 9px;
        font-size: 0;
    }

    .mye-qr-studio-status i {
        margin: 0;
    }

    .mye-qr-studio-shell .mye-qr-workbench {
        gap: 12px;
        padding: 11px;
    }

    .mye-qr-studio-shell .mye-qr-editor-card,
    .mye-qr-studio-shell .mye-qr-preview-card {
        padding: 17px;
        border-radius: 16px;
    }

    .mye-qr-studio-shell .mye-qr-assurances {
        grid-template-columns: 1fr;
        padding: 0 11px 11px;
    }
}

@media (max-width: 520px) {
    .mye-qr-studio-copy .mye-trust-row {
        gap: 8px 12px;
        font-size: .72rem;
    }

    .mye-qr-studio-brand small {
        display: none;
    }

    .mye-qr-studio-shell .mye-qr-preview-card .qrframe {
        width: min(235px, 100%);
    }
}

.mye-qr-intro {
    text-align: center;
}

.mye-qr-intro .mye-container {
    position: relative;
    z-index: 1;
}

.mye-qr-intro .mye-section-head {
    max-width: 850px;
    margin: 0 auto 27px;
}

.mye-qr-intro .mye-eyebrow {
    margin-right: auto;
    margin-left: auto;
}

.mye-qr-intro .mye-section-title {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    line-height: 1.04;
}

.mye-qr-intro .mye-section-lead {
    max-width: 730px;
    margin-right: auto;
    margin-left: auto;
}

.mye-qr-intro .mye-trust-row {
    justify-content: center;
}

.mye-qr-workbench-section {
    padding-top: 92px;
}

.mye-qr-workbench {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 365px;
    gap: 24px;
    align-items: start;
}

.mye-qr-editor-card,
.mye-qr-preview-card {
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: var(--mye-surface);
    box-shadow: 0 14px 38px rgba(17, 24, 44, .055);
}

.mye-qr-editor-card {
    min-width: 0;
    overflow: hidden;
    padding: 30px;
}

.mye-qr-card-head,
.mye-qr-preview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.mye-qr-card-head h3,
.mye-qr-preview-head h3 {
    margin: 5px 0 0;
    font-size: 1.18rem;
}

.mye-qr-step {
    color: var(--mye-primary-dark);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mye-qr-free-badge,
.mye-qr-ready {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #047857;
    background: #d1fae5;
    font-size: .66rem;
    font-weight: 800;
    white-space: nowrap;
}

.mye-qr-ready i {
    color: var(--mye-success);
    font-size: .42rem;
}

.mye-qr-modern .mye-qr-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 7px;
    border: 1px solid var(--mye-line);
    border-radius: 16px;
    background: var(--mye-surface-alt);
}

.mye-qr-modern .mye-qr-tabs .nav-item {
    margin: 0;
}

.mye-qr-modern .mye-qr-tabs .nav-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    border: 0;
    border-radius: 11px;
    color: var(--mye-copy);
    background: transparent;
    font: 700 .78rem/1.2 "DM Sans", Arial, sans-serif;
    white-space: nowrap;
}

.mye-qr-modern .mye-qr-tabs .nav-link i {
    color: var(--mye-primary);
}

.mye-qr-modern .mye-qr-tabs .nav-link:hover,
.mye-qr-modern .mye-qr-tabs .nav-link.active {
    color: var(--mye-primary-dark);
    background: var(--mye-surface);
    box-shadow: 0 7px 18px rgba(29, 23, 71, .08);
}

.mye-qr-modern .mye-qr-tab-content .tab-pane {
    padding: 31px 2px 2px;
}

.mye-qr-form-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.mye-qr-form-heading .mye-icon-box {
    flex: 0 0 48px;
}

.mye-qr-form-heading h3 {
    margin: 0 0 4px;
    font-size: 1.12rem;
}

.mye-qr-form-heading p {
    margin: 0;
    color: var(--mye-muted);
    font-size: .82rem;
    line-height: 1.5;
}

.mye-qr-form {
    display: grid;
    gap: 18px;
}

.mye-qr-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

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

.mye-field label {
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 700;
}

.mye-field small {
    color: var(--mye-muted);
    font-size: .72rem;
}

.mye-field small b {
    color: var(--mye-primary-dark);
}

.mye-input-icon {
    position: relative;
}

.mye-input-icon > i {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 17px;
    color: var(--mye-primary);
    transform: translateY(-50%);
}

.mye-input-icon .form-control {
    padding-left: 45px;
}

.mye-qr-modern .mye-field .form-control,
.mye-qr-modern .mye-field .form-select {
    width: 100%;
    min-height: 55px;
    border: 1px solid #dfe3ec;
    border-radius: 13px;
    color: var(--mye-ink);
    background-color: var(--mye-surface);
    box-shadow: none;
    font: 500 .9rem/1.4 "DM Sans", Arial, sans-serif;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mye-qr-modern .mye-field textarea.form-control {
    min-height: 135px;
    padding: 14px 16px;
    resize: vertical;
}

.mye-qr-modern .mye-field .form-control:focus,
.mye-qr-modern .mye-field .form-select:focus {
    border-color: #bdb5ff;
    box-shadow: 0 0 0 4px rgba(109, 93, 252, .1);
}

.mye-qr-form .mye-btn {
    width: fit-content;
    margin-top: 2px;
}

.mye-qr-form-message {
    margin: -9px 0 16px;
    color: #dc2626;
    font-size: .78rem;
    font-weight: 700;
}

.mye-qr-premium-panel {
    display: flex;
    min-height: 390px;
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #d7d1ff;
    border-radius: 20px;
    background: linear-gradient(180deg, #f7f5ff 0%, var(--mye-surface) 60%);
}

.mye-qr-premium-panel > .mye-icon-box {
    margin-bottom: 16px;
}

.mye-qr-premium-panel .mye-offer-tag {
    margin-bottom: 14px;
}

.mye-qr-premium-panel h3 {
    margin-bottom: 9px;
    font-size: 1.35rem;
}

.mye-qr-premium-panel > p {
    max-width: 610px;
    margin-bottom: 18px;
    line-height: 1.65;
}

.mye-qr-premium-panel ul {
    display: grid;
    gap: 9px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.mye-qr-premium-panel li {
    display: flex;
    gap: 9px;
    color: var(--mye-copy);
    font-size: .85rem;
}

.mye-qr-premium-panel li i {
    margin-top: 4px;
    color: var(--mye-success);
}

.mye-qr-preview-card {
    position: sticky;
    top: 105px;
    overflow: hidden;
    padding: 28px;
    border-color: #cfc8ff;
    background: linear-gradient(180deg, #f7f5ff 0%, var(--mye-surface) 48%);
    box-shadow: 0 24px 56px rgba(72, 56, 168, .15);
}

.mye-qr-preview-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
}

.mye-qr-modern .mye-qr-preview-card .qrframe {
    display: grid;
    width: min(260px, 100%);
    aspect-ratio: 1;
    margin: 5px auto 20px;
    overflow: hidden;
    place-items: center;
    border: 12px solid var(--mye-primary-soft);
    border-radius: 22px;
    background: var(--mye-surface);
    box-shadow: inset 0 0 0 1px rgba(109, 93, 252, .08);
}

.mye-qr-modern .mye-qr-output-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.mye-qr-preview-help {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0 0 20px;
    padding: 13px;
    border-radius: 13px;
    color: var(--mye-copy);
    background: var(--mye-surface-alt);
    font-size: .74rem;
    line-height: 1.55;
}

.mye-qr-preview-help i {
    margin-top: 3px;
    color: var(--mye-primary);
}

.mye-qr-modern #png {
    width: 100%;
    margin: 0;
}

.mye-qr-assurances {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.mye-qr-assurances > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--mye-line);
    border-radius: 16px;
    background: var(--mye-surface);
}

.mye-qr-assurances > div > i {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--mye-primary);
    background: var(--mye-primary-soft);
}

.mye-qr-assurances span,
.mye-qr-assurances strong,
.mye-qr-assurances small {
    display: block;
}

.mye-qr-assurances strong {
    margin-bottom: 3px;
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .83rem;
}

.mye-qr-assurances small {
    color: var(--mye-muted);
    font-size: .72rem;
    line-height: 1.45;
}

.mye-qr-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mye-qr-info-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: var(--mye-surface);
    box-shadow: 0 14px 38px rgba(17, 24, 44, .055);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.mye-qr-info-card:hover {
    border-color: #d7d1ff;
    box-shadow: 0 24px 54px rgba(54, 42, 132, .12);
    transform: translateY(-4px);
}

.mye-qr-info-card .mye-icon-box {
    margin-bottom: 18px;
}

.mye-qr-info-card h3 {
    margin-bottom: 9px;
    font-size: 1.04rem;
}

.mye-qr-info-card p {
    margin: 0;
    font-size: .84rem;
    line-height: 1.68;
}

@media (max-width: 1050px) {
    .mye-qr-workbench {
        grid-template-columns: 1fr 330px;
    }

    .mye-qr-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .mye-qr-workbench {
        grid-template-columns: 1fr;
    }

    .mye-qr-preview-card {
        position: static;
    }

    .mye-qr-assurances {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mye-qr-intro .mye-section-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .mye-qr-editor-card,
    .mye-qr-preview-card {
        padding: 20px;
    }

    .mye-qr-modern .mye-qr-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .mye-qr-modern .mye-qr-tabs .nav-item {
        flex: 0 0 auto;
    }

    .mye-qr-form-grid,
    .mye-qr-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .mye-qr-card-head,
    .mye-qr-preview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .mye-qr-form-heading {
        align-items: flex-start;
    }

    .mye-qr-form .mye-btn {
        width: 100%;
    }

    .mye-qr-premium-panel {
        min-height: 0;
        padding: 22px;
    }
}

/* Version fonctionnelle : structure historique conservée */
.mye-qr-functional > .container-xxl {
    max-width: none;
    padding: 0 !important;
    background: var(--mye-surface) !important;
}

/* Garde-fou d’affichage : l’introduction reste visible même si
   une ancienne animation ou une feuille héritée impose opacity/visibility. */
.mye-qr-modern .mye-qr-intro--visible,
.mye-qr-functional .mye-qr-intro--visible {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.mye-qr-intro--visible .mye-container,
.mye-qr-intro--visible .mye-section-head,
.mye-qr-intro--visible .mye-eyebrow,
.mye-qr-intro--visible .mye-section-title,
.mye-qr-intro--visible .mye-section-lead,
.mye-qr-intro--visible .mye-trust-row {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* ======================================================
   QR CODE — ACCÈS DIRECT, DISPOSITION HISTORIQUE MODERNISÉE
   Types et formulaire à gauche, aperçu/téléchargement à droite.
   ====================================================== */

.mye-qr-direct-view main {
    overflow: hidden;
}

.mye-qr-direct {
    position: relative;
    padding: 104px 0 62px;
    background:
        radial-gradient(circle at 8% 2%, rgba(109, 93, 252, .15), transparent 25%),
        radial-gradient(circle at 94% 11%, rgba(236, 72, 153, .1), transparent 23%),
        linear-gradient(180deg, #fbfaff 0%, #f7f8fc 68%, #fff 100%);
}

.mye-qr-direct::before,
.mye-qr-direct::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(109, 93, 252, .1);
    border-radius: 50%;
    pointer-events: none;
}

.mye-qr-direct::before {
    top: 64px;
    right: -175px;
    width: 410px;
    height: 410px;
}

.mye-qr-direct::after {
    bottom: -360px;
    left: -230px;
    width: 590px;
    height: 590px;
}

.mye-qr-direct > .mye-container {
    position: relative;
    z-index: 1;
}

.mye-qr-direct-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 34px;
    align-items: end;
    margin-bottom: 20px;
}

.mye-qr-direct-copy {
    max-width: 760px;
}

.mye-qr-direct-copy .mye-eyebrow {
    margin-bottom: 10px;
}

.mye-qr-direct-copy h1 {
    max-width: 760px;
    margin: 0 0 10px;
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: clamp(2.15rem, 3.65vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.mye-qr-direct-copy > p {
    max-width: 690px;
    margin: 0;
    color: var(--mye-copy);
    font-size: .96rem;
    line-height: 1.58;
}

.mye-qr-direct-benefits {
    display: grid;
    gap: 8px;
    align-self: end;
    justify-content: stretch;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(209, 205, 231, .88);
    border-radius: 17px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 34px rgba(53, 42, 126, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mye-qr-direct-benefits span {
    font-size: .73rem;
}

.mye-qr-direct-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 10px;
    padding: 0 4px;
}

.mye-qr-direct-heading h2 {
    margin: 3px 0 0;
    color: var(--mye-ink);
    font-size: clamp(.98rem, 1.5vw, 1.16rem);
    letter-spacing: -.02em;
}

.mye-qr-direct-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-size: .68rem;
    font-weight: 800;
    white-space: nowrap;
}

.mye-qr-direct-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mye-success);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}

.mye-qr-direct .mye-qr-workbench {
    grid-template-columns: minmax(0, 2fr) minmax(285px, 1fr);
    gap: 20px;
}

.mye-qr-direct .mye-qr-editor-card,
.mye-qr-direct .mye-qr-preview-card {
    border-color: rgba(209, 205, 231, .92);
    border-radius: 22px;
    box-shadow: 0 20px 54px rgba(45, 35, 112, .11);
}

.mye-qr-direct .mye-qr-editor-card {
    padding: 23px;
    background: rgba(255, 255, 255, .96);
}

.mye-qr-direct .mye-qr-card-head,
.mye-qr-direct .mye-qr-preview-head {
    margin-bottom: 16px;
}

.mye-qr-direct .mye-qr-tabs {
    gap: 5px;
    padding: 6px;
}

.mye-qr-direct .mye-qr-tabs .nav-link {
    min-height: 38px;
    padding: 8px 11px;
    font-size: .73rem;
}

.mye-qr-direct .mye-qr-tab-content .tab-pane {
    padding-top: 21px;
}

.mye-qr-direct .mye-qr-form-heading {
    margin-bottom: 17px;
}

.mye-qr-direct .mye-field .form-control,
.mye-qr-direct .mye-field .form-select {
    min-height: 50px;
}

.mye-qr-direct .mye-qr-preview-card {
    position: relative;
    top: auto;
    padding: 22px;
    background: linear-gradient(180deg, #f5f3ff 0%, #fff 56%);
}

.mye-qr-direct .mye-qr-preview-card .qrframe {
    width: min(225px, 100%);
    margin: 2px auto 14px;
    border-width: 10px;
    border-radius: 19px;
}

.mye-qr-direct .mye-qr-preview-help {
    margin-bottom: 14px;
    padding: 11px;
    font-size: .69rem;
}

.mye-qr-direct .mye-qr-assurances {
    gap: 11px;
    margin-top: 14px;
}

.mye-qr-direct .mye-qr-assurances > div {
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .86);
}

.mye-qr-direct .mye-qr-assurances > div > i {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 10px;
    font-size: .82rem;
}

.mye-qr-direct .mye-qr-assurances strong {
    font-size: .77rem;
}

.mye-qr-direct .mye-qr-assurances small {
    font-size: .65rem;
}

@media (max-width: 991px) {
    .mye-qr-direct {
        padding-top: 94px;
    }

    .mye-qr-direct-intro {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mye-qr-direct-copy {
        max-width: 820px;
    }

    .mye-qr-direct-benefits {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 18px;
        justify-content: flex-start;
        width: fit-content;
    }
}

@media (max-width: 860px) {
    .mye-qr-direct .mye-qr-workbench {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mye-qr-direct {
        padding: 88px 0 46px;
    }

    .mye-qr-direct-intro {
        margin-bottom: 16px;
    }

    .mye-qr-direct-copy h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .mye-qr-direct-copy > p {
        font-size: .9rem;
    }

    .mye-qr-direct-benefits {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        gap: 13px;
        overflow-x: auto;
        padding: 11px 13px;
        scrollbar-width: none;
    }

    .mye-qr-direct-benefits::-webkit-scrollbar {
        display: none;
    }

    .mye-qr-direct-benefits span {
        flex: 0 0 auto;
    }

    .mye-qr-direct-heading {
        align-items: flex-start;
    }

    .mye-qr-direct-status {
        padding: 7px 9px;
        font-size: 0;
    }

    .mye-qr-direct .mye-qr-workbench {
        gap: 13px;
    }

    .mye-qr-direct .mye-qr-editor-card,
    .mye-qr-direct .mye-qr-preview-card {
        padding: 17px;
        border-radius: 17px;
    }
}

.mye-qr-intro--visible .mye-container,
.mye-qr-intro--visible .mye-section-head,
.mye-qr-intro--visible .mye-section-title,
.mye-qr-intro--visible .mye-section-lead {
    display: block !important;
}

.mye-qr-intro--visible .mye-eyebrow {
    display: inline-flex !important;
}

.mye-qr-intro--visible .mye-trust-row {
    display: flex !important;
}

.mye-qr-intro--visible .mye-section-title {
    color: var(--mye-ink) !important;
}

.mye-qr-intro--visible .mye-section-lead {
    color: var(--mye-copy) !important;
}

.mye-qr-functional-heading {
    padding: 88px 20px 22px;
}

.mye-qr-functional-heading .mye-section-head {
    margin-bottom: 0;
}

.mye-qr-functional #reservation {
    padding-top: 22px;
    background: var(--mye-surface);
}

.mye-qr-functional #reservation > .container > .row {
    align-items: flex-start;
}

.mye-qr-functional #reservation .col-xl-8 > .card,
.mye-qr-functional #reservation .col-xl-4 .card {
    overflow: hidden;
    border-color: var(--mye-line) !important;
    border-radius: var(--mye-radius) !important;
    background: var(--mye-surface);
    box-shadow: 0 14px 38px rgba(17, 24, 44, .055) !important;
}

.mye-qr-functional #reservation .col-xl-8 > .card {
    position: relative;
}

.mye-qr-functional #reservation .col-xl-8 > .card::before,
.mye-qr-functional #reservation .col-xl-4 .card::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
}

.mye-qr-functional #reservation .col-xl-4 .card {
    padding-top: 54px;
    border-color: #cfc8ff !important;
    background: linear-gradient(180deg, #f7f5ff 0%, var(--mye-surface) 48%);
    box-shadow: 0 24px 56px rgba(72, 56, 168, .15) !important;
}

.mye-qr-functional #reservation .col-xl-4 .card::after {
    position: absolute;
    top: 23px;
    left: 28px;
    color: var(--mye-ink);
    content: "Aperçu du QR code";
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: .92rem;
    font-weight: 800;
}

.mye-qr-functional #reservation .tabs-x {
    min-width: 0;
}

.mye-qr-functional #reservation .nav-tabs {
    margin-bottom: 8px;
}

.mye-qr-functional #reservation .nav-tabs .nav-link {
    font-family: "DM Sans", Arial, sans-serif;
}

.mye-qr-functional #reservation .tab-pane h3 {
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.35;
}

.mye-qr-functional #reservation .tab-pane p {
    color: var(--mye-copy);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.65;
}

.mye-qr-functional #reservation .form-control,
.mye-qr-functional #reservation .form-select {
    min-height: 55px;
    color: var(--mye-ink);
    background-color: var(--mye-surface);
    font-family: "DM Sans", Arial, sans-serif;
}

.mye-qr-functional #reservation textarea.form-control {
    min-height: 135px;
    padding: 15px;
}

.mye-qr-functional #reservation .btn-primary {
    min-height: 49px;
    padding: 13px 19px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 60%, var(--mye-secondary));
    box-shadow: 0 12px 26px rgba(109, 93, 252, .24);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: .86rem;
    font-weight: 700;
}

.mye-qr-functional #reservation .btn-primary:hover {
    color: #fff;
    box-shadow: 0 17px 34px rgba(109, 93, 252, .33);
    transform: translateY(-2px);
}

.mye-qr-functional #reservation .qrframe {
    border-color: var(--mye-primary-soft);
    box-shadow: inset 0 0 0 1px rgba(109, 93, 252, .08);
}

.mye-qr-functional #reservation #png {
    border-radius: 13px;
}

.mye-qr-functional > .container-xxl > .container-xxl.py-5.wow {
    padding: 92px 0 !important;
    background: var(--mye-surface-alt);
}

.mye-qr-functional > .container-xxl > .container-xxl.py-5.wow > .container {
    width: min(940px, calc(100% - 32px));
    max-width: none;
    padding: 48px !important;
    border: 1px solid var(--mye-line);
    border-radius: var(--mye-radius);
    background: var(--mye-surface);
    box-shadow: var(--mye-shadow-sm);
}

.mye-qr-functional > .container-xxl > .container-xxl.py-5.wow .section-title {
    margin-bottom: 18px;
    color: var(--mye-primary-dark) !important;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mye-qr-functional > .container-xxl > .container-xxl.py-5.wow h2 {
    margin: 34px 0 14px !important;
    color: var(--mye-ink);
    text-align: left !important;
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: 1.3rem;
}

.mye-qr-functional > .container-xxl > .container-xxl.py-5.wow p,
.mye-qr-functional > .container-xxl > .container-xxl.py-5.wow li {
    color: var(--mye-copy);
    text-align: left !important;
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.7;
}

.mye-qr-functional > .container-xxl > .container-xxl.py-5.wow li {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .mye-qr-functional-heading {
        padding: 68px 16px 16px;
    }

    .mye-qr-functional #reservation .col-xl-4 .card {
        padding-top: 48px;
    }

    .mye-qr-functional > .container-xxl > .container-xxl.py-5.wow > .container {
        padding: 30px 22px !important;
    }
}

/* ======================================================
   QR CODE — CONTENU ÉDITORIAL ET RÉFÉRENCEMENT LOCAL
   ====================================================== */

.mye-qr-knowledge {
    position: relative;
    overflow: hidden;
}

.mye-qr-knowledge > .mye-container {
    position: relative;
    z-index: 1;
}

.mye-qr-knowledge > .mye-container > .mye-section-head {
    max-width: 920px;
    margin-bottom: 42px;
}

.mye-qr-local-guide {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
    gap: 32px;
    align-items: stretch;
    margin-bottom: 24px;
    padding: 36px;
    border: 1px solid #d8d3f6;
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 8%, rgba(236, 72, 153, .1), transparent 27%),
        linear-gradient(135deg, #fff 0%, #f7f5ff 100%);
    box-shadow: 0 22px 56px rgba(48, 37, 120, .1);
}

.mye-qr-local-copy h3 {
    max-width: 740px;
    margin: 10px 0 14px;
    color: var(--mye-ink);
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    letter-spacing: -.035em;
    line-height: 1.16;
}

.mye-qr-local-copy > p {
    max-width: 800px;
    margin: 0 0 13px;
    color: var(--mye-copy);
    font-size: .9rem;
    line-height: 1.75;
}

.mye-qr-local-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.mye-qr-local-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid #ded9fa;
    border-radius: 999px;
    color: var(--mye-primary-dark);
    background: rgba(255, 255, 255, .82);
    font-size: .7rem;
    font-weight: 800;
}

.mye-qr-local-tags i {
    color: var(--mye-primary);
}

.mye-qr-key-points {
    padding: 25px;
    border: 1px solid rgba(209, 205, 231, .95);
    border-radius: 21px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 36px rgba(41, 32, 100, .08);
}

.mye-qr-key-points > .mye-icon-box {
    margin-bottom: 16px;
}

.mye-qr-key-points h3 {
    margin: 0 0 16px;
    font-size: 1.12rem;
}

.mye-qr-key-points ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mye-qr-key-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--mye-copy);
    font-size: .79rem;
    line-height: 1.55;
}

.mye-qr-key-points li > i {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 1px;
    place-items: center;
    border-radius: 50%;
    color: #047857;
    background: #d1fae5;
    font-size: .58rem;
}

.mye-qr-knowledge .mye-qr-info-grid {
    margin-top: 24px;
}

.mye-qr-knowledge .mye-qr-info-card {
    padding: 27px;
}

.mye-qr-knowledge .mye-qr-info-card p + p {
    margin-top: 10px;
}

.mye-qr-practical-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.mye-qr-practical-card {
    padding: 31px;
    border: 1px solid var(--mye-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(30, 24, 75, .065);
}

.mye-qr-practical-card h3 {
    margin: 10px 0 22px;
    color: var(--mye-ink);
    font-size: 1.35rem;
    letter-spacing: -.025em;
}

.mye-qr-feature-list,
.mye-qr-checklist {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mye-qr-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 13px;
    border-radius: 15px;
    background: var(--mye-surface-alt);
}

.mye-qr-feature-list li > i {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--mye-primary);
    background: var(--mye-primary-soft);
}

.mye-qr-feature-list span,
.mye-qr-feature-list strong,
.mye-qr-feature-list small {
    display: block;
}

.mye-qr-feature-list strong {
    margin-bottom: 3px;
    color: var(--mye-ink);
    font-size: .8rem;
}

.mye-qr-feature-list small {
    color: var(--mye-muted);
    font-size: .72rem;
    line-height: 1.5;
}

.mye-qr-practical-note {
    margin: 18px 0 0;
    padding: 13px 15px;
    border-left: 3px solid var(--mye-primary);
    border-radius: 0 12px 12px 0;
    color: var(--mye-copy);
    background: #f7f5ff;
    font-size: .75rem;
    line-height: 1.6;
}

.mye-qr-practical-note a {
    color: var(--mye-primary-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mye-qr-checklist {
    counter-reset: mye-qr-check;
}

.mye-qr-checklist li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 48px;
    padding: 8px 12px 8px 8px;
    border: 1px solid #ebe9f3;
    border-radius: 14px;
    color: var(--mye-copy);
    background: #fff;
    font-size: .78rem;
    line-height: 1.5;
}

.mye-qr-checklist li > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
    box-shadow: 0 8px 18px rgba(109, 93, 252, .2);
    font-size: .72rem;
    font-weight: 800;
}

.mye-qr-faq {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: 42px;
    align-items: start;
    margin-top: 24px;
    padding: 34px;
    border: 1px solid #dcd8f2;
    border-radius: 26px;
    background: linear-gradient(135deg, #f8f7ff 0%, #fff 72%);
}

.mye-qr-faq-heading {
    position: sticky;
    top: 110px;
}

.mye-qr-faq-heading h3 {
    margin: 10px 0 12px;
    color: var(--mye-ink);
    font-size: 1.5rem;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.mye-qr-faq-heading p {
    margin: 0;
    color: var(--mye-muted);
    font-size: .82rem;
    line-height: 1.65;
}

.mye-qr-faq-list {
    display: grid;
    gap: 10px;
}

.mye-qr-faq-list details {
    overflow: hidden;
    border: 1px solid #e2dfef;
    border-radius: 15px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mye-qr-faq-list details[open] {
    border-color: #cfc8ff;
    box-shadow: 0 12px 28px rgba(56, 44, 137, .08);
}

.mye-qr-faq-list summary {
    position: relative;
    padding: 17px 52px 17px 18px;
    color: var(--mye-ink);
    cursor: pointer;
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.45;
    list-style: none;
}

.mye-qr-faq-list summary::-webkit-details-marker {
    display: none;
}

.mye-qr-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 16px;
    display: grid;
    width: 27px;
    height: 27px;
    content: "+";
    place-items: center;
    border-radius: 9px;
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
    transform: translateY(-50%);
    font-size: 1rem;
}

.mye-qr-faq-list details[open] summary::after {
    content: "−";
}

.mye-qr-faq-list details p {
    margin: 0;
    padding: 0 18px 19px;
    color: var(--mye-copy);
    font-size: .79rem;
    line-height: 1.7;
}

.mye-qr-content-note {
    display: flex;
    max-width: 900px;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    margin: 24px auto 0;
    color: var(--mye-muted);
    text-align: center;
    font-size: .7rem;
    line-height: 1.55;
}

.mye-qr-content-note i {
    margin-top: 3px;
    color: var(--mye-success);
}

@media (max-width: 991px) {
    .mye-qr-local-guide,
    .mye-qr-faq {
        grid-template-columns: 1fr;
    }

    .mye-qr-faq {
        gap: 25px;
    }

    .mye-qr-faq-heading {
        position: static;
    }
}

@media (max-width: 767px) {
    .mye-qr-knowledge > .mye-container > .mye-section-head {
        margin-bottom: 30px;
    }

    .mye-qr-local-guide,
    .mye-qr-practical-card,
    .mye-qr-faq {
        padding: 22px;
        border-radius: 20px;
    }

    .mye-qr-local-guide {
        gap: 22px;
    }

    .mye-qr-practical-grid {
        grid-template-columns: 1fr;
    }

    .mye-qr-knowledge .mye-qr-info-card {
        padding: 22px;
    }

    .mye-qr-faq-list summary {
        padding: 15px 48px 15px 15px;
        font-size: .78rem;
    }

    .mye-qr-faq-list details p {
        padding: 0 15px 17px;
    }
}

/* ======================================================
   ACCUEIL — PREUVE SOCIALE / TÉMOIGNAGES
   ====================================================== */

.mye-testimonials {
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(109, 93, 252, .25), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(236, 72, 153, .18), transparent 30%),
        linear-gradient(145deg, #15122b 0%, #211a45 52%, #12172d 100%);
}

.mye-testimonials::before,
.mye-testimonials::after {
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    pointer-events: none;
}

.mye-testimonials::before {
    top: -210px;
    left: -105px;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .018), 0 0 0 120px rgba(255, 255, 255, .012);
}

.mye-testimonials::after {
    right: -190px;
    bottom: -245px;
    box-shadow: 0 0 0 72px rgba(255, 255, 255, .018), 0 0 0 144px rgba(255, 255, 255, .012);
}

.mye-testimonials > .mye-container {
    position: relative;
    z-index: 1;
}

.mye-testimonials-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 46px;
}

.mye-testimonials-heading .mye-section-head {
    max-width: 760px;
    margin-bottom: 0;
}

.mye-testimonials-heading .mye-section-kicker {
    color: #c9c2ff;
}

.mye-testimonials-heading .mye-section-kicker::before {
    background: linear-gradient(90deg, #a99eff, #f472b6);
}

.mye-testimonials-heading .mye-section-title {
    color: #fff;
}

.mye-testimonials-heading .mye-section-title span {
    color: transparent;
    background: linear-gradient(100deg, #c8c2ff 0%, #f0abfc 55%, #f9a8d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mye-testimonials-heading .mye-section-lead {
    color: #c9c9db;
}

.mye-testimonials-audiences {
    display: flex;
    max-width: 310px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
    padding-bottom: 5px;
}

.mye-testimonials-audiences span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    color: #e8e7f2;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055);
    font-size: .78rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mye-testimonials-audiences i {
    color: #b8afff;
}

.mye-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

.mye-testimonial-card {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
    box-shadow: 0 22px 54px rgba(3, 3, 18, .24), inset 0 1px 0 rgba(255, 255, 255, .08);
    transition: transform .28s ease, border-color .28s ease, background-color .28s ease, box-shadow .28s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mye-testimonial-card::before {
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;
    height: 2px;
    content: "";
    opacity: .65;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, #a99eff, #f472b6, transparent);
}

.mye-testimonial-card:hover {
    border-color: rgba(190, 181, 255, .32);
    background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
    box-shadow: 0 28px 68px rgba(3, 3, 18, .32), inset 0 1px 0 rgba(255, 255, 255, .1);
    transform: translateY(-6px);
}

.mye-testimonial-card--featured {
    border-color: rgba(172, 160, 255, .28);
    background: linear-gradient(145deg, rgba(125, 105, 255, .19), rgba(255, 255, 255, .055));
    transform: translateY(-10px);
}

.mye-testimonial-card--featured:hover {
    transform: translateY(-16px);
}

.mye-testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.mye-testimonial-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: .8rem;
    filter: drop-shadow(0 4px 10px rgba(251, 191, 36, .18));
}

.mye-testimonial-draft {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border: 1px solid rgba(251, 191, 36, .22);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, .10);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.mye-testimonial-card blockquote {
    position: relative;
    flex: 1;
    margin: 0 0 28px;
    padding: 0;
    border: 0;
}

.mye-testimonial-card blockquote::before {
    position: absolute;
    top: -18px;
    left: -3px;
    content: "\201C";
    color: rgba(184, 175, 255, .22);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.mye-testimonial-card blockquote p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #f2f1f8;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.78;
}

.mye-testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.mye-testimonial-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #7667fc, #c14cc7 62%, #ec4899);
    box-shadow: 0 10px 24px rgba(109, 93, 252, .25);
}

.mye-testimonial-author > span:last-child {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.mye-testimonial-author strong {
    overflow: hidden;
    color: #fff;
    font-family: "Plus Jakarta Sans", "DM Sans", Arial, sans-serif;
    font-size: .88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mye-testimonial-author small {
    color: #aaa9bd;
    font-size: .71rem;
    line-height: 1.4;
}

.mye-testimonials-verification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background: rgba(9, 9, 27, .22);
}

.mye-testimonials-verification > span {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    color: #b9b8ca;
    font-size: .75rem;
    line-height: 1.55;
}

.mye-testimonials-verification > span i {
    margin-top: 3px;
    color: #fbbf24;
}

.mye-testimonials-verification .mye-text-link {
    flex: 0 0 auto;
    color: #d8d3ff;
    font-size: .8rem;
}

.mye-testimonials-verification .mye-text-link:hover,
.mye-testimonials-verification .mye-text-link:focus {
    color: #fff;
}

@media (max-width: 991px) {
    .mye-testimonials-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mye-testimonials-audiences {
        max-width: none;
        justify-content: flex-start;
    }

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

    .mye-testimonial-card--featured {
        transform: none;
    }

    .mye-testimonial-card--featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 767px) {
    .mye-testimonials {
        padding-block: 78px;
    }

    .mye-testimonials-heading {
        margin-bottom: 32px;
    }

    .mye-testimonials-audiences {
        gap: 7px;
    }

    .mye-testimonials-audiences span {
        min-height: 35px;
        padding: 8px 11px;
        font-size: .7rem;
    }

    .mye-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mye-testimonial-card {
        min-height: 0;
        padding: 23px;
        border-radius: 20px;
    }

    .mye-testimonial-card blockquote p {
        font-size: .94rem;
    }

    .mye-testimonials-verification {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
        margin-top: 24px;
        padding: 16px;
    }
}

/* ======================================================
   PAGES PUBLIQUES — COMPOSANTS SAAS HARMONISÉS
   À propos, contact, affiliation, pages légales et statuts
   ====================================================== */

.mye-modern-content {
    background: #fff;
}

.mye-modern-content main {
    overflow: hidden;
}

.mye-modern-content .mye-offers-value-price--icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 11px;
    color: #047857;
    background: #d1fae5;
    font-size: .78rem;
}

.mye-page-intro-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 12px;
    border: 1px solid #ded9ff;
    border-radius: 999px;
    color: #595172;
    background: rgba(255, 255, 255, .76);
    font-size: .73rem;
    font-weight: 700;
}

.mye-page-intro-note i {
    color: var(--mye-success);
}

.mye-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    gap: 66px;
    align-items: center;
}

.mye-story-copy .mye-section-head {
    margin-bottom: 28px;
}

.mye-story-copy > p {
    margin: 0 0 17px;
    color: var(--mye-copy);
    font-size: .96rem;
    line-height: 1.78;
}

.mye-story-points {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.mye-story-points li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #465068;
    font-size: .88rem;
    line-height: 1.6;
}

.mye-story-points i {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 1px;
    place-items: center;
    border-radius: 8px;
    color: #047857;
    background: #d1fae5;
    font-size: .62rem;
}

.mye-story-visual {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    padding: 18px;
    border: 1px solid #e2def8;
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 12%, rgba(109, 93, 252, .16), transparent 30%),
        linear-gradient(145deg, #f8f6ff, #fff);
    box-shadow: var(--mye-shadow-lg);
}

.mye-story-visual img {
    width: 100%;
    height: 100%;
    min-height: 444px;
    border-radius: 22px;
    object-fit: cover;
}

.mye-story-float {
    position: absolute;
    right: 0;
    bottom: 32px;
    left: 0;
    display: grid;
    width: calc(100% - 64px);
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    margin-inline: auto;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 17px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 18px 42px rgba(27, 21, 72, .16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mye-story-float > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), var(--mye-secondary));
}

.mye-story-float strong,
.mye-story-float span {
    display: block;
}

.mye-story-float strong {
    margin-bottom: 2px;
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .82rem;
}

.mye-story-float span {
    color: var(--mye-muted);
    font-size: .7rem;
}

.mye-saas-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mye-saas-card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--mye-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(31, 25, 78, .055);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.mye-saas-card::after {
    position: absolute;
    right: -38px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    content: "";
    border-radius: 50%;
    background: rgba(109, 93, 252, .045);
}

.mye-saas-card:hover {
    border-color: #d4ceff;
    box-shadow: 0 22px 48px rgba(38, 29, 99, .1);
    transform: translateY(-5px);
}

.mye-saas-card .mye-icon-box {
    position: relative;
    z-index: 1;
}

.mye-saas-card h3 {
    position: relative;
    z-index: 1;
    margin: 20px 0 10px;
    font-size: 1.08rem;
}

.mye-saas-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--mye-copy);
    font-size: .87rem;
    line-height: 1.7;
}

.mye-saas-card .mye-text-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 18px;
}

.mye-inline-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid #ddd8f4;
    border-radius: 22px;
    background: #ddd8f4;
    box-shadow: var(--mye-shadow-sm);
}

.mye-inline-proof > div {
    padding: 28px;
    background: #fff;
}

.mye-inline-proof strong,
.mye-inline-proof span {
    display: block;
}

.mye-inline-proof strong {
    margin-bottom: 5px;
    color: var(--mye-primary-dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.15rem;
}

.mye-inline-proof span {
    color: var(--mye-muted);
    font-size: .78rem;
    line-height: 1.5;
}

.mye-highlight-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding: 38px 42px;
    overflow: hidden;
    border: 1px solid #dcd7ff;
    border-radius: 26px;
    background:
        radial-gradient(circle at 96% 10%, rgba(236, 72, 153, .12), transparent 32%),
        linear-gradient(135deg, #f6f3ff 0%, #fff 70%);
}

.mye-highlight-card h2 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.mye-highlight-card p {
    max-width: 680px;
    margin: 0;
    color: var(--mye-copy);
    line-height: 1.7;
}

/* Contact */
.mye-contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mye-contact-channel {
    display: flex;
    min-height: 295px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--mye-line);
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(34, 27, 84, .06);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.mye-contact-channel:hover {
    border-color: #d0c9ff;
    box-shadow: 0 24px 54px rgba(44, 34, 110, .1);
    transform: translateY(-5px);
}

.mye-contact-channel h3 {
    margin: 20px 0 8px;
    font-size: 1.12rem;
}

.mye-contact-channel p {
    margin: 0 0 22px;
    color: var(--mye-copy);
    font-size: .86rem;
    line-height: 1.7;
}

.mye-contact-channel .mye-text-link,
.mye-contact-channel .mye-btn {
    margin-top: auto;
}

.mye-contact-prep {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 48px;
    align-items: start;
}

.mye-contact-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.mye-contact-checklist > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--mye-line);
    border-radius: 16px;
    background: #fff;
}

.mye-contact-checklist i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 11px;
    color: var(--mye-primary);
    background: var(--mye-primary-soft);
}

.mye-contact-checklist strong,
.mye-contact-checklist span {
    display: block;
}

.mye-contact-checklist strong {
    margin-bottom: 3px;
    color: var(--mye-ink);
    font-size: .78rem;
}

.mye-contact-checklist span {
    color: var(--mye-muted);
    font-size: .7rem;
    line-height: 1.45;
}

/* Affiliation */
.mye-affiliate-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    counter-reset: mye-affiliate-step;
}

.mye-affiliate-step {
    position: relative;
    min-height: 245px;
    padding: 27px;
    border: 1px solid var(--mye-line);
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(34, 27, 84, .055);
    counter-increment: mye-affiliate-step;
}

.mye-affiliate-step::before {
    display: grid;
    width: 38px;
    height: 38px;
    content: counter(mye-affiliate-step, decimal-leading-zero);
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
    box-shadow: 0 10px 22px rgba(109, 93, 252, .24);
    font-size: .72rem;
    font-weight: 800;
}

.mye-affiliate-step h3 {
    margin: 21px 0 9px;
    font-size: 1rem;
}

.mye-affiliate-step p {
    margin: 0;
    color: var(--mye-copy);
    font-size: .82rem;
    line-height: 1.66;
}

.mye-affiliate-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mye-affiliate-detail {
    padding: 30px;
    border: 1px solid var(--mye-line);
    border-radius: 22px;
    background: #fff;
}

.mye-affiliate-detail h3 {
    margin: 18px 0 12px;
    font-size: 1.18rem;
}

.mye-affiliate-detail p {
    margin: 0;
    color: var(--mye-copy);
    font-size: .87rem;
    line-height: 1.72;
}

.mye-affiliate-detail ul {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.mye-affiliate-detail li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4c566d;
    font-size: .8rem;
    line-height: 1.55;
}

.mye-affiliate-detail li i {
    margin-top: 3px;
    color: var(--mye-success);
}

/* Pages juridiques */
.mye-legal-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.mye-legal-summary > div {
    padding: 17px;
    border: 1px solid var(--mye-line);
    border-radius: 15px;
    background: #fff;
}

.mye-legal-summary i {
    margin-bottom: 11px;
    color: var(--mye-primary);
}

.mye-legal-summary strong,
.mye-legal-summary span {
    display: block;
}

.mye-legal-summary strong {
    margin-bottom: 3px;
    color: var(--mye-ink);
    font-size: .76rem;
}

.mye-legal-summary span {
    color: var(--mye-muted);
    font-size: .66rem;
    line-height: 1.4;
}

.mye-legal-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.mye-legal-toc {
    position: sticky;
    top: 106px;
    padding: 20px;
    border: 1px solid var(--mye-line);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(31, 25, 78, .055);
}

.mye-legal-toc strong {
    display: block;
    margin-bottom: 13px;
    color: var(--mye-ink);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .82rem;
}

.mye-legal-toc nav {
    display: grid;
    gap: 3px;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
    padding-right: 4px;
}

.mye-legal-toc a {
    display: block;
    padding: 8px 10px;
    border-radius: 9px;
    color: #687188;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1.35;
    transition: color .2s ease, background-color .2s ease;
}

.mye-legal-toc a:hover,
.mye-legal-toc a:focus,
.mye-legal-toc a.is-active,
.mye-legal-toc a[aria-current="location"] {
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
}

.mye-legal-toc a.is-active,
.mye-legal-toc a[aria-current="location"] {
    box-shadow: inset 3px 0 0 var(--mye-primary);
}

.mye-legal-article {
    min-width: 0;
    padding: 42px;
    border: 1px solid var(--mye-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(31, 25, 78, .06);
}

.mye-legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 36px;
    padding: 17px 18px;
    border: 1px solid #dad5ff;
    border-radius: 15px;
    color: #554f6b;
    background: #f8f6ff;
    font-size: .78rem;
    line-height: 1.6;
}

.mye-legal-notice i {
    margin-top: 3px;
    color: var(--mye-primary);
}

.mye-legal-article h2 {
    scroll-margin-top: 112px;
    position: relative;
    margin: 44px 0 18px;
    padding-top: 32px;
    border-top: 1px solid var(--mye-line);
    color: var(--mye-ink);
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    line-height: 1.25;
    transition: color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.mye-legal-article h2.mye-legal-target-active {
    color: var(--mye-primary-dark);
    background: linear-gradient(90deg, var(--mye-primary-soft), transparent 78%);
    box-shadow: -12px 0 0 var(--mye-primary-soft);
}

.mye-legal-article h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.mye-legal-article p {
    margin: 0 0 15px;
    color: #566078;
    font-size: .86rem;
    line-height: 1.82;
}

.mye-legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #55506b;
    background: var(--mye-surface-alt);
    font-size: .72rem;
    font-weight: 700;
}

/* Pages de statut / liens invalides */
.mye-status-main {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding: calc(var(--mye-nav-height) + 18px) 0 28px;
    background:
        radial-gradient(circle at 12% 20%, rgba(109, 93, 252, .16), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(236, 72, 153, .11), transparent 26%),
        linear-gradient(180deg, #faf9ff 0%, #fff 100%);
}

.mye-status-main > .mye-container {
    width: 100%;
}

.mye-status-card {
    position: relative;
    max-width: 760px;
    margin-inline: auto;
    padding: 34px 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--mye-shadow-lg);
}

.mye-status-card::before {
    position: absolute;
    top: -100px;
    right: -90px;
    width: 240px;
    height: 240px;
    content: "";
    border-radius: 50%;
    background: rgba(109, 93, 252, .07);
}

.mye-status-icon {
    position: relative;
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    place-items: center;
    border: 1px solid #ded8ff;
    border-radius: 19px;
    color: var(--mye-primary);
    background: linear-gradient(145deg, #f0edff, #fff);
    box-shadow: 0 16px 34px rgba(109, 93, 252, .17);
    font-size: 1.45rem;
}

.mye-status-code {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mye-status-card h1 {
    position: relative;
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 3.4vw, 2.65rem);
}

.mye-status-card > p {
    position: relative;
    max-width: 590px;
    margin: 0 auto;
    color: var(--mye-copy);
    font-size: .9rem;
    line-height: 1.6;
}

.mye-status-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.mye-status-tips {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
    text-align: left;
}

.mye-status-tip {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 13px;
    border: 1px solid var(--mye-line);
    border-radius: 15px;
    background: var(--mye-surface-alt);
}

.mye-status-tip i {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 10px;
    color: var(--mye-primary);
    background: #fff;
}

.mye-status-tip strong,
.mye-status-tip span {
    display: block;
}

.mye-status-tip strong {
    margin-bottom: 2px;
    color: var(--mye-ink);
    font-size: .75rem;
}

.mye-status-tip span {
    color: var(--mye-muted);
    font-size: .67rem;
    line-height: 1.45;
}

/* Accents sémantiques des pages d'erreur, dans le langage visuel MyEinvite. */
.mye-error-401 .mye-status-icon {
    border-color: #fde2a8;
    color: #b86a08;
    background: linear-gradient(145deg, #fff5db, #fff);
    box-shadow: 0 16px 34px rgba(217, 119, 6, .14);
}

.mye-error-401 .mye-status-code {
    color: #985608;
    background: #fff4d6;
}

.mye-error-404 .mye-status-icon {
    border-color: #dcd6ff;
    color: var(--mye-primary);
    background: linear-gradient(145deg, #f0edff, #fff);
}

.mye-error-500 .mye-status-icon {
    border-color: #ffd5dc;
    color: #d63d58;
    background: linear-gradient(145deg, #fff0f3, #fff);
    box-shadow: 0 16px 34px rgba(214, 61, 88, .14);
}

.mye-error-500 .mye-status-code {
    color: #b72e49;
    background: #fff0f3;
}

.mye-status-actions button.mye-btn {
    border: 0;
    font-family: inherit;
    cursor: pointer;
}

@media (max-width: 1050px) {
    .mye-story-grid {
        gap: 40px;
    }

    .mye-affiliate-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .mye-story-grid,
    .mye-contact-prep,
    .mye-legal-layout {
        grid-template-columns: 1fr;
    }

    .mye-story-visual {
        min-height: 420px;
    }

    .mye-story-visual img {
        min-height: 384px;
    }

    .mye-legal-toc {
        position: static;
    }

    .mye-legal-toc nav {
        display: flex;
        max-height: none;
        flex-wrap: wrap;
        gap: 5px;
        overflow: visible;
    }

    .mye-legal-toc a {
        border: 1px solid var(--mye-line);
    }
}

@media (max-width: 767px) {
    .mye-saas-card-grid,
    .mye-contact-channel-grid,
    .mye-inline-proof,
    .mye-affiliate-details,
    .mye-legal-summary {
        grid-template-columns: 1fr;
    }

    .mye-contact-checklist,
    .mye-status-tips {
        grid-template-columns: 1fr;
    }

    .mye-story-visual {
        min-height: 350px;
        padding: 12px;
        border-radius: 22px;
    }

    .mye-story-visual img {
        min-height: 326px;
        border-radius: 16px;
    }

    .mye-story-float {
        bottom: 24px;
        width: calc(100% - 40px);
    }

    .mye-saas-card,
    .mye-contact-channel,
    .mye-affiliate-detail {
        min-height: 0;
        padding: 24px;
    }

    .mye-affiliate-step-grid {
        grid-template-columns: 1fr;
    }

    .mye-affiliate-step {
        min-height: 0;
        padding: 24px;
    }

    .mye-highlight-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .mye-highlight-card .mye-btn {
        width: 100%;
    }

    .mye-legal-article {
        padding: 24px;
        border-radius: 19px;
    }

    .mye-legal-article h2 {
        margin-top: 34px;
        padding-top: 25px;
        font-size: 1.25rem;
    }

    .mye-status-main {
        align-items: flex-start;
        padding: calc(var(--mye-nav-height-mobile) + 14px) 0 18px;
    }

    .mye-status-card {
        padding: 24px 18px;
        border-radius: 21px;
    }

    .mye-status-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 11px;
        border-radius: 16px;
        font-size: 1.2rem;
    }

    .mye-status-card h1 {
        margin-bottom: 8px;
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .mye-status-card > p {
        font-size: .82rem;
        line-height: 1.5;
    }

    .mye-status-actions {
        gap: 8px;
        margin-top: 16px;
    }

    .mye-status-tips {
        gap: 8px;
        margin-top: 16px;
    }

    .mye-status-actions .mye-btn {
        width: 100%;
        min-height: 40px;
        padding: 9px 14px;
    }
}

@media (max-height: 720px) and (min-width: 768px) {
    .mye-status-main {
        align-items: flex-start;
        padding-top: calc(var(--mye-nav-height) + 12px);
    }

    .mye-status-card {
        padding-block: 26px;
    }

    .mye-status-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 10px;
    }

    .mye-status-actions,
    .mye-status-tips {
        margin-top: 15px;
    }
}

/* Centre d’aide — alignement final sur la grille de la page Offres */
.mye-help-modern .mye-offers-hero .mye-help-offers-search {
    width: min(100%, 680px);
    margin: 0 0 24px;
}

.mye-help-modern .mye-offers-hero .mye-hero-actions {
    width: auto;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.mye-help-modern .mye-offers-hero .mye-trust-row {
    justify-content: flex-start;
}

.mye-help-modern .mye-offers-value-card {
    align-self: center;
}

@media (max-width: 767px) {
    .mye-help-modern .mye-offers-hero .mye-hero-actions {
        width: 100%;
    }

    .mye-help-modern .mye-offers-hero .mye-hero-actions .mye-btn {
        width: 100%;
    }
}

/* ======================================================
   CATALOGUE ÉVÉNEMENTS — EXPÉRIENCE SAAS PREMIUM
   ====================================================== */
.mye-events-saas {
    background: #f8f8fc;
}

.mye-events-saas .mye-events-hero {
    position: relative;
    min-height: 0;
    isolation: isolate;
    padding: calc(var(--mye-nav-height) + 58px) 0 132px;
    background:
        radial-gradient(circle at 8% 22%, rgba(236, 72, 153, .13), transparent 27%),
        radial-gradient(circle at 87% 20%, rgba(109, 93, 252, .22), transparent 34%),
        linear-gradient(145deg, #fcfbff 0%, #f4f1ff 53%, #fff8fc 100%);
}

.mye-events-saas .mye-events-hero::before {
    top: 122px;
    left: -72px;
    width: 218px;
    height: 218px;
    border-color: rgba(109, 93, 252, .14);
    box-shadow: 0 0 0 34px rgba(109, 93, 252, .035), 0 0 0 68px rgba(236, 72, 153, .025);
}

.mye-events-saas .mye-events-hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: .28;
    background-image:
        linear-gradient(rgba(109, 93, 252, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 93, 252, .055) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 86%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 86%);
    pointer-events: none;
}

.mye-events-saas .mye-events-hero-grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: clamp(54px, 7vw, 96px);
    padding-top: 0;
    padding-bottom: 0;
}

.mye-events-saas .mye-events-eyebrow {
    padding: 9px 14px;
    border-color: rgba(109, 93, 252, .18);
    color: var(--mye-primary-dark);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 30px rgba(54, 43, 127, .08);
    backdrop-filter: blur(12px);
}

.mye-events-eyebrow-pulse {
    position: relative;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: var(--mye-success);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, .13);
}

.mye-events-saas .mye-events-hero-copy h1 {
    max-width: 760px;
    margin: 24px 0 20px;
    font-size: clamp(3.2rem, 5.8vw, 5.25rem);
    line-height: 1;
    letter-spacing: -.065em;
}

.mye-events-saas .mye-events-hero-copy > p {
    max-width: 660px;
    margin-bottom: 30px;
    color: #5d667c;
    font-size: clamp(1rem, 1.55vw, 1.16rem);
    line-height: 1.72;
}

.mye-events-saas .mye-events-hero-actions {
    gap: 11px;
}

.mye-events-saas .mye-events-trust {
    margin-top: 26px;
}

.mye-events-saas .mye-events-trust span {
    color: #626d84;
    font-size: .82rem;
}

.mye-events-saas .mye-events-hero-visual {
    width: min(100%, 540px);
    padding: 17px;
}

.mye-events-saas .mye-events-visual-glow {
    inset: 8% -4% -5% 6%;
    border-radius: 42% 58% 46% 54% / 52% 44% 56% 48%;
    background: linear-gradient(145deg, rgba(109, 93, 252, .34), rgba(236, 72, 153, .20));
    filter: blur(24px);
}

.mye-events-visual-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: 30px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 34px 85px rgba(53, 43, 119, .22);
    backdrop-filter: blur(16px);
    transform: rotate(1deg);
}

.mye-events-visual-topbar {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 9px 10px;
    color: #4f5870;
    font-size: .72rem;
    font-weight: 800;
}

.mye-events-visual-topbar > span:first-child,
.mye-events-visual-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mye-events-visual-topbar > span:first-child i {
    color: var(--mye-primary);
}

.mye-events-visual-live {
    padding: 6px 9px;
    border-radius: 999px;
    color: #08785b;
    background: #eafaf5;
}

.mye-events-visual-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mye-success);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.mye-events-saas .mye-events-hero-image {
    width: 100%;
    aspect-ratio: 1.18;
    border: 0;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: none;
    transform: none;
}

.mye-events-visual-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 10px 7px;
}

.mye-events-visual-caption > div {
    display: grid;
    gap: 3px;
}

.mye-events-visual-caption > div span {
    color: var(--mye-muted);
    font-size: .66rem;
    font-weight: 700;
}

.mye-events-visual-caption strong {
    color: var(--mye-ink);
    font-size: .85rem;
}

.mye-events-visual-ticket {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 11px;
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
    font-size: .65rem;
    font-weight: 800;
}

.mye-events-saas .mye-events-floating-card--top {
    top: 11%;
    left: -9%;
}

.mye-events-saas .mye-events-floating-card--bottom {
    right: -8%;
    bottom: 13%;
}

.mye-events-saas .mye-events-discovery {
    padding: 0 0 108px;
    background:
        radial-gradient(circle at 100% 14%, rgba(109, 93, 252, .07), transparent 22%),
        #f8f8fc;
}

.mye-events-saas .mye-events-search-card {
    align-items: center;
    grid-template-columns: minmax(220px, .68fr) minmax(0, 1.7fr);
    gap: 34px;
    margin-top: -70px;
    padding: 29px;
    border-color: rgba(224, 222, 241, .94);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 76px rgba(35, 30, 82, .14);
}

.mye-events-saas .mye-events-search-intro h2 {
    margin-top: 7px;
    font-size: clamp(1.5rem, 2.25vw, 2.05rem);
}

.mye-events-saas .mye-events-search-intro p {
    max-width: 320px;
    color: #6a7285;
    line-height: 1.58;
}

.mye-events-search-tools {
    display: grid;
    min-width: 0;
    gap: 14px;
}

.mye-events-saas .mye-events-filters {
    grid-template-columns: minmax(210px, 1.55fr) minmax(138px, .9fr) minmax(138px, .9fr) auto;
    gap: 10px;
}

.mye-events-saas .mye-events-field .form-control,
.mye-events-saas .mye-events-field .form-select,
.mye-events-saas .mye-events-reset {
    min-height: 50px;
    border-radius: 13px;
}

.mye-events-saas .mye-events-control .form-control {
    padding-right: 42px;
}

.mye-events-search-clear {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 9px;
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 9px;
    color: #7b8498;
    background: transparent;
    transform: translateY(-50%);
}

.mye-events-search-clear:hover,
.mye-events-search-clear:focus-visible {
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
}

.mye-events-chips {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.mye-events-chips > span {
    margin-right: 2px;
    color: #788195;
    font-size: .68rem;
    font-weight: 800;
}

.mye-events-chips button {
    padding: 7px 10px;
    border: 1px solid #e4e3ed;
    border-radius: 999px;
    color: #646d80;
    background: #fff;
    font-size: .67rem;
    font-weight: 800;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.mye-events-chips button:hover,
.mye-events-chips button:focus-visible,
.mye-events-chips button.is-active {
    border-color: #d3ccff;
    color: var(--mye-primary-dark);
    background: var(--mye-primary-soft);
}

.mye-events-chips button:active {
    transform: scale(.97);
}

.mye-events-saas .mye-events-results-head {
    margin: 72px 0 30px;
}

.mye-events-results-meta {
    display: grid;
    max-width: 500px;
    justify-items: end;
    gap: 10px;
    text-align: right;
}

.mye-events-results-meta p {
    margin: 0;
}

.mye-events-create-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mye-primary-dark);
    font-size: .78rem;
    font-weight: 800;
}

.mye-events-create-link i {
    transition: transform .2s ease;
}

.mye-events-create-link:hover i {
    transform: translateX(4px);
}

.mye-events-saas .mye-events-grid .card,
.mye-events-saas .mye-events-grid .event-card,
.mye-events-saas .mye-events-grid > article {
    min-height: 100%;
    border-color: #e7e5f0 !important;
    border-radius: 24px !important;
    box-shadow: 0 15px 40px rgba(27, 23, 66, .08) !important;
}

.mye-events-saas .mye-events-grid .card:hover,
.mye-events-saas .mye-events-grid .event-card:hover,
.mye-events-saas .mye-events-grid > article:hover {
    border-color: #d5ceff !important;
    box-shadow: 0 26px 62px rgba(42, 34, 106, .16) !important;
}

.mye-events-saas .mye-events-grid .card-img-top,
.mye-events-saas .mye-events-grid .event-image,
.mye-events-saas .mye-events-grid article > img {
    transition: transform .45s cubic-bezier(.2, .75, .3, 1);
}

.mye-events-saas .mye-events-grid .card:hover .card-img-top,
.mye-events-saas .mye-events-grid .event-card:hover .event-image,
.mye-events-saas .mye-events-grid > article:hover > img {
    transform: scale(1.035);
}

.mye-events-saas .mye-events-grid .card-body,
.mye-events-saas .mye-events-grid .event-card-body {
    display: flex;
    flex-direction: column;
    padding: 23px;
}

.mye-events-saas .mye-events-grid .btn,
.mye-events-saas .mye-events-grid a.btn {
    margin-top: auto;
    box-shadow: 0 10px 24px rgba(109, 93, 252, .16);
}

.mye-events-noscript {
    margin-top: 24px;
    padding: 17px 20px;
    border: 1px solid #f3d8a7;
    border-radius: 14px;
    color: #805718;
    background: #fff9ed;
    text-align: center;
    font-size: .82rem;
    font-weight: 700;
}

.mye-events-organizer-panel {
    position: relative;
    display: grid;
    overflow: hidden;
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    margin-top: 76px;
    padding: 30px 32px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 12%, rgba(236, 72, 153, .24), transparent 28%),
        linear-gradient(135deg, #20184f 0%, #4b32aa 58%, #6d5dfc 100%);
    box-shadow: 0 25px 62px rgba(38, 27, 103, .24);
}

.mye-events-organizer-panel::after {
    position: absolute;
    top: -86px;
    right: -62px;
    width: 230px;
    height: 230px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .035);
}

.mye-events-organizer-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, .11);
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
}

.mye-events-organizer-copy {
    position: relative;
    z-index: 1;
}

.mye-events-organizer-copy .mye-section-kicker {
    color: #dcd7ff;
}

.mye-events-organizer-copy h2 {
    margin: 5px 0 7px;
    color: #fff;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.mye-events-organizer-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: .83rem;
    line-height: 1.6;
}

.mye-events-organizer-actions {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.mye-events-organizer-actions .mye-btn {
    border-color: rgba(255, 255, 255, .18);
    color: var(--mye-primary-dark);
    background: #fff;
    box-shadow: 0 14px 30px rgba(19, 13, 57, .20);
}

.mye-events-organizer-actions > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: .65rem;
    font-weight: 700;
}

.mye-events-organizer-actions > span i {
    color: #6ee7b7;
}

@media (max-width: 1100px) {
    .mye-events-saas .mye-events-search-card {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .mye-events-saas .mye-events-search-intro p {
        max-width: none;
    }

    .mye-events-organizer-panel {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .mye-events-organizer-actions {
        align-items: center;
        grid-column: 1 / -1;
        grid-template-columns: auto auto;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .mye-events-saas .mye-events-hero {
        padding: calc(var(--mye-nav-height-mobile) + 44px) 0 138px;
    }

    .mye-events-saas .mye-events-hero-grid {
        gap: 64px;
        padding: 0;
    }

    .mye-events-saas .mye-events-hero-copy h1 {
        max-width: 780px;
    }

    .mye-events-saas .mye-events-hero-visual {
        width: min(88%, 560px);
    }
}

@media (max-width: 767px) {
    .mye-events-saas .mye-events-hero {
        padding-top: calc(var(--mye-nav-height-mobile) + 32px);
    }

    .mye-events-saas .mye-events-hero-grid {
        gap: 52px;
    }

    .mye-events-saas .mye-events-hero-copy h1 {
        font-size: clamp(2.55rem, 12vw, 3.75rem);
    }

    .mye-events-saas .mye-events-search-card {
        margin-top: -76px;
        padding: 22px;
    }

    .mye-events-saas .mye-events-filters {
        grid-template-columns: 1fr;
    }

    .mye-events-saas .mye-events-reset {
        width: 100%;
    }

    .mye-events-saas .mye-events-results-head {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 58px;
    }

    .mye-events-results-meta {
        justify-items: start;
        text-align: left;
    }

    .mye-events-organizer-panel {
        grid-template-columns: 1fr;
        justify-items: start;
        margin-top: 58px;
        padding: 27px 23px;
    }

    .mye-events-organizer-actions {
        width: 100%;
        grid-column: auto;
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .mye-events-organizer-actions .mye-btn {
        width: 100%;
    }

    .mye-events-organizer-actions > span {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .mye-events-saas .mye-events-hero-actions .mye-btn {
        width: 100%;
    }

    .mye-events-saas .mye-events-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .mye-events-saas .mye-events-hero-visual {
        width: 100%;
        padding: 4px;
    }

    .mye-events-visual-frame {
        border-radius: 24px;
        transform: none;
    }

    .mye-events-saas .mye-events-hero-image {
        border-radius: 17px;
    }

    .mye-events-visual-caption {
        align-items: flex-start;
        flex-direction: column;
    }

    .mye-events-saas .mye-events-floating-card--top {
        top: 9%;
        left: -4px;
    }

    .mye-events-saas .mye-events-floating-card--bottom {
        right: -4px;
        bottom: 17%;
    }

    .mye-events-saas .mye-events-floating-card small {
        display: none;
    }

    .mye-events-chips {
        flex-wrap: nowrap;
        margin-right: -6px;
        padding: 2px 6px 4px 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .mye-events-chips::-webkit-scrollbar {
        display: none;
    }

    .mye-events-chips > span,
    .mye-events-chips button {
        flex: 0 0 auto;
    }
}

/* ======================================================
   FICHE ÉVÉNEMENT — EXPÉRIENCE SAAS PREMIUM
   ====================================================== */

.mye-event-saas {
    background: #f7f7fc;
}

.mye-event-saas .mye-event-shell {
    overflow: visible;
}

.mye-event-saas .mye-event-hero {
    isolation: isolate;
    background:
        radial-gradient(circle at 8% 18%, rgba(236, 72, 153, .28), transparent 29%),
        radial-gradient(circle at 88% 20%, rgba(139, 92, 246, .34), transparent 34%),
        linear-gradient(135deg, #121027 0%, #272052 49%, #18142f 100%);
}

.mye-event-saas .mye-event-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .075) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
    pointer-events: none;
}

.mye-event-saas .mye-event-hero-grid {
    min-height: 760px;
    padding-top: calc(var(--mye-nav-height) + 58px);
    padding-bottom: 92px;
}

.mye-event-saas .mye-event-hero-copy {
    min-width: 0;
}

.mye-event-saas .mye-event-organizer {
    max-width: 680px;
}

.mye-event-hero-facts {
    display: grid;
    max-width: 700px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.mye-event-hero-fact {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 15px;
    background: rgba(255, 255, 255, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
}

.mye-event-hero-fact-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, rgba(139, 92, 246, .88), rgba(236, 72, 153, .8));
    box-shadow: 0 8px 20px rgba(2, 1, 16, .18);
}

.mye-event-hero-fact > span:last-child {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.mye-event-hero-fact small {
    color: rgba(255, 255, 255, .56);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mye-event-hero-fact strong {
    overflow: hidden;
    color: #fff;
    font-size: .78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mye-event-saas .mye-event-cover-wrap::after {
    position: absolute;
    z-index: 0;
    top: 10%;
    right: -9%;
    width: 120px;
    height: 120px;
    content: "";
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(109, 93, 252, .62), rgba(236, 72, 153, .42));
    filter: blur(18px);
    transform: rotate(20deg);
}

.mye-event-saas .mye-event-cover {
    max-height: 535px;
    border-color: rgba(255, 255, 255, .16);
}

.mye-event-saas .mye-event-content {
    position: relative;
    padding-top: 76px;
    background:
        radial-gradient(circle at 90% 6%, rgba(109, 93, 252, .075), transparent 26%),
        radial-gradient(circle at 8% 58%, rgba(236, 72, 153, .045), transparent 22%),
        #f7f7fc;
}

.mye-event-saas .mye-event-panel {
    border-color: rgba(224, 222, 238, .92);
    box-shadow: 0 28px 80px rgba(31, 25, 78, .10);
}

.mye-event-saas .mye-event-meta {
    border-color: #e8e5f3;
    background: linear-gradient(135deg, #faf9ff, #fff);
}

.mye-event-saas .mye-event-panel > h5.mt-4,
.mye-event-saas .mye-event-reservation > h5.mt-4 {
    letter-spacing: -.025em;
}

.mye-event-saas .mye-event-panel > p:not(.mye-event-meta) {
    border-color: #ebeaf3;
    background: #fbfbfe;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.mye-event-saas .mye-event-panel > p:not(.mye-event-meta):hover {
    border-color: #d9d3ff;
    background: #f8f6ff;
    transform: translateX(3px);
}

.mye-event-saas .mye-event-reservation {
    scroll-margin-top: calc(var(--mye-nav-height) + 24px);
    border-top-color: #e8e6f0;
}

.mye-event-saas .mye-ticket-card {
    border-color: #e5e2f0 !important;
    box-shadow: 0 12px 32px rgba(34, 27, 82, .07) !important;
}

.mye-event-saas .mye-ticket-card .card-body {
    position: relative;
}

.mye-event-saas .mye-ticket-card .card-body::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
    background: linear-gradient(180deg, var(--mye-primary), var(--mye-secondary));
}

.mye-ticket-empty {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border: 1px dashed #d8d2f4;
    border-radius: 18px;
    color: var(--mye-primary-dark);
    background: #f8f6ff;
}

.mye-ticket-empty > i {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
}

.mye-ticket-empty > div {
    display: grid;
    gap: 3px;
}

.mye-ticket-empty strong {
    color: var(--mye-ink);
}

.mye-ticket-empty span {
    color: var(--mye-copy);
    font-size: .84rem;
}

.mye-event-saas .mye-reservation-sidebar-inner {
    top: calc(var(--mye-nav-height-scrolled) + 20px);
}

.mye-event-saas .mye-reservation-card {
    border-color: #dcd7ec !important;
    box-shadow: 0 26px 64px rgba(31, 25, 78, .15);
}

.mye-event-saas .mye-reservation-card-title {
    background:
        radial-gradient(circle at 90% 0, rgba(236, 72, 153, .35), transparent 38%),
        linear-gradient(135deg, #1c1741, #4b3f9e) !important;
}

.mye-event-final-cta {
    display: grid;
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
    margin-top: 52px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #ded9f7;
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 0, rgba(236, 72, 153, .13), transparent 34%),
        linear-gradient(135deg, #f1edff 0%, #fff 58%, #fff4fa 100%);
}

.mye-event-final-cta-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 19px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 60%, var(--mye-secondary));
    box-shadow: 0 16px 34px rgba(109, 93, 252, .27);
    font-size: 1.35rem;
}

.mye-event-final-cta-copy .mye-section-kicker {
    margin-bottom: 6px;
    font-size: .68rem;
}

.mye-event-final-cta-copy h2 {
    margin-bottom: 7px;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 800;
}

.mye-event-final-cta-copy p {
    max-width: 650px;
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
}

.mye-event-final-cta .mye-btn {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .mye-event-saas .mye-event-hero-grid {
        min-height: 0;
        padding-top: calc(var(--mye-nav-height-mobile) + 58px);
    }

    .mye-event-saas .mye-event-hero-facts {
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .mye-event-saas .mye-reservation-sidebar-inner {
        top: auto;
    }

    .mye-event-final-cta {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .mye-event-final-cta .mye-btn {
        width: 100%;
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .mye-event-saas .mye-event-hero-grid {
        padding-top: calc(var(--mye-nav-height-mobile) + 44px);
        padding-bottom: 78px;
    }

    .mye-event-hero-facts {
        grid-template-columns: 1fr;
    }

    .mye-event-hero-fact strong {
        white-space: normal;
    }

    .mye-event-saas .mye-event-content {
        padding-top: 42px;
    }

    .mye-event-final-cta {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        text-align: center;
    }

    .mye-event-final-cta-icon {
        margin-inline: auto;
    }

    .mye-event-final-cta .mye-section-kicker {
        justify-content: center;
    }

    .mye-event-final-cta .mye-btn {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .mye-event-saas .mye-event-hero-grid {
        padding-top: calc(var(--mye-nav-height-mobile) + 34px);
    }

    .mye-event-saas .mye-event-hero-copy h1 {
        font-size: clamp(2.2rem, 12vw, 3.25rem);
    }

    .mye-event-hero-fact {
        padding: 11px 12px;
    }

    .mye-event-final-cta {
        margin-top: 38px;
        border-radius: 20px;
    }
}

/* Informations pratiques — cartes compactes de la fiche événement */
.mye-event-info-section {
    margin-top: 34px;
}

.mye-event-info-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.mye-event-info-heading .mye-section-kicker {
    margin-bottom: 7px;
    font-size: .68rem;
}

.mye-event-info-heading h2 {
    margin: 0 0 7px;
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    font-weight: 800;
}

.mye-event-info-heading p {
    margin: 0;
    font-size: .86rem;
}

.mye-event-type-pill {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid #dcd7ff;
    border-radius: 999px;
    color: var(--mye-primary-dark);
    background: #f4f2ff;
    font-size: .75rem;
    font-weight: 800;
}

.mye-event-info-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, .96fr) minmax(0, .96fr);
    gap: 14px;
}

.mye-event-info-card {
    position: relative;
    min-width: 0;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #e5e3ef;
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 34px rgba(31, 25, 78, .065);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.mye-event-info-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--mye-primary), #8b5cf6, var(--mye-secondary));
}

.mye-event-info-card::after {
    position: absolute;
    z-index: 0;
    top: -52px;
    right: -52px;
    width: 120px;
    height: 120px;
    content: "";
    border-radius: 50%;
    background: rgba(109, 93, 252, .055);
    pointer-events: none;
}

.mye-event-info-card:hover {
    border-color: #d4cff7;
    box-shadow: 0 19px 44px rgba(46, 36, 113, .11);
    transform: translateY(-3px);
}

.mye-event-info-card > * {
    position: relative;
    z-index: 1;
}

.mye-event-info-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}

.mye-event-info-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
    box-shadow: 0 10px 23px rgba(109, 93, 252, .22);
}

.mye-event-info-card--location .mye-event-info-icon {
    background: linear-gradient(135deg, #ec4899, #f973a8);
    box-shadow: 0 10px 23px rgba(236, 72, 153, .19);
}

.mye-event-info-card--contact .mye-event-info-icon {
    background: linear-gradient(135deg, #0f9f86, #14b8a6);
    box-shadow: 0 10px 23px rgba(20, 184, 166, .19);
}

.mye-event-info-card-head > div {
    min-width: 0;
}

.mye-event-info-card-head > div > span {
    display: block;
    margin-bottom: 2px;
    color: var(--mye-muted);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mye-event-info-card-head h3 {
    margin: 0;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.25;
}

.mye-event-date-range {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 9px;
    padding: 13px;
    border: 1px solid #e4e0fb;
    border-radius: 14px;
    background: linear-gradient(135deg, #f6f4ff, #fcfbff);
}

.mye-event-date-range > div {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.mye-event-date-range > div:last-child {
    text-align: right;
}

.mye-event-date-range small,
.mye-event-time-grid small,
.mye-event-info-row small,
.mye-event-organizer-mini small,
.mye-event-contact-actions small {
    color: var(--mye-muted);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.mye-event-date-range strong {
    color: var(--mye-ink);
    font-size: .73rem;
    line-height: 1.35;
}

.mye-event-date-range > i {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: var(--mye-primary);
    background: #fff;
    box-shadow: 0 5px 12px rgba(61, 48, 139, .10);
    font-size: .64rem;
}

.mye-event-time-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 9px;
}

.mye-event-time-grid > div {
    display: grid;
    gap: 4px;
    padding: 10px 8px;
    border: 1px solid #eceaf3;
    border-radius: 12px;
    text-align: center;
    background: #fbfbfd;
}

.mye-event-time-grid strong {
    color: #2f3750;
    font-size: .87rem;
}

.mye-event-info-footnote {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #697188;
    font-size: .69rem;
}

.mye-event-info-footnote i {
    color: var(--mye-primary);
}

.mye-event-info-list {
    display: grid;
    gap: 8px;
}

.mye-event-info-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border: 1px solid #eceaf2;
    border-radius: 12px;
    background: #fbfbfd;
}

.mye-event-info-row > i {
    width: 24px;
    color: var(--mye-secondary);
    text-align: center;
}

.mye-event-info-row > span {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.mye-event-info-row strong {
    overflow-wrap: anywhere;
    color: #333b52;
    font-size: .75rem;
    line-height: 1.35;
}

.mye-event-map-link,
.mye-event-map-note {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 9px 11px;
    border-radius: 12px;
    font-size: .73rem;
    font-weight: 800;
}

.mye-event-map-link {
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6);
    box-shadow: 0 9px 20px rgba(109, 93, 252, .18);
}

.mye-event-map-link:hover,
.mye-event-map-link:focus {
    color: #fff;
    transform: translateY(-1px);
}

.mye-event-map-note {
    justify-content: flex-start;
    color: #665d79;
    border: 1px dashed #dcd7ef;
    background: #f8f7fb;
    font-weight: 600;
}

.mye-event-map-note span {
    overflow-wrap: anywhere;
}

.mye-event-organizer-mini {
    display: grid;
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 9px;
    padding: 11px;
    border: 1px solid #dff1ec;
    border-radius: 14px;
    background: linear-gradient(135deg, #f2fbf8, #fff);
}

.mye-event-organizer-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    color: #087f6c;
    background: #d7f5ec;
}

.mye-event-organizer-mini > span:nth-child(2) {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.mye-event-organizer-mini strong {
    overflow-wrap: anywhere;
    color: #263d38;
    font-size: .77rem;
    line-height: 1.3;
}

.mye-event-organizer-mini > .fa-circle-check {
    color: var(--mye-success);
}

.mye-event-contact-actions {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.mye-event-contact-actions > a {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border: 1px solid #e8e7ef;
    border-radius: 12px;
    color: var(--mye-ink);
    background: #fff;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.mye-event-contact-actions > a:hover {
    border-color: #cce9e2;
    background: #f4fbf9;
    transform: translateX(2px);
}

.mye-event-contact-actions > a > i {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 9px;
    color: #07816d;
    background: #e2f7f1;
    font-size: .72rem;
}

.mye-event-contact-actions > a > span {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.mye-event-contact-actions strong {
    overflow: hidden;
    color: #31394f;
    font-size: .73rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mye-event-contact-empty {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    color: #6b7280;
    background: #f6f7f9;
    font-size: .75rem;
}

.mye-event-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 11px 0 0 !important;
    color: #777f91 !important;
    font-size: .66rem;
    line-height: 1.45;
}

.mye-event-contact-note i {
    margin-top: 2px;
    color: var(--mye-success);
}

@media (max-width: 1100px) {
    .mye-event-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mye-event-info-card--schedule {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .mye-event-info-section {
        margin-top: 28px;
    }

    .mye-event-info-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .mye-event-info-grid {
        grid-template-columns: 1fr;
    }

    .mye-event-info-card--schedule {
        grid-column: auto;
    }

    .mye-event-info-card {
        padding: 18px;
        border-radius: 18px;
    }
}

@media (max-width: 440px) {
    .mye-event-type-pill {
        width: 100%;
        justify-content: center;
    }

    .mye-event-date-range {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .mye-event-date-range > div:last-child {
        text-align: left;
    }

    .mye-event-date-range > i {
        transform: rotate(90deg);
    }

    .mye-event-time-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   PARCOURS PUBLICS — AUTH, CONFIRMATIONS ET VÉRIFICATION
   ====================================================== */

/* Récupération et modification du mot de passe */
.mye-auth-utility {
    padding: 0 !important;
}

.mye-auth-utility-main {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    place-items: start center;
    padding: calc(var(--mye-nav-height) + 22px) 20px 24px;
}

.mye-auth-utility-card {
    width: min(590px, 100%);
    padding: clamp(25px, 4vw, 34px);
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: 28px;
    text-align: center;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 32px 80px rgba(50, 38, 122, .16);
    backdrop-filter: blur(18px);
}

.mye-auth-utility-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 0 auto 13px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 58%, var(--mye-secondary));
    box-shadow: 0 17px 34px rgba(109, 93, 252, .25);
    font-size: 1.15rem;
}

.mye-auth-utility-card .mye-section-kicker {
    justify-content: center;
    margin-bottom: 9px;
    font-size: .68rem;
}

.mye-auth-utility-card .mye-section-kicker::before {
    display: none;
}

.mye-auth-utility-card > h1 {
    margin: 0 0 9px;
    font-size: clamp(1.6rem, 3.5vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
}

.mye-auth-utility-lead,
.mye-auth-card-lead {
    max-width: 490px;
    margin: 0 auto 18px;
    color: var(--mye-copy);
    font-size: .91rem;
    line-height: 1.7;
}

.mye-auth-utility-form {
    display: grid;
    gap: 11px;
    text-align: left;
}

.mye-auth-utility-form .form-control,
.mye-auth-utility .form-control,
.mye-auth-utility .form-select {
    min-height: 54px;
    border: 1px solid #dfe2ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
}

.mye-auth-utility-form .form-control:focus,
.mye-auth-utility .form-control:focus,
.mye-auth-utility .form-select:focus {
    border-color: #bcb4ff;
    box-shadow: 0 0 0 4px rgba(109, 93, 252, .11);
}

.mye-auth-submit {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0 !important;
    border-radius: 14px !important;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 60%, var(--mye-secondary)) !important;
    box-shadow: 0 13px 28px rgba(109, 93, 252, .25);
    font-weight: 800;
}

.mye-form-feedback {
    min-height: 19px;
    margin: -3px 0 0;
    color: #dc2626;
    font-size: .76rem;
    line-height: 1.45;
}

.mye-auth-utility-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid var(--mye-line);
    color: #70798f;
    font-size: .73rem;
}

.mye-auth-utility-help span,
.mye-auth-utility-help a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mye-auth-utility-help span i {
    color: var(--mye-success);
}

.mye-auth-utility-help a {
    color: var(--mye-primary-dark);
    font-weight: 800;
}

.mye-auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    padding: 11px 13px;
    border: 1px solid;
    border-radius: 13px;
    text-align: left;
    font-size: .78rem;
    line-height: 1.5;
}

.mye-auth-alert > i {
    margin-top: 3px;
}

.mye-auth-alert--success {
    color: #087453;
    border-color: #bcebd9;
    background: #edfbf6;
}

.mye-auth-alert--warning {
    color: #8a5407;
    border-color: #fde1a7;
    background: #fff8e8;
}

.mye-auth-alert--error {
    color: #b42332;
    border-color: #f5c4ca;
    background: #fff2f4;
}

.mye-change-page {
    padding: 0 !important;
}

.mye-change-page #layoutAuthentication .col-lg-5 {
    width: min(610px, 100%);
}

.mye-change-page .card-header {
    text-align: center;
}

.mye-change-page .card-header .mye-section-kicker {
    justify-content: center;
    margin-bottom: 9px;
}

.mye-change-page .card-header .mye-section-kicker::before {
    display: none;
}

.mye-change-page .card-header h1::after {
    display: none;
}

.mye-change-page #passwordConditions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 12px;
    margin: 14px 0 0 !important;
    padding: 14px;
    border: 1px solid #e8e6f0;
    border-radius: 14px;
    background: #fafafe;
}

/* Création d’un compte collaborateur */
.mye-join-page #layoutAuthentication {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--mye-nav-height) + 18px) 18px 22px;
}

.mye-join-main {
    width: 100%;
}

.mye-join-page #layoutAuthentication .col-lg-7 {
    width: min(1040px, 100%);
}

.mye-join-card {
    border-radius: 24px !important;
}

.mye-join-card .card-header {
    padding: 21px 28px 8px;
    text-align: center;
}

.mye-join-card .card-header h1 {
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.mye-join-card .mye-auth-card-lead {
    margin-bottom: 0;
    font-size: .84rem;
    line-height: 1.5;
}

.mye-join-card .card-header .mye-section-kicker {
    justify-content: center;
    margin-bottom: 8px;
}

.mye-join-card .card-header .mye-section-kicker::before,
.mye-join-card .card-header h1::after {
    display: none;
}

.mye-join-card .card-body {
    padding: 13px 28px 16px;
}

.mye-join-card .card-footer {
    padding: 8px 28px 13px !important;
    border: 0;
    background: transparent;
}

.mye-join-card .card-footer a {
    font-weight: 700;
}

.mye-join-card .form-group:has(> .mye-auth-submit) {
    margin-top: 0;
}

.mye-join-card .mye-auth-alert {
    margin: 0;
}

@media (min-width: 768px) {
    .mye-join-card form {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 9px 12px;
    }

    .mye-join-card form > .row {
        display: contents;
    }

    .mye-join-card form > .row > [class*="col-"] {
        width: auto;
        padding: 0;
    }

    .mye-join-card form .form-floating,
    .mye-join-card form .mb-3,
    .mye-join-card form .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mye-join-card .form-floating > .form-control,
    .mye-join-card .form-floating > .form-select {
        min-height: 50px;
        height: 50px;
        padding-top: 1.15rem;
        padding-bottom: .25rem;
        font-size: .84rem;
    }

    .mye-join-card .form-floating > label {
        padding: .78rem .75rem;
        font-size: .76rem;
    }

    .mye-join-card form > .col-12 {
        grid-column: 1 / 2;
        display: flex;
        align-items: center;
        min-width: 0;
        padding: 0 2px;
    }

    .mye-join-card form > .form-group:has(> .mye-auth-submit) {
        grid-column: 2 / 4;
    }

    .mye-join-card form > .form-group.text-danger {
        grid-column: 1 / -1;
    }

    .mye-join-card .form-check {
        min-width: 0;
        margin: 0;
        font-size: .74rem;
        line-height: 1.3;
    }

    .mye-join-card .mye-auth-submit {
        min-height: 46px;
    }
}

/* Variantes des cartes de statut */
.mye-status-card--warning .mye-status-icon,
.mye-payment-error-page .mye-status-icon {
    color: #b45309;
    background: #fff1d6;
}

.mye-status-card--success .mye-status-icon,
.mye-program-status-page .mye-status-icon {
    color: #07805e;
    background: #dcf8ee;
}

.mye-status-card strong {
    color: var(--mye-ink);
}

/* Confirmations de réservation */
.mye-booking-result {
    background: #f7f7fc;
}

.mye-booking-result > .container-xxl {
    max-width: none;
    background: transparent !important;
}

.mye-booking-result .container-xxl.position-relative.p-0 > h2:empty {
    display: none;
}

.mye-booking-result-banner {
    display: grid;
    width: min(1120px, calc(100% - 40px));
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    margin: calc(var(--mye-nav-height) + 34px) auto 0;
    padding: 23px 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 0, rgba(236, 72, 153, .32), transparent 34%),
        linear-gradient(135deg, #17132f, #342b72);
    box-shadow: 0 25px 58px rgba(31, 25, 78, .22);
}

.mye-booking-result-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), var(--mye-secondary));
    box-shadow: 0 13px 28px rgba(3, 2, 18, .24);
    font-size: 1.2rem;
}

.mye-booking-result-banner > div > span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .58);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mye-booking-result-banner h1 {
    margin: 0 0 4px;
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 1.95rem);
    font-weight: 800;
}

.mye-booking-result-banner p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: .82rem;
}

.mye-booking-result-state {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid rgba(110, 231, 183, .28);
    border-radius: 999px;
    color: #9ff2d2;
    background: rgba(16, 185, 129, .11);
    font-size: .7rem;
    font-weight: 800;
}

.mye-booking-result-main {
    padding: 34px 0 36px;
}

.mye-booking-result-main > .container {
    width: min(1120px, calc(100% - 40px));
    max-width: none;
}

.mye-booking-result-card {
    padding: clamp(25px, 5vw, 48px);
    border: 1px solid #e3e1ed;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(31, 25, 78, .10);
}

.mye-booking-result-card > .post-title {
    margin-bottom: 18px;
    font-size: clamp(1.65rem, 3.6vw, 2.45rem);
    font-weight: 800;
}

.mye-booking-result-card > hr,
.mye-booking-result-main h5.mt-4 + hr {
    width: 48px;
    height: 3px;
    margin: 11px 0 18px;
    border: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mye-primary), var(--mye-secondary));
    opacity: 1;
}

.mye-booking-result-card .post-meta {
    margin-bottom: 12px;
    padding: 15px 17px;
    border: 1px solid #e9e7f0;
    border-radius: 14px;
    color: #4f586e;
    background: #fafafe;
    line-height: 1.65;
}

.mye-booking-result-main h5.mt-4 {
    margin-top: 34px !important;
    font-size: 1.08rem;
    font-weight: 800;
}

.mye-booking-result-main p:not(.post-meta) {
    color: #515b71;
    line-height: 1.68;
}

.mye-booking-result-main p[style*="font-weight"] {
    margin-bottom: 8px;
    padding: 11px 13px;
    border: 1px solid #eceaf2;
    border-radius: 12px;
    background: #fbfbfd;
    font-weight: 700 !important;
}

.mye-booking-result-main p i,
.mye-booking-result-main .fa-circle-check {
    color: var(--mye-primary) !important;
}

.mye-booking-result-main .tabs-x {
    margin-top: 13px;
    padding: 18px;
    border: 1px solid #e5e2ee;
    border-radius: 17px;
    background: linear-gradient(145deg, #faf9ff, #fff);
}

.mye-booking-result-main .tab-pane > p {
    overflow-wrap: anywhere;
    padding: 10px 12px;
    border: 1px dashed #d9d3f8;
    border-radius: 11px;
    color: var(--mye-primary-dark);
    background: #f4f2ff;
    font-size: .76rem;
}

.mye-booking-result-main .text-black,
.mye-booking-result-main .fa-share {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin: 4px 3px 0;
    place-items: center;
    border: 1px solid #e4e2ec;
    border-radius: 12px;
    color: #515a70 !important;
    background: #fff;
    font-size: 1rem !important;
}

.mye-booking-result-main .btn-primary,
.mye-booking-result > .container-xxl.py-5 .btn-primary {
    border: 0;
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6, var(--mye-secondary));
    box-shadow: 0 12px 26px rgba(109, 93, 252, .23);
    font-weight: 800;
}

/* Résultat de vérification d’une invitation */
.mye-verify-page > .container-xxl {
    max-width: none;
    background: #f7f7fc !important;
}

.mye-verify-hero {
    padding: calc(var(--mye-nav-height) + 54px) 0 70px !important;
    background:
        radial-gradient(circle at 12% 22%, rgba(236, 72, 153, .12), transparent 27%),
        radial-gradient(circle at 88% 18%, rgba(109, 93, 252, .19), transparent 32%),
        linear-gradient(145deg, #fbfaff, #f3f0ff 55%, #fff8fc) !important;
}

.mye-verify-hero .container,
.mye-verify-hero .row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.mye-verify-hero .mye-section-kicker {
    justify-content: center;
}

.mye-verify-hero .mye-section-kicker::before {
    display: none;
}

.mye-verify-hero h1 {
    margin: 5px 0 12px;
    color: var(--mye-ink);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
}

.mye-verify-hero p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.mye-verify-page > .container-xxl > .container-xxl.py-5 {
    padding: 54px 0 95px !important;
}

.mye-verify-page > .container-xxl > .container-xxl.py-5 > .container {
    width: min(1080px, calc(100% - 30px));
    max-width: none;
    padding: 0 !important;
}

.mye-verify-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid #e3e1ec;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 68px rgba(31, 25, 78, .10);
}

.mye-verify-details > .section-title {
    grid-column: 1 / -1;
    margin: 0 0 8px;
    color: var(--mye-primary-dark) !important;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.mye-verify-details > h6 {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    padding: 13px 14px;
    border: 1px solid #e9e7f0;
    border-radius: 13px;
    color: #3f485e;
    background: #fbfbfd;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.mye-verify-details > h6 > i {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 9px;
    color: var(--mye-primary);
    background: var(--mye-primary-soft);
}

@media (max-width: 991px) {
    .mye-verify-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mye-auth-utility-main {
        padding: calc(var(--mye-nav-height-mobile) + 18px) 15px 28px;
    }

    .mye-auth-utility-help {
        align-items: flex-start;
        flex-direction: column;
    }

    .mye-join-page #layoutAuthentication {
        padding: calc(var(--mye-nav-height-mobile) + 14px) 12px 25px;
    }

    .mye-join-card .card-header {
        padding: 22px 20px 7px;
    }

    .mye-join-card .card-body {
        padding: 15px 20px 18px;
    }

    .mye-join-card .card-footer {
        padding: 7px 20px 15px !important;
    }

    .mye-join-card .form-group:has(> .mye-auth-submit) {
        margin-top: 13px;
    }

    .mye-change-page #passwordConditions {
        grid-template-columns: 1fr;
    }

    .mye-booking-result-banner {
        width: min(100% - 24px, 1120px);
        grid-template-columns: auto minmax(0, 1fr);
        margin-top: calc(var(--mye-nav-height-mobile) + 22px);
        padding: 20px;
    }

    .mye-booking-result-state {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .mye-booking-result-main > .container {
        width: min(100% - 24px, 1120px);
    }

    .mye-booking-result-card {
        padding: 24px 18px;
        border-radius: 21px;
    }

    .mye-verify-hero {
        padding: calc(var(--mye-nav-height-mobile) + 38px) 0 54px !important;
    }

    .mye-verify-details {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .mye-auth-utility-card {
        padding: 27px 20px;
        border-radius: 23px;
    }

    .mye-booking-result-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mye-booking-result-icon,
    .mye-booking-result-state {
        margin-inline: auto;
    }

    .mye-booking-result-state {
        grid-column: auto;
    }
}

/* ======================================================
   PORTES D’ENTRÉE — CONNEXION ET CRÉATION DE COMPTE
   Alignées sur la carte compacte de récupération d’accès
   ====================================================== */

.mye-auth-entry-page {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0 !important;
}

.mye-auth-entry-page > .container-xxl,
.mye-auth-entry-page > .container-xxl > .container-xxl {
    max-width: none;
    padding: 0 !important;
    background: transparent !important;
}

.mye-auth-entry-page #layoutAuthentication {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    place-items: start center;
    padding: calc(var(--mye-nav-height) + 20px) 18px 26px;
}

.mye-auth-entry-page #layoutAuthentication > .row {
    width: 100%;
}

.mye-login-entry #layoutAuthentication .col-lg-4 {
    width: min(590px, 100%);
}

.mye-register-entry #layoutAuthentication .col-lg-7 {
    width: min(940px, 100%);
}

.mye-auth-entry-card {
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .92) !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 32px 80px rgba(50, 38, 122, .16) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mye-auth-entry-card .card-header {
    padding: 26px 32px 8px;
    text-align: center;
}

.mye-auth-entry-card .card-header .mye-auth-utility-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    border-radius: 17px;
    font-size: 1.08rem;
}

.mye-auth-entry-card .card-header .mye-section-kicker {
    justify-content: center;
    margin-bottom: 7px;
    font-size: .67rem;
}

.mye-auth-entry-card .card-header .mye-section-kicker::before,
.mye-auth-entry-card .card-header h1::after {
    display: none;
}

.mye-auth-entry-card .card-header h1 {
    margin: 0 0 8px !important;
    font-size: clamp(1.65rem, 3.6vw, 2.2rem);
    line-height: 1.12;
}

.mye-auth-entry-card .mye-auth-card-lead {
    max-width: 600px;
    margin-bottom: 0;
    font-size: .87rem;
    line-height: 1.58;
}

.mye-auth-entry-card .card-body {
    padding: 15px 32px 27px;
}

.mye-auth-benefits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px 16px;
    margin-top: 12px;
    color: #697288;
    font-size: .7rem;
    font-weight: 700;
}

.mye-auth-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mye-auth-benefits i {
    color: var(--mye-success);
}

.mye-auth-entry-card .form-floating > .form-control,
.mye-auth-entry-card .form-floating > .form-select {
    min-height: 54px;
    height: 54px;
    border-width: 1px;
    border-radius: 14px;
    font-size: .88rem;
}

.mye-auth-entry-card .form-floating > label {
    padding: .9rem .75rem;
    font-size: .8rem;
}

.mye-login-form > .form-floating {
    margin-bottom: 10px !important;
}

.mye-login-form #passblock {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 3px !important;
}

.mye-login-form #passblock #reset {
    justify-self: end;
    font-size: .76rem;
}

.mye-login-form #passblock #reset i {
    margin-right: 5px;
}

.mye-login-form #passblock .btn,
.mye-auth-secondary-form .mye-auth-submit {
    width: 100%;
    margin-left: 0;
}

.mye-login-form > .d-flex.text-danger,
.mye-auth-secondary-form > .d-flex.text-danger {
    min-height: 0;
    margin-top: 5px !important;
}

.mye-auth-entry-card .card-footer {
    margin-top: 15px;
    padding-top: 13px !important;
    font-size: .78rem;
}

.mye-auth-entry-card #hourglass {
    margin-top: 11px;
    text-align: center;
}

.mye-auth-entry-card #timer {
    text-align: center;
}

.mye-auth-state-intro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px 13px;
    border: 1px solid #dedaf7;
    border-radius: 14px;
    text-align: left;
    background: linear-gradient(145deg, #f6f4ff, #fff8fc);
}

.mye-auth-state-intro > i {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 12px;
    color: var(--mye-primary);
    background: #ebe8ff;
}

.mye-auth-state-intro h2 {
    margin: 0 0 2px;
    color: var(--mye-ink);
    font-size: .92rem;
    font-weight: 800;
}

.mye-auth-state-intro p {
    margin: 0;
    color: var(--mye-copy);
    font-size: .72rem;
    line-height: 1.45;
}

.mye-auth-secondary-form .form-floating {
    margin-bottom: 10px !important;
}

.mye-auth-secondary-form #passblock {
    margin-top: 12px !important;
}

.mye-profile-validation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.mye-profile-validation-grid > .form-floating {
    margin-bottom: 0 !important;
}

.mye-register-card .card-header {
    padding-bottom: 10px;
}

.mye-register-card .card-body {
    padding-top: 10px;
    padding-bottom: 20px;
}

.mye-register-form > .row {
    margin-bottom: 9px !important;
}

.mye-register-form .form-floating,
.mye-register-form .mb-3,
.mye-register-form .mb-md-0 {
    margin-bottom: 0 !important;
}

.mye-register-form .form-check {
    margin: 6px 0 11px;
    font-size: .76rem;
}

.mye-register-form .form-group:has(> #connexion) {
    margin-top: 0;
}

.mye-register-form #messageregister {
    min-height: 0;
    margin: 7px 0 0;
}

.mye-register-entry #phoneMessage:not(:empty) {
    position: absolute;
    top: calc(100% + 3px);
    right: 0;
    left: 0;
    z-index: 25;
    margin: 0 !important;
    padding: 7px 9px;
    border: 1px solid #f3c4c9;
    border-radius: 9px;
    color: #b42332;
    background: #fff5f6;
    box-shadow: 0 9px 24px rgba(78, 30, 40, .1);
    font-size: .7rem !important;
}

.mye-register-entry #FormVerify {
    margin: 4px auto 24px;
    padding: 22px !important;
}

@media (max-width: 767px) {
    .mye-auth-entry-page #layoutAuthentication {
        padding: calc(var(--mye-nav-height-mobile) + 16px) 12px 26px;
    }

    .mye-auth-entry-card {
        border-radius: 23px !important;
    }

    .mye-auth-entry-card .card-header {
        padding: 23px 20px 7px;
    }

    .mye-auth-entry-card .card-body {
        padding: 14px 20px 22px;
    }

    .mye-auth-benefits {
        gap: 6px 11px;
    }

    .mye-register-form > .row {
        margin-bottom: 0 !important;
    }

    .mye-register-form .form-floating {
        margin-bottom: 10px !important;
    }

    .mye-profile-validation-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-height: 820px) {
    .mye-auth-entry-page #layoutAuthentication {
        padding-top: calc(var(--mye-nav-height) + 12px);
        padding-bottom: 14px;
    }

    .mye-auth-entry-card .card-header {
        padding-top: 18px;
    }

    .mye-auth-entry-card .card-header .mye-auth-utility-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
        border-radius: 14px;
    }

    .mye-register-card .card-header h1 {
        font-size: 1.7rem;
    }

    .mye-register-card .mye-auth-card-lead {
        font-size: .79rem;
        line-height: 1.45;
    }

    .mye-register-card .mye-auth-benefits {
        margin-top: 8px;
    }

    .mye-register-card .card-body {
        padding-top: 7px;
        padding-bottom: 15px;
    }

    .mye-register-card .form-floating > .form-control,
    .mye-register-card .form-floating > .form-select {
        min-height: 50px;
        height: 50px;
    }

    .mye-register-form > .row {
        margin-bottom: 7px !important;
    }
}

/* Mode d’authentification autonome : aucun menu, carte dans le premier écran */
.mye-auth-entry-page.mye-auth-no-nav #layoutAuthentication {
    min-height: 100vh;
    min-height: 100svh;
    place-items: center;
    padding: 14px 16px;
}

.mye-auth-no-nav .mye-login-card {
    width: 100%;
}

.mye-auth-no-nav.mye-login-entry #layoutAuthentication .col-lg-4 {
    width: min(510px, 100%);
}

.mye-auth-no-nav.mye-register-entry #layoutAuthentication .col-lg-7 {
    width: min(1080px, 100%);
}

.mye-auth-no-nav .mye-auth-entry-card {
    border-radius: 24px !important;
    box-shadow: 0 24px 64px rgba(50, 38, 122, .15) !important;
}

.mye-auth-no-nav .mye-auth-entry-card .card-header {
    padding: 17px 26px 6px;
}

.mye-auth-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.mye-auth-brand img {
    width: 118px;
    max-height: 40px;
    object-fit: contain;
}

.mye-auth-no-nav .mye-auth-entry-card .card-header h1 {
    margin-bottom: 4px !important;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.mye-auth-no-nav .mye-auth-entry-card .mye-auth-card-lead {
    font-size: .78rem;
    line-height: 1.4;
}

.mye-auth-no-nav .mye-auth-entry-card .card-body {
    padding: 10px 26px 18px;
}

.mye-auth-no-nav .mye-auth-entry-card .form-floating > .form-control,
.mye-auth-no-nav .mye-auth-entry-card .form-floating > .form-select {
    min-height: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: .82rem;
}

.mye-auth-no-nav .mye-auth-entry-card .form-floating > label {
    padding: .72rem .75rem;
    font-size: .75rem;
}

.mye-auth-no-nav .mye-auth-submit {
    min-height: 46px;
    border-radius: 12px !important;
    font-size: .84rem;
}

.mye-auth-no-nav .mye-login-form > .form-floating {
    margin-bottom: 8px !important;
}

.mye-auth-no-nav .mye-login-form #passblock {
    gap: 7px;
    margin-top: 1px !important;
}

.mye-auth-inline-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid var(--mye-line);
    font-size: .72rem;
    line-height: 1.35;
}

.mye-auth-inline-links a {
    color: var(--mye-primary-dark);
    font-weight: 750;
}

.mye-auth-inline-links a:last-child {
    text-align: right;
}

.mye-auth-no-nav .mye-login-form > .d-flex.text-danger {
    margin-top: 2px !important;
}

.mye-auth-no-nav .mye-login-form #message,
.mye-auth-no-nav .mye-login-form #messagecode {
    margin-top: 3px;
    margin-bottom: 0;
}

.mye-auth-no-nav .mye-register-card .card-header {
    padding-top: 13px;
    padding-bottom: 4px;
}

.mye-auth-no-nav .mye-register-card .card-body {
    padding: 7px 24px 13px;
}

.mye-auth-no-nav .mye-register-card .form-floating > .form-select {
    overflow: hidden;
    padding: 1.12rem 2.15rem .16rem .72rem;
    font-size: .71rem;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mye-auth-no-nav .mye-register-card .form-floating > .form-select + label {
    padding: .66rem .72rem;
    font-size: .68rem;
}

.mye-auth-no-nav .mye-register-card .form-select option {
    font-size: .78rem;
}

.mye-auth-no-nav .mye-register-form .form-check {
    margin: 0;
    font-size: .71rem;
    line-height: 1.25;
}

.mye-auth-no-nav .mye-register-form #messageregister {
    margin: 2px 0 0;
}

.mye-auth-no-nav .mye-register-form .card-footer {
    margin-top: 0;
    padding-top: 7px !important;
    font-size: .72rem;
}

@media (min-width: 992px) {
    .mye-auth-no-nav .mye-register-form {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px 10px;
    }

    .mye-auth-no-nav .mye-register-form > .row {
        display: contents;
    }

    .mye-auth-no-nav .mye-register-form > .row > [class*="col-"] {
        width: auto;
        padding: 0;
    }

    .mye-auth-no-nav .mye-register-form .form-floating,
    .mye-auth-no-nav .mye-register-form .mb-3,
    .mye-auth-no-nav .mye-register-form .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mye-auth-no-nav .mye-register-form > .col-12 {
        grid-column: 2 / 3;
        display: flex;
        align-items: center;
        min-width: 0;
        padding: 0 2px;
    }

    .mye-auth-no-nav .mye-register-form > .form-group:has(> #connexion) {
        grid-column: 3 / 4;
    }

    .mye-auth-no-nav .mye-register-form > .form-group.text-xs {
        grid-column: 1 / -1;
        min-height: 0;
    }

    .mye-auth-no-nav .mye-register-form > .card-footer {
        grid-column: 1 / -1;
    }

    .mye-auth-no-nav .mye-register-form #connexion {
        min-height: 48px;
        margin: 0;
    }
}

@media (max-width: 991px) {
    .mye-auth-entry-page.mye-auth-no-nav #layoutAuthentication {
        place-items: start center;
        padding: 12px;
    }

    .mye-auth-no-nav .mye-register-card .card-body {
        padding: 8px 20px 18px;
    }
}

@media (max-width: 480px) {
    .mye-auth-entry-page.mye-auth-no-nav #layoutAuthentication {
        padding: 9px;
    }

    .mye-auth-no-nav .mye-auth-entry-card .card-header {
        padding: 15px 17px 5px;
    }

    .mye-auth-no-nav .mye-auth-entry-card .card-body {
        padding: 9px 17px 17px;
    }

    .mye-auth-inline-links {
        align-items: flex-start;
        gap: 10px;
        font-size: .68rem;
    }

    .mye-auth-no-nav .mye-register-card .form-floating > .form-select {
        padding-right: 1.9rem;
        font-size: .68rem;
    }
}

/* Changement du mot de passe — alignement sur les pages publiques */
.mye-change-refresh #layoutAuthentication {
    display: block;
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--mye-nav-height, 80px) + 24px) 16px 32px;
}
.mye-change-refresh #layoutAuthentication .container { padding: 0; }
.mye-change-refresh #layoutAuthentication .row { margin: 0; }
.mye-change-refresh #layoutAuthentication .col-lg-5 { padding: 0; width: min(540px, 100%); }
.mye-change-refresh .mye-auth-utility-card {
    width: 100%;
    margin: 0;
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid var(--mye-line, #e6e8f0);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(50,38,122,.10);
}
.mye-change-refresh .card-header { padding: 0; background: transparent; border: 0; }
.mye-change-refresh .card-header h1 {
    font-family: var(--mye-font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(1.45rem, 4vw, 1.85rem);
    line-height: 1.25;
    color: var(--mye-ink, #17213b);
    margin: 0 0 10px;
}
.mye-change-refresh .mye-auth-card-lead { font-size: .9rem; line-height: 1.6; margin-bottom: 22px; }
.mye-change-refresh .card-body { padding: 0; text-align: left; }
.mye-change-refresh .form-floating { position: relative; margin-bottom: 12px !important; }
.mye-change-refresh .form-floating > .form-control { height: 58px; padding-right: 55px; font-size: .95rem; }
.mye-change-refresh .form-floating > label { font-size: .9rem; }
.mye-change-refresh .icon-container { right: 8px; top: 29px; }
.mye-change-refresh .mye-password-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; padding: 0; border: 0; border-radius: 10px;
    color: var(--mye-primary, #6d5dfc); background: transparent; cursor: pointer;
}
.mye-change-refresh .mye-password-toggle:hover { background: #f1efff; }
.mye-change-refresh .mye-password-toggle:focus-visible { outline: 2px solid var(--mye-primary, #6d5dfc); outline-offset: 2px; }
.mye-change-refresh .strength-container { width: 100%; margin: 0; }
.mye-change-refresh .strength-bg { height: 6px; padding: 0; overflow: hidden; border-radius: 8px; background: #eceaf4; }
.mye-change-refresh .strength-bar { height: 6px; }
.mye-change-refresh .strength-text { margin-top: 7px; font-size: .8rem; color: var(--mye-copy, #58627a); }
.mye-change-refresh #passwordConditions { margin-top: 14px !important; padding: 14px; text-align: left; }
.mye-change-refresh .pw-check { font-size: .8rem; line-height: 1.5; gap: 7px; }
.mye-change-refresh .pw-check::before { content: '○'; flex-shrink: 0; font-weight: 700; }
.mye-change-refresh .pw-check.invalid { color: #59647b; }
.mye-change-refresh .pw-check.valid { color: #087453; }
.mye-change-refresh .pw-check.valid::before { content: '✓'; }
.mye-change-refresh .mye-auth-submit { min-height: 50px; font-size: .9rem; }
.mye-change-refresh .mye-auth-submit:disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }
.mye-change-refresh #messagetext { margin-top: 12px; font-size: .85rem; overflow-wrap: anywhere; }
.mye-change-refresh .card-footer { margin-top: 10px; padding: 16px 0 0 !important; background: transparent; border-top: 1px solid var(--mye-line, #e6e8f0); }
.mye-change-refresh .card-footer a { font-size: .85rem; }
@media (max-width: 480px) {
    .mye-change-refresh #layoutAuthentication { padding: calc(var(--mye-nav-height, 80px) + 14px) 12px 22px; }
    .mye-change-refresh #passwordConditions { grid-template-columns: 1fr; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
    .mye-change-refresh .strength-bar { transition: none; }
}


/* ==============================================================
   MYEINVITE — CARTE DE VISITE DIGITALE PUBLIQUE · MOBILE FIRST
   ============================================================== */
.mye-vcard-public-page {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0 0 calc(92px + env(safe-area-inset-bottom));
    color: var(--mye-ink);
    background:
        radial-gradient(circle at 12% -4%, rgba(109, 93, 252, .13), transparent 27%),
        radial-gradient(circle at 100% 4%, rgba(236, 72, 153, .08), transparent 24%),
        var(--mye-surface-alt);
}

.mye-vcard-public-page button,
.mye-vcard-public-page a { -webkit-tap-highlight-color: transparent; }

.mye-vcard-public-shell {
    width: min(100%, 720px);
    margin-inline: auto;
    padding: 10px 10px 26px;
}

.mye-vcard-public-topbar {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 4px 10px;
}

.mye-vcard-public-powered {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    color: var(--mye-ink);
}

.mye-vcard-public-powered-mark {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--mye-primary), #8b5cf6 58%, var(--mye-secondary));
    box-shadow: 0 8px 18px rgba(109, 93, 252, .22);
    font-size: .82rem;
    font-weight: 800;
}

.mye-vcard-public-powered > span:last-child { display: grid; min-width: 0; gap: 1px; }
.mye-vcard-public-powered strong { font-size: .76rem; line-height: 1.1; }
.mye-vcard-public-powered small { color: var(--mye-muted); font-size: .6rem; line-height: 1.2; }

.mye-vcard-public-share-top {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--mye-line);
    border-radius: 13px;
    color: var(--mye-primary-dark);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 8px 20px rgba(17, 24, 44, .06);
    cursor: pointer;
}

.mye-vcard-public-share-top svg,
.mye-vcard-public-page svg { width: 20px; height: 20px; fill: currentColor; }

.mye-vcard-public-profile,
.mye-vcard-public-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 234, 241, .94);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--mye-shadow-sm);
}

.mye-vcard-public-profile { padding: 17px; }
.mye-vcard-public-profile-accent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mye-primary), #8b5cf6 48%, var(--mye-secondary));
}

.mye-vcard-public-orgline { display: flex; align-items: center; gap: 10px; margin-bottom: 17px; padding-top: 2px; }
.mye-vcard-public-org-logo {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    overflow: hidden;
    border: 1px solid #ebe9f8;
    border-radius: 13px;
    color: var(--mye-primary-dark);
    background: #f7f5ff;
    font-size: .69rem;
    font-weight: 800;
}
.mye-vcard-public-org-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.mye-vcard-public-org-copy { display: grid; min-width: 0; gap: 2px; }
.mye-vcard-public-org-name { display: flex; min-width: 0; align-items: center; gap: 6px; }
.mye-vcard-public-org-name strong { overflow: hidden; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.mye-vcard-public-org-copy small { overflow: hidden; color: var(--mye-muted); font-size: .66rem; text-overflow: ellipsis; white-space: nowrap; }
.mye-vcard-public-verified {
    display: grid;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--mye-success);
}
.mye-vcard-public-verified svg { width: 12px; height: 12px; }

.mye-vcard-public-person { display: flex; align-items: center; gap: 15px; }
.mye-vcard-public-avatar-wrap { position: relative; width: 102px; height: 102px; flex: 0 0 102px; }
.mye-vcard-public-avatar {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #fff;
    border-radius: 28px;
    background: #eef0f6;
    box-shadow: 0 13px 30px rgba(45, 36, 105, .16);
}
.mye-vcard-public-online {
    position: absolute;
    right: 1px;
    bottom: 7px;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--mye-success);
}
.mye-vcard-public-person-copy { min-width: 0; }
.mye-vcard-public-kicker {
    display: inline-flex;
    margin-bottom: 5px;
    color: var(--mye-primary-dark);
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.mye-vcard-public-person h1 {
    margin: 0 0 5px;
    overflow-wrap: anywhere;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.04;
}
.mye-vcard-public-role { margin: 0 0 7px !important; color: #3f485e !important; font-size: .84rem; font-weight: 700; line-height: 1.35; }
.mye-vcard-public-department {
    display: inline-flex;
    max-width: 100%;
    padding: 5px 8px;
    overflow: hidden;
    border-radius: 999px;
    color: #5b4aaf;
    background: var(--mye-primary-soft);
    font-size: .62rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mye-vcard-public-add {
    display: flex;
    min-height: 62px;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 10px 12px;
    border-radius: 17px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--mye-primary), #8067fa 58%, #9565f2);
    box-shadow: 0 15px 29px rgba(109, 93, 252, .25);
}
.mye-vcard-public-add-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 12px; background: rgba(255,255,255,.17); }
.mye-vcard-public-add-icon svg { width: 20px; height: 20px; }
.mye-vcard-public-add-copy { display: grid; min-width: 0; flex: 1; gap: 2px; }
.mye-vcard-public-add-copy strong { font-size: .9rem; }
.mye-vcard-public-add-copy small { color: rgba(255,255,255,.76); font-size: .61rem; line-height: 1.35; }
.mye-vcard-public-add-arrow { width: 18px !important; height: 18px !important; fill: none !important; stroke: currentColor; stroke-width: 2.4; }

.mye-vcard-public-quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-top: 13px;
}
.mye-vcard-public-quick > a,
.mye-vcard-public-quick > button {
    display: grid;
    min-width: 0;
    min-height: 65px;
    place-items: center;
    gap: 5px;
    padding: 8px 3px;
    border: 1px solid #ebeaf2;
    border-radius: 15px;
    color: #4b5568;
    background: #fff;
    cursor: pointer;
    font: inherit;
}
.mye-vcard-public-quick > * > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 10px; color: var(--mye-primary-dark); background: var(--mye-primary-soft); }
.mye-vcard-public-quick > * > span.is-whatsapp { color: #047857; background: #dff8ec; }
.mye-vcard-public-quick svg { width: 16px; height: 16px; }
.mye-vcard-public-quick small { overflow: hidden; font-size: .58rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }

.mye-vcard-public-content { display: grid; gap: 10px; margin-top: 10px; }
.mye-vcard-public-card { padding: 16px; }
.mye-vcard-public-section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mye-vcard-public-section-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 12px; color: var(--mye-primary-dark); background: var(--mye-primary-soft); }
.mye-vcard-public-section-icon svg { width: 18px; height: 18px; }
.mye-vcard-public-section-head > div { display: grid; gap: 1px; }
.mye-vcard-public-section-head small { color: var(--mye-primary-dark); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mye-vcard-public-section-head h2 { margin: 0; font-size: .97rem; letter-spacing: -.025em; }

.mye-vcard-public-contact-list { display: grid; gap: 6px; }
.mye-vcard-public-contact-row,
.mye-vcard-public-social-link {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    min-height: 56px;
    align-items: center;
    gap: 10px;
    padding: 8px 7px;
    border-radius: 14px;
    color: var(--mye-ink);
    transition: background-color .18s ease, transform .18s ease;
}
.mye-vcard-public-contact-row + .mye-vcard-public-contact-row { border-top: 1px solid #f0eff5; border-radius: 0; }
.mye-vcard-public-contact-row:hover,
.mye-vcard-public-social-link:hover { color: var(--mye-primary-dark); background: #faf9ff; }
.mye-vcard-public-contact-icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; color: #087e6d; background: #e5f8f3; }
.mye-vcard-public-contact-icon svg { width: 17px; height: 17px; }
.mye-vcard-public-contact-row > span:nth-child(2),
.mye-vcard-public-social-link > span:nth-child(2) { display: grid; min-width: 0; gap: 2px; }
.mye-vcard-public-contact-row small { color: var(--mye-muted); font-size: .6rem; font-weight: 700; }
.mye-vcard-public-contact-row strong { overflow-wrap: anywhere; color: #30384b; font-size: .76rem; line-height: 1.35; }
.mye-vcard-public-row-arrow { width: 16px !important; height: 16px !important; color: #a2a8b6; fill: none !important; stroke: currentColor; stroke-width: 2.3; }

.mye-vcard-public-about-person { margin: 0 !important; color: var(--mye-copy) !important; font-size: .77rem; line-height: 1.62; }
.mye-vcard-public-org-about { display: grid; grid-template-columns: 38px 1fr; gap: 10px; margin-top: 12px; padding: 11px; border-radius: 14px; background: #f8f8fc; }
.mye-vcard-public-org-about-logo { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: var(--mye-primary-dark); background: #fff; font-size: .62rem; font-weight: 800; }
.mye-vcard-public-org-about small { color: var(--mye-ink); font-size: .68rem; font-weight: 800; }
.mye-vcard-public-org-about p { margin: 3px 0 0 !important; color: var(--mye-copy) !important; font-size: .7rem; line-height: 1.5; }

.mye-vcard-public-social-grid { display: grid; grid-template-columns: 1fr; gap: 6px; }
.mye-vcard-public-social-link { border: 1px solid #efedf6; }
.mye-vcard-public-social-icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; color: var(--mye-primary-dark); background: #f4f1ff; }
.mye-vcard-public-social-icon svg { width: 18px; height: 18px; }
.mye-vcard-public-social-link strong { overflow: hidden; color: #30384b; font-size: .73rem; text-overflow: ellipsis; white-space: nowrap; }
.mye-vcard-public-social-link small { color: var(--mye-muted); font-size: .6rem; }

.mye-vcard-public-qr-card { padding: 0; }
.mye-vcard-public-qr-card summary {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
}
.mye-vcard-public-qr-card summary::-webkit-details-marker { display: none; }
.mye-vcard-public-qr-card summary > span:nth-child(2) { display: grid; gap: 1px; }
.mye-vcard-public-qr-card summary small { color: var(--mye-primary-dark); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mye-vcard-public-qr-card summary strong { font-size: .79rem; }
.mye-vcard-public-summary-arrow { width: 16px !important; height: 16px !important; color: #8b90a1; fill: none !important; stroke: currentColor; stroke-width: 2.2; transition: transform .2s ease; }
.mye-vcard-public-qr-card[open] .mye-vcard-public-summary-arrow { transform: rotate(180deg); }
.mye-vcard-public-qr-body { display: grid; justify-items: center; gap: 12px; padding: 0 16px 17px; text-align: center; }
.mye-vcard-public-qr-frame { width: 148px; height: 148px; padding: 8px; border: 1px solid #e8e6f2; border-radius: 18px; background: #fff; box-shadow: 0 10px 25px rgba(17,24,44,.07); }
.mye-vcard-public-qr-frame img { display: block; width: 100%; height: 100%; object-fit: contain; }
.mye-vcard-public-qr-body h3 { margin: 0 0 4px; font-size: .83rem; }
.mye-vcard-public-qr-body p { max-width: 380px; margin: 0 !important; color: var(--mye-muted) !important; font-size: .67rem; line-height: 1.5; }

.mye-vcard-public-footer { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px; padding: 18px 8px 6px; color: var(--mye-muted); font-size: .61rem; text-align: center; }
.mye-vcard-public-footer a { color: var(--mye-primary-dark); font-weight: 800; }

.mye-vcard-public-dock {
    position: fixed;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    z-index: 1090;
    display: grid;
    grid-template-columns: 1.65fr repeat(3, minmax(0, .75fr));
    gap: 5px;
    width: auto;
    max-width: 620px;
    margin-inline: auto;
    padding: 6px;
    border: 1px solid rgba(220, 221, 233, .9);
    border-radius: 19px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 18px 46px rgba(17, 24, 44, .18);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.mye-vcard-public-dock > a,
.mye-vcard-public-dock > button {
    display: grid;
    min-width: 0;
    min-height: 48px;
    place-items: center;
    gap: 2px;
    padding: 5px 3px;
    border: 0;
    border-radius: 13px;
    color: #566079;
    background: transparent;
    cursor: pointer;
    font: inherit;
}
.mye-vcard-public-dock > * svg { width: 18px; height: 18px; }
.mye-vcard-public-dock > * span { font-size: .52rem; font-weight: 800; }
.mye-vcard-public-dock .mye-vcard-public-dock-add { color: #fff; background: linear-gradient(135deg, var(--mye-primary), #8b5cf6); box-shadow: 0 8px 18px rgba(109,93,252,.2); }

.mye-vcard-public-toast {
    position: fixed;
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 1200;
    max-width: 430px;
    margin-inline: auto;
    padding: 11px 14px;
    border-radius: 14px;
    color: #fff;
    background: #182136;
    box-shadow: 0 14px 36px rgba(17,24,44,.2);
    font-size: .72rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}
.mye-vcard-public-toast.is-visible { opacity: 1; transform: translateY(0); }
.mye-vcard-public-toast[data-tone="error"] { background: #a93649; }

@media (max-width: 365px) {
    .mye-vcard-public-shell { padding-inline: 7px; }
    .mye-vcard-public-profile { padding: 14px; }
    .mye-vcard-public-person { gap: 11px; }
    .mye-vcard-public-avatar-wrap { width: 88px; height: 88px; flex-basis: 88px; }
    .mye-vcard-public-person h1 { font-size: 1.32rem; }
    .mye-vcard-public-quick { gap: 5px; }
    .mye-vcard-public-dock { right: 5px; left: 5px; }
}

@media (min-width: 700px) {
    .mye-vcard-public-page { padding-bottom: 42px; }
    .mye-vcard-public-shell { width: min(100% - 32px, 980px); padding-top: 18px; }
    .mye-vcard-public-profile { padding: 23px; border-radius: 28px; }
    .mye-vcard-public-person { gap: 20px; }
    .mye-vcard-public-avatar-wrap { width: 122px; height: 122px; flex-basis: 122px; }
    .mye-vcard-public-person h1 { font-size: 2.15rem; }
    .mye-vcard-public-add { max-width: 500px; }
    .mye-vcard-public-quick { max-width: 500px; }
    .mye-vcard-public-content { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .mye-vcard-public-contact-list { min-height: 0; height: auto; }
    .mye-vcard-public-qr-card[open] .mye-vcard-public-qr-body { grid-template-columns: 148px 1fr; align-items: center; justify-items: start; text-align: left; }
    .mye-vcard-public-dock { display: none; }
    .mye-vcard-public-toast { bottom: 24px; }
}

@media (min-width: 960px) {
    .mye-vcard-public-shell { width: min(100% - 48px, 1060px); }
    .mye-vcard-public-profile { display: grid; grid-template-columns: minmax(0, 1fr) 390px; column-gap: 28px; }
    .mye-vcard-public-profile-accent,
    .mye-vcard-public-orgline { grid-column: 1 / -1; }
    .mye-vcard-public-person { grid-column: 1; grid-row: 2 / span 2; }
    .mye-vcard-public-add { grid-column: 2; grid-row: 2; align-self: end; margin-top: 0; }
    .mye-vcard-public-quick { grid-column: 2; grid-row: 3; align-self: start; margin-top: 9px; }
}

@media (prefers-reduced-motion: no-preference) {
    .mye-vcard-public-profile,
    .mye-vcard-public-card { animation: mye-vcard-rise .42s ease both; }
    .mye-vcard-public-card:nth-child(2) { animation-delay: .05s; }
    .mye-vcard-public-card:nth-child(3) { animation-delay: .1s; }
    @keyframes mye-vcard-rise { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
}


/* Correctif V3.1 — adresse complète sur mobile et desktop */
.mye-vcard-public-contact-row--address {
    min-height: 0;
    align-items: flex-start;
    padding-top: 11px;
    padding-bottom: 11px;
    overflow: visible;
}

.mye-vcard-public-contact-row--address > span:nth-child(2) {
    display: block;
    min-width: 0;
    width: 100%;
    overflow: visible;
}

.mye-vcard-public-contact-row--address strong {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.45;
}

.mye-vcard-public-contact-row--address .mye-vcard-public-row-arrow {
    align-self: center;
}

@media (max-width: 420px) {
    .mye-vcard-public-contact-row--address {
        grid-template-columns: 36px minmax(0, 1fr) 14px;
        gap: 9px;
    }
}

/* Correctif V3.2 — la liste de coordonnées doit contribuer à la hauteur réelle de la carte */
.mye-vcard-public-content > .mye-vcard-public-card:first-child {
    height: auto;
    min-height: 0;
}

.mye-vcard-public-content > .mye-vcard-public-card:first-child .mye-vcard-public-contact-list {
    height: auto;
    min-height: 0;
    overflow: visible;
}

@media (min-width: 700px) {
    .mye-vcard-public-contact-list {
        height: auto;
        min-height: 0;
    }
}
