/* ===== VARIABLES ===== */
:root {
    --green-50: #f0fdf0;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --primary-bg: #f8faf8;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-light: #7a7a8a;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); line-height: 1.3; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-outline, .btn-white, .btn-outline-white, .btn-primary-sm, .btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    font-size: 0.95rem;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46,125,50,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    font-size: 0.95rem;
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 14px 32px;
    font-size: 0.95rem;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    font-size: 0.95rem;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-primary-sm {
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.85rem;
    border-color: var(--primary);
}
.btn-primary-sm:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-sm {
    background: transparent;
    color: var(--primary);
    padding: 6px 20px;
    font-size: 0.8rem;
    border-color: var(--green-200);
    border-radius: 50px;
}
.btn-outline-sm:hover {
    border-color: var(--primary);
    background: var(--green-50);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 40px;
    flex-shrink: 0;
}
.header .logo .logo-img {
    height: 45px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: inline-block !important;
}
.logo-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a3a6b;
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.logo-text span { color: var(--primary); }
.logo-slogan {
    font-size: 0.6rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-top: 6px;
    white-space: nowrap;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--green-50);
}

.has-dropdown {
    position: relative;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    border-radius: 8px;
    color: var(--text-body);
}
.dropdown a:hover {
    background: var(--green-50);
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, #f0fdf4 0%, #e8f5e9 25%, #f0fdf4 50%, #ecfdf5 100%);
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,125,50,0.06) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(46,125,50,0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(46,125,50,0.15);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.trust-separator {
    width: 1px;
    height: 24px;
    background: var(--gray-300);
}

/* Hero Form Card */
.hero-visual { position: relative; justify-self: center; }

.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 380px;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.hero-form-card.wizard-highlight {
    box-shadow: 0 0 0 4px rgba(46,125,50,0.25), var(--shadow-xl);
    border-color: var(--primary);
}

.hero-form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

/* Wizard progress */
.wizard-progress {
    height: 4px;
    background: var(--gray-100);
    position: relative;
}
.wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--green-400));
    transition: width 0.4s ease;
    border-radius: 0 2px 2px 0;
}
.wizard-steps-label {
    position: absolute;
    right: 16px;
    top: 8px;
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Wizard body */
.wizard-body {
    padding: 20px 22px 14px;
    min-height: 252px;
    position: relative;
    overflow: hidden;
}
.wizard-step {
    display: none;
    animation: wizardFadeIn 0.3s ease;
}
.wizard-step.active { display: block; }
@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.wizard-question {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

/* Wizard choices */
.wizard-choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wizard-choice input { display: none; }
.wizard-choice-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-50);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
}
.wizard-choice-card:hover {
    border-color: var(--primary);
    background: var(--green-50);
}
.wizard-choice input:checked + .wizard-choice-card {
    border-color: var(--primary);
    background: var(--green-50);
    color: var(--primary-dark);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

/* Wizard form fields */
.wizard-step .form-group {
    margin-bottom: 12px;
}
.wizard-step .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.wizard-step .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-50);
}
.wizard-step .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
    background: var(--white);
}
.wizard-step .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.input-suffix {
    position: relative;
}
.input-suffix .form-control {
    padding-right: 38px;
}
.input-suffix .suffix {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    pointer-events: none;
}

.wizard-step .form-group.optional label::after {
    content: " (facultatif)";
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.7rem;
}

/* Wizard summary */
.wizard-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    padding: 12px;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--green-200);
}
.wizard-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-body);
}
.wizard-summary-item strong {
    color: var(--primary-dark);
}

/* Wizard footer */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 22px 14px;
}
.wizard-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50px;
    transition: var(--transition);
    font-family: inherit;
}
.wizard-btn-back:hover { color: var(--text-dark); background: var(--gray-100); }
.wizard-btn-next {
    padding: 10px 24px;
    font-size: 0.85rem;
    margin-left: auto;
}

.hero-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px 14px;
    font-size: 0.72rem;
    color: var(--primary-dark);
    flex-wrap: nowrap;
}

