<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
:root {
    --color-text: #191919;
    --color-text-secondary: #5a5a5a;
    --color-background: #ffffff;
    --color-primary: #191919;
    --color-secondary: #f2f2f2;
    --color-accent-green: #178d00;
    --color-accent-blue: #0c5bd3;
    --color-accent-gray: #000000;
    --border-radius-sm: 10px;
    --border-radius: 14px;
    --border-radius-lg: 20px;
    --border-radius-xl: 25px;
    --border-radius-full: 100px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 44px;
    --font-family: 'Inter', sans-serif;
    --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.5;
    font-size: 16px;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 36px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 42px;
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: 32px;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-xs);
}

p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

section {
    padding: 80px 0;
}

.divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: var(--spacing-xl) auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-secondary);
    color: var(--color-text);
    padding: 14px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: #e8e8e8;
}

.btn-secondary .arrow {
    margin-left: 8px;
    transition: var(--transition);
}

.btn-secondary:hover .arrow {
    transform: translateX(4px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.28);
    /* semi-transparent */
    backdrop-filter: blur(16px);
    /* effet de flou */
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: auto;
}

.navbar-links {
    display: flex;
    gap: 40px;
    /* Augmente l'espacement entre les icÃ´nes */
    align-items: center;
}

.navbar-links a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, background 0.2s;
    position: relative;
    border-radius: 8px;
    /* Coins moins arrondis */
    padding: 8px;
}

.navbar-links a:hover {
    color: var(--color-accent-blue);
    background: #f7f7f7;
    /* Gris plus clair */
}

.navbar-links a img {
    transition: transform 0.2s;
}

.navbar-links a:hover img {
    transform: scale(1.28);
}

.navbar-links a span {
    display: none;
    position: absolute;
    left: 50%;
    top: 120%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--color-text);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0;
}

.navbar-links a:hover span {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: var(--border-radius-full);
    background-color: #f2f2f2;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background-color: black;
    position: absolute;
    left: 15px;
}

.menu-toggle span:first-child {
    top: 21px;
}

.menu-toggle span:last-child {
    bottom: 21px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 16px;
    padding: 8px;
    transition: background 0.2s;
}

.logo:hover {
    background: #f7f7f7;
    /* Gris plus clair */
}

.logo img {
    width: 24px;
    height: 24px;
    display: block;
    transition: transform 0.2s;
}

.logo:hover img {
    transform: scale(1.28);
}

.logo span {
    display: none;
    position: absolute;
    left: 50%;
    top: 120%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--color-text);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0;
}

