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

html {
    scroll-behavior: smooth;
}

:root {
    --accent-color: #0066FF;
    --accent-light: #3385FF;
    --accent-dark: #0052CC;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #163853 0%, #0a5f7f 50%, #1e88a8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-text {
    font-family: 'Roboto', sans-serif;
    font-size: 5em;
    font-weight: 900;
    color: #fff;
    letter-spacing: 10px;
    margin-bottom: 30px;
    animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }

    50% {
        opacity: 0.7;
        text-shadow: 0 0 40px rgba(0, 212, 255, 1);
    }
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    animation: loading 1s ease-in-out forwards;
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes loading {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a1929 0%, #1a2f42 50%, #2a4158 100%);
    min-height: 100vh;
    padding: 0;
    color: #333;
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 9999;
    margin-bottom: 0;
    background-color: rgb(21 37 51);
}

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

.logo {
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover .nav-name-mosconi {
    color: var(--accent-light);
    text-shadow: 0 0 25px rgba(51, 133, 255, 0.8),
        0 0 35px rgba(51, 133, 255, 0.5),
        0 0 45px rgba(51, 133, 255, 0.3);
}

.nav-name-display {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.nav-name-thomas,
.nav-name-mosconi {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.nav-name-thomas {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.95);
}

.nav-name-mosconi {
    font-size: 1.1em;
    color: var(--accent-color);
    background: transparent;
    padding: 2px 8px;
    margin-left: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.6),
        0 0 30px rgba(0, 102, 255, 0.4),
        0 0 40px rgba(0, 102, 255, 0.2);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.cta-nav-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent-color);
    color: #fff !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-nav-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.cta-nav-button::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Design moderne avec sections pleine largeur */
.section-wrapper {
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 80px 40px;
    margin: 0;
}

.section-wrapper>* {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Style glass-card pour compatibilité (avec fond blanc) */
.glass-card {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: none;
    padding: 80px 40px;
    margin: 0;
    transition: none;
}

.glass-card>* {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.navbar.glass-card {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

/* Alternance des fonds pour les sections */
.glass-card:nth-child(odd) {
    background: #ffffff;
}

/* Section About avec fond blanc */
.about {
    background: #ffffff !important;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('/assets/images/undraw_code-review_jdgp.svg'); */
    background-size: 350px;
    /* background-position: 98% 50%; */
    background-repeat: no-repeat;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.about>* {
    position: relative;
    z-index: 1;
}

/* About Hero Layout */
.about-hero {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.about-hero-left {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
}

.about-hero-right {
    flex: 0 0 75%;
    padding-right: 100px;
}

.about-profile-wrapper {
    text-align: center;
}

.about-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
    object-fit: cover;
    margin-bottom: 20px;
}

.about-profile-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.about-profile-title {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: var(--accent-color);
    margin: 0 0 15px 0;
}

.about-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.about-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.about-social-link:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.about-social-link i {
    font-size: 1.3em;
}

.about-social-link svg {
    width: 20px;
    height: 20px;
}

.about-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-description {
    font-size: 1.1em;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

.tech-stack-inline {
    margin-top: 30px;
}

.tech-stack-inline h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #1a2f42;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

/* Section Offres avec fond légèrement coloré */
.offres {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    position: relative;
}

.offres::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('/assets/images/undraw_pair-programming_9jyg.svg'), url('/assets/images/undraw_completed-tasks_1j9z.svg');
    background-size: 280px, 280px;
    background-position: 6% 50%, 95% 50%;
    background-repeat: no-repeat;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.offres>* {
    position: relative;
    z-index: 1;
}

/* Section Projets avec fond blanc */
.projets {
    background: #ffffff !important;
    position: relative;
}

.projets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/undraw_design-feedback_kzg9.svg');
    background-size: 350px;
    background-position: 5% 50%;
    background-repeat: no-repeat;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.projets>* {
    position: relative;
    z-index: 1;
}

/* Section Avantages avec fond légèrement coloré */
.avantages {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%) !important;
    position: relative;
}

.avantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/undraw_mobile-development_tjxm.svg');
    background-size: 300px;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.avantages>* {
    position: relative;
    z-index: 1;
}

/* Section Parcours avec fond blanc */
.parcours {
    background: #ffffff !important;
    position: relative;
}

.parcours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/undraw_absorbed_h2rt.svg');
    background-size: 350px;
    background-position: 8% 50%;
    background-repeat: no-repeat;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.parcours>* {
    position: relative;
    z-index: 1;
}

/* Section Contact avec fond accent */
.contact {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/undraw_contact-us_kcoa.svg');
    background-size: 350px;
    background-position: 90% 10%;
    background-repeat: no-repeat;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.contact>* {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUpLanding {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Section Landing Full-Screen */
/* Landing mobile - caché par défaut sur desktop */
.landing-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgb(21 37 51);
    background-attachment: fixed;
    overflow: hidden;
}

/* Landing desktop - visible par défaut */
.landing-desktop {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgb(21 37 51);
    background-attachment: fixed;
    overflow: hidden;
}

.landing-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    padding: 0 50px;
    margin-top: 70px;
    z-index: 2;
    align-items: center;
}

.landing-left {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInLeft 1s ease-out;
}

.landing-illustration {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
}

.landing-name-display {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.name-thomas,
.name-mosconi {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.name-thomas {
    font-size: clamp(4rem, 10vw, 8rem);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.name-mosconi {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--accent-color);
    text-shadow: 0 10px 40px rgba(0, 102, 255, 0.4);
    margin-left: 40px;
}

.landing-right {
    animation: fadeInUpLanding 1s ease-out;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-color);
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.landing-badge i {
    font-size: 1em;
}

.landing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.landing-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.landing-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.25em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 35px 0;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.landing-tagline strong {
    color: #fff;
    font-weight: 700;
}

.landing-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.landing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95em;
    font-weight: 500;
}

.landing-feature i {
    font-size: 1.2em;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.landing-feature i.fa-handshake {
    display: none;
}

.landing-feature:has(i.fa-handshake) {
    display: none;
}

.landing-cta-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.landing-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1.15em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.landing-cta-button.primary {
    background: #fff;
    color: var(--accent-color);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.landing-cta-button.primary:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    background: var(--accent-color);
    color: #fff;
}

.landing-cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.landing-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.landing-cta-button i {
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.landing-cta-button.primary:hover i {
    transform: translateX(5px);
}

.landing-cta-button.secondary:hover i {
    transform: translateY(5px);
}

.highlight {
    background: var(--accent-color);
    padding: 5px 15px;
    border-radius: 8px;
    position: relative;
    display: inline-block;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.scroll-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1.5em;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s backwards, bounce 2s ease-in-out infinite 2.5s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.scroll-down:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

/* Section About */
.about {
    scroll-margin-top: 80px;
}

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

.about-section {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e8f4f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-section:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.25);
    border-color: var(--accent-color);
}

.about-section:hover::before {
    transform: scaleX(1);
}

.about-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #1a2f42;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.about-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tech-tag {
    background: #e8f4f8;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9em;
    color: #1a2f42;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tech-tag i {
    color: var(--accent-color);
}

.tech-tag:hover {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.tech-tag:hover i {
    color: #ffffff;
}

.services-section {
    margin-bottom: 30px;
}

.services-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #1a2f42;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    color: #4a5568;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95em;
}

.services-list li i {
    font-size: 0.9em;
}

.about-cta {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ebf5 100%);
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    text-align: center;
}

.about-cta p {
    color: #1a2f42;
    font-size: 1em;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-cta p i {
    color: var(--accent-color);
    font-size: 1.2em;
}

.about-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.about-cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* Section Hero */
.hero {
    margin-top: 100px;
    scroll-margin-top: 100px;
    background: rgba(255, 255, 255, 0.25) !important;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 280px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    flex-shrink: 0;
    animation: fadeInRight 1s ease-out, pulse 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-text h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-text h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 15px;
    border-radius: 2px;
    animation: fadeInLeft 1s ease-out 0.4s backwards;
}

.hero-text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.typing-effect {
    overflow: hidden;
    border-right: 3px solid var(--accent-color);
    white-space: nowrap;
    animation:
        typing 3s steps(30) 1s backwards,
        blink 0.75s step-end infinite;
    display: inline-block;
}

.description {
    text-align: left;
    color: #fff;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.description h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: rgba(255, 255, 255, 0.95);
}

.description p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Section Titre */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    color: #0f1419;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.4);
}

/* Section Parcours */
.parcours {
    scroll-margin-top: 80px;
}

/* Timeline Parcours */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-dark));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -47px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.3);
}

.timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e8f4f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.25);
    border-color: var(--accent-color);
}

.timeline-content:hover::before {
    transform: scaleX(1);
}

.timeline-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #2a4158;
    margin-bottom: 5px;
}