.hero-form-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--green-50);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--green-100);
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== REASSURANCE ===== */
.reassurance {
    background: var(--primary-bg);
    padding: 48px 0;
}

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

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reassurance-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.reassurance-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.reassurance-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    flex: 1;
    max-width: 260px;
    position: relative;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--green-100);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
    opacity: 0.4;
}

/* ===== CASHBACK SECTION ===== */
.cashback-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.cashback-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.cashback-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cashback-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.7;
}

.cashback-benefits {
    margin-bottom: 32px;
}

.cashback-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cashback-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.cb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cb-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.cb-bar-container {
    height: 8px;
    background: var(--green-100);
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
}

.cb-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    transition: width 1s ease;
}

.cb-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cb-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.cb-detail:last-child { border-bottom: none; }
.cb-detail span { color: var(--text-light); }
.cb-detail .green { color: var(--primary); }

/* ===== PARTNERS ===== */
.partners {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.partners-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.partners-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.partner-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.partner-logo {
    padding: 12px 20px;
    min-width: 160px;
    justify-content: center;
}
.partner-img {
    height: 35px;
    max-width: 150px;
    object-fit: contain;
}
.partner-assurea .partner-brand { color: #1a5276; }
.partner-april .partner-brand { color: #e74c3c; }
.partner-metlife .partner-brand { color: #00857c; }
.partner-cardif .partner-brand { color: #00a651; }
.partner-cardif .partner-sub { color: #00a651; }
.partner-assurea:hover, .partner-april:hover, .partner-metlife:hover, .partner-cardif:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* Legacy static layout */
.partners-track { overflow: hidden; }
.partners-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ===== CASHBACK EXPLAINER ===== */
.cashback-explainer {
    padding: 100px 0;
    background: var(--white);
}

.explainer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.explainer-step {
    text-align: center;
    padding: 40px 28px;
    flex: 1;
    max-width: 320px;
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.explainer-step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.explainer-step.featured-step {
    border-color: var(--primary);
    background: var(--green-50);
}

.explainer-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid var(--green-100);
}

.featured-step .explainer-icon {
    background: var(--primary);
    border-color: var(--primary);
}
.featured-step .explainer-icon svg {
    stroke: white;
}

.explainer-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.explainer-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.explainer-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.explainer-arrow {
    display: flex;
    align-items: center;
    padding-top: 80px;
    opacity: 0.4;
    flex-shrink: 0;
    padding: 0 8px;
    margin-top: 80px;
}

/* ===== BOOST SECTION ===== */
.boost-section {
    padding: 100px 0;
    background: var(--white);
}

.boost-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.boost-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.boost-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.boost-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.boost-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--green-100);
}

.boost-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--green-50);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--green-100);
}

.boost-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.boost-card > p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.boost-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--primary-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--primary);
}

/* ===== LAWS SECTION ===== */
.laws-section {
    padding: 100px 0;
    background: var(--white);
}

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

.law-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.law-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.law-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.law-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.law-date {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--green-50);
    padding: 2px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.law-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.law-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}
.law-link:hover { text-decoration: underline; }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

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

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
    padding: 100px 0;
    background: var(--primary-bg);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-img {
    height: 200px;
    display: flex;
    align-items: flex-start;
    padding: 16px;
}

.blog-category {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,255,255,0.9);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.blog-content {
    padding: 24px;
}

.blog-content time {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
    display: block;
}

.blog-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}
.blog-link:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-logo-symbol {
    height: 42px;
    width: auto;
}
.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1;
}
.footer-logo-text span { color: #4CAF50; }
.footer-slogan {
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--white); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
}

.footer-contact svg { flex-shrink: 0; opacity: 0.5; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ecfdf5 100%);
    padding: 130px 0 60px;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-banner p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== OFFERS PAGE ===== */
.offers-section { padding: 80px 0; }

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

.offer-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.offer-card.featured {
    border-color: var(--primary);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.offer-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.offer-partner {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.offer-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.offer-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.offer-cashback-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-50);
    border: 1px dashed var(--green-300);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.offer-features {
    margin-bottom: 24px;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-100);
}

.offer-features li:last-child { border: none; }

/* ===== CONTACT FORM ===== */
.contact-section { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--green-100);
}

.contact-info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== ABOUT PAGE ===== */
.about-section { padding: 80px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--green-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-100);
}