.logo:hover span {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

.navbar-links img {
    width: 24px;
    height: 24px;
    display: block;
}

.navbar-separator {
    width: 1.5px;
    height: 28px;
    background: linear-gradient(to bottom, #e0e0e0 60%, transparent 100%);
    margin: 0 18px;
    border-radius: 2px;
    opacity: 0.7;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 2000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.home-icon img {
    width: 36px;
    height: 36px;
}

.close-menu {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f2f2f2;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.close-menu img {
    width: 24px;
    height: 24px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 500;
}

.menu-link img {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    padding-top: 188px;
    padding-bottom: 70px;
}

.hero-content {
    max-width: 510px;
    margin-bottom: var(--spacing-xl);
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #191919;
    /* Bordure noire la plus fine possible */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    filter: contrast(1.08) saturate(1.1);
    /* AmÃŠliore la nettetÃŠ visuelle */
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-title {
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    margin-bottom: var(--spacing-lg);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(225, 249, 220);
    padding: 6px 10px;
    border-radius: var(--border-radius-full);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-accent-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-green);
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-green);
    border-radius: 50%;
    opacity: 0.16;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.16;
    }

    50% {
        transform: scale(2);
        opacity: 0.08;
    }

    100% {
        transform: scale(1);
        opacity: 0.16;
    }
}

.project-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.project-carousel::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 auto;
    width: 380px;
    height: 285px;
    background-color: #fafafa;
    border-radius: var(--border-radius-lg);
    border: 1.5px solid #f2f2f2;
    overflow: hidden;
    box-shadow: inset 0px 3px 0px 0px rgba(255, 255, 255, 1);
    position: relative;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 10px 16px -3px rgba(0, 0, 0, 0.25);
}

/* About Section */
.about .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.about-content {
    flex: 1;
    max-width: 510px;
}

.about-images {
    flex: 1;
    position: relative;
    height: 277px;
}

.image-card {
    position: absolute;
    width: 178px;
    height: 202px;
    background-color: white;
    padding: 8px;
    box-shadow: -0.2px 0.6px 0.9px rgba(0, 0, 0, 0.15),
        -0.5px 1.7px 2.5px rgba(0, 0, 0, 0.15),
        -1.1px 3.4px 5px rgba(0, 0, 0, 0.15),
        -2.1px 6.4px 9.4px rgba(0, 0, 0, 0.15),
        -4.1px 12.7px 18.7px rgba(0, 0, 0, 0.15),
        -9px 28px 41.2px rgba(0, 0, 0, 0.15);
}

.image-card:first-child {
    left: 97px;
    top: 64px;
}

.image-card:last-child {
    left: 211px;
    top: 20px;
}

.image-card img {
    width: 162px;
    height: 161px;
    object-fit: cover;
}

.image-caption {
    font-family: 'Zeyada', cursive;
    font-size: 14px;
    letter-spacing: -0.05em;
    margin-top: 8px;
}

/* Projects Section */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

.project-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.project-item {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.project-image {
    width: 100%;
    aspect-ratio: 1.335 / 1;
    overflow: hidden;
}

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

.project-info {
    padding: 16px 20px 32px;
}

/* Experience Section */
.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.experience-item {
    display: flex;
    align-items: flex-start;
}

.experience-date {
    width: 120px;
    color: #b3b3b3;
    font-weight: 500;
    font-size: 16px;
}

.experience-role {
    display: flex;
    align-items: center;
    gap: 11px;
}

.role-title {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 16px;
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.company-badge.blue {
    background-color: rgb(226, 237, 255);
    color: var(--color-accent-blue);
}

.company-badge.gray {
    background-color: rgb(239, 239, 239);
    color: var(--color-accent-gray);
}

.company-badge.green {
    background-color: rgb(238, 255, 226);
    color: rgb(95, 142, 62);
}

.company-badge img {
    width: 16px;
    height: 16px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: #fafafa;
    border: 1.5px solid #f2f2f2;
    border-radius: var(--border-radius-lg);
    height: 160px;
    padding: 20px;
    position: relative;
    box-shadow: inset 0px 3px 0px 0px rgba(255, 255, 255, 1);
}

.service-icons {
    position: relative;
    width: 56px;
    height: 56px;
}

.service-icons img {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: -3px 5px 13px rgba(0, 0, 0, 0.1),
        -13px 20px 24px rgba(0, 0, 0, 0.09),
        -29px 45px 32px rgba(0, 0, 0, 0, 0, 0.1),
        -13px 20px 24px rgba(0, 0, 0, 0.09),
        -29px 45px 32px rgba(0, 0, 0, 0.05);
}

.service-icons .icon-1 {
    top: 21px;
    left: 23px;
    transform: rotate(-6deg);
}

.service-icons .icon-2 {
    top: 34px;
    left: 55px;
    transform: rotate(8deg);
}

.service-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-weight: 500;
    font-size: 16px;
}

/* Testimonials Section */
.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.dot {
    width: 4px;
    height: 4px;
    background-color: #d9d9d9;
    border-radius: 50%;
}

.testimonial-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 374px;
    background-color: #fafafa;
    border: 1.5px solid #f2f2f2;
    border-radius: var(--border-radius-lg);
    padding: 26px;
    box-shadow: inset 0px 3px 0px 0px rgba(255, 255, 255, 1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}

.author-image {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
}

.author-info p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-lg);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background-color: #d9d9d9;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: var(--color-text);
}

/* Contact Section */
.contact-content {
    max-width: 510px;
    margin: 0 auto;
}

.contact-form {
    margin-top: var(--spacing-lg);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(187, 187, 187, 0.15);
    font-family: var(--font-family);
    font-size: 14px;
}

.contact-form input {
    height: 48px;
}

.contact-form textarea {
    min-height: 146px;
    resize: vertical;
}

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

.contact-form button {
    margin-top: var(--spacing-md);
    width: 100%;
    height: 47px;
    cursor: pointer;
    border: none;
}

/* Footer */
footer {
    padding: 36px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 64px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cta-button {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: white;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.03em;
}

/* Media Queries */
@media (max-width: 1199px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .container {
        max-width: 810px;
    }
}

@media (max-width: 809px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .container {
        padding: 0 36px;
        max-width: 100%;
    }

    .navbar-container {
        width: 100%;
        border-radius: 0;
    }

    .navbar-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 126px;
    }

    .hero-content,
    .about-content,
    .contact-content {
        max-width: 450px;
        padding: 0 36px;
    }

    .profile-pic {
        width: 72px;
        height: 72px;
    }

    .about .container {
        flex-direction: column;
    }

    .about-images {
        width: 100%;
    }

    .project-grid {
        padding: 0 36px;
    }

    .experience-timeline {
        padding: 0 36px;
        gap: 30px;
    }

    .experience-item {
        flex-direction: column;
        gap: 10px;
    }

    .divider {
        width: 80%;
    }

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

    .form-row {
        flex-direction: column;
    }
}</pre></body></html>