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

body {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    color: #444;
    line-height: 1.6;
    background-color: #f3f3f3;
}

/* Colors */
.text-orange { color: #f28b3f; }
.text-orange-light { color: #f28b3f; font-weight: normal; }
.text-blue { color: #16365c; }
.text-green { color: #439268; }

.bg-white { background-color: #ffffff; }
.bg-light { background-color: #f9f9f9; }

p {
    text-align: justify;
}

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

.position-relative {
    position: relative;
}

/* Utilities */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.custom-list, .custom-bullet-list {
    margin: 20px 0 20px 20px;
}

.custom-list li, .custom-bullet-list li {
    margin-bottom: 8px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.btn:active {
    transform: scale(0.98);
}
.btn-orange {
    background-color: #f28b3f;
}
.btn-orange:hover {
    background-color: #e0792c;
}
.btn-green {
    background-color: #439268;
}
.btn-green:hover {
    background-color: #357a55;
}

/* NAVBAR */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.header-logo {
    height: 28px;
    width: auto;
}

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

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #16365c;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #f28b3f;
    background-color: rgba(242, 139, 63, 0.1);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    font-family: inherit;
    color: #555;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle {
    color: #f28b3f;
    background-color: rgba(242, 139, 63, 0.1);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    padding: 10px 20px;
    margin: 0;
    border-radius: 0;
    text-align: left;
    width: 100%;
}

.nav-dropdown-menu a:hover {
    background-color: #f9f9f9;
}

/* --- SECTION 1: HERO (SPLIT LAYOUT) --- */
.hero-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #f9f9f9 40%, #fef6f0 100%);
    padding: 60px 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 140px);
    position: relative;
    overflow: hidden;
}

/* Floating decorative shapes */
.hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(67, 146, 104, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(242, 139, 63, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-container.split-layout {
    max-width: 1150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-surtitle {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
    opacity: 0;
    animation: heroSlideIn 0.6s ease-out 0.1s forwards;
}

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

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #16365c;
    white-space: nowrap;
    opacity: 0;
    animation: heroSlideIn 0.6s ease-out 0.25s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(242, 139, 63, 0.12) 0%, rgba(242, 139, 63, 0.06) 100%);
    color: #d06b1a;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid rgba(242, 139, 63, 0.18);
    position: relative;
    opacity: 0;
    animation: heroSlideIn 0.6s ease-out 0.4s forwards;
}

.hero-badge::before {
    content: '📍';
    font-size: 16px;
    flex-shrink: 0;
}

.hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.75;
    opacity: 0;
    animation: heroSlideIn 0.6s ease-out 0.55s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    opacity: 0;
    animation: heroSlideIn 0.6s ease-out 0.7s forwards;
}

.hero-buttons .btn-green {
    padding: 14px 32px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-green::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: heroShimmer 3s ease-in-out infinite;
}

@keyframes heroShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.hero-buttons .btn-orange {
    padding: 14px 32px;
    font-size: 15px;
    background: transparent;
    color: #f28b3f;
    border: 2px solid #f28b3f;
    box-shadow: none;
}

.hero-buttons .btn-orange:hover {
    background-color: #f28b3f;
    color: #fff;
    box-shadow: 0 6px 12px rgba(242, 139, 63, 0.25);
}

/* Stats bar under buttons */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(22, 54, 92, 0.1);
    opacity: 0;
    animation: heroSlideIn 0.6s ease-out 0.85s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #16365c;
    line-height: 1;
}

.hero-stat-value .text-orange {
    color: #f28b3f;
}

.hero-stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 600;
}

/* Hero visual enhancements */
.hero-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 650px;
    width: 100%;
    position: relative;
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: 30px;
    left: -15px;
    border: 2px solid rgba(67, 146, 104, 0.15);
    border-radius: 28px;
    pointer-events: none;
    opacity: 0;
    animation: heroFrameIn 0.8s ease-out 0.6s forwards;
}

@keyframes heroFrameIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-visual .hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-visual .hero-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 12px 24px rgba(0,0,0,0.08);
}

.hero-img-caption {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Animation */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* --- SECTION 2: CONCEPT --- */
.concept-section {
    position: relative;
}

.triangle-down-gray {
    width: 0; 
    height: 0; 
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 30px solid #f9f9f9; /* Matches hero bg */
    margin: 0 auto;
}

/* --- SECTION OVERLAP DIVIDERS --- */
.triangle-overlap-white {
    width: 0; height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 30px solid #ffffff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.triangle-overlap-light {
    width: 0; height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 30px solid #f9f9f9;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.triangle-overlap-dark {
    width: 0; height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 30px solid #1a1f2e;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.concept-content p {
    margin-bottom: 20px;
}

/* New highlight blocks instead of dotted lines */
.highlight-block {
    background-color: rgba(242, 139, 63, 0.08);
    border-left: 4px solid #f28b3f;
    padding: 20px;
    margin: 30px auto;
    border-radius: 0 8px 8px 0;
    max-width: 800px;
    text-align: center;
}
.highlight-text {
    margin: 0 !important;
    font-size: 17px;
    font-weight: 600;
    color: #444;
}
@media (min-width: 850px) {
    .highlight-text {
        white-space: nowrap;
    }
}

/* --- SECTION 3: TESTIMONIALS --- */
.testimonials-section {
    text-align: center;
}

.testimonials-header {
    margin-bottom: 50px;
}

.testimonials-header .section-label {
    text-align: left;
    margin-bottom: 4px;
}

.testimonials-header .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 15px;
    color: #777;
    font-size: 16px;
}

