@charset "utf-8";

/*
 *
 * ██████╗                                                         ██╗        ██████╗     ██╗
 * ██╔══██╗ ██ ███╗   ███╗    ████╗   ██████╗  █████╗    █████╗  ██████╗        ██╔═╝   ██║ ██║
 * █████╔═╝  ██║ ║█║ ██║ ██║ ██╔══╝   ██╔══██╗ ██╔══██╗ ██╔══╗█╗   ██╔═╝        ██║    ██║   ██║
 * ██╔══╝    ██║ ╚═╝ ██║ ██║  ████╗   █████╔═╝ █████╔═╝ ██║  ╚═╝   ██║          ██║    ████████║
 * ██║       ██║     ██║  █║      ██╗ ██╔══╝   ██╔══╝   ██║        ██║          ██║    ██║   ██║
 * ██║       ██║      ████║   ████╔╝  ██║      ██████╗   █████╗     ███╗      ██████╗  ██║   ██║
 * ╚═╝       ╚═╝      ╚═══╝   ╚═══╝   ╚═╝      ╚═════╝   ╚════╝     ╚══╝      ╚═════╝  ╚═╝   ╚═╝
 *
 * ---  CSS : Feuilles de style en cascade | Jean-Bernard MARTINEZ & Ayoub BENDIB - ProspectIA.eu © 2025 - SentientTech.com
 * --- Fichier : initial_dark.css | Thème : Thème sombre Initial
 * 							
*/