.period {
    color: #718096;
    font-style: italic;
    margin-bottom: 15px;
    display: block;
    font-size: 0.9em;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-highlight {
    background: linear-gradient(135deg, #e8f4f8, #d1ebf5);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 18px 28px;
    margin-top: 15px;
    text-align: center;
    color: #1a2f42;
    font-weight: 700;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
    animation: pulse-glow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.cta-highlight i {
    color: var(--accent-color);
    font-size: 1.2em;
}

.cta-highlight:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.35);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: #ffffff;
}

.cta-highlight:hover i {
    color: #ffffff;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
    }

    50% {
        box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
    }
}

/* Section Projets */
.projets {
    scroll-margin-top: 80px;
}

/* Grille Projets */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e8f4f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.project-client-type {
    font-size: 0.85em;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.25);
    border-color: var(--accent-color);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 15px;
}

.project-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.project-result {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-result i {
    font-size: 1.1em;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #e8f4f8;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85em;
    color: #1a2f42;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* Section subtitle */
.section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.15em;
    margin: 10px 0 50px 0;
    font-weight: 400;
}

/* Section Offres & Tarifs */
.offres {
    scroll-margin-top: 80px;
}

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

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #e8f4f8;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0faff 100%);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.35);
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin: 15px 0;
    letter-spacing: -0.02em;
}

