/* ============================================
   BADR BOUSSABAT — PROFILE PAGE
   Modern design · Decorative elements · Animations
   ============================================ */

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

:root {
    --navy-900: #070d1a;
    --navy-800: #0c1527;
    --navy-700: #111d35;
    --navy-600: #172742;
    --navy-500: #1e3456;
    --navy-400: #2a4a75;
    --text-primary: #f0f1f4;
    --text-secondary: #d0d4dc;
    --text-body: #bcc1cc;
    --text-muted: #8e95a5;
    --text-faint: #6d7484;
    --gold: #c9a84c;
    --gold-light: #e2c76a;
    --gold-dark: #a8872e;
    --white: #ffffff;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--navy-900);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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


/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroTitle {
    from { opacity: 0; transform: translateY(40px) skewY(2deg); }
    to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-18px) rotate(3deg); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50%      { box-shadow: 0 0 0 14px rgba(201, 168, 76, 0); }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(8px); opacity: 0.4; }
}

@keyframes glowBorder {
    0%, 100% { border-color: rgba(201, 168, 76, 0.2); }
    50%      { border-color: rgba(201, 168, 76, 0.5); }
}


/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

/* Dot grids */
.deco-dots {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.15) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
}

.deco-dots-hero {
    width: 180px;
    height: 180px;
    top: 12%;
    left: 4%;
    opacity: 0.5;
    animation: floatSlow 8s ease-in-out infinite;
}

.deco-dots-image {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: -40px;
    opacity: 0.4;
    z-index: 0;
    animation: float 6s ease-in-out infinite 1s;
}

.deco-dots-about {
    width: 140px;
    height: 140px;
    top: 8%;
    right: 5%;
    opacity: 0.35;
    animation: floatSlow 9s ease-in-out infinite;
}

.deco-dots-books {
    width: 100px;
    height: 160px;
    bottom: 10%;
    left: 3%;
    opacity: 0.3;
    animation: float 7s ease-in-out infinite;
}

.deco-dots-formation {
    width: 120px;
    height: 100px;
    top: 15%;
    right: 4%;
    opacity: 0.3;
    animation: floatSlow 10s ease-in-out infinite;
}

/* Floating circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.12);
    pointer-events: none;
    z-index: 0;
}

.deco-circle-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    animation: floatSlow 12s ease-in-out infinite;
}

.deco-circle-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: -50px;
    border-color: rgba(201, 168, 76, 0.08);
    animation: float 9s ease-in-out infinite 2s;
}

.deco-circle-books {
    width: 220px;
    height: 220px;
    top: -40px;
    right: -60px;
    border-color: rgba(201, 168, 76, 0.08);
    animation: floatSlow 11s ease-in-out infinite;
}

/* Decorative lines */
.deco-line {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.deco-line-hero {
    width: 1px;
    height: 120px;
    top: 15%;
    right: 8%;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    animation: float 6s ease-in-out infinite;
}

.deco-line-about {
    width: 1px;
    height: 100px;
    bottom: 20%;
    left: 6%;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.15), transparent);
    animation: float 7s ease-in-out infinite 1s;
}

.deco-line-formation {
    width: 80px;
    height: 1px;
    top: 30%;
    left: 3%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    animation: floatSlow 8s ease-in-out infinite;
}

/* Small crosses */
.deco-cross {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: rgba(201, 168, 76, 0.18);
}

.deco-cross-1 {
    top: 20%;
    right: 15%;
    animation: spin 30s linear infinite;
}

.deco-cross-2 {
    bottom: 25%;
    left: 8%;
    animation: spin 40s linear infinite reverse;
}

.deco-cross-3 {
    top: 50%;
    right: 10%;
    animation: spin 35s linear infinite;
}


/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(201, 168, 76, 0.35);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(7, 13, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--white);
}

.nav-logo span { color: var(--gold); }


/* --- Language Switcher --- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3px;
    margin-left: auto;
    margin-right: 28px;
}

.lang-btn {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--navy-900);
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
    background: var(--gold);
    color: var(--navy-900) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy-900) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(30, 52, 86, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero entrance animations */
.anim-fade-down { animation: fadeDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.anim-fade-up   { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both; }
.anim-fade-left { animation: fadeLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both; }
.anim-hero-title { animation: heroTitle 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both; }
.anim-delay-2 { animation-delay: 0.55s; }
.anim-delay-3 { animation-delay: 0.9s; }

.hero-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 8px 24px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    background: rgba(201, 168, 76, 0.06);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-body);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

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


