/* ========================================
   CSS Variables & Theme Configuration
   ======================================== */
:root {
    /* Light Theme Colors - Modern Minimalist */
    --primary-color: #2d2d2d;
    --primary-hover: #1a1a1a;
    --primary-light: #4a4a4a;
    --secondary-color: #00e5ff;
    --accent-color: #ff6b35;
    --success-color: #00d084;
    --warning-color: #ffc107;
    --text-primary: #1a1a1a;
    --text-secondary: #757575;
    --bg-primary: #ffffff;
    --bg-secondary: #f7f7f7;
    --bg-tertiary: #eeeeee;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 2px 8px 0 rgb(0 0 0 / 0.08);
    --shadow-lg: 0 4px 16px 0 rgb(0 0 0 / 0.1);
    --shadow-xl: 0 8px 32px 0 rgb(0 0 0 / 0.12);
    --gradient-primary: linear-gradient(135deg, #2d2d2d 0%, #00e5ff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ffc107 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

[data-theme="dark"] {
    /* Dark Theme Colors - Premium Dark */
    --primary-color: #00e5ff;
    --primary-hover: #00b8cc;
    --primary-light: #33ebff;
    --secondary-color: #a855f7;
    --accent-color: #f97316;
    --success-color: #10b981;
    --warning-color: #eab308;
    --text-primary: #fafafa;
    --text-secondary: #a3a3a3;
    --bg-primary: #0a0a0a;
    --bg-secondary: #171717;
    --bg-tertiary: #262626;
    --border-color: #2d2d2d;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
    --shadow-md: 0 2px 8px 0 rgb(0 229 255 / 0.15);
    --shadow-lg: 0 4px 16px 0 rgb(0 229 255 / 0.2);
    --shadow-xl: 0 8px 32px 0 rgb(0 229 255 / 0.25);
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: var(--transition);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: none;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1300;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

[data-theme="dark"] .navbar {
    background: rgba(17, 24, 39, 0.8);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.nav-wrapper .logo {
    grid-column: 1;
    flex-shrink: 0;
}

.nav-wrapper .nav-menu {
    grid-column: 2;
    justify-self: center;
}

.nav-wrapper .nav-right {
    grid-column: 3;
}

.nav-wrapper .menu-toggle {
    grid-column: 4;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none !important;
}

.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

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

.dropdown-chevron {
    margin-left: 0.35rem;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    max-width: none;
}

/* Right side navigation (Contact + Options) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    justify-self: end;
}

/* Hide btn-member and old theme toggles - now in options menu */
.nav-link.btn-member {
    display: none;
}

/* Hide backdrop on desktop - only for mobile */
.nav-backdrop {
    display: none;
}

/* Hide mobile-only elements on desktop */
.mobile-solutions-section {
    display: none;
}

.theme-label {
    display: none;
}

/* Options Menu (Minimalist - Three Dots) */
.nav-options {
    position: relative;
    z-index: 10001; /* Ensure it's above navbar */
}

.options-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    padding: 0;
    position: relative;
    z-index: 1;
}

.options-toggle:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.nav-options.active .options-toggle {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.options-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 180px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000 !important; /* High z-index to ensure visibility */
    overflow: hidden;
    padding: 0.5rem;
    pointer-events: none; /* Prevent interaction when hidden */
}

[data-theme="dark"] .options-dropdown {
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}

.nav-options.active .options-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Enable interaction when visible */
}

.options-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
}

.options-item:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.options-item i {
    width: 18px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    font-size: 0.9rem;
    text-align: center;
}

.options-item:hover i {
    color: var(--primary-color);
}

.options-item span {
    flex: 1;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .fa-chevron-down {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: var(--transition);
}

.nav-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.dropdown-item i {
    color: var(--text-secondary);
    transition: var(--transition);
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 229, 255, 0.15);
}

.nav-link.btn-member {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link.btn-member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary-color) 100%);
}

.nav-link.btn-member.active {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary-color) 100%);
}

.nav-link.btn-member i {
    font-size: 1.1rem;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: inline;
    }
}

.nav-link.btn-contact {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white !important;
    border-radius: var(--radius-sm);
    border: none;
}

.nav-link.btn-contact:hover {
    background: var(--primary-hover);
    color: white !important;
}

.nav-link.btn-contact.active {
    background: var(--primary-hover);
    color: white !important;
}

.nav-link.btn-contact::after {
    display: none;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Hide old theme toggles - now in options menu */
.desktop-theme-wrapper,
.mobile-theme-wrapper {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   Hero Section - Dynamic & Modern
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        var(--primary-color) 0deg,
        #8b5cf6 72deg,
        #ec4899 144deg,
        #f97316 216deg,
        #10b981 288deg,
        var(--primary-color) 360deg
    );
    opacity: 0.08;
    animation: rotateGradient 20s linear infinite;
    filter: blur(80px);
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, var(--border-color) 12%, transparent 12.5%, transparent 87%, var(--border-color) 87.5%, var(--border-color)),
        linear-gradient(150deg, var(--border-color) 12%, transparent 12.5%, transparent 87%, var(--border-color) 87.5%, var(--border-color)),
        linear-gradient(30deg, var(--border-color) 12%, transparent 12.5%, transparent 87%, var(--border-color) 87.5%, var(--border-color)),
        linear-gradient(150deg, var(--border-color) 12%, transparent 12.5%, transparent 87%, var(--border-color) 87.5%, var(--border-color));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.03;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0, 40px 70px, 40px 70px; }
    100% { background-position: 80px 140px, 80px 140px, 120px 210px, 120px 210px; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1.4s ease-out 0.8s backwards;
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: var(--radius-md);
    opacity: 0.05;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

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

/* ========================================
   Logos Section
   ======================================== */
.logos-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-title {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-item {
    text-align: center;
    font-size: 3rem;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
    filter: grayscale(100%);
}

.logo-item:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
    color: var(--primary-color);
}

/* ========================================
   Solutions Section
   ======================================== */
.solutions {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        var(--bg-primary) 50%, 
        rgba(99, 102, 241, 0.05) 100%);
    z-index: -1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Services Grid - Premium Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.25rem;
}

