/* ============================================
   MONASSUR.FR — STYLE UBER-INSPIRED
   Charte: Noir / Blanc / Accent électrique
   ============================================ */

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f6f6f6;
    --gray-100: #eeeeee;
    --gray-200: #e2e2e2;
    --gray-300: #cbcbcb;
    --gray-400: #9b9b9b;
    --gray-500: #6b6b6b;
    --gray-700: #333333;
    --gray-900: #141414;
    --accent: #d6fc51;       /* Accent vert électrique (style moderne) */
    --accent-dark: #b8e332;
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
    --shadow: 0 4px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-lg {
    padding: 18px 32px;
    font-size: 16px;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.btn-ghost {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}
.btn-ghost:hover {
    background: var(--black);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}
.btn-light:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
}

.btn-block {
    width: 100%;
}

/* =========== HEADER =========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.header.scrolled {
    border-bottom-color: var(--gray-100);
    box-shadow: 0 1px 12px rgba(0,0,0,.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--black);
    color: var(--white);
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-weight: 900;
    font-size: 18px;
}
.logo .dot {
    color: var(--accent-dark);
}

/* ---- Navigation principale ---- */
.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}
.nav-main > a,
.nav-dropdown > .nav-trigger {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .2s ease;
    position: relative;
    white-space: nowrap;
}
.nav-main > a:hover,
.nav-dropdown:hover > .nav-trigger {
    color: var(--black);
    background: var(--gray-50);
}
.nav-main > a::after {
    display: none;
}

/* ---- Dropdown ---- */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > .nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav-dropdown > .nav-trigger svg {
    transition: transform .25s ease;
    opacity: .5;
    flex-shrink: 0;
}
.nav-dropdown:hover > .nav-trigger svg {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 8px;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.06);
    transition: all .25s cubic-bezier(.16,1,.3,1);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1001;
    pointer-events: none;
}
/* Hover bridge — prevents menu from closing when moving cursor */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
}
.nav-dropdown:hover > .nav-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: all .15s ease;
    text-decoration: none;
}
.nav-menu a::after { display: none; }
.nav-menu a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .15s ease;
}
.nav-menu a:hover::before {
    opacity: 1;
}
.nav-menu a .menu-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.nav-menu a strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}
.nav-menu a span {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
    line-height: 1.3;
}
.nav-menu a:hover {
    background: var(--gray-50);
}
.nav-menu a:hover strong {
    color: var(--black);
}
.nav-menu a:hover span {
    color: var(--gray-600);
}

/* ---- Header CTA ---- */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .2s ease;
    white-space: nowrap;
}
.phone-link:hover {
    background: var(--gray-50);
    color: var(--black);
}

.client-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    color: var(--black);
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}
.client-link:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}
.client-link svg {
    width: 15px;
    height: 15px;
}

/* ---- Burger ---- */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all .3s ease;
    border-radius: 2px;
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile menu overlay ---- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 90px 24px 40px;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    border-radius: 12px;
    transition: background .15s ease;
}
.mobile-menu a:hover {
    background: var(--gray-50);
}
.mobile-menu .mobile-section {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    padding: 20px 16px 6px;
}
.mobile-menu .mobile-sub a {
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-600);
    padding: 10px 16px 10px 28px;
}
.mobile-menu .mobile-sub a strong {
    font-weight: 600;
    color: var(--black);
}
.mobile-menu .mobile-sub a span {
    font-size: 12px;
    color: var(--gray-400);
    margin-left: 8px;
}
.mobile-menu .mobile-cta {
    margin-top: auto;
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--gray-100);
}
.mobile-menu .mobile-cta a {
    justify-content: center;
}

/* =========== HERO =========== */
.hero {
    padding: 160px 0 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 28px;
}
.pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-title {
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.underline {
    position: relative;
    display: inline-block;
}
.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 18px;
    background: var(--accent);
    z-index: -1;
    transform: skew(-4deg);
}

.hero-sub {
    font-size: 19px;
    color: var(--gray-500);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}
.stat-num {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Hero visual — quote card */
.hero-visual {
    position: relative;
}
.quote-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.quote-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.qc-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.qc-badge {
    background: var(--accent);
    color: var(--black);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}
.toggle:hover {
    background: var(--gray-100);
}
.toggle.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--black);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--black);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 12px;
}