/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-900);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-glow {
    animation: pulse 2.5s ease-in-out infinite;
}

.btn-glow:hover {
    animation: none;
}


/* --- Hero Image --- */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    will-change: transform;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 400px;
    height: 480px;
    border-radius: 20px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    z-index: 1;
    animation: glowBorder 4s ease-in-out infinite;
}


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

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label-light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.accent { color: var(--gold); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.about-text { padding-right: 20px; }

.about-lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 400;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 24px 0 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.about-text p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--gold);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-body);
    font-weight: 500;
    line-height: 1.4;
}


/* ============================================
   BOOKS
   ============================================ */
.books {
    padding: 120px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.books::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.book-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.book-cover {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--navy-700);
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-card:hover .book-cover img { transform: scale(1.06); }

.book-info { padding: 28px 24px 24px; }

.book-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.book-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    padding: 10px 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(201, 168, 76, 0.05);
}

.btn-book:hover {
    background: rgba(201, 168, 76, 0.14);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.12);
}

.btn-book svg { transition: transform 0.3s ease; }
.btn-book:hover svg { transform: translate(2px, -2px); }


/* ============================================
   HERO STATS BAR (bottom of hero)
   ============================================ */
.hero-stats-bar {
    position: relative;
    z-index: 2;
    padding: 0 0 20px;
}

.hero-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fh-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.fh-stat-num {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.fh-stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.fh-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
}


/* ============================================
   TRAINER SECTION
   ============================================ */
.formation-trainer {
    padding: 100px 0;
    background: var(--navy-900);
    position: relative;
}

.formation-trainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

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

.trainer-image { position: relative; }

.trainer-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.trainer-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.95) contrast(1.05);
}

.trainer-image-deco {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    z-index: -1;
}

.trainer-name {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    font-weight: 700;
    margin: 12px 0 8px;
    line-height: 1.1;
}

.trainer-role {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.trainer-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

.trainer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trainer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
}

.trainer-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}


/* ============================================
   WHY THIS TRAINING
   ============================================ */
.formation-why {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover {
    background: rgba(201, 168, 76, 0.04);
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    color: var(--gold);
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon { transform: scale(1.08); }

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
}


/* ============================================
   FORMATION DETAILS
   ============================================ */
.formation {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    position: relative;
    overflow: hidden;
}

.formation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.formation-wrapper { text-align: center; }

.formation .section-label { font-size: 0.9rem; letter-spacing: 0.22em; }

.formation-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.formation-plus { color: var(--gold); font-size: 1.2em; }

.formation-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--text-body);
    max-width: 720px;
    margin: 0 auto 70px;
    line-height: 1.8;
}

.formation-subtitle strong { color: var(--text-primary); }

.formation-content {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: start;
    text-align: left;
}

.formation-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateX(8px);
    box-shadow: -4px 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 14px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-icon svg { width: 32px; height: 32px; }

.feature-card:hover .feature-icon { transform: scale(1.1); }

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
}


/* --- CTA Pricing Card --- */
.formation-cta-card {
    position: sticky;
    top: 100px;
}

.cta-card-inner {
    background: linear-gradient(145deg, var(--navy-600), var(--navy-700));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: border-color 0.4s ease;
}

.cta-glow {
    animation: glowBorder 3s ease-in-out infinite;
}

.cta-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 12px;
}

.cta-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 36px;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.price-currency {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
}

.cta-list {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.5;
}

.cta-list li:last-child { border-bottom: none; }
.cta-list svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; width: 22px; height: 22px; }
.cta-list strong { color: var(--gold); }

.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--navy-900);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.btn-buy:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 168, 76, 0.35);
    animation: none;
}

.btn-buy svg { transition: transform 0.3s ease; }
.btn-buy:hover svg { transform: translateX(4px); }

.cta-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--navy-900);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span { color: var(--gold); }

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom { padding-top: 24px; text-align: center; }

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}


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

    .hero-subtitle { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }

    .hero-image {
        order: -1;
    }

    .hero-image-wrapper { width: 300px; height: 380px; margin: 0 auto; }
    .hero-image-decoration { width: 300px; height: 380px; }

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

    .about-text { padding-right: 0; }

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

    .books-grid .book-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .formation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .formation-cta-card {
        position: static;
        max-width: 440px;
        margin: 0 auto;
    }

    .trainer-grid {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

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

    .deco-circle-1 { width: 200px; height: 200px; }
    .deco-dots-hero { width: 120px; height: 120px; }
}