.price span {
    font-size: 0.5em;
    font-weight: 600;
    margin-left: 5px;
}

.price-subtitle {
    color: #4a5568;
    font-size: 1em;
    font-weight: 500;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 25px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    color: #4a5568;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    font-size: 0.95em;
}

.pricing-features li i {
    color: var(--accent-color);
    font-size: 0.9em;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-features li.unavailable {
    color: #cbd5e0;
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li.unavailable i {
    color: #cbd5e0;
}

.pricing-duration {
    color: #1a2f42;
    font-size: 0.95em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    padding: 14px;
    background: #e8f4f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-duration i {
    color: var(--accent-color);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.pricing-button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.pricing-note {
    background: #fff8e1;
    border: 2px solid #ffd54f;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.pricing-note i {
    color: #f57c00;
    font-size: 1.4em;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-note p {
    color: #5d4037;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Hosting Note */
.hosting-note {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
    border: 2px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.hosting-note-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.hosting-note-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: #1a2f42;
    margin: 0 0 12px 0;
}

.hosting-note-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1em;
}

/* Pricing Process */
.pricing-process {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 255, 0.1);
}

/* Hosting Warning */
.hosting-warning {
    margin: 40px auto;
    padding: 20px 25px;
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-left: 6px solid #ffc107;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
}

.hosting-warning i {
    color: #f57c00;
    font-size: 1.5em;
    margin-top: 2px;
    flex-shrink: 0;
}

.hosting-warning p {
    color: #5d4037;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95em;
    font-weight: 500;
}

/* Pricing Process */
.pricing-process h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #1a2f42;
    text-align: center;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.step-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #1a2f42;
    margin: 0 0 10px 0;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95em;
}

/* Tableau de comparaison */
.comparison-section {
    margin: 50px 0 30px 0;
}

.comparison-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #1a2f42;
    text-align: center;
    margin-bottom: 35px;
}

.comparison-table {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e8f4f8;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, #1a2f42 0%, #2a4158 100%);
    font-weight: 700;
    font-size: 1.05em;
}

.comparison-header .comparison-cell {
    color: #ffffff;
    padding: 20px 15px;
}

.comparison-cell {
    padding: 18px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4a5568;
    font-size: 0.95em;
    border-right: 1px solid #e8f4f8;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.feature-name {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: #1a2f42;
    padding-left: 25px;
}

.comparison-cell.featured-col {
    background: linear-gradient(135deg, #f0faff 0%, #e8f4f8 100%);
    font-weight: 500;
}

.comparison-cell.disabled {
    background: #f7fafc;
    color: #cbd5e0;
}

.comparison-cell i {
    font-size: 1.2em;
}

.comparison-cell i.fa-check {
    color: var(--accent-color);
}

.comparison-cell i.fa-times {
    color: #cbd5e0;
}

.comparison-cell.disabled i.fa-times {
    color: #cbd5e0;
}

.comparison-category {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    color: #ffffff;
    font-weight: 700;
    font-size: 1em;
    padding: 14px 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive pour le tableau */
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header {
        display: none;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e8f4f8;
        justify-content: space-between;
        text-align: left;
        padding: 15px 20px;
    }

    .comparison-cell.feature-name {
        background: #f7fafc;
        font-weight: 700;
        color: #1a2f42;
        padding: 15px 20px;
    }

    .comparison-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: #1a2f42;
        margin-right: 10px;
    }

    .comparison-cell.feature-name::before {
        content: '';
    }

    .comparison-category {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .avantages::before,
    .offres::before,
    .projets::before,
    .contact::before {
        background-image: none;
    }


}

/* Section Avantages */
.avantages {
    scroll-margin-top: 80px;
}

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

.advantages-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e8f4f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.25);
    border-color: var(--accent-color);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
}

