/* ============================================================
   ASCENSIA — Institut d'élévation humaine & professionnelle
   Design premium — Révéler, rayonner.
   ============================================================ */

/* ---- Variables ---- */
:root {
    --navy: #1B1464;
    --navy-dark: #120E45;
    --gold: #C5A55A;
    --gold-light: #D4BA7A;
    --orange: #E8732A;
    --orange-light: #F09050;
    --cream: #FAFAF7;
    --warm-white: #F5F3EE;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --border: #E8E4DD;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(27, 20, 100, 0.08);
    --shadow-lg: 0 12px 40px rgba(27, 20, 100, 0.12);
    --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.25);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.3rem; }

a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

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

::selection { background: var(--gold); color: white; }

/* ---- Section Spacing ---- */
.section {
    padding: 100px 0;
}
.section-sm {
    padding: 60px 0;
}
.section-cream {
    background: var(--warm-white);
}
.section-navy {
    background: var(--navy);
    color: white;
}
.section-navy h2, .section-navy h3, .section-navy h4 { color: white; }

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header h2 {
    margin-bottom: 16px;
}
.section-header .subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 8px;
}
.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.gold-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
    border-radius: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    padding: 16px 0;
    background: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    z-index: 1050;
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.logo-nav {
    height: 50px;
    transition: var(--transition);
}
.navbar.scrolled .logo-nav {
    height: 40px;
}

.navbar .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px !important;
    letter-spacing: 0.3px;
    position: relative;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}
.navbar .nav-link:hover { color: var(--navy); }

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 12px 0;
}
.dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--warm-white);
    color: var(--navy);
    padding-left: 24px;
}

/* ---- CTA Button ---- */
.btn-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(197, 165, 90, 0.4);
    color: white;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    background: transparent;
    transition: var(--transition);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    background: transparent;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}

/* ---- Navbar Toggler ---- */
.navbar-toggler {
    border: none;
    padding: 8px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B1464' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 50%, #EDE8DF 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.hero h1 {
    margin-bottom: 24px;
    font-weight: 700;
}
.hero h1 .highlight {
    color: var(--gold);
    position: relative;
}
.hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-photo {
    position: relative;
}
.hero-photo img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 550px;
    object-fit: cover;
}
.hero-photo::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    align-items: center;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.hero-badge img {
    height: 40px;
}
.hero-badge i {
    font-size: 1.2rem;
    color: var(--gold);
}

/* ============================================================
   CARDS
   ============================================================ */
.card-ascensia {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 40px 32px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.card-ascensia:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.card-ascensia .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 1.5rem;
}
.card-ascensia h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.card-ascensia p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.card-ascensia .card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card-ascensia .card-link:hover {
    gap: 10px;
    color: var(--orange);
}

/* ---- Formation Card ---- */
.formation-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.formation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.formation-card .card-top {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 32px;
    color: white;
    position: relative;
}
.formation-card .card-top .badge-duration {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}
.formation-card .card-top h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.formation-card .card-top p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin: 0;
}
.formation-card .card-body-custom {
    padding: 28px 32px;
}
.formation-card .objectives li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    list-style: none;
    position: relative;
    padding-left: 24px;
}
.formation-card .objectives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.formation-card .card-footer-custom {
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.formation-card .badge-opco {
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    position: relative;
    height: 100%;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}
.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-card .author-info .name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}
.testimonial-card .author-info .role {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================================
   VALUES
   ============================================================ */
.value-item {
    text-align: center;
    padding: 32px 20px;
}
.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
}
.value-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}
.value-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================================
   STATS
   ============================================================ */
.stat-item {
    text-align: center;
    padding: 24px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}
.section-navy .stat-label { color: rgba(255,255,255,0.7); }

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero h1 {
    color: white;
    margin-bottom: 16px;
}
.page-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-card .blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
}
.blog-card .blog-body {
    padding: 28px;
}
.blog-card .blog-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 10px;
    display: inline-block;
}
.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
}
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 6px;
}

/* ============================================================
   QUOTE / CITATION
   ============================================================ */
.citation-block {
    background: var(--warm-white);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 32px 40px;
    margin: 40px 0;
}
.citation-block blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.6;
}
.citation-block cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
}
.footer-logo {
    height: 50px;
}
.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    width: 16px;
}
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }

