/* ===================================
   VARIABLES CSS
   =================================== */
:root {
    /* Couleurs principales - Thème cybersécurité */
    --primary-color: #00d9ff;
    --primary-dark: #00a8cc;
    --secondary-color: #6e00ff;
    --accent-color: #ff006e;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --danger-color: #ff0055;
    
    /* Couleurs de fond */
    --bg-dark: #0a0e27;
    --bg-darker: #050813;
    --bg-card: #111633;
    --bg-card-hover: #1a2244;
    
    /* Couleurs de texte */
    --text-primary: #ffffff;
    --text-secondary: #a8b2d1;
    --text-muted: #6b7798;
    
    /* Typographie */
    /* --font-heading: 'Orbitron', sans-serif; */
    --font-body: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Effets */
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --glow-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* ===================================
   STYLES GLOBAUX
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===================================
   TYPOGRAPHIE
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    transition: all var(--transition-speed);
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0, 217, 255, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: all var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
    color: var(--text-primary);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(110, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 110, 0.08) 0%, transparent 40%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge i {
    margin-right: 0.5rem;
    animation: spin 3s linear infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.6);
    color: var(--text-primary);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-hero-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-3px);
    color: var(--primary-color);
}

.hero-stats {
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.security-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border: 3px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(0, 217, 255, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        border-color: rgba(0, 217, 255, 0.6);
    }
}

.security-shield i {
    font-size: 150px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 30px var(--primary-color));
    animation: rotate 20s linear infinite;
}

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

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.floating-element i {
    font-size: 2rem;
    color: var(--primary-color);
}

.element-1 {
    top: 10%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.element-2 {
    top: 20%;
    right: 10%;
    animation: float 4s ease-in-out infinite 0.5s;
}

.element-3 {
    bottom: 15%;
    left: 15%;
    animation: float 3.5s ease-in-out infinite 1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    background: var(--bg-dark);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-primary);
    padding: 0.4rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(110, 0, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-speed);
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-speed);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===================================
   SOLUTIONS SECTION
   =================================== */
.solutions-section {
    background: var(--bg-darker);
    padding: var(--spacing-xl) 0;
}

.solution-content {
    padding: 2rem;
}

.solution-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.solution-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.solution-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.solution-features {
    margin-top: 2rem;
}

.solution-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    transition: all var(--transition-speed);
}

.solution-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Dashboard Preview */
.solution-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.dashboard-preview {
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    animation: float 4s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
}

.dashboard-dot:nth-child(2) {
    background: var(--warning-color);
}

.dashboard-dot:nth-child(3) {
    background: var(--danger-color);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-darker);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.green {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-color);
}

.stat-icon.blue {
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
}

.stat-icon.orange {
    background: rgba(255, 170, 0, 0.1);
    color: var(--warning-color);
}

.stat-icon i {
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: var(--bg-dark);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    height: 500px;
}

.about-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    opacity: 0.1;
}

.about-stats-floating {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.floating-stat {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2rem 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-stat:nth-child(2) {
    animation-delay: 1s;
}

.floating-stat h3 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.floating-stat p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    transition: all var(--transition-speed);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.value-item h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: var(--bg-darker);
    padding: var(--spacing-xl) 0;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.contact-text h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: var(--bg-darker);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-darker);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--text-secondary);
}

.footer-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brand i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-speed);
}

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

.footer-newsletter-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 0.75rem 1rem;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.footer-divider {
    border-color: rgba(0, 217, 255, 0.2);
    opacity: 0.5;
}

.footer-copyright {
    color: var(--text-muted);
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
        height: 400px;
    }
    
    .security-shield {
        width: 250px;
        height: 250px;
    }
    
    .security-shield i {
        font-size: 120px;
    }
}

@media (max-width: 767px) {
    :root {
        --spacing-xl: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .about-image-wrapper {
        height: 400px;
        margin-bottom: 2rem;
    }
}

/* ===================================
   ANIMATIONS SUPPLÉMENTAIRES
   =================================== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   STYLES POUR EFFETS HOVER
   =================================== */
.hover\:text-white:hover {
    color: #ffffff !important;
}

.hover\:bg-teal-500\/10:hover {
    background-color: rgba(20, 184, 166, 0.1) !important;
}

.hover\:border-teal-500\/50:hover {
    border-color: rgba(20, 184, 166, 0.5) !important;
}

.group:hover .group-hover\:from-teal-500\/5 {
    --tw-gradient-from: rgba(20, 184, 166, 0.05) !important;
}

.group:hover .group-hover\:to-purple-600\/5 {
    --tw-gradient-to: rgba(147, 51, 234, 0.05) !important;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1) !important;
}
