/* ===== VARIABLES ===== */
:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --secondary: #06b6d4;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;

    --bg-light: #faf5ff;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);

    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #9ca3af;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.1);
    --shadow-md: 0 8px 24px rgba(124, 58, 237, 0.15);
    --shadow-lg: 0 16px 48px rgba(124, 58, 237, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ===== BACKGROUND SHAPES ===== */
.bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: 10%;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    top: 40%;
    right: 5%;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    bottom: -150px;
    right: 30%;
}

/* ===== TEXT UTILITIES ===== */
.text-gradient {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon, .btn-emoji {
    font-size: 18px;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-soft {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
}

.btn-soft:hover {
    background: rgba(124, 58, 237, 0.2);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-card {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-card:hover {
    background: white;
    color: var(--text-dark);
}

.btn-xl {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

.brand-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    border-radius: var(--radius-md);
    color: white;
    font-size: 16px;
    font-weight: 800;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-sub {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-item {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-medium);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 120px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    overflow: hidden;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 480px;
}

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

.hero-badges {
    display: flex;
    gap: 16px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 16px;
}

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 450px;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.car-emoji {
    font-size: 120px;
    animation: bounce 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.3) 0px,
        rgba(255,255,255,0.3) 40px,
        transparent 40px,
        transparent 80px
    );
}

.image-decoration {
    position: absolute;
    border-radius: 50%;
}

.dec-1 {
    width: 80px;
    height: 80px;
    background: var(--accent-pink);
    top: -20px;
    left: -20px;
    opacity: 0.6;
}

.dec-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    bottom: 40px;
    right: -30px;
    opacity: 0.6;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-emoji {
    font-size: 32px;
}

.card-content strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.card-content span {
    font-size: 13px;
    color: var(--text-light);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    background: white;
}

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

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.stat-value {
    display: inline;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    margin-top: 8px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header.light h2,
.section-header.light p {
    color: white;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
}

/* ===== FORMATIONS ===== */
.formations {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.formation-card {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    overflow: hidden;
}

.formation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.formation-card.color-blue::before { background: var(--accent-blue); }
.formation-card.color-purple::before { background: var(--primary); }
.formation-card.color-green::before { background: var(--accent-green); }
.formation-card.color-orange::before { background: var(--accent-orange); }

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

.formation-card.featured {
    background: var(--bg-gradient);
    color: white;
}

.formation-card.featured h3,
.formation-card.featured p,
.formation-card.featured .card-features li,
.formation-card.featured .price-label {
    color: white;
}

.formation-card.featured .price-value {
    color: white;
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    padding: 6px 40px;
    background: var(--accent-orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.card-star {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.formation-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.formation-card > p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.card-features li {
    font-size: 13px;
    color: var(--text-medium);
    padding: 6px 0;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.formation-card.featured .card-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
}

.price-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: white;
}

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

.why-content .section-badge {
    text-align: left;
}

.why-content h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 16px;
}

.why-content > p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 24px;
    flex-shrink: 0;
}

.why-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-item span {
    font-size: 14px;
    color: var(--text-medium);
}

.visual-box {
    background: var(--bg-gradient);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    color: white;
}

.visual-emoji {
    font-size: 64px;
    margin-bottom: 24px;
}

.visual-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.visual-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ===== TARIFS ===== */
.tarifs {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.tarif-card {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.tarif-card:hover {
    transform: translateY(-8px);
}

.tarif-card.popular {
    background: var(--bg-gradient);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.tarif-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.tarif-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent-orange);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.tarif-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tarif-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.tarif-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 24px;
}

.price-big {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.price-small {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
}

.tarif-card.popular .price-big,
.tarif-card.popular .price-small {
    color: white;
}

.tarif-list {
    text-align: left;
    margin-bottom: 32px;
}

.tarif-list li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tarif-card.popular .tarif-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

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

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.info-icon {
    font-size: 32px;
}

.info-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
}

/* ===== TEAM ===== */
.team {
    padding: 100px 0;
    background: white;
}

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

.team-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.team-card > p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.team-stat {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 0;
    background: var(--bg-gradient);
    overflow: hidden;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.reviews-score {
    display: flex;
    align-items: center;
    gap: 20px;
}

.score-big {
    font-size: 72px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.score-info {
    color: white;
}

.stars {
    font-size: 20px;
    margin-bottom: 4px;
}

.reviews-carousel {
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    background: white;
    border-radius: var(--radius-xl);
    padding: 28px;
    scroll-snap-align: start;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.review-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.review-info span {
    font-size: 12px;
}

.review-card > p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.contact-info h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 28px;
}

.contact-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.contact-card a {
    color: var(--primary);
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .brand {
    margin-bottom: 16px;
}

.footer-brand .brand-name,
.footer-brand .brand-sub {
    color: white;
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p + p {
    margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tarifs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }

    .tarif-card.popular {
        transform: none;
    }

    .tarifs-info {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-value {
        font-size: 36px;
    }

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

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

    .review-card {
        flex: 0 0 85%;
    }

    .reviews-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand > p {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .score-big {
        font-size: 56px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}
