/* ═══════════════════════════════════════════════════
   HOME — toutes les sections de index.php
   (landing, about, offres, projets, avantages,
    parcours, contact, catalogue teaser, collaboration,
    tableau de comparaison)
   ═══════════════════════════════════════════════════ */

/* Section About fond blanc */
.about {
    background: #ffffff !important;
    position: relative;
    border-top: none;
}

.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: 0;
    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: 'Outfit', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.about-profile-title {
    font-family: 'Lato', 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: 0;
    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: 'Outfit', 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: 'Outfit', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #1a2f42;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

/* Section Offres fond blanc */
.offres {
    background: #ffffff !important;
    position: relative;
    padding-bottom: 20px;
}

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

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

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

/* Section Avantages fond bleu foncé */
.avantages {
    background: #0a1929 !important;
    position: relative;
    border-top: none;
}

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

/* Section Parcours 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 fond blanc */
.contact {
    background: #ffffff !important;
    position: relative;
}

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

/* Section Landing Full-Screen */
.landing-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.landing-desktop {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #ffffff;
    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;
    position: relative;
}

.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: 'Outfit', 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(0, 102, 255, 0.1);
    color: var(--accent-color);
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: none;
    border: 1px solid rgba(0, 102, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

.landing-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.landing-name {
    font-size: 0.92em;
    color: #718096;
    font-weight: 500;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out 0.35s backwards;
}

.landing-catchline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55em;
    font-weight: 700;
    color: #0066ff;
    line-height: 1.3;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.landing-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2em;
    font-weight: 600;
    color: #0066ff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.landing-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 1.25em;
    font-weight: 400;
    color: #4a5568;
    margin: 0 0 35px 0;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.landing-tagline strong {
    color: #1a2f42;
    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: #4a5568;
    font-size: 0.95em;
    font-weight: 500;
}

.landing-feature i {
    font-size: 1.2em;
    color: #fff;
    background: #0066ff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
}

.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: 'Lato', sans-serif;
    font-size: 1.15em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.landing-cta-button.primary {
    background: #0066ff;
    color: #fff;
    box-shadow: 0 10px 35px rgba(0, 102, 255, 0.3);
}

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

.landing-cta-button.secondary {
    background: transparent;
    color: #1a2f42;
    border: 2px solid rgba(26, 47, 66, 0.4);
    box-shadow: none;
}

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

.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: 0;
    position: relative;
    display: inline-block;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    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: 0;
    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: 0;
    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: 'Outfit', 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: 0;
    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: 'Outfit', 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: 0;
    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: 50px;
    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: 0;
    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: 'Outfit', 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: 0;
    animation: fadeInLeft 1s ease-out 0.4s backwards;
}

.hero-text h2 {
    font-family: 'Outfit', 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: 'Outfit', 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: 'Outfit', sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    color: #0066ff;
    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: 0;
    box-shadow: 0 2px 10px rgba(0, 102, 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: 0;
    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: 'Outfit', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    color: #1a2f42;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-family: 'Outfit', 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: 0;
    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;
}

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

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

.project-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 0;
    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: 'Outfit', 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: 0;
    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;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: stretch;
}

.offer-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-card--featured {
    border: 2px solid var(--accent-color);
    background: #f8fbff;
}

.offer-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.offer-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3em;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    flex-shrink: 0;
}

.offer-card--featured .offer-card-num {
    color: rgba(0, 102, 255, 0.18);
}

.offer-card-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.offer-card-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--accent-color);
}

.offer-card-price em {
    font-style: normal;
    font-weight: 400;
    font-size: 0.85em;
    color: #718096;
}

.offer-card-delay {
    font-size: 0.8em;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 5px;
}

.offer-card-delay i {
    color: var(--accent-color);
}

.offer-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #1a2f42;
    margin: 0;
}

.offer-card-desc {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    font-size: 0.97em;
}

.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.offer-tags span {
    font-size: 0.8em;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(0, 102, 255, 0.07);
    padding: 5px 12px;
    border: 1px solid rgba(0, 102, 255, 0.18);
}

.offer-btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: 4px;
    padding: 12px 28px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.03em;
    border-radius: 50px;
    transition: background 0.2s ease;
}