.service-card {
    --service-accent: var(--primary-color);
    --service-accent-soft: rgba(99, 102, 241, 0.12);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
    border-radius: 18px;
    background: var(--bg-primary);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    
    /* Animation initiale */
    opacity: 0;
    transform: translateY(60px) scale(0.95);
}

.service-card.animate-in {
    animation: slideUpFade 0.8s ease-out forwards;
}

/* Animation décalée pour chaque carte */
.service-card:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.service-card:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.service-card:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.service-card:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation pour les titres de section */
.solutions .section-header,
.solutions .section-title {
    opacity: 0;
    transform: translateY(-30px);
}

.solutions .section-header.fade-in-down,
.solutions .section-title.fade-in-down {
    animation: fadeInDown 0.7s ease-out forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card__glow {
    display: none;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--service-accent);
    background: var(--service-accent-soft);
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.service-card.animate-in .service-card__icon {
    animation: bounceIcon 0.6s ease-out 0.3s backwards;
}

@keyframes bounceIcon {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.15) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-card__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.service-card__features li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-card__features i {
    font-size: 0.75rem;
    margin-top: 0.18rem;
    color: var(--service-accent);
}

.service-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: color 0.25s ease, gap 0.25s ease;
    align-self: center;
}

.service-card__cta i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-card:hover,
.service-card.animate-in:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
    border-color: var(--service-accent);
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.06) 0%, var(--bg-primary) 100%);
}

.service-card:hover .service-card__cta {
    color: var(--service-accent);
    gap: 0.6rem;
}

.service-card:hover .service-card__cta i {
    transform: translateX(4px);
}

.service-card--web {
    --service-accent: #6366f1;
    --service-accent-soft: rgba(99, 102, 241, 0.12);
}

.service-card--software {
    --service-accent: #ec4899;
    --service-accent-soft: rgba(236, 72, 153, 0.12);
}

.service-card--pc {
    --service-accent: #f97316;
    --service-accent-soft: rgba(249, 115, 22, 0.12);
}

.service-card--support {
    --service-accent: #10b981;
    --service-accent-soft: rgba(16, 185, 129, 0.12);
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 1.75rem;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 920px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.85rem;
    }
}

@media (max-width: 520px) {
    .service-card {
        padding: 1.65rem;
    }

    .service-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }

    .service-card__title {
        font-size: 1.2rem;
    }

    .service-card__features li {
        font-size: 0.85rem;
    }
}

/* ========================================
   Process Section - Innovative Grid Layout
   ======================================== */
.process {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(-100px) rotate(-5deg);
}