/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-container { padding: 0 20px; }
    .nav-logo { font-size: 1.2rem; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(12, 21, 39, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        border-left: 1px solid rgba(201, 168, 76, 0.1);
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 1.05rem;
        color: var(--text-primary);
    }

    .nav-toggle { display: flex; }

    .lang-switch {
        margin-right: 16px;
    }

    .hero {
        padding: 90px 0 0;
        min-height: auto;
        display: block;
    }

    .hero-container {
        padding: 0 20px;
        gap: 32px;
    }

    .hero-image {
        order: -1;
        margin: 0 auto;
    }

    .hero-badge {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        padding: 6px 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-image-wrapper {
        width: min(260px, 70vw);
        height: auto;
        aspect-ratio: 4/5;
    }

    .hero-image-decoration {
        display: none;
    }

    .hero-stats-bar {
        padding: 20px 0;
    }

    .hero-stats-inner {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .fh-stat {
        min-width: 80px;
    }

    .books-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
        gap: 24px;
    }

    .book-card {
        max-width: 100%;
    }

    .book-cover {
        max-width: 100%;
    }

    .books-grid .book-card:last-child {
        max-width: none;
    }

    .about, .books, .formation { padding: 80px 0; }
    .formation-trainer { padding: 70px 0; }
    .formation-why { padding: 70px 0; }

    .trainer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .trainer-image-wrapper {
        max-width: min(320px, 90vw);
        margin: 0 auto;
    }

    .trainer-content {
        text-align: center;
    }

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

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

    .why-card { padding: 32px 24px; }

    .hero-stats-inner {
        gap: 24px;
        padding: 24px 20px;
    }
    .fh-stat-divider { display: none; }
    .fh-stat-num { font-size: 1.8rem; }

    .cta-list li {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card { padding: 22px 16px; }
    .stat-number { font-size: 1.7rem; }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .formation-content { gap: 32px; }
    .formation-cta-card { max-width: 100%; }
    .cta-card-inner { padding: 32px 24px; max-width: 100%; }

    .scroll-indicator { display: none; }

    .deco-dots-hero { width: 100px; height: 100px; top: 8%; left: 2%; }
    .deco-dots-about { width: 80px; height: 80px; }
    .deco-circle-1 { width: 160px; height: 160px; top: -40px; right: -30px; }
    .deco-circle-2 { width: 100px; height: 100px; }
    .deco-line-hero { display: none; }
    .deco-cross-1, .deco-cross-2, .deco-cross-3 { display: none; }
}


/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
    html { font-size: 15px; }

    .container { padding: 0 16px; }
    .nav-container { padding: 0 16px; }
    .nav-logo { font-size: 1.1rem; }

    .hero {
        padding: 80px 0 0;
    }

    .hero-container {
        padding: 0 16px;
        gap: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
        padding: 5px 12px;
    }

    .hero-title {
        font-size: clamp(1.7rem, 7.5vw, 2.2rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }

    .hero-image-wrapper {
        width: min(220px, 65vw);
    }

    .hero-stats-bar { padding: 16px 0; }

    .hero-stats-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 20px 12px;
        border-radius: 14px;
    }

    .fh-stat-num { font-size: 1.5rem; }
    .fh-stat-text { font-size: 0.75rem; }
    .fh-stat { min-width: 70px; }

    .section-header { margin-bottom: 40px; }

    .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-card { padding: 18px 12px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.78rem; }

    .feature-card { padding: 20px 16px; }
    .feature-card h3 { font-size: 1.15rem; }
    .feature-card p { font-size: 0.95rem; }

    .cta-card-inner { padding: 28px 20px; }
    .cta-list li { font-size: 0.95rem; }
    .price-amount { font-size: 2.5rem; }

    .why-card {
        padding: 28px 20px;
    }

    .why-card h3 { font-size: 1.1rem; }
    .why-card p { font-size: 0.95rem; }

    .trainer-badges { flex-direction: column; align-items: center; }
    .trainer-desc { font-size: 0.98rem; }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .book-info { padding: 22px 18px 20px; }
    .book-title { font-size: 1.05rem; }
    .book-desc { font-size: 0.85rem; }

    .deco-dots { display: none; }
    .deco-circle { display: none; }
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
