:root {
    --primary: #00d4ff;
    --secondary: #d4af37;
    --bg-dark: #050b14;
    --bg-card: rgba(13, 33, 54, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0b4c9;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 212, 255, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.05), transparent 25%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 11, 20, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(5, 11, 20, 0.95);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 70px !important;
    width: 70px !important;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    animation: fadeInUp 1s ease;
}

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

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

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--secondary), #fff, var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s linear infinite;
}

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

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

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

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #00a0c0 100%);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* New Utility Classes for Page Titles */
.gradient-title {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 8s linear infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.styled-subtitle {
    color: #a0e0ff;
    /* Light cyan/blue instead of muted grey/white */
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    background: #fff;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.cta-button.download {
    background: var(--secondary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.cta-button.download:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* AI Animations & Effects */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('photo-output_0.jpg') center/cover no-repeat;
    opacity: 0.1;
    mix-blend-mode: overlay;
    z-index: 0;
    pointer-events: none;
}

.typewriter h1 {
    overflow: hidden;
    border-right: .15em solid var(--primary);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary)
    }
}

/* Robot Animation Styles */
.robot-container {
    position: absolute;
    top: 15%;
    right: 10%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    /* Hidden by default */
    transform: scale(0.5) translateY(-100px);
    /* Start small and far */
    transition: opacity 1s ease, transform 1s ease;
}

.robot-container.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.robot-container.fly-away {
    animation: flyAway 1.5s ease-in forwards;
}

.robot-wrapper {
    /* Animation float starts only when active */
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
}

.floating-robot {
    width: 180px;
    /* Taille réduite */
    height: 180px;
    object-fit: cover;
    /* Zoom dans l'image */
    object-position: center center;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
    border-radius: 50%;
    /* Parfaitement rond */
    border: 4px solid rgba(0, 212, 255, 0.5);
    background: #fff;
    /* Fond blanc pour le logo si transparent */
}

.robot-message {
    background: rgba(13, 33, 54, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 20px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
    /* Delay for message */
    pointer-events: auto;
    position: relative;
}

.robot-container.active .robot-message {
    opacity: 1;
    transform: translateY(0);
}

.robot-message::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent var(--primary) transparent;
}

.robot-message p {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.robot-cta {
    display: inline-block;
    background: var(--primary);
    color: #050b14;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-bottom: 0.8rem;
}

.robot-cta:hover {
    background: #fff;
    transform: scale(1.05);
}

.robot-dismiss {
    display: block;
    color: #a0b4c9;
    font-size: 0.75rem;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
}

.robot-dismiss:hover {
    opacity: 1;
    text-decoration: underline;
    color: #ff6b6b;
}

@keyframes float {

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

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

@keyframes flyAway {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.1) translateY(-500px) rotate(20deg);
    }
}

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