.satisfaction-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    text-align: left;
}

.satisfaction-rate {
    font-size: 15px;
    font-weight: 700;
    color: #439268;
}

.satisfaction-details {
    font-size: 13.5px;
    color: #888;
}

/* Carousel wrapper with arrows */
.carousel-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-container {
    flex: 1;
    position: relative;
    min-height: 380px;
}

/* Navigation Arrows */
.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.carousel-arrow:hover {
    border-color: #f28b3f;
    color: #f28b3f;
    background: #fff;
    box-shadow: 0 4px 15px rgba(242, 139, 63, 0.15);
    transform: scale(1.08);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 50px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    border-left: 4px solid #f28b3f;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.testimonial-card.active {
    display: block;
    position: relative;
    animation: testimonialFadeIn 0.5s ease forwards;
}

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

/* Quote icon */
.testimonial-quote-icon {
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 0.6;
    color: rgba(242, 139, 63, 0.15);
    font-weight: bold;
    margin-bottom: 10px;
    user-select: none;
}

/* Testimonial body text */
.testimonial-body {
    font-style: italic;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 25px;
}

.testimonial-body p {
    margin-bottom: 12px;
    text-align: left;
}

/* Author section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(242, 139, 63, 0.2);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
    border-color: #f28b3f;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #16365c;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.testimonial-stars {
    font-size: 14px;
    color: #f5b731;
    letter-spacing: 2px;
}

/* Carousel navigation */
.carousel-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
    gap: 12px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-pause-btn {
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    padding: 5px;
    outline: none;
}

.carousel-pause-btn:hover {
    color: #f28b3f;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.dot:hover {
    background-color: #bbb;
    transform: scale(1.15);
}

.dot.active {
    background-color: #f28b3f;
    width: 28px;
}

/* Progress bar */
.carousel-progress {
    width: 120px;
    height: 3px;
    background-color: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f28b3f, #e0792c);
    border-radius: 3px;
    animation: progressFill 7s linear infinite;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

.testimonial-footer {
    color: #999;
    font-size: 13px;
    margin-top: 25px;
}

/* --- SECTION 4: CONCERNED --- */
.concerned-content p {
    margin-bottom: 15px;
}

/* --- SECTION 5: PROMISE --- */
.promise-section {
    padding-bottom: 80px;
}

.promise-content p {
    margin-bottom: 20px;
}

.curieux-text {
    margin-top: 40px;
    margin-bottom: 20px;
}

.promise-btn-container {
    text-align: center;
    margin-top: 30px;
}

/* --- SECTION 6: PROGRAM --- */
.program-section {
    background-color: #f0f0f0;
}

.program-header {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.triangle-down-light {
    width: 0; 
    height: 0; 
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 30px solid #f9f9f9; /* Matches section 5 bg */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.program-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    position: absolute;
    top: 0;
    left: 0;
}

.program-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(100, 100, 100, 0.7);
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
}

.program-body {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.program-card {
    background-color: #fff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    padding: 50px 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.program-card-surtitle {
    font-size: 20px;
    color: #666;
}

.program-card-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.program-card-subtitle {
    font-size: 22px;
    color: #444;
    margin-bottom: 15px;
}

.program-card-desc {
    margin-bottom: 20px;
}

.program-days-title {
    font-size: 24px;
    margin: 40px 0 30px 0;
    font-weight: 600;
}

.program-step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-right: 30px;
    min-width: 80px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.program-step:hover .step-number {
    transform: translateX(6px) scale(1.05);
    color: #e0792c; /* Hover 'À tester' effect */
}

.step-vertical {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-right: 30px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
}

.step-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-content p {
    margin-bottom: 15px;
    color: #555;
}

/* --- SECTION 7 & 8: Split List --- */
.banner-container {
    position: relative;
    width: 100%;
    height: 350px;
}
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.triangle-overlay {
    width: 0; 
    height: 0; 
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 30px solid #f0f0f0; /* Matches previous section program-section */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.banner-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

.split-list-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}
.split-list-title {
    flex: 0 0 250px;
    font-size: 24px;
    font-weight: 700;
    padding-right: 30px;
    line-height: 1.3;
}
.split-list-content {
    flex: 1;
}
.split-list-content p {
    margin-bottom: 15px;
}

/* --- SECTION 9: Checkmark List --- */
.checkmark-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}
.checkmark-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
}
.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #444;
    font-weight: bold;
    font-size: 18px;
}