.advantage-icon i {
    font-size: 2em;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon i {
    color: #fff;
}

.advantage-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95em;
}

/* Section Contact */
.contact {
    scroll-margin-top: 80px;
}

.contact-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.15em;
    margin: 10px 0 50px 0;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-cta {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ebf5 100%);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--accent-color);
    text-align: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
}

.contact-cta h3 {
    color: #1a2f42;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-cta p {
    color: #4a5568;
    font-size: 1em;
    font-weight: 500;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1a2f42;
    font-size: 0.95em;
    font-weight: 500;
    padding: 18px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e8f4f8;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    background: #ffffff;
    border-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

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

.icon {
    font-size: 1.3em;
    width: 25px;
    text-align: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #e8f4f8;
    background: #ffffff;
    color: #1a2f42;
    font-size: 0.95em;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0aec0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), 0 4px 15px rgba(0, 212, 255, 0.15);
}

.contact-form button {
    padding: 15px 30px;
    border-radius: 15px;
    border: none;
    background: var(--accent-color);
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Footer */
.footer {
    width: 100%;
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgb(21 37 51);
    padding: 50px 0 30px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-name-display {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
    margin-bottom: 8px;
}

.footer-name-thomas,
.footer-name-mosconi {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.footer-name-thomas {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.95);
}

.footer-name-mosconi {
    font-size: 1.5em;
    color: var(--accent-color);
    margin-left: 20px;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.5),
        0 0 25px rgba(0, 102, 255, 0.3);
}

.footer-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1em;
    margin: 0 0 20px 0;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-malt-link svg {
    width: 20px;
    height: 20px;
}

/* Colonne Contact */
.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    margin: 0 0 15px 0;
}

.footer-contact-info i {
    color: var(--accent-color);
    font-size: 1.1em;
    width: 20px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--accent-color);
}

/* Colonne Liens */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

/* Footer Bottom - Copyright */
.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85em;
    margin: 0;
    text-align: center;
}

/* Page Mentions Légales */
.legal-page {
    min-height: calc(100vh - 200px);
    padding: 120px 20px 80px 20px;
    background: linear-gradient(135deg, #0a1929 0%, #152533 100%);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-container h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #1a2f42;
    margin: 0 0 20px 0;
}

.legal-intro {
    color: #4a5568;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(0, 102, 255, 0.1);
}

.legal-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--accent-color);
    margin: 40px 0 20px 0;
}

.legal-container p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container strong {
    color: #1a2f42;
    font-weight: 600;
}

.legal-container h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--accent-color);
    margin: 30px 0 15px 0;
}

.legal-container ul {
    margin: 15px 0 25px 0;
    padding-left: 30px;
}

.legal-container ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
    list-style-type: disc;
}

.legal-container .link-action {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container .link-action:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.legal-update {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 102, 255, 0.1);
    text-align: center;
}

.legal-update p {
    color: #94a3b8;
    font-size: 0.9em;
    font-style: italic;
}

/* Bouton flottant mobile */
.mobile-contact-btn {
    display: none;
    text-wrap: nowrap;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    padding: 16px 32px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
    animation: pulse-btn 2s ease-in-out infinite;
}

.mobile-contact-btn:hover {
    background: var(--accent-dark);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.6);
}

