/* ==========================================
   CLUB FFI INVEST - Styles
   ========================================== */

:root {
    --blue-dark: #0F2B5B;
    --blue-main: #1B3A6B;
    --blue-light: #2A4F8A;
    --red: #E63946;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-500: #6C757D;
    --gray-700: #495057;
    --gray-900: #212529;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1140px;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

a {
    color: var(--blue-main);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--blue-light);
}

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

/* CONTAINER */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: background 0.3s;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue-dark);
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--blue-dark);
}

.nav-cta-secondary {
    border: 2px solid var(--blue-dark) !important;
    color: var(--blue-dark) !important;
    padding: 0.4rem 1rem;
    border-radius: var(--radius);
    font-weight: 600 !important;
}

.nav-cta-secondary:hover {
    background: var(--blue-dark) !important;
    color: var(--white) !important;
}

.nav-cta {
    background: var(--blue-dark) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--blue-light) !important;
}

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

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

/* ==========================================
   HERO
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--blue-light) 100%);
    color: var(--white);
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    pointer-events: none;
}

.hero-logo {
    max-width: 320px;
    height: auto;
    margin-bottom: 2rem;
    position: relative;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: #d32f3e;
    border-color: #d32f3e;
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--blue-dark);
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats {
    background: var(--blue-dark);
    color: var(--white);
    padding: 3rem 0;
    border-bottom: 4px solid var(--red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.subsection-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 3rem 0 1.5rem;
}

.subsection-title:first-of-type {
    margin-top: 0;
}

/* TWO COLUMN LAYOUT */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

p + p {
    margin-top: 1rem;
}

/* ==========================================
   CARDS
   ========================================== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.card h3 {
    font-size: 1.35rem;
    color: var(--blue-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.card-highlight {
    background: var(--blue-dark);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
}

.card-highlight h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    font-size: 1.2rem;
}

.card-highlight a {
    color: var(--white);
    text-decoration: underline;
}

/* ==========================================
   TEAM
   ========================================== */
.team-member {
    margin-bottom: 1.5rem;
}

.team-member strong {
    display: block;
    font-size: 1.1rem;
}

.team-member span {
    display: block;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.link-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.team-join {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
}

/* ==========================================
   INFO LIST
   ========================================== */
.info-item {
    margin-bottom: 1.25rem;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* ==========================================
   PROCESS STEPS
   ========================================== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step span:last-child {
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* ==========================================
   INVESTMENTS
   ========================================== */
.investments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.investment-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--blue-dark);
    transition: box-shadow 0.2s;
}

.investment-card:hover {
    box-shadow: var(--shadow-lg);
}

.investment-logo {
    max-height: 48px;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.investment-logo-dark {
    background: var(--blue-dark);
    padding: 8px 16px;
    border-radius: 6px;
    max-height: 60px;
    max-width: 220px;
}

.investment-active {
    border-left-color: var(--red);
}

.investment-pipeline {
    border-left-color: var(--gray-300);
}

.investment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.investment-header h4 {
    font-size: 1.15rem;
    color: var(--blue-dark);
}

.investment-date {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.investment-desc {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.investment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail {
    background: var(--gray-50);
    padding: 0.75rem;
    border-radius: 6px;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.detail-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-top: 0.25rem;
}

.investment-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.investment-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.investment-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--blue-main);
}

.investment-links a:hover {
    text-decoration: underline;
}

/* BADGES */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active {
    background: var(--red);
    color: var(--white);
}

.badge-pipeline {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* ==========================================
   PRESSE
   ========================================== */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.press-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--blue-dark);
    transition: box-shadow 0.2s, transform 0.2s;
    color: var(--gray-900);
}

.press-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: var(--gray-900);
}

.press-source {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue-main);
    margin-bottom: 0.5rem;
}

.press-card h4 {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.press-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ==========================================
   PROCHAINE SESSION
   ========================================== */
.next-session {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--red);
}

.next-session-icon {
    color: var(--red);
    flex-shrink: 0;
}

.next-session-info {
    flex: 1;
}

.next-session-info h3 {
    font-size: 1.1rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.next-session-date {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.next-session-desc {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.sessions-list {
    margin-top: 1.5rem;
}

.sessions-list h4 {
    font-size: 0.95rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.sessions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.session-chip {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ==========================================
   TEMOIGNAGES
   ========================================== */
.section-wip {
    text-align: center;
    color: var(--gray-500);
    font-style: italic;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* ==========================================
   PARTENAIRES
   ========================================== */
.partners-section {
    margin-bottom: 2.5rem;
}

.partners-category {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 1rem;
    text-align: center;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.partner-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--blue-dark);
    transition: all 0.2s;
}

a.partner-item:hover {
    background: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark);
}

.partner-highlight {
    background: var(--blue-dark);
    color: var(--white) !important;
    border-color: var(--blue-dark);
}

.partner-more {
    background: transparent;
    border-style: dashed;
    color: var(--gray-500);
    font-weight: 500;
    font-style: italic;
}

.partners-grid-logos {
    gap: 1.5rem;
    align-items: center;
}

.partner-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.2s;
    min-height: 80px;
}

.partner-logo-item img {
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.2s;
}

a.partner-logo-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-dark);
}

a.partner-logo-item:hover img {
    filter: grayscale(0%);
}

.partner-logo-item.partner-highlight {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.partner-logo-item.partner-highlight img {
    filter: brightness(0) invert(1);
}

a.partner-logo-item.partner-highlight:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
}

.partner-logo-item.partner-dark {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.partner-logo-item.partner-dark img {
    filter: none;
}

a.partner-logo-item.partner-dark:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
}

.partner-logo-item.partner-more {
    background: transparent;
    border-style: dashed;
    color: var(--gray-500);
    font-weight: 500;
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
}

a.partner-highlight:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
}

/* ==========================================
   FAQ
   ========================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
    padding: 1.25rem 0;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--blue-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-500);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 0 1.25rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ==========================================
   SECTION PATRIOTE
   ========================================== */
.section-patriote {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-patriote::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002395 33%, var(--white) 33%, var(--white) 66%, #ED2939 66%);
}

.section-title-light {
    color: var(--white);
}

.section-title-light::after {
    background: var(--white);
}

.patriote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.patriote-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1.25rem;
}

.patriote-text:last-of-type {
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================
   ADVANTAGES
   ========================================== */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage h4 {
    font-size: 1.05rem;
    color: var(--blue-dark);
    margin-bottom: 0.25rem;
}

.advantage p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* PRICING TABLE */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.pricing-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 0.95rem;
}

.pricing-table td:last-child {
    text-align: right;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.contact-item svg {
    color: var(--blue-dark);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--gray-700);
}

.contact-item a:hover {
    color: var(--blue-dark);
}

/* FORM */
.contact-form {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-main);
    box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-affiliate {
    margin-top: 0.5rem;
}

.footer-affiliate a {
    color: var(--white);
    text-decoration: underline;
    opacity: 0.9;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-links a {
    display: block;
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-legal p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-menu li:last-child {
        border: none;
        padding-top: 1rem;
    }

    .nav-cta {
        text-align: center;
        display: block !important;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .investments-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }

    .next-session {
        flex-direction: column;
        text-align: center;
    }

    .next-session .btn {
        width: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.65rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

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

    .stat-number {
        font-size: 1.75rem;
    }

    .investment-details {
        grid-template-columns: 1fr;
    }
}
