:root {
    --lewis-rose: #E0528B;
    --lewis-pink: #E0528B;
    --lewis-black: #050505;
    --lewis-dark: #121212;
    --lewis-white: #FFFFFF;
    --lewis-text: #FFFFFF;
    --lewis-gray: #A0A0A0;
    --lewis-light-gray: #1A1A1A;
    --lewis-border-radius: 20px;
    --lewis-pill: 50px;
}

body.audit-page {
    background-color: var(--lewis-black);
    color: var(--lewis-white);
    font-family: 'fieldwork', sans-serif;
    overflow-x: hidden;
}

/* Global Typography Overrides for Dark Theme */
body.audit-page h1,
body.audit-page h2,
body.audit-page h3,
body.audit-page h4,
body.audit-page h5,
body.audit-page h6 {
    color: var(--lewis-white);
}

body.audit-page p,
body.audit-page span,
body.audit-page li {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Audit — Premium Dark (inspired by homepage) */
body.audit-page .hero-audit {
    min-height: 100vh;
    padding: 200px 0 100px;
    background: #050505 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Override generic section white backgrounds from style.css */
body.audit-page section {
    background: transparent !important;
}

body.audit-page section:nth-child(even) {
    background: transparent !important;
}

/* Animated gradient pulse — same as homepage */
body.audit-page .hero-audit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 82, 139, 0.08) 0%, transparent 50%);
    animation: auditGradientPulse 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes auditGradientPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-10%, -10%) scale(1.1);
        opacity: 0.8;
    }
}

/* Tech grid overlay — drifting lines */
body.audit-page .hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    animation: auditGridDrift 20s linear infinite;
    pointer-events: none;
}

@keyframes auditGridDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 50px;
    }
}

/* Radial glows — depth and color */
body.audit-page .hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

body.audit-page .hero-glow-1 {
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(224, 82, 139, 0.12) 0%, transparent 70%);
}

body.audit-page .hero-glow-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 60, 180, 0.08) 0%, transparent 70%);
}

/* Content z-index */
.hero-audit .container {
    position: relative;
    z-index: 2;
}

/* Sur-titre badge */
.sur-titre {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(224, 82, 139, 0.12);
    border: 1px solid rgba(224, 82, 139, 0.25);
    border-radius: 50px;
    color: var(--lewis-rose);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Hero title */
.hero-audit h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    margin-bottom: 25px;
    color: white;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

/* Hero subtitle */
.hero-audit .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Hero badges — glassmorphic */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.audit-badge {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 32px;
    border-radius: 16px;
    text-align: center;
    min-width: 180px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.audit-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 82, 139, 0.4);
    background: rgba(224, 82, 139, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.audit-badge span {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.audit-badge h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.audit-badge p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

/* Form Container */
.form-section {
    padding: 100px 0;
    /* Increased padding to give more breathing room */
    background: transparent;
    position: relative;
    z-index: 10;
}

#auditFormSection {
    position: relative;
    /* Aesthetic Upgrade: Side glow for the form section */
}

#auditFormSection::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(150, 80, 180, 0.04), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#auditFormSection::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(224, 82, 139, 0.04), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.audit-form-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Ensure form is above glows */
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--lewis-border-radius);
    border: 1px solid rgba(224, 82, 139, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 50px rgba(224, 82, 139, 0.15),
        0 20px 80px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 60px 50px;
    position: relative;
    z-index: 10;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.progress-wrapper {
    margin-bottom: 40px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E0528B 0%, #ff7eb3 100%);
    box-shadow: 0 0 15px rgba(224, 82, 139, 0.6);
    border-radius: 10px;
    width: 11.11%;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s forwards;
    scroll-margin-top: 120px;
    flex: 1;
    flex-direction: column;
}

.form-step.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 30px;
}

.section-indicator {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lewis-rose);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-indicator::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--lewis-rose);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--lewis-rose);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(224, 82, 139, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(224, 82, 139, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(224, 82, 139, 0);
    }
}

.step-header h3 {
    font-family: 'fieldwork', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--lewis-rose);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-header .question {
    font-family: 'fieldwork', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--lewis-white);
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container textarea {
    width: 100%;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--lewis-white);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    margin-bottom: 20px;
    font-family: inherit;
    box-sizing: border-box;
}