.float-badge {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}
.float-1 {
    top: 20px;
    left: -30px;
    color: #22c55e;
}
.float-2 {
    bottom: 60px;
    right: -20px;
    color: var(--black);
    animation-delay: 1.5s;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-marquee {
    background: var(--black);
    color: var(--white);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--black);
}
.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.marquee-track span:nth-child(even) {
    color: var(--accent);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========== TRUST =========== */
.trust {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}
.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}
.tlogo {
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.tlogo:hover {
    color: var(--black);
}

/* =========== SECTIONS GENERIC =========== */
.section {
    padding: 120px 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    background: var(--gray-50);
    border-radius: 999px;
    margin-bottom: 20px;
}
.eyebrow.light {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
}

.section-title {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.section-title.light {
    color: var(--white);
}

.section-sub {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* =========== PROFILS =========== */
.profils {
    background: var(--gray-50);
}

.profils-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.profil-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}
.profil-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-100);
}

.profil-icon {
    width: 64px;
    height: 64px;
    background: var(--black);
    color: var(--accent);
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
}

.profil-card h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.profil-card p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
}
.profil-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    border-bottom: 2px solid var(--black);
    padding-bottom: 2px;
}
.profil-link:hover {
    border-bottom-color: var(--accent-dark);
    color: var(--accent-dark);
}

/* =========== PRODUCTS =========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--gray-50);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-6px);
}
.product-auto {
    background: var(--black);
    color: var(--white);
}
.product-auto .product-tag {
    background: var(--accent);
    color: var(--black);
}
.product-moto {
    background: var(--accent);
    color: var(--black);
}
.product-moto .product-tag {
    background: var(--black);
    color: var(--white);
}
.product-extra {
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
}
.product-extra .product-tag {
    background: var(--black);
    color: var(--white);
}

.product-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.product-card h3 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}
.product-features li {
    padding: 12px 0;
    border-bottom: 1px solid currentColor;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.85;
    position: relative;
    padding-left: 22px;
}
.product-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 900;
}
.product-auto .product-features li {
    border-color: rgba(255,255,255,.15);
}
.product-moto .product-features li {
    border-color: rgba(0,0,0,.15);
}

.product-auto .btn-primary {
    background: var(--accent);
    color: var(--black);
}
.product-auto .btn-primary:hover {
    background: var(--white);
}
.product-moto .btn-primary {
    background: var(--black);
    color: var(--white);
}

/* =========== PROCESS =========== */
.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    position: relative;
    padding: 40px 0;
    border-top: 2px solid var(--black);
}
.step-num {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}
.step h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.15;
}
.step p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.55;
}

/* =========== ADVANTAGES =========== */
.advantages {
    background: var(--black);
    color: var(--white);
}

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

.adv-intro {
    font-size: 18px;
    color: rgba(255,255,255,.7);
    margin: 24px 0 36px;
    max-width: 460px;
}

.adv-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.adv-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.adv-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.adv-num {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent);
}
.adv-item h4 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.adv-item p {
    font-size: 15px;
    color: rgba(255,255,255,.6);
}

/* =========== TESTIMONIALS =========== */
.testimonials {
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 28px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.avatar {
    width: 44px;
    height: 44px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
}
.testi-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}
.testi-author span {
    font-size: 13px;
    color: var(--gray-400);
}

/* =========== FAQ =========== */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
}
.faq-item summary {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 8px 0;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    transition: var(--transition);
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 16px 0 0;
    color: var(--gray-500);
    font-size: 16px;
    line-height: 1.6;
    max-width: 720px;
}

/* =========== DEVIS SECTION =========== */
.devis-section {
    background: var(--gray-50);
}
.devis-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.devis-info .section-title {
    text-align: left;
}
.devis-info p {
    font-size: 17px;
    color: var(--gray-500);
    margin: 20px 0 32px;
    max-width: 460px;
}
.devis-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.devis-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}
.devis-list svg {
    color: var(--accent-dark);
    flex-shrink: 0;
}

.devis-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-check {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--gray-500);
}
.form-check input {
    margin-top: 3px;
}
.form-check a {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
}

/* =========== CTA FINAL =========== */
.cta-final {
    background: var(--black);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}
