/* ============================================
   RESET & VARIABLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary: #7c3aed;
    --secondary-light: #8b5cf6;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --white: #ffffff;
    --bg: #f8fafc;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --header-height-mobile: 64px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   NAVBAR - OPTIMISÉE MOBILE
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   BOUTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.page-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-hero h1 .gradient-text {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.page-hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge-cert {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary);
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
}

.cta-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-light);
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.cta-stat .label {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 3rem;
}

.footer-section .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon.small {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon.small svg {
    width: 22px;
    height: 22px;
    display: block;
}

.footer-section .logo span {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-contact {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0 !important;
}

.footer-contact span {
    font-size: 1.1rem;
}

.footer-hours {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
    padding: 5rem 0;
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0.8rem;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font);
    background: var(--white);
    color: var(--dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
    font-weight: 300;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.5rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: var(--font);
}

.btn-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.info-item.highlight {
    background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(124,58,237,0.05));
    border-left: 3px solid var(--primary);
}

.info-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.info-item h3 {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-item p {
    color: var(--dark);
    font-size: 0.9rem;
    margin: 0;
}

.info-item .urgent {
    color: var(--danger);
    font-weight: 600;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.mission-text p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    font-size: 1.5rem;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-stats {
    padding: 5rem 0;
    background: var(--bg);
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-box .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: var(--gray);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
}

.commitment-icon {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.commitment-item h4 {
    font-size: 1rem;
    font-weight: 700;
}

.commitment-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.truth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.truth-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.truth-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.truth-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.scams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.scam-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow);
}

.scam-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.scam-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.stats-grid-big {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-big {
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-lighter);
}

.stat-big .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.process-steps-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.process-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-detailed-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-lighter);
    position: relative;
}

.pricing-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-detailed-card.featured {
    border: 2px solid var(--primary);
    background: var(--white);
}

.pricing-detailed-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0;
}

.pricing-detailed-header .price span {
    font-size: 1.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-author .name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-author .detail {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/2;
    background: var(--gray-lighter);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.7rem;
    text-align: center;
    font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    font-size: 1.05rem;
    user-select: none;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 1.5rem;
    font-size: 0.75rem;
    transition: var(--transition);
    color: var(--gray);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    line-height: 1.8;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-grid-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.15rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   ACCUEIL - HERO
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37,99,235,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124,58,237,0.08) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.92) 0%,
        rgba(37, 99, 235, 0.2) 50%,
        rgba(124, 58, 237, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.hero-stats .stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stats .stat .label {
    font-size: 0.85rem;
    opacity: 0.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-visual {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.3; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

/* ============================================
   FEATURE BLOCK
   ============================================ */
.feature-block {
    padding: 5rem 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-grid.reverse .feature-image {
    order: 2;
}
.feature-grid.reverse .feature-content {
    order: 1;
}

.feature-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(37,99,235,0.02);
    border: 1px solid rgba(37,99,235,0.06);
}

.feature-image-visual {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}

.image-floating-stats {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.float-stat {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius);
    text-align: center;
    min-width: 60px;
}

