/*
Theme Name: Arad-Afous
Theme URI: https://arad-afous.com
Author: Arad-Afous
Description: Custom WordPress theme for Arad-Afous Marketing Agency
Version: 1.0
Text Domain: arad-afous
*/
/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
   :root {
    /* Colors */
    --bg-dark: #07090e;
    --bg-darker: #040508;
    --bg-card: rgba(15, 20, 28, 0.7);
    --bg-card-hover: rgba(25, 33, 45, 0.8);
    
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-blue: #38bdf8;
    --accent-blue-hover: #0ea5e9;
    --accent-gradient: linear-gradient(135deg, #38bdf8, #818cf8, #e879f9);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(56, 189, 248, 0.3);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.2;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--trans-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ==========================================================================
   Background Effects (Grain & Grid)
   ========================================================================== */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(232, 121, 249, 0.03), transparent 25%);
    z-index: -2;
    pointer-events: none;
}

.bg-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gradient-animated {
    background: linear-gradient(90deg, #38bdf8, #8b5cf6, #ec4899, #f97316, #84cc16, #38bdf8);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 7s ease infinite;
    display: inline-block;
}

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

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

.mobile-only { display: block; }
@media (min-width: 768px) {
    .mobile-only { display: none; }
}

.text-center { text-align: center; }
.text-white { color: var(--text-white) !important; }
.mt-4 { margin-top: var(--space-md); }
.mt-5 { margin-top: 3rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--trans-fast);
    white-space: nowrap;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

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

.btn-primary:hover {
    background: var(--text-gray);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-gray);
    transform: translateY(-2px);
}

.btn-whatsapp-direct {
    background: #25D366;
    color: white;
    border: none;
}
.btn-whatsapp-direct:hover {
    background: #1DA851;
    color: white;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    transition: var(--trans-fast);
    font-size: 1.25rem;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.whatsapp-icon {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-icon:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--trans-fast);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(7, 9, 14, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
    white-space: nowrap;
    display: inline-block;
}

.logo-dot {
    color: var(--accent-blue);
}

.nav {
    display: none;
}

@media (min-width: 992px) {
    .nav {
        display: block;
    }
    .nav-list {
        display: flex;
        gap: 2rem;
    }
    .nav-link {
        font-size: 0.875rem;
        color: var(--text-gray);
        font-weight: 500;
    }
    .nav-link:hover, .nav-link.active {
        color: var(--text-white);
    }
}

.header-actions {
    display: none;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
}

.mobile-menu-toggle {
    font-size: 1.5rem;
    color: var(--text-white);
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   Sections General
   ========================================================================== */
.section {
    padding: var(--space-xl) 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-header {
    margin-bottom: var(--space-lg);
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

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

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--text-muted);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, rgba(139, 92, 246, 0.03) 30%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.hero-title {
    font-size: 3rem;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
}

/* ==========================================================================
   Positioning Bar
   ========================================================================== */
.positioning-bar {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    background: rgba(10, 15, 25, 0.4);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.positioning-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(56, 189, 248, 0.06), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.positioning-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-white);
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0 1.5rem;
}

.positioning-inner::-webkit-scrollbar {
    display: none;
}

.positioning-inner .separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .positioning-inner {
        font-size: 0.95rem;
        gap: 2rem;
        justify-content: center;
        padding: 0;
        overflow-x: visible;
    }
}

/* ==========================================================================
   Cards Grid System
   ========================================================================== */
.cards-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

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

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.premium-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent-gradient);
    opacity: 0.8;
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.problem-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.problem-comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.problem-comparison-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.04) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-label {
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 500;
}

.comparison-bar-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.comparison-bar {
    height: 12px;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.comparison-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), transparent);
}

.bar-low {
    width: 35%;
    background: #ef4444;
}

.bar-high {
    width: 85%;
    background: #10b981;
}

.comparison-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.highlight-text {
    color: var(--text-white);
    font-weight: 500;
}

.problem-insights {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .problem-insights {
        grid-template-columns: 1fr 1fr;
    }
}

.insight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.insight-icon {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .problem-comparison-card {
        padding: 2rem 1.5rem;
    }
    .comparison-bar-container {
        gap: 0.5rem;
    }
    .comparison-bar {
        width: 100% !important;
    }
    .bar-low { max-width: 45%; }
    .bar-high { max-width: 90%; }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.service-groups {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-md);
}

.group-header {
    margin-bottom: var(--space-md);
    max-width: 600px;
}

.group-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

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