.value-card h3 {
    font-size: 1rem;
    margin-top: 16px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.stat-card {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== BLOG PAGE ===== */
.blog-section { padding: 80px 0; }

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

/* ===== RDV PAGE ===== */
.rdv-section {
    padding: 80px 0;
}

.rdv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.rdv-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.rdv-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.rdv-form-wrapper > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.rdv-info {
    padding: 40px;
}

.rdv-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.rdv-info > p {
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.rdv-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.rdv-benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.rdv-benefit .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rdv-benefit h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.rdv-benefit p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.rdv-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--green-100);
}

.rdv-phone .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rdv-phone strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.rdv-phone span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== ESPACE CLIENT ===== */
.login-section { padding: 80px 0; }

.login-card {
    max-width: 440px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.login-card h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.login-card > p {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.login-card .form-group:last-of-type {
    margin-bottom: 24px;
}

.login-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.875rem;
}

.login-links a {
    color: var(--primary);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--green-300); }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ===== CONSEIL PAGE ===== */
.conseil-section { padding: 80px 0; }

.conseil-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.conseil-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.conseil-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.conseil-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.conseil-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== MODERN EFFECTS ===== */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,125,50,0.04) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,50,0.2); }
    50% { box-shadow: 0 0 20px 4px rgba(46,125,50,0.15); }
}

.hero-form-card {
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-form-card:hover {
    animation: none;
    box-shadow: var(--shadow-xl);
}

.testimonial-avatar {
    transition: var(--transition);
}
.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.step-number {
    transition: var(--transition);
}
.step-card:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(46,125,50,0.3);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}
.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.section-tag {
    transition: var(--transition);
}
.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46,125,50,0.12);
}

.partner-logo {
    transition: var(--transition);
}
.partner-logo:hover {
    transform: translateY(-4px) scale(1.05);
}

.law-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.law-card:hover::before {
    opacity: 1;
}

.value-card {
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.stat-card {
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.conseil-card {
    transition: var(--transition);
}
.conseil-card:hover {
    transform: translateY(-4px);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-wrapper {
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { max-width: 440px; margin: 0 auto; }
    .hero h1 { font-size: 2.2rem; }
    .cashback-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .cashback-visual { max-width: 400px; }
    .laws-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
    .explainer-grid { flex-wrap: wrap; gap: 24px; }
    .explainer-arrow { display: none; }
    .boost-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        background: var(--white);
        padding: 24px;
        z-index: 999;
    }
    .nav.open { display: block; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-link { padding: 14px 16px; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
    }
    .header-actions .btn-outline-sm,
    .header-actions .btn-primary-sm { display: none; }
    .burger { display: flex; }

    .hero { padding: 120px 0 80px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-lg { width: 100%; }
    .hero-trust { flex-direction: column; align-items: flex-start; }
    .trust-separator { display: none; }

    .section-header h2 { font-size: 1.6rem; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); padding: 0; }

    .reassurance-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-full-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .laws-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .rdv-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .conseil-cards { grid-template-columns: 1fr; }
    .explainer-grid { flex-direction: column; align-items: center; }
    .explainer-arrow { transform: rotate(90deg); }
    .boost-grid { grid-template-columns: 1fr; }

    .cta-wrapper { padding: 40px 24px; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; }

    .page-banner { padding: 110px 0 40px; }
    .page-banner h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-badges { gap: 6px; }
    .badge { font-size: 0.7rem; padding: 4px 10px; }
    .hero-card-body { padding: 16px; }
    .container { padding: 0 16px; }
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(46,125,50,0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatingPulse 2s infinite;
    text-decoration: none;
}
.floating-call::before {
    content: "04 23 50 01 43";
    position: absolute;
    right: 68px;
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.floating-call::after {
    content: "";
    position: absolute;
    right: 62px;
    border: 6px solid transparent;
    border-left-color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.floating-call:hover::before,
.floating-call:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(46,125,50,0.5);
}
@keyframes floatingPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(46,125,50,0.4); }
    50% { box-shadow: 0 4px 24px rgba(46,125,50,0.6), 0 0 0 8px rgba(46,125,50,0.1); }
}