/* --- SECTION 10: Trainers --- */
.trainer-profile {
    display: flex;
    align-items: center;
    background: transparent;
    margin-bottom: 60px;
    gap: 40px;
}
.trainer-content {
    flex: 1;
}
.trainer-image {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
}
.trainer-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.trainer-name {
    font-size: 28px;
    margin-bottom: 5px;
}
.trainer-role {
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.trainer-bio-italic {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}
.trainer-content p {
    margin-bottom: 15px;
}

/* --- SECTION 11: Press --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    max-width: 900px;
    margin: 0 auto 50px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
}
.press-logos img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.press-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- SECTION 12: Conditions & Financement --- */
.bg-dark {
    background-color: #1a1f2e;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(242, 139, 63, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(67, 146, 104, 0.05) 0%, transparent 50%);
}

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

.section-12-header .section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-12-header .section-title.text-white {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
}

.section-12-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.info-cards-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.info-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 45px 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(242, 139, 63, 0.25);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conditions-icon {
    background: linear-gradient(135deg, rgba(67, 146, 104, 0.2), rgba(67, 146, 104, 0.08));
    color: #5cb97e;
}

.finance-icon {
    background: linear-gradient(135deg, rgba(242, 139, 63, 0.2), rgba(242, 139, 63, 0.08));
    color: #f28b3f;
}

.info-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* Checklist for conditions */
.info-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.info-checklist li:hover {
    color: rgba(255, 255, 255, 1);
}

.info-checklist li:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: #5cb97e;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(67, 146, 104, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* Text in finance card */
.info-card-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
}

/* Benefits list */
.info-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.info-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.benefit-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Pricing highlight block */
.pricing-highlight {
    background: linear-gradient(135deg, rgba(242, 139, 63, 0.12), rgba(242, 139, 63, 0.04));
    border: 1px solid rgba(242, 139, 63, 0.25);
    border-radius: 16px;
    padding: 28px 30px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
    font-weight: 600;
}

.pricing-range {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.price-from, .price-to {
    font-size: 36px;
    font-weight: 800;
    color: #f28b3f;
    line-height: 1;
}

.price-from small, .price-to small {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    margin-left: 2px;
}

.price-separator {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.pricing-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

/* Info extras */
.info-extras {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-extra-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.info-extra-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.conditions-section p {
    color: #ddd;
    margin-bottom: 15px;
}

/* --- SECTION 13: Apply --- */
.numbered-list-container {
    max-width: 800px;
    margin: 0 auto;
}
.numbered-list {
    list-style: decimal;
    padding-left: 20px;
}
.numbered-list li {
    margin-bottom: 25px;
    padding-left: 10px;
    font-size: 16px;
}
.numbered-list li::marker {
    font-weight: bold;
    color: #16365c;
}

/* --- SECTION 14: Countdown --- */
.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-value {
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
}
.countdown-label {
    font-size: 14px;
    font-weight: bold;
    color: #222;
    margin-top: 10px;
}


/* Responsive Design */
@media (max-width: 900px) {
    .hero-container.split-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-title {
        white-space: normal;
        font-size: 36px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-badge {
        text-align: left;
    }
    .mobile-nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    .main-nav.nav-open {
        display: flex;
    }

    .main-nav a {
        margin: 12px 0;
        text-align: center;
        font-size: 16px;
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 12px 0;
        pointer-events: none; /* Make it unclickable on mobile so it just acts as a label */
    }

    .dropdown-arrow {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        background-color: transparent;
        margin-top: 5px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        transform: none;
    }

    .nav-dropdown-menu a {
        font-size: 15px;
        color: #777;
        margin: 8px 0;
    }

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

@media (max-width: 768px) {
    .program-step {
        flex-direction: column;
    }
    .step-number {
        margin-bottom: 10px;
    }
    .program-step:hover .step-number {
        transform: none;
    }
    .step-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 10px;
        text-align: left;
    }
    .program-card {
        padding: 30px 20px;
    }
    .program-card-title {
        font-size: 28px;
    }
    .split-list-item {
        flex-direction: column;
    }
    .split-list-title {
        flex: none;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
        padding-right: 0;
    }
    .trainer-profile {
        flex-direction: column-reverse;
        text-align: center;
    }
    .trainer-image {
        margin-bottom: 20px;
    }
    .info-cards-layout {
        flex-direction: column;
    }
    .info-card {
        padding: 30px 25px;
    }
    .info-card-title {
        font-size: 20px;
    }
    .price-from, .price-to {
        font-size: 28px;
    }
    .countdown {
        gap: 20px;
        flex-wrap: wrap;
    }
    .countdown-value {
        font-size: 40px;
    }
    /* Testimonials responsive */
    .carousel-arrow {
        width: 38px;
        height: 38px;
    }
    .carousel-wrapper {
        gap: 8px;
    }
    .testimonial-card {
        padding: 30px 25px 30px;
    }
    .testimonial-quote-icon {
        font-size: 50px;
    }
    .testimonial-body {
        font-size: 14px;
    }
}

/* Modal Popup Styling for HubSpot Meetings */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 850px;
    height: 90vh;
    max-height: 800px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #f1f1f1;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: background 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.modal-body {
    flex: 1;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px 10px 10px 10px;
}

.modal-body .meetings-iframe-container {
    width: 100%;
    height: 100%;
    min-height: 650px;
}