.group-label-1 { color: #f97316; } /* Terracotta/Orange */
.group-label-2 { color: #38bdf8; } /* Blue */
.group-label-3 { color: #10b981; } /* Green */

.services-grid {
    gap: 1.5rem;
}

.card-service {
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
}

.card-icon-area {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    transition: var(--trans-fast);
}

.card-service .card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card-service .card-text {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Hover Accent Colors */
.accent-group-1:hover { border-color: rgba(249, 115, 22, 0.3); }
.accent-group-1:hover .card-icon-area { background: rgba(249, 115, 22, 0.1); color: #f97316; }

.accent-group-2:hover { border-color: rgba(56, 189, 248, 0.3); }
.accent-group-2:hover .card-icon-area { background: rgba(56, 189, 248, 0.1); color: #38bdf8; }

.accent-group-3:hover { border-color: rgba(16, 185, 129, 0.3); }
.accent-group-3:hover .card-icon-area { background: rgba(16, 185, 129, 0.1); color: #10b981; }

/* ==========================================================================
   Lead Engine Section (Dashboard Mockup)
   ========================================================================== */
.lead-engine-container {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .lead-engine-container {
        grid-template-columns: 1fr 1fr;
    }
}

.mockup-dashboard {
    background: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.mockup-title {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-heading);
}

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

.stat-box.alert .stat-value {
    color: #f59e0b;
}

.mockup-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.mockup-item.new {
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.2);
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.item-info {
    flex-grow: 1;
}

.item-info h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.item-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.item-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.status-new { background: rgba(56, 189, 248, 0.1); color: var(--accent-blue); }
.status-action { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.status-meeting { background: rgba(139, 92, 246, 0.1); color: #a78bfa; }
.status-won { background: rgba(16, 185, 129, 0.1); color: #34d399; }

/* ==========================================================================
   Notre Système
   ========================================================================== */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.system-steps-container {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 992px) {
    .system-steps-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

.system-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--trans-fast);
}

.system-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.2);
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.25rem;
}

.step-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.3;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bullet-plus {
    color: var(--accent-blue);
    font-weight: 700;
}

.system-footer {
    margin-top: 4rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.system-footer-text {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

/* Utilities */
.mb-3 { margin-bottom: 1rem; }
.mt-1 { margin-top: 0.25rem; }

/* ==========================================================================
   Industries
   ========================================================================== */
.card-industry .industry-icon {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-industry {
    background: rgba(56, 189, 248, 0.03);
}

.featured-industry .industry-icon {
    background: var(--accent-gradient);
}

.industry-goal {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
}

.industry-goal strong {
    color: var(--text-white);
}

/* ==========================================================================
   À Propos
   ========================================================================== */
.apropos-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .apropos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.apropos-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credibility-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.credibility-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.credibility-icon {
    color: var(--accent-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.credibility-content h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.credibility-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Founder Card */
.founder-card-wrapper {
    position: relative;
    width: 100%;
}

.founder-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.founder-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 10;
}

.founder-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 10%;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 992px) {
    .founder-img {
        aspect-ratio: 3/4;
        object-position: center 15%;
    }
}

.founder-info {
    padding: 2rem;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.founder-role {
    color: var(--accent-blue);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-desc {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.founder-badges .badge {
    margin-bottom: 0;
}

.apropos-values {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .apropos-values {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--trans-fast);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.2);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.value-item h4 {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--text-white);
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-gray);
}

/* ==========================================================================
   Final CTA & Form
   ========================================================================== */
.cta-section {
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.cta-container {
    display: grid;
    gap: 4rem;
}

@media (min-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.audit-form {
    background: rgba(10, 18, 28, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(56, 189, 248, 0.08);
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-white);
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(5, 10, 18, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--trans-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #38BDF8;
    background: rgba(5, 10, 18, 0.95);
    box-shadow: 0 0 0 1px #38BDF8;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.premium-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 1.25rem;
}

::placeholder {
    color: #9CA3AF;
}

.form-success {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   Multi-Step Form
   ========================================================================== */
.form-progress {
    margin-bottom: 2.5rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 5%;
}

.step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    transition: var(--trans-normal);
}

.step-indicator.active {
    background: linear-gradient(135deg, #38BDF8, #8B5CF6);
    color: white;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.step-indicator.completed {
    background: linear-gradient(135deg, #38BDF8, #8B5CF6);
    color: white;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    margin: 0 10px;
    transition: var(--trans-normal);
}

.step-line.active {
    background: linear-gradient(90deg, #38BDF8, #8B5CF6);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 2%;
}

.progress-labels span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--trans-normal);
}

.progress-labels span.active {
    color: var(--accent-blue);
}

.step-header {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.text-right { text-align: right; }

.btn-pill {
    background: #FFFFFF;
    color: #000000;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: none;
    transition: var(--trans-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-pill:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
    color: #000000;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-xl);
    background: var(--bg-darker);
}

.footer-top {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .footer-top {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    max-width: 400px;
    font-size: 0.95rem;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-col a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--trans-fast);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1DA851;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