.cta-inner {
    max-width: 800px;
}
.cta-final h2 {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.cta-final p {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========== FOOTER =========== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,.7);
    padding: 80px 0 40px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 300px;
}
.footer-brand .logo {
    color: var(--white);
}
.footer-brand .logo-mark {
    background: var(--white);
    color: var(--black);
}
.footer-col h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    color: rgba(255,255,255,.6);
}
.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.socials {
    display: flex;
    gap: 14px;
}
.socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}
.socials a:hover {
    background: var(--accent);
    color: var(--black);
}

/* =========== RESPONSIVE =========== */
/* =========== COMPARE TABLE =========== */
.compare {
    background: var(--white);
}
.compare-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
}
.compare-row:last-child {
    border-bottom: none;
}
.compare-row > div {
    padding: 22px 24px;
}
.compare-head {
    background: var(--black);
    color: var(--white);
}
.compare-col-us {
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
}
.compare-col-other {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,.6);
}
.compare-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}
.compare-cell {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-cell.yes {
    color: #22c55e;
}
.compare-cell.no {
    color: #ef4444;
}
.compare-cell.partial {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 700;
}

/* =========== NUMBERS =========== */
.numbers {
    background: var(--gray-50);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.number-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}
.number-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.big-num {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--black);
    margin-bottom: 16px;
}
.big-num span {
    font-size: 32px;
    color: var(--accent-dark);
}
.number-card h4 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.number-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* =========== DOCUMENTS =========== */
.documents {
    background: var(--white);
}
.docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.doc-item {
    padding: 36px 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}
.doc-item:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-4px);
}
.doc-item:hover h4,
.doc-item:hover p {
    color: var(--white);
}
.doc-item:hover .doc-icon {
    background: var(--accent);
    color: var(--black);
}
.doc-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--white);
    color: var(--black);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.doc-item h4 {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.doc-item p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* =========== INNER PAGES =========== */
.page-hero {
    padding: 180px 0 90px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
}
.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-bottom: 28px;
    position: relative;
}
.breadcrumb a:hover {
    color: var(--accent);
}
.breadcrumb .sep {
    opacity: 0.4;
}
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.page-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 24px;
}
.page-title {
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}
.page-title span {
    color: var(--accent);
}
.page-sub {
    font-size: 19px;
    color: rgba(255,255,255,.7);
    max-width: 560px;
    margin-bottom: 36px;
}
.page-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.page-hero-side {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(20px);
}
.page-hero-side h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.side-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.side-list li {
    display: flex;
    gap: 12px;
    align-items: start;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}
.side-list svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Content blocks */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.content-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    transition: var(--transition);
}
.content-card:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-4px);
}
.content-card:hover h3,
.content-card:hover p {
    color: var(--white);
}
.content-card:hover .cc-num {
    color: var(--accent);
}
.cc-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-300);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}
.content-card h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.content-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.55;
}

/* Formula / Pricing grid */
.formulas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.formula {
    padding: 40px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
    background: var(--white);
}
.formula:hover {
    border-color: var(--black);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.formula.featured {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: scale(1.03);
}
.formula.featured:hover {
    transform: scale(1.03) translateY(-6px);
}
.formula-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.formula h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.formula .price {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 16px 0 4px;
}
.formula .price small {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
}
.formula.featured .price small {
    color: rgba(255,255,255,.5);
}
.formula .price-from {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    font-weight: 700;
    margin-bottom: 20px;
}
.formula ul {
    list-style: none;
    margin: 24px 0;
}
.formula ul li {
    padding: 10px 0;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: start;
    border-bottom: 1px solid var(--gray-100);
}
.formula.featured ul li {
    border-color: rgba(255,255,255,.1);
}
.formula ul li svg {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 3px;
}
.formula ul li.off {
    color: var(--gray-400);
    text-decoration: line-through;
}
.formula ul li.off svg {
    color: var(--gray-300);
}
.formula .btn {
    margin-top: 20px;
    width: 100%;
}
.formula.featured .btn-primary {
    background: var(--accent);
    color: var(--black);
}
.formula.featured .btn-primary:hover {
    background: var(--white);
}

/* Split block */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split-img {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--black), var(--gray-700));
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--white);
}
.split-img.accent {
    background: var(--accent);
    color: var(--black);
}
.split-img svg {
    width: 40%;
    height: 40%;
    opacity: 0.9;
}
.split h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.split p {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.6;
}
.split ul {
    list-style: none;
    margin: 24px 0 32px;
}
.split ul li {
    padding: 12px 0;
    display: flex;
    gap: 12px;
    align-items: start;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}
