/* ===================================================
   NL PRÉPA MENTALE — STYLE COMPLET
   Palette sage vert doux #B6C2B1 — Hero lumineux
   =================================================== */

/* ====== VARIABLES ====== */
:root {
    /* Palette sage — basée sur #B6C2B1 */
    --sage-50: #f4f6f3;
    --sage-100: #e8ede6;
    --sage-200: #d5ddd2;
    --sage-300: #c5d0c1;
    --sage-400: #B6C2B1;
    --sage-500: #9aaa93;
    --sage-600: #7f9278;
    --sage-700: #687a62;
    --sage-800: #536150;
    --sage-900: #3f4a3c;
    --sage-950: #272e25;

    /* Neutres chauds */
    --warm-50: #fafaf9;
    --warm-100: #f5f5f4;
    --warm-200: #e7e5e4;
    --warm-300: #d6d3d1;
    --warm-400: #a8a29e;
    --warm-500: #78716c;
    --warm-600: #57534e;
    --warm-700: #44403c;
    --warm-800: #292524;
    --warm-900: #1c1917;

    --white: #ffffff;
    --black: #000000;

    /* Couleurs fonctionnelles */
    --primary: var(--sage-600);
    --primary-light: var(--sage-400);
    --primary-dark: var(--sage-700);
    --primary-bg: var(--sage-50);
    --accent: var(--sage-400);

    /* Typographie */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Tailles */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Ombres douces */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --shadow-sage: 0 4px 14px rgba(182, 194, 177, 0.45);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ====== RESET & BASE ====== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--warm-600);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--warm-800);
}

::selection {
    background-color: var(--sage-200);
    color: var(--sage-900);
}

/* ====== UTILITIES ====== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sage-700);
    background: var(--sage-100);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--warm-800);
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-500);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--sage-600);
    color: var(--white);
    border-color: var(--sage-600);
    box-shadow: var(--shadow-sage);
}

.btn--primary:hover {
    background: var(--sage-700);
    border-color: var(--sage-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 146, 120, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--sage-700);
    border-color: var(--sage-400);
}

.btn--outline:hover {
    background: var(--sage-600);
    color: var(--white);
    border-color: var(--sage-600);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--sage-800);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--sage-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ====== AOS ANIMATION ====== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    z-index: 1001;
    transition: color var(--transition-base);
}

.header.scrolled .header__logo {
    color: var(--warm-800);
}

.header__logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color var(--transition-base);
}

.header.scrolled .header__logo-img {
    border-color: var(--sage-200);
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.header.scrolled .header__link {
    color: var(--warm-500);
}

.header__link:hover,
.header__link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

.header.scrolled .header__link:hover,
.header.scrolled .header__link.active {
    color: var(--sage-700);
    background: var(--sage-50);
}

.header__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    transition: all var(--transition-fast);
    margin-left: 8px;
}

.header.scrolled .header__social {
    color: var(--sage-600);
    background: var(--sage-50);
}

.header__social:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.header.scrolled .header__social:hover {
    background: var(--sage-100);
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.header.scrolled .header__burger span {
    background: var(--warm-700);
}

.header__burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.open span:nth-child(2) {
    opacity: 0;
}

.header__burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   HERO — Vert sage lumineux, doux, ni trop sombre ni fluo
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg,
            #5f7359 0%,
            /* sage moyen-foncé — ancrage */
            #7a9173 30%,
            /* sage moyen */
            #8fa389 55%,
            /* sage lumineux */
            #a2b49c 75%,
            /* sage clair */
            #B6C2B1 100%
            /* couleur principale */
        );
    overflow: hidden;
}

/* Orbe lumineuse haut-droite */
.hero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(182, 194, 177, 0.08) 40%,
            transparent 70%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite;
}

/* Orbe lumineuse bas-gauche */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(182, 194, 177, 0.05) 40%,
            transparent 70%);
    border-radius: 50%;
    animation: heroFloat 12s ease-in-out infinite reverse;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

