.elementor-34547 .elementor-element.elementor-element-b52ac35{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS *//* ----- DESIGN TOKENS ----- */
:root {
    /* Color Palette */
    --color-primary: #fbc531;
    /* Bright Yellow CTA */
    --color-primary-hover: #e1b12c;
    --color-primary-text: #2f3640;

    --color-bg-body: #fdfbf7;
    /* Warm off-white */
    --color-bg-dark: #1e3c31;
    /* Deep Olive Green */
    --color-bg-light: #f1f4ec;
    /* Very light green */
    --color-bg-white: #ffffff;

    --color-text-main: #2d3436;
    --color-text-muted: #636e72;
    --color-text-light: #ffffff;

    --color-accent: #e84118;
    /* Urgent / Warning */
    --color-accent-light: #ff6b6b;
    --color-success: #27ae60;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(251, 197, 49, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ----- UTILITIES ----- */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-text-light);
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.section {
    padding: var(--space-lg) 0;
}

.bg-white {
    background-color: var(--color-bg-white);
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3 {
    color: var(--color-text-light);
}

/* ----- COMPONENTS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-primary-text) !important;
    box-shadow: var(--shadow-md);
    padding: 1.2rem 2rem;
    font-size: 1.15rem;
    width: 100%;
    max-width: 100%;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover) !important;
    color: var(--color-primary-text) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-bg-dark);
    border: 2px solid var(--color-bg-dark);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    width: 100%;
}

.btn-secondary:hover {
    background-color: rgba(30, 60, 49, 0.05);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text-main);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.btn-outline:hover {
    border-color: var(--color-bg-dark);
    background-color: rgba(0, 0, 0, 0.02);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 197, 49, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(251, 197, 49, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 197, 49, 0);
    }
}

.pulse {
    animation: pulse 2.5s infinite;
}

/* ----- CONFIRM BANNERS & HEADERS ----- */
.top-notice {
    background-color: var(--color-success);
    color: white;
    text-align: center;
    padding: 0.8rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.header-section {
    padding: var(--space-lg) 0 var(--space-md);
    text-align: center;
}

.header-section h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-section p.subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ----- MEETING INFO CARD ----- */
.meeting-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    margin-top: 2rem;
    border-top: 5px solid var(--color-bg-dark);
    text-align: left;
}

.meeting-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-bg-dark);
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.microcopy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* ----- VIDEO SECTION ----- */
.video-section {
    padding: var(--space-md) 0 var(--space-lg);
}

.video-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid white;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #1e3c31, #2d3436);
    color: white;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    padding-left: 5px;
    /* Visual center for play icon */
}

.play-button:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

/* ----- VALUE PROMISE ----- */
.value-list {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.value-list h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-success);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.value-text {
    font-size: 1.15rem;
    line-height: 1.4;
    padding-top: 4px;
}

.value-summary {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ----- 3 CONDITIONS ----- */
.conditions-section {
    background-color: var(--color-bg-light);
    padding: var(--space-lg) 0;
}

.conditions-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.condition-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    align-items: flex-start;
    transition: var(--transition-fast);
}

.condition-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.condition-number {
    width: 40px;
    height: 40px;
    background: var(--color-bg-dark);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.condition-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.condition-content p {
    color: var(--color-text-muted);
    margin-bottom: 0;
    font-size: 1rem;
}

/* ----- RULES / URGENT ----- */
.rule-box {
    background: rgba(232, 65, 24, 0.05);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    margin: var(--space-lg) 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(232, 65, 24, 0.1);
}

.rule-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-accent);
}

.rule-box h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rule-box .rule-main {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.rule-box .rule-sub {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ----- CHECKLIST ----- */
.checklist-section {
    padding: var(--space-md) 0;
}

.checklist-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.checklist-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.checklist-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checklist-info h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.checklist-info p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.checklist-action {
    flex-shrink: 0;
}

/* Custom list items for "Préparer votre environnement" */
.env-list {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.env-list li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.env-list li::before {
    content: "•";
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
}

/* ----- FAQ ----- */
.faq-section {
    background: white;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-bg-dark);
}

.faq-item p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ----- REMINDER BANNER ----- */
.reminder-banner {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ----- MEDIA QUERIES ----- */
@media (max-width: 768px) {
    .checklist-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .checklist-action {
        width: 100%;
    }

    .checklist-action .btn {
        width: 100%;
    }

    .env-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .meeting-details {
        grid-template-columns: 1fr;
    }

    .rule-box {
        padding: 2rem 1.5rem;
    }
}/* End custom CSS */