.split ul li svg {
    color: var(--accent-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .page-hero-grid,
    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-grid,
    .formulas {
        grid-template-columns: 1fr;
    }
    .formula.featured {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .adv-grid,
    .devis-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .profils-grid,
    .products-grid,
    .process-steps,
    .testimonials-grid,
    .numbers-grid,
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .nav-main {
        display: none !important;
    }
    .header-cta .phone-link,
    .header-cta .client-link {
        display: none;
    }
    .burger {
        display: flex;
    }
    .compare-row {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
    .compare-row > div {
        padding: 16px 14px;
    }
    .compare-label {
        font-size: 13px;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 20px;
    }
    .section {
        padding: 80px 0;
    }
    .hero {
        padding-top: 120px;
    }
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    .stat-num {
        font-size: 28px;
    }
    .profils-grid,
    .products-grid,
    .process-steps,
    .testimonials-grid,
    .numbers-grid,
    .docs-grid {
        grid-template-columns: 1fr;
    }
    .big-num {
        font-size: 56px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .marquee-track {
        font-size: 24px;
    }
    .header-inner {
        gap: 10px;
    }
    .devis-form {
        padding: 28px 22px;
    }
    .float-badge {
        display: none;
    }
}

/* ============================================
   WIZARD DEVIS — formulaire multi-étapes
   ============================================ */
.wizard-page {
    background: #fafafa;
}
.wizard-section {
    padding: 60px 0 100px;
}
.wizard-header-block {
    text-align: center;
    margin-bottom: 40px;
}
.wizard-header-block .eyebrow {
    display: inline-block;
    background: #000;
    color: #d6fc51;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 18px;
}
.wizard-header-block h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 14px;
    font-weight: 900;
}
.wizard-header-block p {
    font-size: 17px;
    color: #666;
    margin: 0;
}

/* Progress bar */
.wizard-progress {
    max-width: 900px;
    margin: 0 auto 40px;
}
.wizard-progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 24px;
}
.wizard-progress-fill {
    height: 100%;
    background: #000;
    border-radius: 999px;
    transition: width .4s cubic-bezier(.4,0,.2,1);
}
.wizard-steps-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.wizard-step-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 6px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #eee;
    cursor: not-allowed;
    transition: all .2s ease;
}
.wizard-step-pill span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.wizard-step-pill b {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.wizard-step-pill.active {
    border-color: #000;
    background: #000;
}
.wizard-step-pill.active span {
    background: #d6fc51;
    color: #000;
}
.wizard-step-pill.active b {
    color: #fff;
}
.wizard-step-pill.done {
    border-color: #000;
    cursor: pointer;
}
.wizard-step-pill.done span {
    background: #000;
    color: #d6fc51;
}
.wizard-step-pill.done b {
    color: #000;
}

/* Form container */
.wizard-form {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 30px 80px -40px rgba(0,0,0,.15);
}
.wizard-step {
    display: none;
    animation: wizardFade .35s ease;
}
.wizard-step.active {
    display: block;
}
@keyframes wizardFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.wizard-step-head {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.wizard-step-head h2 {
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: -.6px;
}
.wizard-step-head p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.wizard-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #333;
    margin: 24px 0 12px;
}

/* Cards (radio en cards) */
.wizard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}
.wizard-cards-lg {
    grid-template-columns: repeat(3, 1fr);
}
.wizard-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 14px;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 14px;
    cursor: pointer;
    transition: all .2s ease;
    text-align: center;
}
.wizard-card:hover {
    border-color: #000;
    transform: translateY(-2px);
}
.wizard-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.wizard-card svg {
    width: 32px;
    height: 32px;
    color: #000;
}
.wizard-card span {
    font-weight: 600;
    font-size: 14px;
}
.wizard-card .card-title {
    font-size: 15px;
    font-weight: 700;
}
.wizard-card .card-sub {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}
.wizard-card.selected,
.wizard-card input:checked + svg,
.wizard-card:has(input:checked) {
    border-color: #000;
    background: #000;
    color: #fff;
}
.wizard-card:has(input:checked) svg {
    color: #d6fc51;
}
.wizard-card:has(input:checked) .card-sub {
    color: #d6fc51;
}