/* Texture subtile */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.hero__title-accent {
    background: linear-gradient(135deg, #ffffff, #e8ede6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.06));
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__actions .btn--primary {
    background: var(--white);
    border-color: var(--white);
    color: var(--sage-800);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.hero__actions .btn--primary:hover {
    background: var(--sage-50);
    border-color: var(--sage-50);
    color: var(--sage-900);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.hero__actions .btn--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.hero__actions .btn--outline:hover {
    background: var(--white);
    color: var(--sage-800);
    border-color: var(--white);
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
    color: var(--white);
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hero__stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    transition: all var(--transition-fast);
}

.hero__scroll a:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* ====== PRESENTATION ====== */
.presentation {
    padding: 100px 0;
    background: var(--white);
}

.presentation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.presentation__image-wrap {
    position: relative;
}

.presentation__image-deco {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sage-200);
    border-radius: var(--radius-xl);
    z-index: 0;
}

.presentation__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.presentation__image-badge {
    position: absolute;
    bottom: 24px;
    right: -16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--sage-700);
    z-index: 2;
}

.presentation__image-badge svg {
    color: var(--sage-600);
}

.presentation__text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.presentation__highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 20px;
    background: var(--sage-50);
    border-left: 4px solid var(--sage-400);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 600;
    color: var(--sage-800);
    margin: 24px 0;
}

.presentation__highlight svg {
    color: var(--sage-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.presentation__diplomas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.diploma-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--warm-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--warm-100);
    transition: all var(--transition-fast);
}

.diploma-card:hover {
    border-color: var(--sage-200);
    background: var(--sage-50);
}

.diploma-card__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.diploma-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--warm-800);
    font-family: var(--font-body);
}

.diploma-card p {
    font-size: 0.85rem;
    color: var(--warm-400);
    margin: 0;
}

/* ====== SERVICES ====== */
.services {
    padding: 100px 0;
    background: var(--sage-50);
}

.services__header {
    text-align: center;
    margin-bottom: 20px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    border: 1px solid var(--sage-100);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-300), var(--sage-500));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--sage-200);
}

.service-card:hover::before {
    opacity: 1;
}

/* Featured card */
.service-card--featured {
    background: linear-gradient(145deg, var(--sage-600), var(--sage-700));
    border-color: transparent;
}

.service-card--featured::before {
    display: none;
}

.service-card--featured:hover {
    border-color: transparent;
    box-shadow: var(--shadow-2xl), 0 8px 30px rgba(104, 122, 98, 0.3);
}

.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--sage-50);
    color: var(--sage-600);
    margin-bottom: 24px;
}

.service-card--featured .service-card__icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--sage-100);
}

.service-card__title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--warm-800);
}

.service-card--featured .service-card__title {
    color: var(--white);
}

.service-card__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--warm-500);
    margin-bottom: 20px;
}

.service-card--featured .service-card__text {
    color: rgba(255, 255, 255, 0.65);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sage-600);
    transition: gap var(--transition-fast);
}

.service-card__link:hover {
    gap: 12px;
}

.service-card--featured .service-card__link {
    color: var(--sage-200);
}

/* ====== BANNER ====== */
.banner {
    position: relative;
    padding: 100px 0;
    background:
        url('images/photo_nl2.jpg') center / cover no-repeat;
    overflow: hidden;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
            rgba(63, 74, 60, 0.85),
            rgba(104, 122, 98, 0.78));
}

.banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner__title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 16px;
}

.banner__text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    font-style: italic;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 36px;
    background: var(--warm-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-100);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-200);
}

.testimonial-card__sport {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: var(--sage-50);
    border: 1px solid var(--sage-100);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    align-self: flex-start;
}

.testimonial-card__sport-icon {
    font-size: 1rem;
}

.testimonial-card__sport-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sage-700);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.testimonial-card__stars {
    color: #e2b33e;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-600);
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--warm-100);
}

.testimonial-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-300), var(--sage-500));
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--warm-800);
    font-family: var(--font-body);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--warm-400);
}

/* ====== FOOTER ====== */
.footer {
    background: var(--warm-900);
    color: var(--warm-400);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--warm-500);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--warm-500);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--sage-400);
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--warm-400);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--sage-400);
    border-color: rgba(182, 194, 177, 0.25);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--warm-600);
}

/* ====== SCROLL TO TOP ====== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-500);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-sage);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--sage-600);
    transform: translateY(-4px);
}

/* ====== SEO CONTENT ====== */
.seo-content {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--sage-50) 100%);
}

.seo-content__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.seo-content p,
.content-page__main p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--warm-600);
}

.seo-content h3,
.content-page__main h2,
.content-page__main h3,
.faq__item h3,
.internal-links h2,
.internal-links h3 {
    font-family: var(--font-body);
}