.float-stat .float-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.float-stat .float-label {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-tag {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary);
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.feature-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.feature-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE - TOUS LES ÉCRANS
   ============================================ */

/* === TABLETTES (max-width: 1024px) === */
@media (max-width: 1024px) {
    body {
        padding-top: var(--header-height);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-image-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-grid.reverse .feature-image {
        order: 1;
    }
    .feature-grid.reverse .feature-content {
        order: 2;
    }

    .services-grid-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-illustration {
        order: -1;
    }

    .services-image-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .truth-grid,
    .scams-grid,
    .stats-grid-big,
    .pricing-detailed-grid,
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* === MOBILES (max-width: 768px) === */
@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }

    body {
        padding-top: var(--header-height);
    }

    .navbar {
        padding: 0 1rem;
        height: var(--header-height);
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
        border-top: 1px solid var(--gray-lighter);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-lighter);
        white-space: normal;
        text-align: left;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    /* HERO */
    .hero {
        min-height: auto;
        padding: 2rem 0 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-stats .stat .number {
        font-size: 1.4rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-image-visual {
        max-width: 300px;
    }

    .hero-scroll {
        display: none;
    }

    /* PAGE HEADER */
    .page-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .page-hero-badges {
        gap: 0.75rem;
    }

    .badge-cert {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    /* SECTION HEADER */
    .section-header h2 {
        font-size: 2rem;
    }

    /* GRIDS */
    .truth-grid,
    .scams-grid,
    .stats-grid-big,
    .pricing-detailed-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-detailed {
        grid-template-columns: 1fr;
    }

    .about-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* CONTACT */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .form-header h2 {
        font-size: 1.3rem;
    }

    /* FEATURE */
    .feature-block {
        padding: 3rem 0;
    }

    .feature-content h2 {
        font-size: 1.8rem;
    }

    /* SERVICES PREVIEW */
    .services-preview {
        padding: 3rem 0;
    }

    .services-grid-with-image {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .services-illustration {
        order: -1;
    }

    .services-image-visual {
        max-width: 300px;
        margin: 0 auto;
    }

    .service-cards {
        width: 100%;
    }

    .service-card {
        padding: 1rem;
    }

    /* ABOUT */
    .about-mission {
        padding: 3rem 0;
    }

    .mission-text h2 {
        font-size: 2rem;
    }

    .mission-image img {
        max-height: 250px;
        object-fit: cover;
    }

    .about-stats {
        padding: 3rem 0;
    }

    .about-commitment {
        padding: 3rem 0;
    }

    .commitment-content h2 {
        font-size: 2rem;
    }

    /* SERVICES PAGE */
    .blockchain-truth {
        padding: 3rem 0;
    }

    .truth-content h2 {
        font-size: 2rem;
    }

    .scams-covered {
        padding: 3rem 0;
    }

    .fraud-stats {
        padding: 3rem 0;
    }

    .intervention-process {
        padding: 3rem 0;
    }

    .pricing-detailed {
        padding: 3rem 0;
    }

    .pricing-detailed-header .price {
        font-size: 2rem;
    }

    /* CTA */
    .cta-block {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
        padding-right: 2.5rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
    }

    /* STATS */
    .stat-big .stat-number {
        font-size: 2rem;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    /* IMAGES */
    .scam-card img {
        max-height: 150px;
        object-fit: cover;
    }

    .service-card img {
        max-height: 140px;
        object-fit: cover;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-label {
        font-size: 0.6rem;
        padding: 0.3rem;
    }
}

/* === PETITS MOBILES (max-width: 480px) === */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-icon svg {
        width: 24px;
        height: 24px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-stats .stat {
        flex: 1;
        min-width: 80px;
    }

    .hero-image-visual {
        max-width: 250px;
    }

    .services-image-visual {
        max-width: 250px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .feature-content h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .mission-text h2 {
        font-size: 1.5rem;
    }

    .truth-content h2 {
        font-size: 1.5rem;
    }

    .commitment-content h2 {
        font-size: 1.5rem;
    }

    .pricing-detailed-header .price {
        font-size: 1.6rem;
    }

    .cta-stat .number {
        font-size: 1.4rem;
    }

    .stat-big .stat-number {
        font-size: 1.6rem;
    }

    .stat-box .stat-number {
        font-size: 1.6rem;
    }

    .about-stats .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 1/1;
    }

    .contact-form {
        padding: 1rem;
        border-radius: var(--radius);
    }

    .form-group input,
    .form-group textarea {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .info-item {
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-icon {
        width: auto;
    }

    .info-item a,
    .info-item p {
        font-size: 0.85rem;
    }

    .scam-card {
        padding: 1.5rem;
    }

    .truth-item {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-bottom {
        padding: 1rem;
    }

    .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .page-hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge-cert {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   UTILITAIRES
   ============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--gray); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: var(--primary);
    color: var(--white);
}