/* Animation "tombée du ciel" */
.process-step.fall-in {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    animation: fallFromSky 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fallFromSky {
    0% {
        opacity: 0;
        transform: translateY(-150px) rotate(-8deg) scale(0.8);
    }
    60% {
        transform: translateY(10px) rotate(2deg) scale(1.02);
    }
    80% {
        transform: translateY(-5px) rotate(-1deg) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Délais progressifs pour effet cascade */
.process-step:nth-child(1).fall-in {
    animation-delay: 0.1s;
}

.process-step:nth-child(2).fall-in {
    animation-delay: 0.25s;
}

.process-step:nth-child(3).fall-in {
    animation-delay: 0.4s;
}

.process-step:nth-child(4).fall-in {
    animation-delay: 0.55s;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: top;
}

.process-step:hover::before {
    transform: scaleY(1);
}

.process-step:nth-child(1)::before { background: var(--primary-color); }
.process-step:nth-child(2)::before { background: var(--accent-color); }
.process-step:nth-child(3)::before { background: var(--secondary-color); }
.process-step:nth-child(4)::before { background: var(--success-color); }

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.1;
    line-height: 1;
}

.process-step:nth-child(1) .step-number { color: var(--primary-color); opacity: 0.2; }
.process-step:nth-child(2) .step-number { color: var(--accent-color); opacity: 0.2; }
.process-step:nth-child(3) .step-number { color: var(--secondary-color); opacity: 0.2; }
.process-step:nth-child(4) .step-number { color: var(--success-color); opacity: 0.2; }

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: var(--transition);
}

.process-step:nth-child(1) .step-icon {
    color: var(--primary-color);
}

.process-step:nth-child(2) .step-icon {
    color: var(--accent-color);
}

.process-step:nth-child(3) .step-icon {
    color: var(--secondary-color);
}

.process-step:nth-child(4) .step-icon {
    color: var(--success-color);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    background: var(--bg-primary);
}

.process-step:nth-child(1):hover .step-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.process-step:nth-child(2):hover .step-icon {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.process-step:nth-child(3):hover .step-icon {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.process-step:nth-child(4):hover .step-icon {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.step-content {
    flex: 1;
}

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

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Tarifs Section
   ======================================== */
.tarifs {
    padding: 6rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.tarifs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(315deg, 
        var(--bg-secondary) 0%, 
        var(--bg-primary) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    z-index: -1;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tarif-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tarif-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.05), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.tarif-card-featured {
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: var(--shadow-xl);
}

.tarif-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.tarif-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tarif-badge {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.tarif-badge-featured {
    background: var(--gradient-secondary);
}

.tarif-price {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-from {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
}

.price-period {
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.tarif-pricing {
    margin-bottom: 2rem;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.tarif-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.tarif-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.tarif-features i {
    color: var(--primary-color);
}

/* Testimonials Ticker */
.testimonials-ticker {
    width: 100%;
    overflow: hidden;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 2rem;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    font-size: 1rem;
    color: var(--text-secondary);
}

.ticker-item i {
    color: var(--warning-color);
    font-size: 0.875rem;
}

.ticker-item span {
    font-style: italic;
}

/* ========================================
   Team Section
   ======================================== */
.team {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.team-grid {
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
}

.member-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto;
}

/* ========================================
   Clients Section - Logo Slider
   ======================================== */
.clients-section {
    padding: 0;
    background: var(--bg-primary);
    position: relative;
}

.clients-section .container {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.clients-section .section-header {
    margin-bottom: 2rem;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 2rem 0;
    position: relative;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.clients-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollLogos 50s linear infinite;
    width: max-content;
    align-items: center;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 6));
    }
}

.client-logo {
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
    display: block;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    min-width: 100px;
    height: 80px;
    transition: all 0.3s ease;
}

.client-logo:hover .logo-container {
    transform: translateY(-5px);
}

.logo-container i {
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.logo-container span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.client-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 120px;
    max-height: 70px;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-logo:hover .client-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Couleurs spécifiques par logo (maintenant inutiles car on utilise des images) */
.client-logo:nth-child(4n+1) .logo-container i {
    color: #DC2626; /* Chrono Pizza - Rouge */
}

.client-logo:nth-child(4n+2) .logo-container i {
    color: #F59E0B; /* Mon Estimation Travaux - Orange */
}

.client-logo:nth-child(4n+3) .logo-container i {
    color: #10B981; /* Kangal Kebab - Vert */
}

.client-logo:nth-child(4n+4) .logo-container i {
    color: #2563EB; /* Oui Pneu - Bleu */
}

.client-logo:hover .logo-container i {
    transform: scale(1.1);
}

.client-logo:hover .logo-container span {
    color: var(--text-primary);
}

/* Dark mode adjustments */
[data-theme="dark"] .clients-slider::before {
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

[data-theme="dark"] .clients-slider::after {
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 6rem 0;
    position: relative;
    background: var(--bg-secondary);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.03) 0%, 
        transparent 50%, 
        rgba(139, 92, 246, 0.03) 100%);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: space-between;
}

.about-left .section-header {
    text-align: left;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.about-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    min-width: 24px;
}

.about-tech h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.tech-badge:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: space-between;
}

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

.stat-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-highlight {
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    min-height: 140px;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.highlight-content > i {
    font-size: 3rem;
    opacity: 0.9;
    min-width: 48px;
}

.highlight-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ========================================
   Testimonials Section (removed - now ticker)
   ======================================== */
.testimonials {
    display: none;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        rgba(139, 92, 246, 0.03) 50%, 
        var(--bg-secondary) 100%);
    z-index: -1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.testimonial-icon {
    display: none;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.about-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-col h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-col p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-color);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item span {
    color: var(--text-secondary);
}

.contact-form-col {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}

.contact-wrapper,
.contact-simple {
    display: none;
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.method-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
}

.method-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.method-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

.form-group textarea {
    resize: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
    display: block;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-description {
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section a:hover::after {
    width: 100%;
}

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

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

.legal-section a {
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* ========================================
   Chatbot
   ======================================== */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    color: white;
    font-size: 1.5rem;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-header-info i {
    color: #22c55e;
    font-size: 0.5rem;
}

.chatbot-header-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.chatbot-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-close:hover {
    color: var(--text-primary);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    animation: fadeInUp 0.3s ease-out;
    margin-bottom: 0.5rem;
}

.chatbot-message p {
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

/* Chatbot Suggestions & Actions */
.chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
    margin: 0.5rem 0;
    width: 100%;
}

.chatbot-suggestions.quick-start {
    flex-direction: column;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}

.chatbot-actions {
    width: 100%;
    margin: 0.5rem 0;
    animation: fadeInUp 0.3s ease-out;
}

.suggestions-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-align: left;
}

.suggestion-btn {
    padding: 0.625rem 1.125rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.suggestion-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

.suggestion-btn:active {
    transform: translateY(0);
}

.quick-start .suggestion-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    justify-content: flex-start;
}

.quick-start .suggestion-btn:hover {
    transform: translateX(5px);
}

.message-avatar {
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
}

.message-content {
    background: var(--bg-secondary);
    padding: 0.875rem 1rem;
    border-radius: 18px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    border: none;
}

.message-content strong {
    font-weight: 600;
    color: inherit;
}

.user-message .message-content strong {
    color: white;
}

.chatbot-input {
    display: flex;
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
    gap: 0.75rem;
    background: var(--bg-primary);
}

.chatbot-input input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.chatbot-input button {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.chatbot-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.chatbot-input button:active {
    transform: scale(0.95);
}

.direct-chat-indicator {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-left: 3px solid var(--primary-color);
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.3s ease-out;
    align-self: center;
    max-width: 90%;
}

.direct-chat-indicator i {
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   Scroll to Top
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Navigation Mobile - Mobile First */
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-wrapper .logo {
        position: static;
    }
    
    .nav-wrapper .nav-menu {
        grid-column: auto;
    }
    
    .nav-wrapper .nav-right {
        display: none;
    }
    
    .nav-wrapper .menu-toggle {
        position: static;
    }
    
    /* Hide dropdown chevron on mobile */
    .dropdown-chevron {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        width: min(340px, 85vw);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 5rem 0 2rem;
        background: var(--bg-primary);
        border-left: 1px solid var(--border-color);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
        z-index: 1200;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        box-shadow: none;
        max-width: none;
    }
    
    /* Add Contact and Options to mobile menu */
    .nav-menu::after {
        content: '';
        display: block;
        width: 100%;
    }
    
    .nav-menu.active::after {
        display: none;
    }
    
    
    .nav-menu.active {
        transform: translateX(0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    [data-theme="dark"] .nav-menu.active {
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu > li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active > li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active > li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active > li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active > li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active > li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active > li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active > li:nth-child(6) { transition-delay: 0.3s; }
    
    /* Main nav links */
    .nav-link {
        display: flex;
        align-items: center;
        padding: 1rem 2rem;
        width: 100%;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        transition: all 0.2s ease;
        position: relative;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--primary-color);
        transition: height 0.2s ease;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: var(--bg-secondary);
        color: var(--primary-color);
    }
    
    .nav-link:hover::before {
        height: 60%;
    }
    
    /* Contact button in mobile menu */
    .nav-menu .nav-link.btn-contact {
        margin: 1rem 2rem;
        padding: 0.85rem 1.5rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color, #6366f1) 100%);
        color: white;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        width: calc(100% - 4rem);
        box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
        order: 99; /* Before options */
    }
    
    .nav-menu .nav-link.btn-contact::before {
        display: none;
    }
    
    .nav-menu .nav-link.btn-contact:hover {
        background: linear-gradient(135deg, var(--primary-hover) 0%, #4f46e5 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 229, 255, 0.4);
    }
    
    /* Hide desktop dropdown */
    .nav-dropdown {
        display: none;
    }
    
    .dropdown-menu {
        display: none;
    }
    
    /* Mobile Solutions Section */
    .mobile-solutions-section {
        display: block !important;
        width: 100%;
        margin: 1rem 0;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background: var(--bg-secondary);
    }
    
    .mobile-section-title {
        padding: 0.5rem 2rem;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
    }
    
    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .mobile-submenu li {
        width: 100%;
    }
    
    .mobile-submenu-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.85rem 2rem;
        color: var(--text-primary);
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
    }
    
    .mobile-submenu-link i {
        font-size: 1.1rem;
        color: var(--primary-color);
        width: 24px;
        text-align: center;
        transition: transform 0.2s ease;
    }
    
    .mobile-submenu-link:hover,
    .mobile-submenu-link:focus {
        background: var(--bg-primary);
        color: var(--primary-color);
        padding-left: 2.5rem;
    }
    
    .mobile-submenu-link:hover i {
        transform: scale(1.2) rotate(5deg);
    }
    
    /* Mobile Theme Toggle - Enhanced Style */
    .mobile-theme-wrapper {
        display: block !important;
        width: 100%;
        margin-top: auto;
        padding: 1.5rem 2rem;
        border-top: 1px solid var(--border-color);
        background: linear-gradient(to bottom, transparent, var(--bg-secondary));
    }
    
    [data-theme="dark"] .mobile-theme-wrapper {
        background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.05));
        border-top-color: rgba(0, 229, 255, 0.2);
    }
    
    /* Options menu in mobile menu - Display items directly */
    .nav-menu .nav-options {
        margin-top: auto;
        padding-top: 1rem;
        border-top: 2px solid var(--border-color);
        width: 100%;
        order: 100; /* Place at the end */
        opacity: 1 !important;
        transform: translateX(0) !important;
        pointer-events: auto !important;
        position: relative;
        z-index: 1;
    }
    
    /* Hide the toggle button in mobile menu */
    .nav-menu .options-toggle {
        display: none !important;
    }
    
    /* Show dropdown items directly in mobile menu */
    .nav-menu .options-dropdown {
        position: static !important;
        width: 100%;
        margin-top: 0;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        display: flex !important;
        flex-direction: column;
        gap: 0.5rem;
        pointer-events: auto !important;
    }
    
    /* Style options items in mobile menu */
    .nav-menu .options-item {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        padding: 1rem 2rem;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.2s ease;
        border-radius: 0;
        width: 100%;
        background: none;
        border: none;
        cursor: pointer !important;
        font-family: inherit;
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
        position: relative;
        pointer-events: auto !important;
        z-index: 10;
        -webkit-tap-highlight-color: rgba(0, 229, 255, 0.2);
    }
    
    .nav-menu .options-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--primary-color);
        transition: height 0.2s ease;
        pointer-events: none;
    }
    
    .nav-menu .options-item:hover,
    .nav-menu .options-item:focus,
    .nav-menu .options-item:active {
        background: var(--bg-secondary);
        color: var(--primary-color);
    }
    
    .nav-menu .options-item:hover::before,
    .nav-menu .options-item:focus::before,
    .nav-menu .options-item:active::before {
        height: 60%;
    }
    
    .nav-menu .options-item i {
        width: 20px;
        color: var(--text-secondary);
        transition: color 0.2s ease;
        font-size: 1.1rem;
        text-align: center;
        pointer-events: none;
    }
    
    .nav-menu .options-item:hover i,
    .nav-menu .options-item:focus i,
    .nav-menu .options-item:active i {
        color: var(--primary-color);
    }
    
    .nav-menu .options-item span {
        flex: 1;
        pointer-events: none;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1300;
        position: relative;
    }
    
    .menu-toggle span {
        position: absolute;
    }
    
    .menu-toggle span:nth-child(1) {
        transform: translateY(-7px);
    }
    
    .menu-toggle span:nth-child(2) {
        transform: translateY(0);
    }
    
    .menu-toggle span:nth-child(3) {
        transform: translateY(7px);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }
    
    .nav-backdrop {
        display: none !important;
    }

    .nav-backdrop.active {
        display: none !important;
    }

    body.nav-open {
        overflow: hidden;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Sections Mobile */
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Grids Mobile */
    .solutions-grid,
    .expertises-grid,
    .tarifs-grid,
    .testimonials-grid,
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Bento Grid Mobile - Stack circles */
    .bento-grid {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
    
    .bento-card {
        width: 160px;
        height: 160px;
    }
    
    .bento-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }
    
    .bento-title {
        font-size: 0.9375rem;
        padding: 0 0.75rem;
    }
    
    .solution-modal-content {
        max-width: 95%;
    }
    
    .solution-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .chatbot-window {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 100px;
        left: 20px;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-content > i {
        font-size: 2.5rem;
    }
    
    /* Contact Grid Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-col {
        padding: 1.5rem;
    }
    
    /* AI Generator Mobile */
    .ai-generator-section {
        padding: 2rem 1.5rem;
    }
    
    .ai-generator-box {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .generator-options {
        grid-template-columns: 1fr;
    }
    
    .mockup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* AI Mockup Generator Mobile */
    .mockup-hero {
        padding: 2rem 1.5rem;
    }
    
    .mockup-form-container {
        padding: 1.5rem;
    }
    
    .progress-bar-container {
        padding: 1.5rem 1rem;
    }
    
    .progress-steps {
        gap: 0.5rem;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .progress-line {
        max-width: 50px;
        margin: 0 0.25rem;
    }
    
    .wizard-title {
        font-size: 1.5rem;
    }
    
    .project-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .color-picker-group-modern {
        grid-template-columns: 1fr;
    }
    
    .preview-colors {
        gap: 1rem;
    }
    
    .preview-color-large {
        width: 80px;
        height: 80px;
    }
    
    .style-options-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-wizard {
        width: 100%;
        justify-content: center;
    }
    
    .btn-next,
    .btn-generate {
        margin-left: 0;
    }
    
    .mockup-result {
        grid-template-columns: 1fr;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-icon {
        font-size: 1.5rem;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-text h3 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.8125rem;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }
    
    .cookie-modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-body {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
    }
    
    /* Process Timeline Mobile */
    .process-timeline {
        padding: 0;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-header {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .step-number {
        position: static;
        margin-bottom: 0;
        font-size: 1.75rem;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
    }
    
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .step-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* About Values Mobile */
    .about-values {
        gap: 1rem;
    }
    
    .value-item {
        font-size: 0.9375rem;
    }
    
    .tech-badges {
        justify-content: center;
    }
    
    /* Clients Section Mobile */
    .clients-section {
        padding: 0;
    }
    
    .clients-section .container {
        padding-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .clients-section .section-header {
        margin-bottom: 1.5rem;
    }
    
    .clients-slider {
        padding: 1.5rem 0;
    }
    
    .clients-slider::before,
    .clients-slider::after {
        width: 80px;
    }
    
    .clients-track {
        gap: 2.5rem;
    }
    
    .logo-container {
        min-width: 150px;
        height: 120px;
        padding: 1.5rem 2rem;
    }
    
    .logo-container i {
        font-size: 2.5rem;
    }
    
    .logo-container span {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    /* Container extra small */
    .container {
        padding: 0 16px;
    }
    
    /* Hero Extra Small */
    .hero {
        min-height: 85vh;
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    /* Section Titles Extra Small */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Cards Extra Small */
    .tarif-card,
    .solution-card,
    .expertise-card {
        padding: 1.5rem;
    }
    
    .tarif-price {
        margin-bottom: 0.75rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    /* About Section Extra Small */
    .about-stats-grid {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Process Section Extra Small */
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    /* Contact Form Extra Small */
    .contact-form-col {
        padding: 1.25rem;
    }
    
    /* Footer Extra Small */
    .footer-content {
        gap: 2rem;
    }
    
    .footer-column {
        margin-bottom: 1rem;
    }
    
    /* Tech Badges Extra Small */
    .tech-badges {
        gap: 0.5rem;
    }
    
    .tech-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Bento Grid Extra Small - 2 columns */
    .bento-grid {
        gap: 1.5rem;
    }
    
    .bento-card {
        width: 140px;
        height: 140px;
    }
    
    .bento-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .bento-title {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }
    
    /* Cookie Banner Extra Small */
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-text h3 {
        font-size: 0.9375rem;
    }
    
    .cookie-text p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .cookie-btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1rem;
    }
    
    /* Footer Extra Small */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-description {
        font-size: 0.875rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-links {
        font-size: 0.875rem;
    }
    
    /* Chatbot Extra Small */
    .chatbot-window {
        width: calc(100% - 20px);
        right: 10px;
        left: 10px;
        height: 500px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-messages {
        padding: 1rem;
    }
    
    .chatbot-input {
        padding: 0.875rem;
    }
    
    /* Scroll Top Extra Small */
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        left: 15px;
    }
    
    /* Process Timeline Extra Small */
    .process-timeline {
        gap: 1rem;
    }
    
    .process-step {
        padding: 1.5rem 1.25rem;
    }
    
    .step-header {
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Clients Section Extra Small */
    .clients-section {
        padding: 0;
    }
    
    .clients-section .container {
        padding-top: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .clients-section .section-header {
        margin-bottom: 1rem;
    }
    
    .clients-slider {
        padding: 1rem 0;
    }
    
    .clients-slider::before,
    .clients-slider::after {
        width: 50px;
    }
    
    .clients-track {
        gap: 2rem;
    }
    
    .logo-container {
        min-width: 130px;
        height: 100px;
        padding: 1.25rem 1.5rem;
    }
    
    .logo-container i {
        font-size: 2rem;
    }
    
    .logo-container span {
        font-size: 0.875rem;
    }
}

/* ========================================
   Cookie Banner & Modal
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--primary-color);
    animation: cookiePulse 2s ease-in-out infinite;
}

@keyframes cookiePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-info {
    margin-top: 0.5rem;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cookie-btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cookie-btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease-out;
}

.cookie-modal.active {
    display: flex;
}

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

.cookie-modal-content {
    background: var(--bg-primary);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease-out;
}

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cookie-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cookie-category:hover {
    border-color: var(--primary-color);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.cookie-category-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cookie-category-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cookie-category-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Cookie Switch Toggle */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    min-width: 50px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: var(--transition);
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background: var(--gradient-primary);
}

input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:focus + .cookie-slider {
    box-shadow: 0 0 1px var(--primary-color);
}

.cookie-modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
}

.cookie-modal-footer .cookie-btn {
    flex: 1;
    justify-content: center;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        text-align: left;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .cookie-btn {
        flex: 1;
        justify-content: center;
    }
    
    .cookie-modal-header {
        padding: 1.5rem;
    }
    
    .cookie-modal-body {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   Accessibility Improvements
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Remove default focus outlines */
*:focus {
    outline: none !important;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10002;
    border-radius: 0 0 8px 0;
}

/* Keep focus for skip link (accessibility) */
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px;
}

/* Better contrast for links */
a {
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
    }
    
    [data-theme="dark"] {
        --border-color: #ffffff;
    }
}

/* ========================================
   Service Detail Pages
   ======================================== */
.service-detail {
    padding: 10rem 0 8rem;
}

.service-hero {
    text-align: center;
    margin-bottom: 3rem;
}

/* AI Generator Section */
.ai-generator-section {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4f46e5 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.ai-generator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.ai-badge i {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.ai-generator-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.ai-generator-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.ai-generator-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.generator-input-section label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.generator-input-section textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    resize: vertical;
    transition: var(--transition);
    line-height: 1.6;
}

.generator-input-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

.generator-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.option-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.option-checkbox:hover {
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

.option-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option-checkbox span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.btn-generate {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.btn-generate.loading {
    pointer-events: none;
}

.btn-generate.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.generator-output {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}

.output-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-secondary);
}

.output-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.output-content {
    animation: fadeIn 0.5s ease-in;
}

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

.output-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.output-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.output-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.output-section h3 i {
    font-size: 1rem;
}

.output-section p,
.output-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.output-section ul {
    list-style: none;
    padding-left: 0;
}

.output-section li {
    padding-left: 1.5rem;
    position: relative;
}

.output-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.mockup-preview {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-top: 1rem;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.mockup-element {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.quote-summary {
    background: var(--bg-primary);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-top: 1rem;
}

.quote-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quote-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-color);
}

.timeline-list {
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-left: 3px solid var(--primary-color);
    margin-bottom: 0.75rem;
    border-radius: var(--radius-sm);
}

.timeline-week {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-task {
    color: var(--text-primary);
}

/* AI Mockup Generator Modern Styles */
.ai-mockup-generator {
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.mockup-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.mockup-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mockup-hero-content {
    position: relative;
    z-index: 1;
}

.ai-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-badge-large i {
    font-size: 1.25rem;
    animation: float 3s ease-in-out infinite;
}

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

.mockup-hero h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.mockup-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Wizard Form Container */
.mockup-form-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.progress-bar-container {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
}

.progress-step.completed .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.progress-step.completed .step-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.progress-step.active .step-label {
    color: var(--primary-color);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--border-color);
    position: relative;
    margin: 0 1rem;
    max-width: 150px;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.progress-step.completed ~ .progress-line::after,
.progress-step.active ~ .progress-line::after {
    width: 100%;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeInSlide 0.4s ease;
    min-height: 400px;
}

.wizard-step.active {
    display: block;
}

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

.wizard-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Project Type Cards */
.project-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.type-card {
    position: relative;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.type-card input[type="radio"]:checked + .card-icon {
    background: var(--primary-color);
    color: white;
}

.type-card input[type="radio"]:checked ~ .card-icon,
.type-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.card-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Color Picker Section */
.color-picker-section {
    max-width: 700px;
    margin: 0 auto;
}

.color-picker-group-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.color-picker-item label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.color-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.color-input-wrapper input[type="color"] {
    width: 80px;
    height: 80px;
    border: 3px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.color-input-wrapper input[type="color"]:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.color-input-wrapper input[type="text"] {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
    text-align: center;
    text-transform: uppercase;
}

.color-preview-box {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
}

.preview-label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.preview-colors {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.preview-color-large {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    border: 3px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.preview-color-large:hover {
    transform: scale(1.05);
}

/* Style Cards for Step 3 */
.style-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.style-card {
    position: relative;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.style-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.style-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.style-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.style-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.style-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.style-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Description Section */
.description-section {
    max-width: 700px;
    margin: 0 auto;
}

.description-section textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    resize: vertical;
    transition: var(--transition);
    line-height: 1.8;
}

.description-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.char-count {
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Wizard Navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.btn-wizard {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-prev {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-prev:hover {
    background: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateX(-3px);
}

.btn-next {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    margin-left: auto;
}

.btn-next:hover {
    background: #4f46e5;
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-generate {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: white;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.btn-generate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

.btn-generate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

/* Style Chips */
.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-group-modern label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.style-description-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.style-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.style-chip {
    position: relative;
    cursor: pointer;
}

.style-chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.style-chip span {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.style-chip:hover span {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.style-chip input[type="radio"]:checked + span {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.form-group-modern textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    resize: vertical;
    transition: var(--transition);
    line-height: 1.6;
}

.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

/* Generate Button */
.generate-section {
    text-align: center;
    padding-top: 2rem;
}

.btn-generate-modern {
    position: relative;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-generate-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

.btn-generate-modern:active {
    transform: translateY(-1px);
}

.btn-generate-modern.loading {
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.btn-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.mockup-output-section {
    margin-top: 3rem;
    animation: fadeIn 0.5s ease;
}

.mockup-gallery {
    min-height: 300px;
}

/* Generation Steps Animation */
.generating-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    padding: 3rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-color);
}

.generating-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.generating-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.generating-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    width: 100%;
}

.gen-step {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gen-step.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.gen-step.completed {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.gen-step.completed::before {
    content: '✓';
    font-weight: 700;
}

.error-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem;
}

.error-placeholder i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

/* Results Header */
.results-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-lg);
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #10b981;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.success-badge i {
    font-size: 1.25rem;
}

.results-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.results-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Pages Grid */
.mockup-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.page-mockup-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-mockup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.page-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.page-preview {
    position: relative;
    background: var(--bg-secondary);
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.page-mockup-card:hover .page-overlay {
    opacity: 1;
}

.btn-view {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-view:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.page-info {
    padding: 1.5rem;
}

.page-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Analysis Section */
.analysis-section {
    background: var(--bg-primary);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.analysis-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.recommendation-box {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.recommendation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.recommendation-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.recommendation-list li:last-child {
    border-bottom: none;
}

.features-highlight,
.selling-points {
    margin-top: 2rem;
}

.features-highlight h4,
.selling-points h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-chip {
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-chip i {
    color: var(--primary-color);
}

.selling-points ul {
    list-style: none;
    padding-left: 0;
}

.selling-points li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.selling-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.dynamic-features h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-chip-dynamic {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-color: var(--primary-color);
}

.feature-chip-dynamic i {
    color: #f59e0b;
}

/* Recommendations Advanced */
.recommendations-advanced {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
}

.recommendations-advanced h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.recommendations-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.recommendation-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recommendation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color, #8b5cf6));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.recommendation-card:hover::before {
    transform: scaleY(1);
}

.recommendation-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.recommendation-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

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

.recommendation-card li {
    padding: 0.625rem 0 0.625rem 1.75rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.recommendation-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.recommendation-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary-color);
}

.recommendation-cta p {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-lg);
}

.color-palette-display {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: var(--bg-primary);
    border-radius: 50px;
    border: 2px solid var(--border-color);
}

.palette-title {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.color-display {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-section > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem !important;
    font-size: 1.125rem !important;
    border-radius: 50px !important;
}

/* Modal */
.mockup-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content-large {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
}

.modal-content-large h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.modal-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.mockup-result {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.mockup-image-container {
    position: relative;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.generated-mockup {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.mockup-image-container:hover .mockup-overlay {
    opacity: 1;
}

.btn-download,
.btn-regenerate {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-download {
    background: var(--primary-color);
    color: white;
}

.btn-download:hover {
    background: #4f46e5;
}

.btn-regenerate {
    background: white;
    color: var(--text-primary);
}

.btn-regenerate:hover {
    background: var(--bg-secondary);
}

.mockup-details {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.mockup-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.detail-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 500;
    color: var(--text-primary);
}

.color-swatches {
    display: flex;
    gap: 0.5rem;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Legal Pages */
.legal-page {
    padding: 10rem 0 6rem;
    background: var(--bg-primary);
}

.legal-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.legal-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.legal-section li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.legal-section a:hover {
    color: #4f46e5;
}

.legal-date {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 2rem 0;
    font-style: italic;
}

.legal-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Rights Grid for RGPD */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    transition: var(--transition);
}

.right-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.right-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.right-card h3 i {
    color: var(--primary-color);
}

.right-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-lead {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-description {
    text-align: center;
    margin-bottom: 4rem;
}

.service-description h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-feature:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-feature h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-feature p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-pricing {
    text-align: center;
    margin-bottom: 3rem;
}

.price-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3rem;
    background: var(--bg-secondary);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.service-cta {
    text-align: center;
}

/* ========================================
   Print Styles
   ======================================== */
/* ========================================
   Solution Pages - Modern Layout
   ======================================== */

/* Solution Hero */
.solution-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.solution-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: 
        radial-gradient(circle at 20% 50%, var(--hero-color, var(--primary-color)) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--hero-color, var(--primary-color)) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--accent-color) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.15; transform: scale(1.1); }
}

.solution-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

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

.solution-badge i {
    font-size: 1.25rem;
}

.solution-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.solution-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solution-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-lg i {
    transition: transform 0.3s ease;
}

.btn-lg:hover i {
    transform: translateX(5px);
}

.solution-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Solution Intro */
.solution-intro {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.intro-checklist {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.intro-checklist i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.intro-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.visual-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInScale 0.6s ease-out backwards;
}

.visual-card-1 { animation-delay: 0.1s; }
.visual-card-2 { animation-delay: 0.2s; grid-column: span 2; }
.visual-card-3 { animation-delay: 0.3s; grid-column: span 2; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.visual-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.visual-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.visual-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Solution Features */
.solution-features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header-center p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-modern {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Solution Clients */
.solution-clients {
    padding: 6rem 0;
    background: var(--bg-primary);
}

/* Solution Use Cases */
.solution-use-cases {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* Solution Tech Stack */
.solution-tech-stack {
    padding: 6rem 0;
    background: var(--bg-primary);
}

/* Solution FAQ */
.solution-faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question .fa-question-circle {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.faq-icon {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Devis Simulator - Minimal */
.devis-simulator {
    max-width: 600px;
    margin: 0 auto;
}

.simulator-form {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 2rem;
}

.form-group-minimal {
    margin-bottom: 2rem;
}

.form-group-minimal label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.input-minimal {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.input-minimal:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Style pour Google Places Autocomplete */
.pac-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    z-index: 10000;
}

.pac-item {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background: var(--bg-secondary);
}

.pac-item-query {
    color: var(--text-primary);
    font-weight: 600;
}

.pac-matched {
    color: var(--primary-color);
    font-weight: 700;
}

.pac-icon {
    display: none;
}

.radio-group-minimal {
    display: flex;
    gap: 1.5rem;
}

.radio-minimal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-secondary);
}

.radio-minimal input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.simulator-result {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    color: white;
    animation: fadeInScale 0.5s ease-out;
}

.result-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.result-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.result-note {
    opacity: 0.85;
    font-size: 0.9rem;
    margin: 0;
}

.result-note i {
    margin-right: 0.5rem;
}

/* Solution CTA */
.solution-cta {
    padding: 8rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.solution-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-content .btn {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-content .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .solution-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .solution-title {
        font-size: 2.5rem;
    }
    
    .solution-hero-stats {
        gap: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .solution-intro {
        padding: 4rem 0;
    }
    
    .solution-features,
    .solution-clients,
    .solution-use-cases,
    .solution-tech-stack,
    .solution-faq {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ========================================
   Clients Ticker Section
   ======================================== */
.clients-section {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.clients-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.clients-ticker {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.clients-ticker::before,
.clients-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.clients-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scroll-clients 30s linear infinite;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Use Cases Section
   ======================================== */
.use-cases {
    margin: 5rem 0;
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.use-case-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Tech Stack Section
   ======================================== */
.tech-stack {
    margin: 5rem 0;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.tech-stack h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.tech-category h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-category h3 i {
    color: var(--primary-color);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.tech-item:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    margin: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h3 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Service CTA Enhancement
   ======================================== */
.service-cta {
    text-align: center;
    padding: 4rem 0;
    margin-top: 4rem;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   AI CHATBOT GENERATOR - GROQ
   ======================================== */

.ai-chatbot-container {
    margin: 4rem 0;
    padding: 0;
}

.chatbot-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 16px 16px 0 0;
    text-align: center;
    color: white;
}

.chatbot-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.ai-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.ai-badge-large i {
    font-size: 1rem;
}

.chatbot-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.chatbot-hero p {
    font-size: 1rem;
    opacity: 0.95;
}

.ai-chatbot-box {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.chatbot-messages-area {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.chatbot-messages-area::-webkit-scrollbar {
    width: 10px;
}

.chatbot-messages-area::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

.chatbot-messages-area::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.ai-message {
    display: flex;
    gap: 1rem;
    max-width: 80%;
    animation: fadeInUp 0.4s ease;
}

.ai-message.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-message.bot-message {
    align-self: flex-start;
}

.ai-message .message-content {
    background: white;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ai-message.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.ai-message .message-content strong {
    color: #667eea;
    font-weight: 600;
}

.ai-message.user-message .message-content strong {
    color: white;
}

.ai-message .message-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.ai-message .message-content li {
    margin: 0.3rem 0;
}

.chatbot-input-area {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-primary);
    border-top: 2px solid var(--border-color);
}

.chatbot-input-area input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.chatbot-input-area input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chatbot-input-area button {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-input-area button:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Typing indicator */
.typing-indicator {
    max-width: 80px !important;
}

.typing-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.85rem 1rem;
    background: white;
    border-radius: 16px;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    background: #667eea;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Quick suggestions */
.quick-suggestions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0.85rem 0;
}

.quick-title {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.quick-btn {
    padding: 0.85rem 1.25rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;
}

.quick-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateX(5px);
}

.quick-btn-generate {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border-color: transparent !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulseGenerate 2s infinite;
}

.quick-btn-generate:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

@keyframes pulseGenerate {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }
}

/* Generate CTA */
.generate-cta {
    text-align: center;
    margin: 1.5rem 0;
}

.generate-demo-btn {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.generate-demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

/* Features */
.chatbot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0 0 16px 16px;
    margin-top: -2px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 1.6rem;
    color: #667eea;
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ========================================
   DEMO PREVIEW MODAL
   ======================================== */

.demo-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.demo-preview-modal.active {
    opacity: 1;
    visibility: visible;
}

.demo-preview-container {
    background: var(--bg-primary);
    border-radius: 20px;
    width: 100%;
    max-width: 1400px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.demo-preview-modal.active .demo-preview-container {
    transform: scale(1);
}

.demo-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.demo-preview-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.demo-preview-actions {
    display: flex;
    gap: 1rem;
}

.demo-action-btn,
.demo-close-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-action-btn:hover,
.demo-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.demo-close-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
}

.demo-preview-body {
    flex: 1;
    background: #f0f0f0;
    overflow: hidden;
}

.demo-preview-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-radius: 0 0 20px 20px;
    gap: 1rem;
}

.demo-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.demo-info i {
    color: #667eea;
}

.demo-contact-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

/* Protection anti-copie */
.ai-chatbot-container,
.demo-preview-modal {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.ai-chatbot-container *,
.demo-preview-modal * {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .chatbot-hero {
        padding: 2rem 1.25rem;
    }
    
    .chatbot-hero h2 {
        font-size: 1.5rem;
    }
    
    .chatbot-messages-area {
        height: 350px;
        padding: 1.25rem;
    }
    
    .chatbot-input-area {
        padding: 1rem 1.25rem;
    }
    
    .chatbot-features {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        padding: 1.5rem 1.25rem;
    }
    
    .demo-preview-container {
        height: 95vh;
    }
    
    .demo-preview-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .demo-preview-title {
        font-size: 1rem;
    }
    
    .demo-action-btn span {
        display: none;
    }
    
    .demo-preview-footer {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem;
    }
    
    .demo-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .chatbot-hero h2 {
        font-size: 1.35rem;
    }
    
    .chatbot-messages-area {
        height: 300px;
        padding: 1rem;
    }
    
    .chatbot-features {
        grid-template-columns: 1fr;
    }
    
    .ai-badge-large {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .chatbot-input-area {
        padding: 1rem;
    }
}

@media print {
    .navbar,
    .chatbot-container,
    .scroll-top,
    .hero-shapes,
    .cookie-banner,
    .cookie-modal,
    .demo-preview-modal,
    .ai-chatbot-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ========================================
   Chatbot Ticket System Styles
   ======================================== */

.ticket-helper {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem 0;
    animation: fadeInUp 0.3s ease-out;
}

.ticket-helper p {
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.ticket-progress {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ticket-progress span {
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

[data-theme="dark"] .ticket-progress span {
    background: rgba(255, 255, 255, 0.05);
}

.ticket-progress span.active {
    background: var(--primary-color);
    color: white;
    animation: pulse 2s infinite;
}

.ticket-progress span.completed {
    background: var(--success-color);
    color: white;
}

.ticket-success {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.ticket-number-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 2px dashed var(--success-color);
}

.ticket-number-display i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.ticket-number-display strong {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

.ticket-success p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Styles moved to mobile media query */