:root {
    --primary-color: #5193f6;
    --primary-dark: #3366cc;
    --primary-light: #86b3ec;
    --secondary-color: #8c00ff;
    --secondary-light: #d466ff;
    --accent-gradient: linear-gradient(135deg, #5193f6 0%, #8c00ff 100%);
    --dark-bg: #0a0e27;
    --dark-secondary: #1a1f3a;
    --text-light: #f7feff;
    --text-gray: #a8b2d1;
    --success-color: #00ff88;
    --glow-primary: rgba(81, 147, 246, 0.5);
    --glow-secondary: rgba(140, 0, 255, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.cosens {
    margin: 1rem 0 3rem;
    font-size: 12px;
    color: rgba(134, 179, 236, 0.5);
}

/* ===================================
   ANIMATED BACKGROUND
   =================================== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--success-color);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
linear-gradient(rgba(81, 147, 246, 0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(81, 147, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* ===================================
   NAVIGATION
   =================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(81, 147, 246, 0.1);
}

#content-page {
    padding-top: 100px; /* Height of the nav */
    margin: 0 2rem;
}

.entry-title {
    display: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 50px;
    filter: drop-shadow(5px 0 10px #8412fd);
}

.logo-footer {
    height: 40px;
    filter: drop-shadow(5px 0 10px #8412fd);
}

.logo-text {
    display: none;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding-top: 80px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(81, 147, 246, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
}

.mobile-menu ul li {
    margin-bottom: 2rem;
}

.mobile-menu ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s;
    display: block;
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-menu .cta-button {
    display: inline-block;
    margin-top: 1rem;
}

.cta-button {
    padding: 0.8rem 1.8rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--glow-primary);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--glow-secondary);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 5rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    box-shadow: 0 4px 20px var(--glow-primary);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    /* background: var(--accent-gradient); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 80px var(--glow-primary);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 80px var(--glow-primary); }
    50% { box-shadow: 0 0 120px var(--glow-secondary); }
}

.ai-circle::before,
.ai-circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
}

.ai-circle::before {
    width: 500px;
    height: 500px;
    animation: rotate 20s linear infinite;
}

.ai-circle::after {
    width: 600px;
    height: 600px;
    animation: rotate 30s linear infinite reverse;
}

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

.ai-icon {
    display: block;
    z-index: 10;
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 25px #947fdf);
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    padding: 5rem 5%;
    background: rgba(26, 31, 58, 0.5);
    backdrop-filter: blur(10px);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(81, 147, 246, 0.05);
    border: 1px solid rgba(81, 147, 246, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(81, 147, 246, 0.1);
    box-shadow: 0 10px 40px var(--glow-primary);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section, #for-whom {
    padding: 8rem 5%;
}

#about-it {
    padding: 8rem 5% 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-flex-header {
    text-align: center;
    max-width: 80%;
    margin: 0 auto 5rem;
}

.section-header h2, .section-flex-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-flex-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section-flex-header .feature-card {
    width: 30%;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

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

.feature-card {
    padding: 3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(81, 147, 246, 0.1) 0%, rgba(140, 0, 255, 0.05) 100%);
    border: 1px solid rgba(81, 147, 246, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--glow-primary);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 8rem 5%;
    background: rgba(26, 31, 58, 0.5);
    backdrop-filter: blur(10px);
}

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-badge {
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(81, 147, 246, 0.1) 0%, rgba(140, 0, 255, 0.05) 100%);
    border: 1px solid rgba(81, 147, 246, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.tech-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--glow-primary);
}

.tech-badge i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-badge p {
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
}

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

.pricing-card {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(81, 147, 246, 0.08) 0%, rgba(140, 0, 255, 0.05) 100%);
    border: 1px solid rgba(81, 147, 246, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

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

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--glow-primary);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 50px var(--glow-primary);
}

.pricing-card.featured::after {
    content: 'POPULAIRE';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-gradient);
    color: white;
    padding: 0.4rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-header .price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-header .price span {
    font-size: 1.2rem;
    font-weight: 500;
}
.pricing-header .price span i {
    font-size: 1rem;
    font-style: italic;
    vertical-align: top;
    margin-right: 2px;
    -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
}

.pricing-header p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(81, 147, 246, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-features li.unavailable {
    opacity: 0.4;
}

.pricing-features li.unavailable i {
    color: var(--text-gray);
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pricing-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--glow-primary);
}

.free-trial-form {
    margin-top: 0.9rem;
}

.free-trial-button {
    background: rgba(81, 147, 246, 0.12);
    border: 2px dashed rgba(81, 147, 246, 0.65);
    color: #9fc3ff;
    font-weight: 700;
}

.free-trial-button:hover {
    background: rgba(81, 147, 246, 0.22);
    border-color: var(--primary-color);
    color: #ffffff;
}

.pricing-card.featured .pricing-button {
    background: var(--accent-gradient);
    border: none;
}

.pricing-card.featured .pricing-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px var(--glow-secondary);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 8rem 5%;
    text-align: center;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
    border-radius: 30px;
    background: var(--accent-gradient);
    box-shadow: 0 20px 80px var(--glow-secondary);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.btn-white {
    padding: 1rem 2.5rem;
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================
   ABOUT IT SECTION
   =================================== */

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #64c8ff 0%, #4a9eff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.author-info h5 {
    color: #64c8ff;
    font-size: 1.1em;
    margin-bottom: 5px;
}

/* ===================================
   CONTACT FORM SECTION
   =================================== */
.contact-form-section {
    padding: 8rem 5%;
    background: rgba(26, 31, 58, 0.5);
    backdrop-filter: blur(10px);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(81, 147, 246, 0.1) 0%, rgba(140, 0, 255, 0.05) 100%);
    border: 1px solid rgba(81, 147, 246, 0.2);
}

.contact-form-container .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid rgba(81, 147, 246, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: var(--text-gray);
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-primary);
}

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

.contact-form-container input[type="submit"] {
    padding: 1rem 2.5rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--glow-primary);
    display: block;
    margin: 0 auto;
}

.contact-form-container input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--glow-secondary);
}

.contact-form-container .wpcf7-response-output {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(81, 147, 246, 0.3);
    color: var(--text-light);
}