.mobile-contact-btn i {
    margin-right: 8px;
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(0, 212, 255, 0.5);
    }

    50% {
        box-shadow: 0 8px 32px rgba(0, 212, 255, 0.7);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .mobile-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-name-thomas,
    .nav-name-mosconi {
        font-size: 1.1em;
    }

    /* Cacher landing desktop sur mobile */
    .landing-desktop {
        display: none !important;
    }

    /* Afficher landing mobile sur mobile */
    .landing-mobile {
        display: flex !important;
    }

    .landing-mobile .landing-split {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
        margin-top: 80px;
        max-width: 100%;
    }

    .landing-mobile .landing-left {
        order: 2;
    }

    .landing-mobile .landing-right {
        order: 1;
    }

    .landing-illustration {
        max-width: 350px;
    }

    .landing-name-display {
        align-items: center;
    }

    .name-thomas,
    .name-mosconi {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .name-mosconi {
        margin-left: 0;
    }

    .landing-title {
        font-size: 2.2em;
    }

    .landing-subtitle {
        font-size: 1.5em;
    }

    .landing-tagline {
        font-size: 1.1em;
    }

    .landing-features {
        flex-direction: column;
        gap: 15px;
    }

    .landing-cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1.05em;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-hero {
        flex-direction: column;
        gap: 30px;
    }

    .about-hero-left {
        flex: 1;
    }

    .about-hero-right {
        flex: 1;
        padding-right: 0;
    }

    .about-profile-img {
        width: 150px;
        height: 150px;
    }

    .about-main-title {
        font-size: 1.8em;
    }

    .about-description {
        font-size: 1em;
    }

    .navbar {
        width: 100%;
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -80%;
        top: 0;
        flex-direction: column;
        background: rgba(22, 56, 83, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 80%;
        max-width: 400px;
        height: 100vh;
        border-radius: 0;
        padding: 100px 40px 40px 40px;
        gap: 25px;
        transition: left 0.3s ease;
        border: none;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2em;
        width: 100%;
        text-align: center;
    }

    .cta-nav-button {
        width: 100%;
        text-align: center;
        display: block;
    }

    .container {
        padding: 20px 15px;
    }

    .hero {
        margin-top: 90px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 2em;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .hosting-warning {
        padding: 18px 20px;
        margin: 30px 0;
    }

    .hosting-warning i {
        font-size: 1.3em;
    }

    .hosting-note {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .hosting-note-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6em;
    }

    .hosting-note-content h4 {
        font-size: 1.2em;
    }

    .pricing-process {
        padding: 25px 20px;
    }

    .pricing-process h3 {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }

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

    .advantages-grid-compact {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 25px;
    }

    .navbar.glass-card {
        top: 0px;
        padding: 10px;
        width: 100%;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -37px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-socials {
        justify-content: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .legal-container {
        padding: 40px 25px;
    }

    .legal-container h1 {
        font-size: 2em;
    }

    .legal-container h2 {
        font-size: 1.3em;
    }

    .legal-container h3 {
        font-size: 1.1em;
    }

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

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Modale de notification */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notification-modal.show {
    opacity: 1;
    visibility: visible;
}

.notification-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 45px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 102, 255, 0.25), 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.notification-content.success .notification-icon {
    color: #fff;
    background: linear-gradient(135deg, #00d084 0%, #00a86b 100%);
}

.notification-content.error .notification-icon {
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.notification-message {
    color: #1a2f42;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.notification-close {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.notification-close:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.grecaptcha-badge {
    z-index: 9999;
}

/* ===========================
   BLOG STYLES
   =========================== */

/* Blog Header */
.blog-header {
    text-align: center;
    padding: 4rem 0 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background-clip: text;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #fff;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 10rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
}

.blog-card-header {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.blog-card-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 1rem;
}

.blog-card-placeholder {
    border: 2px dashed #ddd;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blog Article Page - Uses legal-page/legal-container */
.blog-article-header {
    margin-bottom: 3rem;
}

.blog-breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.blog-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb span:last-child {
    color: #999;
}


.blog-article-meta {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.blog-article-meta i {
    margin-right: 0.5rem;
}

/* Article Content in legal-container */
.legal-container .blog-article-content {
    line-height: 1.8;
    color: #4a5568;
}

.legal-container .blog-article-featured-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto;
    display: block;
}

.legal-container .blog-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    border-radius: 8px;
}

.legal-container .blog-intro p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-container .blog-intro p:last-child {
    margin-bottom: 0;
}

/* Override legal-container styles for blog articles */
.legal-container .blog-article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 3rem 0 1.5rem;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-container .blog-article-content h2 i {
    color: var(--accent-color);
}

/* Highlight Boxes in legal-container - Style from pricing-process */
.legal-container .blog-highlight {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 102, 255, 0.15);
    margin: 2rem 0;
}

.legal-container .blog-highlight p {
    margin: 0;
    color: #1a2f42;
    line-height: 1.7;
    font-size: 1em;
    font-weight: 500;
}

.legal-container .blog-highlight strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Warning Box in legal-container - Style from hosting-warning */
.legal-container .blog-warning {
    margin: 2rem auto;
    padding: 20px 25px;
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-left: 6px solid #ffc107;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-container .blog-warning i {
    color: #f57c00;
    font-size: 1.5em;
    flex-shrink: 0;
}

.legal-container .blog-warning p {
    color: #5d4037;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95em;
    font-weight: 500;
}

.legal-container .blog-warning strong {
    color: #5d4037;
    font-weight: 700;
}

/* Comparison Box in legal-container */
.legal-container .blog-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.legal-container .comparison-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.legal-container .comparison-item h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a2f42;
}

.legal-container .comparison-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.legal-container .comparison-item li {
    color: #4a5568;
}

/* Steps in legal-container */
.legal-container .blog-steps {
    margin: 2rem 0;
}

.legal-container .blog-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.legal-container .step-number {
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.legal-container .step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #1a2f42;
}

.legal-container .step-content p {
    margin: 0;
    color: #4a5568;
}

/* FAQ in legal-container */
.legal-container .blog-faq {
    margin: 2rem 0;
}

.legal-container .faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.legal-container .faq-item h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-container .faq-item p,
.legal-container .faq-item ul {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-container .faq-item li {
    color: #4a5568;
}

.legal-container .faq-item p:last-child,
.legal-container .faq-item ul:last-child {
    margin-bottom: 0;
}

/* CTA Box in legal-container - Style from about-cta */
.legal-container .blog-cta {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ebf5 100%);
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    text-align: center;
}

.legal-container .blog-cta h3 {
    color: #1a2f42;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.legal-container .blog-cta h3 i {
    color: var(--accent-color);
}

.legal-container .blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #1a2f42;
    font-weight: 500;
}

.legal-container .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-container .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.legal-container .btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.legal-container .btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
}

.legal-container .btn-primary i {
    transition: transform 0.3s ease;
}

.legal-container .btn-primary:hover i {
    transform: translateX(5px);
}

.legal-container .btn-secondary {
    background: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
}

.legal-container .btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.legal-container .btn-secondary i {
    transition: transform 0.3s ease;
}

.legal-container .btn-secondary:hover i {
    transform: translateX(-5px);
}

.legal-container .btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Article Footer in legal-container */
.legal-container .blog-article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 102, 255, 0.1);
}

.legal-container .blog-author-bio {
    display: flex;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    align-items: center;
}

.legal-container .author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.legal-container .author-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #1a2f42;
}