.offer-btn:hover {
    background: var(--accent-dark);
}

.pricing-note {
    background: #fff8e1;
    border: 2px solid #ffd54f;
    border-radius: 0;
    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: 0;
    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: 0;
    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: 'Outfit', 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;
}

/* Section Collaboration */
.collaboration {
    background: #0a1929;
    position: relative;
    overflow: hidden;
}

.collaboration .section-title {
    color: #ffffff;
}

/* Hosting Warning */
.hosting-warning {
    margin: 40px auto;
    padding: 20px 25px;
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-left: 6px solid #ffc107;
    border-radius: 0;
    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;
}

/* Catalogue Teaser */
.catalogue-teaser {
    background: #ffffff;
}

.catalogue-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.catalogue-teaser-label {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0066ff;
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 4px 12px;
    margin-bottom: 20px;
}

.catalogue-teaser-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9em;
    font-weight: 700;
    color: #1a2f42;
    margin: 0 0 16px;
    line-height: 1.2;
}

.catalogue-teaser-text p {
    color: #4a5568;
    line-height: 1.8;
    margin: 0 0 28px;
    font-size: 0.97em;
}

.catalogue-teaser-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: #0066ff;
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    border-radius: 50px;
    transition: background 0.2s ease, gap 0.2s ease;
}

.catalogue-teaser-btn:hover {
    background: #0050cc;
    gap: 14px;
}

.catalogue-teaser-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.catalogue-mini-card {
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.25);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.2s ease;
}

.catalogue-mini-card:hover {
    border-color: #0066ff;
}

.catalogue-mini-cat {
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #0066ff;
}

.catalogue-mini-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    color: #1a2f42;
    line-height: 1.35;
}

.catalogue-mini-card--more {
    background: #0066ff;
    border-color: #0066ff;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.catalogue-mini-card--more span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9em;
    font-weight: 700;
    color: #ffffff;
}

/* Collaboration Timeline (horizontal) */
.collab-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.collab-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 16px;
}

.collab-step::before {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 26px);
    right: calc(-50% + 26px);
    height: 2px;
    background: rgba(0, 102, 255, 0.4);
}

.collab-step:last-child::before {
    display: none;
}

.collab-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 0 4px #0a1929, 0 0 0 6px rgba(0, 102, 255, 0.35);
    margin-bottom: 24px;
}

.collab-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
    width: 100%;
    text-align: center;
    flex: 1;
}

.collab-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.collab-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9em;
}

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

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

.comparison-table {
    background: #ffffff;
    border-radius: 0;
    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;
}

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

.avantages .section-title {
    color: #ffffff;
}

.avantages .section-title::after {
    background: #0066ff;
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.5);
}

.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: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: none;
}

.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: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 102, 255, 0.4);
}

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

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 102, 255, 0.15);
    border: 2px solid rgba(0, 102, 255, 0.4);
    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);
    border-color: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
}

.advantage-icon i {
    font-size: 2em;
    color: #6699ff;
    transition: all 0.3s ease;
}

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

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

.advantage-card p {
    color: rgba(255, 255, 255, 0.7);
    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: 0;
    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: 0;
    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: 0;
    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: 50px;
    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);
}

.rgpd-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85em;
    color: #4a6a7a;
    cursor: pointer;
    line-height: 1.4;
}

.rgpd-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.link:hover::after {
    width: 100%;
}

/* ── Responsive home ── */
@media (max-width: 768px) {
    .landing-desktop .landing-split {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
        margin-top: 80px;
        max-width: 100%;
    }

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

    .landing-desktop .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: 1.75em;
    }

    .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;
    }

    .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;
    }

    .offer-list {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 28px 24px;
    }

    .offer-card-num {
        font-size: 2.2em;
    }

    .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;
    }

    .catalogue-teaser-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .collab-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .collab-step::before {
        display: none;
    }


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

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

    .timeline {
        padding-left: 30px;
    }

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

    .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;
    }
}

@media (max-width: 480px) {
    .collab-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .collab-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 0;
    }

    .collab-node {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .collab-card {
        text-align: left;
    }
}