.form-container input:focus,
.form-container input[type="tel"]:focus,
.form-container textarea:focus {
    outline: none;
    border-color: var(--lewis-rose);
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 0 4px rgba(224, 82, 139, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Intl-tel-input Overrides */
.iti {
    width: 100%;
    margin-bottom: 20px;
}

.form-container .iti input[type="tel"] {
    margin-bottom: 0;
    padding-left: 95px !important;
}

.iti__flag-container {
    z-index: 10;
}

.iti__selected-flag {
    background-color: transparent !important;
    padding: 0 15px !important;
    border-radius: 12px 0 0 12px;
}

.iti__selected-flag:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.iti__country-list {
    background-color: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: var(--lewis-white) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.iti__divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Custom Options Buttons */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.option-btn.full-width {
    grid-column: 1 / -1;
}

.option-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 20px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
    font-family: inherit;
    color: var(--lewis-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(224, 82, 139, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.option-btn.selected {
    background: rgba(224, 82, 139, 0.15);
    color: white;
    border-color: var(--lewis-rose);
    box-shadow:
        0 10px 25px rgba(224, 82, 139, 0.2),
        inset 0 0 15px rgba(224, 82, 139, 0.1);
    transform: translateY(-2px);
    font-weight: 600;
}

/* Checkbox style */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.checkbox-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.checkbox-item input {
    display: none;
}

.checkbox-item label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    font-weight: 500;
    color: var(--lewis-white);
    text-align: center;
    box-sizing: border-box;
}

.checkbox-item label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(224, 82, 139, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.checkbox-item input:checked+label {
    border-color: var(--lewis-rose);
    background: rgba(224, 82, 139, 0.15);
    color: white;
    font-weight: 600;
    box-shadow:
        0 10px 25px rgba(224, 82, 139, 0.2),
        inset 0 0 15px rgba(224, 82, 139, 0.1);
    transform: translateY(-2px);
}

.checkbox-item.full-width {
    grid-column: 1 / -1;
}

#auditForm {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 500px;
    /* Reduced base min-height to pull buttons closer */
}

/* Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    /* Fixed margin instead of auto to stay near content */
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-prev {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 16px 35px;
    border-radius: var(--lewis-pill);
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(5px);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateX(-3px);
}

.btn-next {
    background: linear-gradient(135deg, #E0528B 0%, #ff7eb3 100%);
    border: none;
    color: white;
    padding: 16px 50px;
    border-radius: var(--lewis-pill);
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: inherit;
    box-shadow: 0 10px 20px rgba(224, 82, 139, 0.25);
    letter-spacing: 0.5px;
}

.btn-next:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(224, 82, 139, 0.4);
    background: linear-gradient(135deg, #f0629b 0%, #ff8ec3 100%);
}

.encouragement {
    color: var(--lewis-rose);
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    height: 24px;
}

.final-screen {
    text-align: center;
    display: none;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.final-screen.active {
    display: flex;
}

.check-icon {
    font-size: 4rem;
    color: var(--lewis-rose);
    margin-bottom: 20px;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--lewis-rose);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.dynamic-text {
    color: var(--lewis-rose);
    font-weight: 600;
    font-size: 1.1rem;
    height: 30px;
    margin-bottom: 40px;
    transition: opacity 0.3s;
}

/* Result Status Badges */
.status-red {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    border-color: rgba(255, 77, 77, 0.3);
}

.status-yellow {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
    border-color: rgba(255, 204, 0, 0.3);
}

.status-green {
    color: #00ff99;
    background: rgba(0, 255, 153, 0.1);
    border-color: rgba(0, 255, 153, 0.3);
}

.info-form-grid {
    display: grid;
    gap: 15px;
    margin-top: 25px;
}

.info-form-grid input {
    margin-bottom: 0 !important;
}

/* Sections below form */
body.audit-page .section-how {
    background: var(--lewis-black) !important;
    color: white !important;
    padding: 100px 0 60px;
}

.section-how h2,
.section-report h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.how-card {
    text-align: center;
}

.how-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lewis-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(224, 82, 139, 0.1);
}

/* FAQ - Premium Enhancement */
body.audit-page .faq-section {
    background: var(--lewis-black) !important;
    color: var(--lewis-white) !important;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.faq-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(224, 82, 139, 0.1);
    color: var(--lewis-rose);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.decor-1 {
    top: -10%;
    left: -10%;
    background: var(--lewis-rose);
}

.decor-2 {
    bottom: -10%;
    right: -10%;
    background: #4A90E2;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.i-slack {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.i-notion {
    top: 70%;
    left: 10%;
    animation-delay: 1s;
}

.i-hubspot {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

.i-make {
    top: 80%;
    right: 10%;
    animation-delay: 3s;
}

body.audit-page .faq-item {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(5px);
    margin-bottom: 15px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

body.audit-page .faq-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(224, 82, 139, 0.4) !important;
    transform: translateX(10px);
}

body.audit-page .faq-question {
    padding: 24px 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    color: white !important;
    background: transparent !important;
    border: none !important;
}

body.audit-page .faq-answer {
    padding: 0 30px 24px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    color: var(--lewis-rose);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Scroll reveal helper */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Secondary */
.cta-box {
    background-color: var(--lewis-black);
    /* Aesthetic Upgrade: Very subtle bottom/side glow */
    background-image:
        radial-gradient(circle at 0% 50%, rgba(224, 82, 139, 0.03), transparent 40%),
        radial-gradient(circle at 100% 50%, rgba(150, 80, 180, 0.03), transparent 40%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.btn-white {
    background: var(--lewis-rose);
    color: white;
    padding: 18px 45px;
    border-radius: var(--lewis-pill);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(224, 82, 139, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(224, 82, 139, 0.4);
}

/* Report Section */
.section-report {
    padding: 120px 0;
    background: var(--lewis-black) !important;
    color: white !important;
}

.report-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.report-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
}

.report-list {
    list-style: none;
    padding: 0;
}

.report-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1.1rem;
}

.report-preview-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.report-document-mockup {
    width: 240px;
    height: 330px;
    background: #FFFFFF;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    padding: 30px;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.report-document-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.mockup-header {
    height: 12px;
    background: var(--lewis-rose);
    width: 50%;
    margin-bottom: 30px;
    border-radius: 2px;
}

.mockup-line {
    height: 6px;
    background: #F0F0F0;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 2px;
}

.mockup-line.short {
    width: 80%;
}

.mockup-footer {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

/* Section Human CTA - Premium Redesign */
.section-human-cta {
    padding: 100px 0;
    background: var(--lewis-black);
    position: relative;
    overflow: hidden;
}

.human-cta-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.human-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 82, 139, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.human-cta-content {
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(224, 82, 139, 0.1);
    color: var(--lewis-rose);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.human-cta-content h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    text-align: left;
    color: white;
}

.human-cta-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

.human-cta-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.human-cta-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.visual-circle.main {
    width: 200px;
    height: 200px;
    background: var(--lewis-rose);
    opacity: 0.2;
    animation: pulseGlow 4s infinite alternate;
}

.visual-circle.secondary {
    width: 150px;
    height: 150px;
    background: #4A90E2;
    opacity: 0.1;
    top: 20%;
    left: 20%;
    animation: pulseGlow 6s infinite alternate-reverse;
}

@keyframes pulseGlow {
    from {
        transform: scale(1) translate(0, 0);
        opacity: 0.1;
    }

    to {
        transform: scale(1.2) translate(10px, 10px);
        opacity: 0.2;
    }
}

.visual-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 220px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    transform: rotate(5deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.human-cta-card:hover .visual-card {
    transform: rotate(0deg) scale(1.05);
}

.card-line {
    height: 10px;
    background: #f0f0f0;
    margin-bottom: 15px;
    border-radius: 5px;
    width: 100%;
}

.card-line.short {
    width: 60%;
}

.card-status {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #27ae60;
}

.card-status::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #27ae60;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



.confidentiel-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--lewis-rose);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
}



/* Responsive */
@media (max-width: 992px) {
    .human-cta-card {
        padding: 50px 30px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .human-cta-content h2 {
        text-align: center;
        font-size: 2.5rem;
    }

    .human-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .human-cta-actions {
        justify-content: center;
    }

    .human-cta-visual {
        grid-template-columns: 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .hero-audit {
        padding-top: 120px;
    }

    .hero-audit h1 {
        font-size: 2.2rem;
    }

    .form-container {
        padding: 30px 20px;
        margin: 40px auto;
        border-width: 1px;
    }

    .form-section {
        padding: 40px 0;
    }

    .report-container,
    .options-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .form-nav {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .btn-next,
    .btn-prev {
        width: 100%;
        padding: 18px;
        text-align: center;
        justify-content: center;
    }

    .hero-audit h1 {
        font-size: 2.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .form-container {
        width: 90%;
    }
}