.legal-container .author-info p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-container .author-info .btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    border: none;
}

.legal-container .author-info .btn-small:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.legal-container .blog-share {
    text-align: center;
    margin: 2rem 0;
}

.legal-container .blog-share p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-container .share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-container .share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.legal-container .share-btn.linkedin {
    background: #0077b5;
}

.legal-container .share-btn.twitter {
    background: #1da1f2;
}

.legal-container .share-btn:hover {
    transform: translateY(-2px);
}

.legal-container .blog-navigation {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .legal-container h1 {
        font-size: 1.8rem;
    }

    .legal-container h2 {
        font-size: 1.5rem;
    }

    .blog-article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .legal-container .blog-comparison {
        grid-template-columns: 1fr;
    }

    .legal-container .blog-author-bio {
        flex-direction: column;
        text-align: center;
    }

    .legal-container .cta-buttons {
        flex-direction: column;
    }

    .legal-container .share-buttons {
        flex-direction: column;
    }

    .legal-container .blog-step {
        flex-direction: column;
    }
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.98) 0%, rgba(26, 47, 66, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(0, 102, 255, 0.3);
    padding: 25px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 99998;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-text h3 i {
    color: var(--accent-color);
}

.cookie-consent-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: var(--accent-light);
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cookie-btn i {
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.cookie-btn-accept:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-text h3 {
        font-size: 1.1rem;
        justify-content: center;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
}