.qualiopi-badge {
    height: 45px;
    border-radius: 6px;
    background: white;
    padding: 4px 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a {
    color: rgba(255,255,255,0.4);
    margin-left: 20px;
}
.footer-bottom a:hover { color: var(--gold); }

/* ---- Floating CTA ---- */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1040;
}

/* ============================================================
   QUIZ
   ============================================================ */
.quiz-container {
    max-width: 700px;
    margin: 0 auto;
}
.quiz-progress {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}
.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transition: width 0.5s ease;
    border-radius: 2px;
}
.quiz-question {
    text-align: center;
    margin-bottom: 40px;
}
.quiz-question h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.quiz-question .q-number {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.quiz-scale {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.quiz-scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.quiz-scale input[type="radio"] { display: none; }
.quiz-scale .scale-btn {
    width: 56px;
    height: 56px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
    transition: var(--transition);
}
.quiz-scale input:checked + .scale-btn {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
    transform: scale(1.1);
}
.quiz-scale .scale-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 6px;
    max-width: 60px;
    text-align: center;
}

/* ============================================================
   ARTICLE / BLOG POST
   ============================================================ */
.article-content {
    max-width: 780px;
    margin: 0 auto;
}
.article-content h2 {
    font-size: 1.6rem;
    margin: 48px 0 20px;
}
.article-content h3 {
    font-size: 1.3rem;
    margin: 36px 0 16px;
}
.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}
.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.article-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: white;
    margin: 48px 0;
}
.article-cta h3 { color: white; margin-bottom: 16px; }
.article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* ============================================================
   ABOUT / METHOD
   ============================================================ */
.about-photo {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.method-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.method-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold);
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}
.video-wrapper video {
    width: 100%;
    display: block;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 20, 100, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.video-overlay:hover { background: rgba(27, 20, 100, 0.3); }
.video-play-btn {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}
.video-overlay:hover .video-play-btn {
    transform: scale(1.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-photo { margin-top: 40px; text-align: center; }
    .hero-photo::after { display: none; }
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .page-hero { padding: 120px 0 60px; }
    .navbar-collapse {
        background: white;
        border-radius: var(--radius);
        padding: 20px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 575px) {
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-badges { flex-direction: column; gap: 12px; }
    .stat-number { font-size: 2.2rem; }
    .card-ascensia { padding: 28px 20px; }
    .testimonial-card { padding: 28px; }
    body { padding-bottom: 70px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-orange { color: var(--orange) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-warm { background: var(--warm-white) !important; }
.bg-navy { background: var(--navy) !important; }

.fw-heading { font-family: var(--font-heading); }
.ls-wide { letter-spacing: 2px; }
.text-white-75 { color: rgba(255,255,255,0.75); }

/* Citation centered variant */
.citation-center {
    border-left: none;
    border-bottom: 4px solid var(--gold);
    border-radius: var(--radius);
}

/* Method boxes (homepage) */
.method-box {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Quiz icon */
.quiz-icon-large {
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.3;
}

/* CTA subtitle */
.cta-subtitle {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Gold line left-aligned variant */
.gold-line-left {
    margin: 20px 0;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
    z-index: 9999;
    padding: 20px;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-content p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-light);
    flex: 1;
    min-width: 250px;
}
.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; }
}

/* ============================================================
   RESPONSIVE IMPROVEMENTS
   ============================================================ */
@media (max-width: 767px) {
    .formation-card .card-top { padding: 24px; }
    .formation-card .card-body-custom { padding: 20px 24px; }
    .formation-card .card-footer-custom { padding: 16px 24px; }
    .citation-block { padding: 24px; }
    .footer-bottom { text-align: center; }
    .footer-bottom .text-md-end { text-align: center !important; margin-top: 10px; }
    .footer-bottom a { margin-left: 10px; margin-right: 10px; }
    .hero-text { font-size: 1rem; }
    .section-header { margin-bottom: 30px; }
    .video-play-btn { width: 56px; height: 56px; font-size: 1.2rem; }
    .article-cta { padding: 32px 20px; }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 1.7rem; }
    h2 { font-size: 1.5rem; }
    .stat-number { font-size: 1.8rem; }
    .card-ascensia { padding: 24px 16px; }
    .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
}