/* Inputs */
.wizard-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.wizard-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.wizard-group {
    position: relative;
    margin-bottom: 16px;
}
.wizard-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}
.wizard-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: all .2s ease;
}
.wizard-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}
textarea.wizard-input {
    resize: vertical;
    min-height: 80px;
}
.wizard-invalid {
    border-color: #e53935 !important;
    background: #fff5f5 !important;
}
.wizard-invalid-cards .wizard-card {
    border-color: #e53935;
}

/* Conditional zones */
.wizard-conditional {
    background: #fafafa;
    border-left: 3px solid #d6fc51;
    padding: 18px 20px;
    border-radius: 0 12px 12px 0;
    margin: 4px 0 20px;
}
.wizard-hint {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px;
    font-style: italic;
}

/* Checks */
.wizard-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 8px 0 20px;
}
.wizard-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all .2s ease;
}
.wizard-check:hover {
    border-color: #000;
}
.wizard-check input {
    width: 18px;
    height: 18px;
    accent-color: #000;
}
.wizard-check:has(input:checked) {
    background: #000;
    color: #fff;
    border-color: #000;
}
.wizard-checks-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.wizard-summary-box {
    background: #d6fc51;
    color: #000;
    padding: 18px 22px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
}

/* Navigation */
.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}
.wizard-nav-info {
    font-size: 13px;
    color: #666;
}
.wizard-nav-info strong {
    color: #000;
    font-size: 18px;
}

.wizard-error-tip {
    position: absolute;
    bottom: -22px;
    left: 0;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    animation: wizardFade .2s ease;
}

/* Responsive */
@media (max-width: 900px) {
    .wizard-form {
        padding: 32px 24px;
        border-radius: 18px;
    }
    .wizard-cards,
    .wizard-cards-lg {
        grid-template-columns: repeat(2, 1fr);
    }
    .wizard-row,
    .wizard-row-3 {
        grid-template-columns: 1fr;
    }
    .wizard-checks {
        grid-template-columns: 1fr;
    }
    .wizard-steps-list {
        grid-template-columns: repeat(6, 1fr);
        gap: 4px;
    }
    .wizard-step-pill b {
        display: none;
    }
    .wizard-step-pill {
        padding: 10px 4px;
    }
    .wizard-step-head h2 {
        font-size: 22px;
    }
}

@media (max-width: 500px) {
    .wizard-cards {
        grid-template-columns: 1fr 1fr;
    }
    .wizard-nav .btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* ============================================
   DYNAMIC PAGE CONTENT (CMS)
   Classes used by TinyMCE templates + page.php
   ============================================ */
.page-content {
    padding: 60px 0 80px;
}
.page-content h1 { font-size: 2.2em; font-weight: 800; margin: 40px 0 16px; }
.page-content h2 { font-size: 1.6em; font-weight: 700; margin: 36px 0 14px; }
.page-content h3 { font-size: 1.25em; font-weight: 700; margin: 28px 0 12px; }
.page-content h4 { font-size: 1.05em; font-weight: 600; margin: 24px 0 10px; }
.page-content p { line-height: 1.8; margin-bottom: 18px; color: var(--gray-600); }
.page-content a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--accent); }
.page-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.page-content ul, .page-content ol { margin: 16px 0 24px 24px; line-height: 1.8; color: var(--gray-600); }
.page-content li { margin-bottom: 6px; }
.page-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    font-style: italic;
    background: var(--gray-50);
    border-radius: 0 8px 8px 0;
}
.page-content table {
    width: 100%; border-collapse: collapse; margin: 24px 0;
}
.page-content table th, .page-content table td {
    border: 1px solid var(--gray-200);
    padding: 10px 14px;
    text-align: left;
}
.page-content table th {
    background: var(--black); color: var(--white); font-weight: 600;
}
.page-content table tr:nth-child(even) { background: var(--gray-50); }
.page-content .highlight {
    background: var(--accent); padding: 2px 6px; border-radius: 4px; font-weight: 600;
}
.page-content .section {
    padding: 40px 0;
}
.page-content .grid-2 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 24px 0;
}
.page-content .grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 24px 0;
}
.page-content .card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--gray-200);
}
.page-content .card h3 { margin-top: 0; }
.page-content .faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}
.page-content .faq-item h3 { margin-top: 0; margin-bottom: 8px; }
.page-content .faq-item p { margin-bottom: 0; }

@media (max-width: 768px) {
    .page-content .grid-2,
    .page-content .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .page-content { padding: 40px 0 60px; }
}
