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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-page);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Curseur normal restauré */
* {
    cursor: default;
}

a, button, .btn {
    cursor: pointer;
}

/* FONT AWESOME - CONFIGURATION STABLE */
.fa, .fas, .far, .fal, .fab, .fad, .fak {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    display: inline-block !important;
}

.fas {
    font-weight: 900 !important;
}

.far {
    font-weight: 400 !important;
}

.fab {
    font-weight: 400 !important;
    font-family: "Font Awesome 6 Brands" !important;
}

.orgamia-main {
    flex: 1;
}

/* HERO — photo pleine largeur + overlay */
.hero {
    padding: clamp(100px, 15vh, 140px) 0 clamp(60px, 10vh, 100px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--primary);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/images/assistance-administrative-lille-valenciennes.jpg') center / cover no-repeat;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(28, 43, 58, 0.9) 0%,
        rgba(13, 15, 18, 0.78) 42%,
        rgba(28, 43, 58, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    max-width: min(780px, 94vw);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 10px;
    animation: blink 2s infinite;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-wrap: balance;
    width: 100%;
    text-align: center;
}

.hero-title-accent {
    color: var(--accent);
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-soft) 35%, var(--accent-soft) 65%, transparent 100%);
    opacity: 0.85;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(253, 252, 250, 0.92);
    margin-bottom: 40px;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
    width: 100%;
}

.hero .btn-outline {
    color: var(--white);
    border-color: rgba(253, 252, 250, 0.88);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: var(--white);
}

.hero-trust {
    display: flex;
    gap: clamp(16px, 4vw, 28px) clamp(20px, 5vw, 36px);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 100%;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(253, 252, 250, 0.85);
}

.hero-dashboard {
    background: var(--surface-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 500px;
    position: relative;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.dashboard-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.metric-card {
    background: var(--surface);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.metric-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-sans);
}

.metric-label {
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 4px;
}

.dashboard-progress {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: progress-fill 3s ease-in-out infinite;
}

@keyframes progress-fill {
    0% { width: 0%; }
    50% { width: 85%; }
    100% { width: 85%; }
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* BOUTONS ADMINISTRATIFS PROFESSIONNELS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 8px;
    position: relative;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-folder);
}

.btn-primary:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.btn-secondary {
    background: var(--surface-card);
    color: var(--primary);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    background: var(--surface);
    border-color: var(--gray-400);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #065f46;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 10px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 6px;
}

/* SECTION */
.section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.section-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(18px, 3vw, 28px);
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--orgamia-blue);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--orgamia-text-2);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
}

.bg-light {
    background-color: var(--orgamia-soft);
}

/* OFFRES */
.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.offre-card {
    background: var(--orgamia-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--orgamia-border);
    box-shadow: 0 4px 12px var(--orgamia-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.offre-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--orgamia-shadow);
}

.offre-card.featured {
    border: 1.5px solid var(--orgamia-blue-electric);
    background: linear-gradient(180deg, var(--accent-glow) 0%, rgba(255, 255, 255, 0) 100%);
    transform: scale(1.02);
}

.offre-title {
    font-size: 22px;
    color: var(--orgamia-blue);
    font-weight: 800;
    margin-bottom: 8px;
}

