/* --- Variables & Reset --- */
:root {
    --primary-color: #0f2c59; /* Bleu profond, institutionnel */
    --primary-light: #1a4d8c;
    --secondary-color: #c5a059; /* Or mat, élégant */
    --accent-color: #e63946; /* Touche de rouge dynamique */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --gray-bg: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.pre-title {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    scroll-margin-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* --- Header / Navbar --- */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.main-title .highlight {
    color: var(--secondary-color);
}

.logo-text .subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1001;
    pointer-events: none; /* Allows clicking through to elements below if needed, but we'll enable for links */
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
    pointer-events: auto; /* Enable clicks for the actual menu */
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    position: relative;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1002;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 0; /* Override margin if needed */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 44, 89, 0.9) 0%, rgba(15, 44, 89, 0.6) 60%, rgba(15, 44, 89, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px; /* Increased offset for fixed header */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero .tagline {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Countdown */
.countdown-container {
    margin: 0.5rem auto 1.5rem;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.countdown-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1;
}

.countdown {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 0;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span:first-child {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1;
}

.time-box .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: 0.7;
}

/* --- Quote Section --- */
.quote-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.quote-section blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Candidat Section --- */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.col-image, .col-text {
    flex: 1;
}

.image-wrapper.frame-effect {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--secondary-color);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.floating-badge .icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.2;
}

.badge-sub {
    font-size: 0.8rem;
    color: var(--text-light);
}

.quote-block {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-light);
    position: relative;
    background: rgba(197, 160, 89, 0.05);
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
}

.quote-block i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
    opacity: 0.5;
}

.quote-block p {
    margin-bottom: 0;
    line-height: 1.5;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: -15px;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.section-title::after {
    display: none;
}

.team-highlight {
    display: inline-flex;
    align-items: center;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.team-highlight i {
    margin-right: 12px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.check-list {
    margin: 20px 0;
}

/* --- Continuity Card (Jacques Gombault) --- */
.continuity-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid #e0e6ed;
    border-left: 6px solid var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.continuity-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.continuity-card .card-header i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
}

.continuity-card h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.continuity-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.continuity-card p:last-child {
    margin-bottom: 0;
}

.check-list {
    margin: 25px 0;
}

.check-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.check-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.check-list div {
    color: var(--text-color);
    font-size: 1rem;
}

.check-list strong {
    color: var(--primary-color);
    white-space: nowrap; /* Empêche le retour à la ligne sur le label */
}

.highlight-text {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary-light);
    margin: 20px 0;
    font-weight: 600;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 20px;
}

/* --- Vision / Icons --- */
.section-gray {
    background-color: var(--bg-light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.vision-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.vision-card:hover .icon-box {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.vision-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

/* --- Autonomy Banner Premium --- */
.autonomy-banner-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: var(--shadow-hover);
    display: flex;
    justify-content: center;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    text-align: left;
}

.banner-icon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.banner-text h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.banner-text strong {
    color: var(--secondary-color);
    text-transform: uppercase;
    animation: flash-opacity 0.8s ease-in-out infinite;
    display: inline-block;
}

@keyframes flash-opacity {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* --- Method Grid --- */
.method-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.method-item {
    text-align: center;
}

.method-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.method-item h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.max-800 {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-light);
    max-width: 900px;
    margin: 40px auto;
    padding: 0 40px;
    position: relative;
}

.quote::before, .quote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: rgba(197, 160, 89, 0.2);
    font-family: serif;
}

.quote::before { left: 0; top: -20px; }
.quote::after { right: 0; bottom: -40px; }

/* --- Priorités (Modern Cards) --- */
.bg-dark {
    background-color: #1a2a3a; /* Darker background for contrast */
}

.text-white { color: var(--white) !important; }
.text-light { color: rgba(255,255,255,0.7) !important; }

.priorities-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.priority-card-modern {
    background: #253342;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.card-bg {
    position: absolute;
    top: 0; right: 0; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: transform 0.5s ease;
}

.priority-card-modern:hover .card-bg { transform: translate(20%, -20%) scale(1.5); }

.priority-card-modern:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); border-color: var(--secondary-color); }

.card-content { position: relative; z-index: 1; text-align: left; }

.icon-circle {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.priority-card-modern:hover .icon-circle { background: var(--secondary-color); color: var(--white); }

.priority-card-modern h4 { color: var(--white); margin-bottom: 15px; font-size: 1.3rem; }
.priority-card-modern p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 0; line-height: 1.6; }

.separator.gold {
    background-color: var(--secondary-color);
    width: 80px;
    height: 4px;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.cta-mini {
    margin-top: 50px;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stronger {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 10px;
}

.gold-text {
    color: var(--secondary-color) !important;
}

/* --- Footer --- */
footer {
    background-color: #081a33;
    color: #cbd5e0;
    padding: 80px 0 30px;
    scroll-margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.footer-content, .footer-bottom {
    position: relative;
    z-index: 1;
}

footer h3 {
    color: var(--white) !important; /* Force la couleur blanche pour la visibilité */
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-main {
    flex: 1;
    min-width: 300px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* --- Social Links Highlighted --- */
.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    max-width: 280px;
}

.social-btn i {
    font-size: 1.4rem;
    margin-right: 12px;
}

.social-btn.fb {
    background-color: #1877f2;
}

.social-btn.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.footer-logo {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.footer-col-main .small {
    font-size: 0.85rem;
    margin-top: 10px;
    font-style: italic;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.contact-link i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}

/* --- Animations de Révélation au Scroll --- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .row {
        flex-direction: column;
    }
    
    .priorities-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
        padding: 0 10px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .countdown-container {
        padding: 15px 20px;
        width: 90%;
        max-width: 350px;
    }

    .countdown {
        gap: 15px;
    }

    .time-box span:first-child {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        margin: 0;
        white-space: normal;
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        max-width: none;
        height: auto;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .logo {
        position: relative;
        z-index: 1002;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-logo {
        height: 35px;
    }

    .main-title {
        font-size: 0.95rem;
    }

    .logo-text .subtitle {
        font-size: 0.75rem;
    }

    .hero-buttons {
        margin-top: 0;
        margin-bottom: 60px;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .priorities-grid-modern {
        grid-template-columns: 1fr !important;
    }

    .floating-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
    }

    .priorities-grid, .priorities-grid-detailed {
        grid-template-columns: 1fr !important;
    }
}

/* Fix portrait photo too big on landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .col-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-wrapper img {
        max-height: 80vh;
        object-fit: cover;
    }
}
