:root {
    --bg-color: #0a0a0a;
    --card-bg: #111111;
    --text-color: #ffffff;
    --text-muted: #888888;
    --primary-color: #39FF14;
    --primary-glow: rgba(57, 255, 20, 0.3);
    --secondary-color: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilitaires */
.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--primary-glow);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-secondary {
    border: 2px solid var(--text-muted);
    color: var(--text-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.badge-highlight {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-color);
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
    font-weight: 600;
}

/* Barre de navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 10, 10, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links a {
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links .btn-primary {
    margin-left: 30px;
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Accueil */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    padding-top: 80px;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
    animation: pulse-glow 6s infinite ease-in-out alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    gap: 50px;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 100%;
}

.stats-ticker {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 80px rgba(57, 255, 20, 0.2));
    position: relative;
    z-index: 2;
}

.hero-pin {
    position: absolute;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-pin img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.5));
}

.pin-1 {
    top: 35%;
    left: 45%;
    animation-delay: 0s;
}

.pin-2 {
    top: 55%;
    left: 50%;
    animation-delay: 0.5s;
}

.pin-3 {
    top: 50%;
    left: 70%;
    animation-delay: 1s;
}

.pin-pulse {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background: rgba(57, 255, 20, 0.6);
    border-radius: 50%;
    filter: blur(8px);
    animation: pulse-shadow 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-25px);
    }
}

@keyframes pulse-shadow {

    0%,
    100% {
        width: 20px;
        opacity: 0.6;
    }

    50% {
        width: 60px;
        opacity: 0.1;
    }
}

/* Animation du Ping */
.ping-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    width: 100px;
    height: 100px;
    opacity: 0;
    z-index: 1;
    animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-circle:nth-child(2) {
    animation-delay: 1s;
}

.ping-circle:nth-child(3) {
    animation-delay: 2s;
}

@keyframes ping {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.8;
        border-width: 2px;
    }

    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
        border-width: 0px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }

    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

/* Fonctionnalités */
.features {
    padding: 100px 10%;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Intégrations */
.integrations {
    padding: 120px 10%;
    background: linear-gradient(to bottom, var(--bg-color), #0f0f0f);
    position: relative;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.integrations .section-header {
    position: relative;
    z-index: 1;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.integration-item {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.integration-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(57, 255, 20, 0.1);
}

.int-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.integration-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.integration-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Tarifs */
.pricing {
    padding: 120px 10%;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-box {
    background: #111;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #222;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-box:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.pricing-box.popular {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(57, 255, 20, 0.1);
}

.pricing-box.popular:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(57, 255, 20, 0.2);
}

.pricing-box .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
}

.pricing-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-box.popular h3 {
    color: var(--primary-color);
}

.pricing-box .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1;
}

.pricing-box .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    vertical-align: middle;
}

.pricing-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.price-features {
    list-style: none;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 18px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.price-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    background: rgba(57, 255, 20, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}


.pricing-box .btn-primary {
    width: 100%;
    margin: 0;
    display: block;
    text-align: center;
}


.showcase {
    padding: 120px 10%;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-content {
    flex: 1;
}

.badge-new {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.showcase h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.showcase-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #111;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #333;
    background: #161616;
    transform: translateX(10px);
}

.f-icon {
    background: #000;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid #222;
    flex-shrink: 0;
}

.feature-card:hover .f-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.f-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.f-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}


.showcase-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-image-wrapper img {
    max-width: 80%;
    border-radius: 40px;
    border: 8px solid #222;
    position: relative;
    z-index: 2;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.showcase-image-wrapper:hover img {
    transform: rotate(0deg) scale(1.02);
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid #333;
    z-index: 3;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.floating-card strong {
    font-size: 1.1rem;
    color: #fff;
}

.c1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.c2 {
    bottom: 10%;
    left: 0;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Appel à l'action */
.cta {
    padding: 100px 10%;
    text-align: center;
}

.cta-box {
    background: linear-gradient(45deg, #111, #1a1a1a);
    padding: 80px;
    border-radius: 30px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-family: inherit;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Pied de page */
.site-footer {
    background-color: #050505;
    border-top: 1px solid #222;
    padding: 80px 10% 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.8rem;
}

.santos-studio {
    font-weight: 800;
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Tablette & Mobile */
@media (max-width: 992px) {
    .hero {
        padding: 120px 5% 60px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-image img {
        transform: rotate(0);
        max-width: 80%;
    }

    .hero-pin img {
        width: 60px;
        height: auto;
    }

    .stats-ticker {
        justify-content: center;
    }

    .showcase {
        padding: 80px 5%;
        text-align: center;
    }

    .showcase-container {
        flex-direction: column;
        gap: 50px;
    }

    .showcase-image-wrapper {
        order: -1;
        margin-bottom: 0;
        width: 100%;
    }

    .floating-card {
        display: none;
    }

    .feature-card {
        text-align: left;
        padding: 15px;
    }
}

/* Téléphones portables */
@media (max-width: 600px) {
    .navbar {
        padding: 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-pin img {
        width: 40px;
        height: auto;
    }

    .pin-1 {
        top: 35%;
        left: 45%;
    }

    .pin-2 {
        top: 55%;
        left: 50%;
    }

    .pin-3 {
        top: 50%;
        left: 70%;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .card {
        padding: 30px 20px;
    }

    .contact-form {
        flex-direction: column;
        width: 100%;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 20px auto;
    }

    .social-links {
        justify-content: center;
    }
}

/* Pages Secondaires Styles */

/* Bannière d'en-tête pour les pages */
.page-header {
    padding: 160px 10% 100px;
    background: radial-gradient(circle at 50% -20%, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    border-bottom: 1px solid #1a1a1a;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Page de Contact */
.contact-page-section {
    padding: 100px 10%;
    background: var(--bg-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #0f0f0f;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: #333;
}

.info-card h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.highlight-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.2s;
}

.highlight-link:hover {
    background: rgba(57, 255, 20, 0.1);
}

.contact-form-wrapper {
    background: #111;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #222;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.full-contact-form .form-group {
    margin-bottom: 25px;
}

.full-contact-form label {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.full-contact-form input,
.full-contact-form select,
.full-contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: #050505;
    border: 2px solid #222;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.full-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.full-contact-form input:focus,
.full-contact-form select:focus,
.full-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #0a0a0a;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.full-contact-form button {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Page À Propos */
.about-section {
    padding: 120px 10%;
    background: #050505;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    background: linear-gradient(145deg, #111, #0f0f0f);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-box:nth-child(3) {
    grid-column: span 2;
}

.stat-box .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-box .label {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.values-section {
    padding: 120px 10%;
    background: var(--bg-color);
}

@media (max-width: 992px) {

    .contact-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .contact-page-section,
    .about-section {
        padding: 80px 5%;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

/* Styles des Pages Légales */
.legal-section {
    padding: 100px 10%;
    background: #0a0a0a;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #111;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #222;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content strong {
    color: #fff;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px;
    }
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-image {
        margin-top: 50px;
        max-width: 80%;
    }
}

/* Séparateur de Section */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.3), transparent);
    width: 60%;
    margin: 0 auto;
    border: none;
    display: block;
}