/* Stats Section */
.stats {
    padding: 4rem 5%;
    background: linear-gradient(180deg, #0a1929, #0d2136);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #0d2136, #0a1929);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00d4ff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0b4c9;
    font-size: 0.95rem;
}

/* Section commune */
.section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #a0b4c9;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #0d2136, #0a1929);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.about-role {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #a0b4c9;
    line-height: 1.8;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #00d4ff;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #0a1929, #0d2136);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, #0d2136, #0a1929);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.service-card p {
    color: #a0b4c9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: #a0b4c9;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Horizontal Service Card */
.service-horizontal {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    text-align: left;
}

.service-horizontal .service-icon {
    font-size: 4rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-horizontal .service-content {
    flex: 1;
}

.service-horizontal ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.service-horizontal li {
    width: auto;
    padding-right: 1.5rem;
}

/* Category Headers for Services */
.service-category {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.service-category h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.service-category p {
    color: #a0b4c9;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, #0d2136, #0a1929);
}

.pricing-category {
    margin-bottom: 5rem;
}

.pricing-category:last-of-type {
    margin-bottom: 0;
}

.pricing-category-title {
    text-align: center;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.pricing-category-subtitle {
    text-align: center;
    color: #a0b4c9;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.price-card {
    background: linear-gradient(145deg, #0d2136, #0a1929);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.6);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #00d4ff;
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-name {
    color: #a0b4c9;
    font-size: 1rem;
}

.price-value {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: bold;
}

.price-note {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Table style for detailed pricing */
.price-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table th {
    color: #00d4ff;
    font-weight: 600;
}

.price-table td {
    color: #a0b4c9;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(180deg, #0a1929, #0d2136);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.portfolio-card {
    background: linear-gradient(145deg, #0d2136, #0a1929);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    height: fit-content;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.portfolio-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.portfolio-card h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #00d4ff;
}

.portfolio-card p {
    color: #a0b4c9;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.tech-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #d4af37;
}

.kpi-box {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid #00d4ff;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.kpi-box strong {
    color: #00d4ff;
}

.client-logo {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.client-logo img {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.client-logo img:hover {
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #0d2136, #0a1929);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, #0d2136, #0a1929);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.testimonial-text {
    color: #a0b4c9;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

.testimonial-role {
    color: #6b7280;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, #0a1929, #0d2136);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #0d2136, #0a1929);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-question span {
    color: #00d4ff;
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: #a0b4c9;
    line-height: 1.8;
    display: none;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #0d2136, #0a1929);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00d4ff;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group select option {
    background: #0d2136;
    color: #fff;
    padding: 0.5rem;
}

.form-group select option[disabled] {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.submit-button:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

/* Message de confirmation */
.form-message {
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    display: none;
    animation: slideDown 0.5s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    color: #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Footer */
footer {
    background: #0a1929;
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.social-links {
    margin: 2rem 0;
}

.social-links a {
    color: #00d4ff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4af37;
}

/* Bouton flottant Réserver un appel */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

/* Deuxième bouton flottant pour image gratuite */
.floating-cta-promo {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    animation: float 3s ease-in-out infinite 0.5s;
}

.floating-cta a,
.floating-cta-promo a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.floating-cta-promo a {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a1929;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.floating-cta a:hover,
.floating-cta-promo a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.floating-cta-promo a:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

@keyframes float {

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

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

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a1929;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 150px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 180px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .robot-container {
        position: absolute;
        top: 100px;
        right: 10px;
        margin-bottom: 0;
    }

    .floating-robot {
        width: 120px;
    }

    .hero h1 {
        font-size: 2.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-top: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .floating-cta-promo {
        bottom: 80px;
        right: 20px;
    }

    .floating-cta-promo a {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
    }
}

/* --- Advanced Hero Animations --- */

/* Common Hero Base */
.hero-creation,
.hero-formation,
.hero-audit,
.hero-automation,
.hero-tarifs,
.hero-community,
.hero-contact {
    position: relative;
    background: transparent;
    /* Keep original body gradient */
    overflow: hidden;
}

/* 1. Création IA - Aurora / Artistic Flow */
.hero-creation {
    position: relative;
    overflow: hidden;
}

/* .hero-creation::before,
.hero-creation::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 0, 255, 0.08), transparent 50%);
    animation: auroraMove 15s infinite alternate linear;
    filter: blur(60px);
    z-index: -1;
}

.hero-creation::after {
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.08), transparent 50%);
    animation: auroraMove 20s infinite alternate-reverse linear;
}

@keyframes auroraMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(10%, 10%) rotate(5deg);
    }
} */

/* 2. Formation IA - Neural Network / Connection */
/* Animation handled by Canvas in HTML */
/* 2. Formation IA - Neural Network / Connection */
/* Animation handled by Canvas in HTML */

/* 3. Audit IA - Data Scan / Radar */
/* Animation handled by JS (animations/audit-strategie.js) */
.hero-audit {
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* .hero-audit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
    background-size: 100% 200%;
    animation: scanline 3s linear infinite;
    z-index: -1;
} */

@keyframes scanline {
    0% {
        background-position: 0% -100%;
    }

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

/* 4. Automatisation IA - Circuit / Flow */
.hero-automation {
    position: relative;
    overflow: hidden;
}

/* .hero-automation::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(0deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px) 0 0 / 50px 50px;
    z-index: -1;
}

.hero-automation::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(0, 212, 255, 0.08) 60deg, transparent 120deg);
    animation: radarSpin 10s linear infinite;
    z-index: -1;
    opacity: 0.5;
} */

@keyframes radarSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 5. Tarifs - Premium / Gold Glow */
.hero-tarifs::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: goldPulse 5s infinite ease-in-out;
    z-index: -1;
}

@keyframes goldPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* 6. Références & Blog - Community / Dots */
.hero-community::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: -1;
    animation: floatingDots 20s linear infinite;
}

@keyframes floatingDots {
    from {
        background-position: 0 0;
    }

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

/* 7. Contact - Connection / Waves */
.hero-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    animation: ripple 4s infinite linear;
    z-index: -1;
}

.hero-contact::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    animation: ripple 4s infinite linear 1s;
    /* Delay */
    z-index: -1;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Creation IA Page Specifics */
.hero-creation {
    min-height: 80vh;
}

.hero-creation .hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    width: 90%;
    flex-wrap: wrap;
    text-align: left;
    margin: 0 auto;
}

.hero-creation h1 {
    text-align: left;
    font-size: 3.5rem;
}

.hero-creation .subtitle {
    text-align: left;
    margin-left: 0;
}

.hero-creation .cta-buttons {
    justify-content: flex-start;
}

.hero-video {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .hero-creation .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-creation h1,
    .hero-creation .subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-creation .cta-buttons {
        justify-content: center;
    }
}