/* BASE PALETTE & VARIABLES - Plus d'impact et meilleur contraste */
:root {
    --primary-color: #7209b7; /* Violet principal - gardé identique */
    --primary-light: #9d4edd; /* Violet clair - gardé identique */
    --primary-dark: #560bad; /* Violet foncé - gardé identique */
    --accent-color: #c77dff; /* Violet accent - gardé identique */
    --cta-color: #ff3d00; /* Nouvel accent orange pour les boutons prioritaires */
    --dark: #0f0f0f;
    --darker: #080808;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #ced4da;
    --card-bg: #141414;
    --glass: rgba(255, 255, 255, 0.05);
    --primary-glow: 0 0 15px rgba(114, 9, 183, 0.7); /* Glow plus prononcé */
    --primary-gradient: linear-gradient(45deg, #9d4edd, #560bad); /* Gradient violet amélioré */
    --cta-gradient: linear-gradient(45deg, #ff3d00, #ff8400); /* Nouveau gradient orange pour actions prioritaires */
}

/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    color: var(--light);
    line-height: 1.6;
    background-color: var(--darker);
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.display-heading-1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

.display-heading-1 span {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

/* Effet de soulignement animé pour les mots importants */
.display-heading-1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.display-heading-1 span:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-title-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.section-title-heading span {
    color: var(--primary-light);
}

.section-title {
    margin-bottom: 60px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* HEADER & NAVIGATION */
.header {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand .logo {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    border-radius: 10px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--primary-glow);
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-brand .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-text {
    color: var(--primary-light);
}

/* BUTTONS - Amélioration de la hiérarchie visuelle */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    text-align: center;
    outline: none;
    border: none;
}

.button.primary {
    background-color: var(--primary-color);
    color: var(--light);
    box-shadow: var(--primary-glow);
}

.button.secondary {
    background-color: transparent;
    color: var(--light);
    border: 1px solid var(--primary-color);
}

.button.gradient {
    background: var(--primary-gradient);
    color: var(--light);
    box-shadow: var(--primary-glow);
}

.button.cta-red {
    background: var(--cta-gradient);
    color: var(--light);
    box-shadow: 0 0 15px rgba(255, 61, 0, 0.6);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.button.secondary:hover {
    background-color: rgba(114, 9, 183, 0.1);
}

.button-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.button-text {
    white-space: normal;
    text-align: center;
}

.cta-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* HERO SECTION - Plus d'impact */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.1), transparent 70%);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary-dark), #1f0a33);
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    width: auto;
    max-width: fit-content;
    border: 1px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(157, 78, 221, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0);
    }
}

.hero-subtitle-text {
    color: #ff3d00;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.hero-content-p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-video {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border: 1px solid var(--primary-dark);
    transition: all 0.3s ease;
}

.hero-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.4);
}

/* COUNTDOWN TIMER - Nouveau */
.countdown-container {
    background: linear-gradient(90deg, #1a0633, #3a0066);
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    max-width: fit-content;
}

.countdown-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin: 0;
}

.countdown-timer {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff3d00;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 2px;
    margin: 0;
}

/* CALENDLY SECTION */
.calendly-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--card-bg);
}

.calendly-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    background: var(--dark);
    border: 1px solid var(--glass);
    position: relative;
}

.calendly-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    z-index: 2;
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    position: relative;
    z-index: 1;
}

/* PROCESS SECTION - Plus d'impact */
.process-section {
    padding: 100px 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(157, 78, 221, 0.1), transparent 70%);
    z-index: 0;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.process-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--glass);
    position: relative;
    overflow: hidden;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.7;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--light);
}

.process-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* SERVICES SECTION - Plus d'impact */
.services-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--card-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--glass);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--light);
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    flex-grow: 1;
}

/* TECH SECTION - Plus d'impact */
.tech-section {
    padding: 100px 0;
    position: relative;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.05), transparent 70%);
    z-index: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.tech-logo {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.tech-logo::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(157, 78, 221, 0.05),
        transparent
    );
    transition: top 0.5s ease;
    z-index: 0;
}

.tech-logo:hover::before {
    top: 100%;
}

.tech-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.tech-logo img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(0%) brightness(1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tech-logo:hover img {
    transform: scale(1.05);
}

/* CTA SECTION - Plus d'impact */
.cta-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--card-bg);
}

.cta-wrapper {
    background: var(--dark);
    border-radius: 10px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), transparent 70%);
    z-index: 0;
}

.cta-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--light);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-title span {
    color: #ff3d00;
    position: relative;
    display: inline-block;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cta-gradient);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    background: var(--primary-gradient);
    color: var(--light);
    box-shadow: var(--primary-glow);
}

.cta-image {
    position: relative;
    z-index: 1;
    width: 40%;
}

.cta-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass);
    transition: all 0.3s ease;
}

.cta-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer {
    background-color: var(--dark);
    padding: 80px 0 40px;
    position: relative;
    border-top: 1px solid var(--glass);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-brand .logo {
    height: 36px;
    width: 36px;
    margin-right: 10px;
    border-radius: 8px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-brand .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-heading {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.footer-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-list a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-list a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: flex-start;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass);
    color: var(--light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.legal-links li a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links li a:hover {
    color: var(--primary-light);
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-dark);
    border: 1px solid var(--primary-color);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--primary-glow);
}

/* HELPER CLASSES */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-video iframe {
        height: 280px;
    }
}

/* Ajustements pour tablettes et téléphones */
@media (max-width: 768px) {
    /* Fix du header pour petits écrans */
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    .navbar-button {
        width: 50%;
        display: flex;
        justify-content: right;
    }
    
    .navbar-button .button {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .display-heading-1 {
        font-size: 2.8rem;
    }
    
    .hero-video {
        margin-top: 40px;
    }

    .hero-video iframe {
        height: 400px;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-content {
        margin: 0 auto;
    }
    
    .cta-image {
        width: 80%;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .countdown-container {
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .display-heading-1 {
        font-size: 2.3rem;
    }
    
    .section-title-heading {
        font-size: 2rem;
    }
    
    .hero-content-p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-video iframe {
        height: 300px;
    }
    
    .process-wrapper,
    .services-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-links-column {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-links {
        flex-direction: column;
    }

    .cta-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    /* Ajustements header */
    .header {
        padding: 12px 0;
    }
    
    .navbar-brand .logo {
        height: 32px;
        width: 32px;
    }
    
    .navbar-brand .logo-text {
        font-size: 1.2rem;
    }
    
    /* Ajustements sections */
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-video iframe {
        height: 220px;
    }
    
    .process-section,
    .services-section,
    .tech-section,
    .cta-section {
        padding: 50px 0;
    }
    
    /* Ajustements typographie */
    .display-heading-1 {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title-heading {
        font-size: 1.7rem;
    }
    
    .hero-content-p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    /* Ajustements boutons */
    .button {
        padding: 10px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
        min-width: auto;
    }
    
    .button-icon {
        width: 16px;
        height: 16px;
    }

    .cta-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Ajustements layout */
    .cta-wrapper {
        padding: 25px 15px;
    }
    
    .hero-subtitle {
        width: 100%;
        justify-content: center;
        padding: 8px 15px;
    }
    
    .hero-subtitle-text {
        font-size: 0.8rem;
    }
    
    .countdown-container {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    /* Ajustements cards */
    .service-card {
        padding: 25px 20px;
    }
    
    .process-item {
        padding: 25px 20px;
    }
    
    /* Meilleure gestion de l'espace */
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Ajustements footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-links-column {
        margin-bottom: 25px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
}