.offre-tagline {
    font-size: 13px;
    color: var(--orgamia-text-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.offre-badge {
    display: inline-block;
    background: var(--orgamia-blue-electric);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    width: fit-content;
}

.offre-description {
    font-size: 15px;
    color: var(--orgamia-text-2);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.offre-list {
    list-style: none;
    margin: 24px 0;
}

.offre-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--orgamia-text);
    line-height: 1.5;
}

.offre-list li::before {
    content: "\f05d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--orgamia-blue-electric);
    flex-shrink: 0;
    margin-right: 6px;
}

.offre-cta {
    margin-top: auto;
}

.offre-cta .btn {
    width: 100%;
}

/* POURQUOI */
.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pourquoi-item {
    background: var(--orgamia-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--orgamia-border);
}

.pourquoi-item h3 {
    font-size: 18px;
    color: var(--orgamia-blue);
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pourquoi-item h3 i {
    color: var(--orgamia-blue-electric);
    font-size: 20px;
}

.pourquoi-item p {
    font-size: 15px;
    color: var(--orgamia-text-2);
    line-height: 1.6;
}

/* ICON STYLING */
.btn i {
    margin-right: 4px;
}

.offre-badge i {
    margin-right: 6px;
}

/* ZONES */
.zones-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.zones-text p {
    font-size: 15px;
    color: var(--orgamia-text-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.zones-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.zone-badge {
    background: var(--orgamia-white);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--orgamia-border);
    text-align: center;
    font-weight: 600;
    color: var(--orgamia-blue);
}

.zones-visual {
    background: var(--orgamia-white);
    border-radius: 16px;
    border: 1px solid var(--orgamia-border);
    padding: 48px;
    text-align: center;
    color: var(--orgamia-blue);
    font-size: 72px;
    box-shadow: 0 4px 12px var(--orgamia-shadow);
}

/* CTA FINALE */
.cta-final {
    background: var(--gradient-cta);
    color: var(--white);
    padding: clamp(48px, 8vw, 80px) 0;
}

.cta-final-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(18px, 3vw, 28px);
}

.cta-final h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.cta-final p {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-final .btn {
    background: var(--orgamia-blue-electric);
    color: white;
    margin: 0 8px;
}

/* FOOTER */
.orgamia-footer {
    background: var(--orgamia-blue);
    color: white;
    padding: clamp(32px, 5vw, 48px) 0;
    margin-top: auto;
}

.orgamia-footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(18px, 3vw, 28px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.orgamia-footer-section h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.orgamia-footer-section p,
.orgamia-footer-section a {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s ease;
}

.orgamia-footer-section a:hover {
    opacity: 1;
}

.orgamia-footer-bottom {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 24px clamp(18px, 3vw, 28px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .zones-content {
        grid-template-columns: 1fr;
    }

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

    .offre-card.featured {
        transform: scale(1);
    }

    .orgamia-header-content {
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
    }

    .orgamia-nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .zones-list {
        grid-template-columns: 1fr;
    }

    .cta-final .btn {
        margin: 8px 0;
    }
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 32px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: white;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.trust-badge i {
    color: white;
    font-size: 18px;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--orgamia-white);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--orgamia-border);
    box-shadow: 0 2px 8px var(--orgamia-shadow);
}

.testimonial-content {
    font-size: 15px;
    color: var(--orgamia-text-2);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orgamia-blue-electric);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--orgamia-blue);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--orgamia-text-2);
    opacity: 0.8;
}

.testimonial-stars {
    color: #d97706;
    margin-bottom: 12px;
    font-size: 14px;
}

/* PRICING */
.offre-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--orgamia-blue);
    margin: 20px 0 16px;
}

.offre-price-label {
    font-size: 13px;
    color: var(--orgamia-text-2);
    opacity: 0.7;
    margin-top: 4px;
}

/* ABOUT SECTION */
.about-humanize {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--surface-card);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--orgamia-border);
    box-shadow: 0 4px 12px var(--orgamia-shadow);
}

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orgamia-blue) 0%, var(--orgamia-blue-electric) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
}

.about-content h3 {
    font-size: 24px;
    color: var(--orgamia-blue);
    font-weight: 800;
    margin-bottom: 16px;
}

.about-content p {
    font-size: 15px;
    color: var(--orgamia-text-2);
    line-height: 1.7;
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .about-humanize {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* URGENCY BADGE */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 76, 60, 0.1);
    color: #C0392B;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.urgency-badge i {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* SYSTÈME DE CONTAINERS ADMINISTRATIFS */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}

.admin-section {
    padding: clamp(60px, 10vh, 100px) 0;
    position: relative;
}

.admin-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 16px;
}

.admin-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* SYSTÈME DE BOXES ADMINISTRATIVES */
.admin-box {
    background: var(--surface-card);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-document);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.admin-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--gray-300);
}

.admin-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.admin-box-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.admin-box-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.admin-box-subtitle {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    margin-top: 4px;
}

.admin-box-content {
    color: var(--gray-700);
    line-height: 1.7;
    flex-grow: 1;
}

.admin-box-price {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 16px 0 8px 0;
}

.admin-box-price-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* GRILLES ADMINISTRATIVES */
.admin-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.admin-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.admin-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* LISTES ADMINISTRATIVES */
.admin-list {
    list-style: none;
    margin: 20px 0;
}

.admin-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.admin-list li:last-child {
    border-bottom: none;
}

.admin-list li i {
    color: var(--success);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* STATUS & BADGES */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-success {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
}

.status-warning {
    background: rgba(217, 119, 6, 0.1);
    color: var(--warning);
}

.status-info {
    background: rgba(37, 99, 235, 0.1);
    color: var(--info);
}

.status-featured {
    background: var(--primary);
    color: white;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* TESTIMONIALS MODERNE */
.testimonials-slider {
    overflow: hidden;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--surface-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin: 0 16px;
    border: 1px solid var(--gray-200);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #d97706;
    font-size: 18px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--gray-600);
}

/* CTA SECTION */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: drift 25s linear infinite;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 40px;
    }
}