.contact-form-container .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* CAPTCHA button hover effect */
div[id^="cf7sr-"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    padding: 4rem 5% 2rem;
    background: rgba(10, 14, 39, 0.9);
    border-top: 1px solid rgba(81, 147, 246, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2;
}

.footer-links {
    flex: 1;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(81, 147, 246, 0.1);
    border: 1px solid rgba(81, 147, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.grid-faq {
    margin: 2rem auto;
    max-width: 1200px;
    border: none!important;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(81, 147, 246, 0.1);
    color: var(--text-gray);
}

footer .footer-bottom a,
footer .footer-bottom a:link,
footer .footer-bottom a:visited {
    color: var(--text-gray) !important;
    text-decoration: none !important;
    padding-left: 0 !important;
}

footer .footer-bottom a:hover {
    color: var(--text-gray) !important;
    text-decoration: underline !important;
}

#post-3 {
    margin: 70px auto 3rem;
    padding: 0 2rem;
    max-width: 1200px;
}

#post-3 footer {
    border: none!important;
}

#post-3 .section-title-cgu {
    margin: 4rem auto;
}

#post-3 .wp-block-list {
    margin-left: 2rem;
}

/* ===================================
   WOOCOMMERCE
   =================================== */

.wc-block-components-checkout-return-to-cart-button {
    display: none;
}

.wc-block-components-button:not(.is-link) {
    background: var(--accent-gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--glow-primary);
    padding: 1rem 2.5rem;
    margin: 1rem auto;
}

.wp-block-woocommerce-checkout-order-summary-block {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(81, 147, 246, 0.08) 0%, rgba(140, 0, 255, 0.05) 100%);
    border: 1px solid rgba(81, 147, 246, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.wp-block-woocommerce-checkout-order-summary-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.wp-block-woocommerce-checkout-order-summary-block:hover::before {
    transform: scaleX(1);
}

.wp-block-woocommerce-checkout-order-summary-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--glow-primary);
    border-color: var(--primary-color);
}

/* Masquer la section codes promo */
.wc-block-components-totals-coupon,
.wc-block-checkout__add-coupon,
.woocommerce-form-coupon-toggle,
.checkout_coupon,
.wc-block-components-totals-coupon-link {
    display: none !important;
}

/* Messages d'erreur de validation WordPress/WooCommerce */
.wc-block-components-validation-error {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(81, 147, 246, 0.08) 0%, rgba(140, 0, 255, 0.05) 100%);
    border: 1px solid rgba(81, 147, 246, 0.2);
    transition: all 0.4s;
}

#wc-guest-checkout-notice {
    display: none !important;
}

#page-commander {
    margin-top: 8rem;
    margin-left: 20%;
    margin-right: 20%;
}


/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1400px) {
    #page-commander {
        margin-left: 15%;
        margin-right: 15%;
    }
}

@media (max-width: 1024px) {
    #page-commander {
        margin-left: 10%;
        margin-right: 10%;
    }

    .hero-content {
grid-template-columns: 1fr;
text-align: center;
    }

    .hero-text h1 {
font-size: 3rem;
    }

    .hero-visual {
margin-top: 3rem;
    }

    .ai-circle {
width: 300px;
height: 300px;
    }

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

#about-it {
    padding: 8rem 1% 0;
}

.section-flex-header {
    max-width: 98%;
} 

.section-flex-header .feature-card {
    width: 32%;
}

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 45%;
    }

    .footer-links {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    #page-commander {
        margin-left: 5%;
        margin-right: 5%;
    }

    nav {
        padding: 1rem 3%;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-text h1 {
font-size: 2.5rem;
    }

    .hero-text p {
font-size: 1rem;
    }

    .section-header h2 {
font-size: 2rem;
    }

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

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

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

    .cta-box h2 {
font-size: 2rem;
    }

#content-page {
    padding-top: 100px; /* Height of the nav */
    margin: 0 2rem;
}

#content-page
    .nav-links {
        display: block!important;
    }

    .grid-faq {
        max-width: 100%;
        border: none!important;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        flex: 1 1 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links ul {
        padding: 0;
    }

.features-flex-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#about-it {
    padding: 8rem 1% 0;
}

.section-flex-header {
    max-width: 98%;
} 

.section-flex-header .feature-card {
    width: 100%;
    margin-top: 2rem;
}

.hero {
    overflow: hidden;
}

.dsp-none {
    display: none;
}

@media (max-width: 480px) {
    #page-commander {
        margin-left: 2%;
        margin-right: 2%;
    }
}

#post-3 {
    margin: 70px auto 3rem;
    padding: 0;
    max-width: 98%;
}


}