.seo-content h3,
.content-page__main h3 {
    margin: 28px 0 12px;
    font-size: 1.15rem;
    color: var(--warm-800);
}

/* ====== INTERNAL LINKS ====== */
.internal-links {
    margin-top: 48px;
    padding: 32px;
    background: var(--warm-50);
    border: 1px solid var(--warm-100);
    border-radius: var(--radius-lg);
}

.internal-links h2,
.internal-links h3 {
    margin-bottom: 16px;
    font-size: 1.15rem;
    color: var(--warm-800);
}

.internal-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.internal-links__list a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--sage-100);
    color: var(--sage-700);
    font-size: 0.95rem;
    font-weight: 500;
}

.internal-links__list a:hover {
    background: var(--sage-50);
    border-color: var(--sage-300);
}

/* ====== FAQ ====== */
.faq {
    padding: 100px 0;
    background: var(--sage-50);
}

.faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.faq__item {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sage-100);
    box-shadow: var(--shadow-sm);
}

.faq__item h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--warm-800);
}

.faq__item p {
    margin: 0;
}

/* ====== CONTENT PAGES ====== */
.page-hero {
    position: relative;
    padding: 180px 0 90px;
    background: linear-gradient(160deg, #5f7359 0%, #7a9173 30%, #8fa389 55%, #a2b49c 75%, #B6C2B1 100%);
    overflow: hidden;
}

.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::before {
    top: -20%;
    right: -8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0%, transparent 68%);
}

.page-hero::after {
    bottom: -20%;
    left: -6%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
}

.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 18px;
}

.page-hero p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.86);
}

.content-page {
    padding: 88px 0 100px;
    background: var(--white);
}

.content-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.8fr);
    gap: 36px;
    align-items: start;
}

.content-page__main {
    min-width: 0;
}

.content-page__main h2 {
    margin: 0 0 16px;
    font-size: 1.65rem;
    color: var(--warm-800);
}

.content-page__side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.content-page__card {
    padding: 24px;
    background: var(--sage-50);
    border: 1px solid var(--sage-100);
    border-radius: var(--radius-lg);
}

.content-page__card h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--warm-800);
}

.content-page__card ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--warm-600);
}

.content-page__card li + li {
    margin-top: 8px;
}

.content-page__card .btn {
    margin-top: 12px;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .presentation__grid {
        gap: 48px;
    }

    .seo-content__grid,
    .content-page__grid {
        grid-template-columns: 1fr;
    }

    .content-page__side {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        padding: 100px 32px 40px;
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-base);
        z-index: 1000;
    }

    .header__nav.open {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .header__link {
        color: var(--warm-700);
        font-size: 1.1rem;
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .header__link:hover,
    .header__link.active {
        color: var(--sage-700);
        background: var(--sage-50);
    }

    .header__social {
        margin-left: 0;
        margin-top: 16px;
        color: var(--sage-600);
        background: var(--sage-50);
    }

    .header__burger.open span {
        background: var(--warm-700);
    }

    .header__nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.35);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-base);
    }

    .header__nav.open::before {
        opacity: 1;
        pointer-events: all;
    }

    .presentation__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .presentation__image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    .presentation__image-badge {
        right: 12px;
    }

    .presentation__image-deco {
        top: -12px;
        left: -12px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__stat-number {
        font-size: 2rem;
    }

    .page-hero {
        padding: 140px 0 72px;
    }

    .seo-content,
    .faq,
    .content-page {
        padding: 72px 0;
    }

    .internal-links {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__content {
        padding: 100px 16px 60px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 32px 24px 28px;
    }

    .presentation {
        padding: 64px 0;
    }

    .services {
        padding: 64px 0;
    }

    .testimonials {
        padding: 64px 0;
    }

    .banner {
        padding: 64px 0;
    }

    .seo-content,
    .faq,
    .content-page {
        padding: 64px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .diploma-card {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .testimonial-card__sport {
        align-self: center;
    }

    .faq__item,
    .internal-links,
    .content-page__card {
        padding: 20px;
    }

    .internal-links__list a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media print {

    .header,
    .hero__scroll,
    .scroll-top,
    .banner {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero {
        min-height: auto;
        padding: 2em 0;
        background: none;
    }

    .hero__title,
    .hero__subtitle {
        color: #000;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-aos] {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}
