/* ===================================
   Variables CSS - Design Moderne & Épuré
   =================================== */
:root {
    --primary-color: #00A878;
    --primary-dark: #008C64;
    --primary-light: #00D99E;
    --secondary-color: #2C3E50;
    --text-dark: #1A202C;
    --text-medium: #4A5568;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --accent-orange: #FF6B35;
    --accent-purple: #6C5CE7;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --transition-slow: all 0.4s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Accessibilité - Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/blurry_background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

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

/* ===================================
   Navigation
   =================================== */
/* Navbar simple - Logo à gauche, boutons à droite */
.navbar-simple {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: transparent;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
    will-change: transform, opacity;
}

.navbar-simple.hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none;
}

.nav-wrapper-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-simple img {
    height: 90px;
    width: auto;
    display: block;
}

.nav-buttons-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu-simple {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    align-items: center;
    padding: 0;
}

.nav-link-simple {
    text-decoration: none !important;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    transition: var(--transition) !important;
    padding: 0.5rem 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    letter-spacing: -0.01em !important;
}

.nav-link-simple:hover,
.nav-link-simple.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: rgba(60, 75, 95, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 12px;
    width: auto;
    max-width: none;
    margin: 0;
    will-change: transform;
    height: auto;
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

.navbar.hidden {
    transform: translateX(-50%) translateY(-100%);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    transition: var(--transition);
    width: auto;
    gap: 1.5rem;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 96px;
    width: auto;
    display: block;
    margin: -20px 0;
}

.navbar .container {
    padding: 0;
    max-width: 100%;
}

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

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus {
    color: #FFFFFF;
    outline: none;
    font-weight: 700;
}

.nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255, 255, 255, 0.6);
    margin-left: 4px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
    border-top-color: white;
}

/* Accessibilité - Focus visible */
.nav-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 168, 120, 0.2);
    transition: var(--transition);
}

.nav-actions .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(0, 168, 120, 0.3);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: rgba(0, 168, 120, 0.1);
    outline: none;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ===================================
   Buttons
   =================================== */
.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
    border: none;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--bg-light);
    border-color: var(--text-medium);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: 3px solid rgba(0, 168, 120, 0.5);
    outline-offset: 2px;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Accessibilité - Screen reader only */
.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;
}

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

.hero {
    --hero-bg-opacity: 0.5;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-image: url('assets/images/IMG_82752.jpeg');
    background-size: 120%;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: var(--hero-bg-opacity, 0.5);
    z-index: 0;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 40%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0.8) 80%,
            rgba(255, 255, 255, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Nouvelle Hero Section avec téléphone */
.hero-new {
    padding: 140px 0 80px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-image: url('assets/images/IMG_82752.jpeg');
    background-size: 120%;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.hero-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 40%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0.8) 80%,
            rgba(255, 255, 255, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-new {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.hero-title-new {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
    text-align: left;
}

.hero-title-new .gradient-text {
    color: var(--primary-color);
}

.hero-subtitle-new {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-download-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

.hero-phone-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg,
            #4a4a4a 0%,
            #3a3a3a 20%,
            #2a2a2a 40%,
            #1a1a1a 50%,
            #2a2a2a 60%,
            #3a3a3a 80%,
            #4a4a4a 100%);
    border-radius: 36px;
    padding: 8px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(150, 150, 150, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.15),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        inset 2px 0 4px rgba(255, 255, 255, 0.1),
        inset -2px 0 4px rgba(0, 0, 0, 0.3);
    border: none;
    position: relative;
}

.phone-button {
    position: absolute;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 2px;
    z-index: 5;
}

.phone-button-left {
    left: -3px;
    top: 120px;
    width: 4px;
    height: 50px;
    border-radius: 0 2px 2px 0;
}

.phone-button-right {
    right: -3px;
    top: 100px;
    width: 4px;
    height: 30px;
    border-radius: 2px 0 0 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 28px;
    overflow: visible;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    text-transform: none;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* AI Search Bar */
.ai-search-container {
    background: white;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    max-width: 640px;
    margin: 0 auto 48px;
}

.search-icon {
    color: var(--text-light);
    padding-left: 1rem;
}

.ai-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.ai-search-input::placeholder {
    color: var(--text-light);
}

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

.ai-search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ===================================
   Pillars Section
   =================================== */
.pillars {
    padding: 120px 0;
    background: transparent;
    position: relative;
}


.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: none;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.pillars-grid {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding: 10px 0;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.pillars-grid::-webkit-scrollbar {
    display: none;
}

.pillar-card {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.3s ease, z-index 0.4s ease, opacity 0.4s ease;
    position: relative;
    overflow: visible;
    transform: translateX(-50px);
    margin: 0;
    opacity: 0;
    transform-origin: center center;
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 220px;
    cursor: pointer;
}

.pillar-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.pillar-card:nth-child(1) {
    transition-delay: 0.1s;
}

.pillar-card:nth-child(2) {
    transition-delay: 0.2s;
}

.pillar-card:nth-child(3) {
    transition-delay: 0.3s;
}

.pillar-card:nth-child(4) {
    transition-delay: 0.4s;
}

.pillar-card:nth-child(5) {
    transition-delay: 0.5s;
}

.pillar-card.animate-in:hover {
    transform: translateX(0) translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 168, 120, 0.15);
    border-color: var(--primary-color);
    z-index: 10;
}

.pillar-card.featured {
    border: 2px solid transparent;
    background: white;
    z-index: 2;
}

.pillar-card.featured.animate-in:hover {
    transform: translateX(0) translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 168, 120, 0.2);
    border-color: var(--primary-color);
    z-index: 10;
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}


.pillar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.pillar-description {
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.pillar-features {
    list-style: none;
    margin-bottom: 12px;
    display: none;
}

.pillar-card:hover .pillar-features {
    display: block;
}

.pillar-features li {
    padding: 0.4rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.2rem;
    font-size: 11px;
}

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

.pillar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 11px;
}

.pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.pillar-cta:hover {
    gap: 1rem;
}

/* ===================================
   App Presentation Section
   =================================== */
.app-presentation {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.app-title {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: none;
}

.app-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 100%;
}

.app-image-glass {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px;
    transition: var(--transition);
    align-self: center;
}

.app-image-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.glass-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    object-fit: cover;
}

@media (max-width: 968px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .app-image-glass {
        max-width: 100%;
        margin: 0 auto;
    }
}

.app-badge {
    display: inline-block;
    background: rgba(0, 168, 120, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.app-feature-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.app-feature-item p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.app-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check {
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    display: block;
}

.app-feature-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.app-feature-item p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.app-explore-btn-container {
    margin-top: 1rem;
}

.btn-explore {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-explore:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 120, 0.2);
}

.app-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.mockup-placeholder {
    color: white;
    opacity: 0.3;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform: none;
    margin: 0;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(0, 168, 120, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-business {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-location {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 120px 0;
    background: var(--text-dark);
    color: white;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 168, 120, 0.1) 10px,
            rgba(0, 168, 120, 0.1) 20px);
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

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

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

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 32px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* ===================================
   Responsive Design
   =================================== */
/* Accessibilité - Menu mobile */
@media (max-width: 968px) {
    .navbar {
        top: 10px;
        left: 50%;
        transform: translateX(-50%) translateY(0);
        height: 64px;
    }

    .navbar.hidden {
        transform: translateX(-50%) translateY(-100%);
    }

    .logo img {
        height: 64px;
    }

    .nav-wrapper {
        padding: 0.2rem 0.5rem;
        gap: 1rem;
    }

    /* Nouvelle hero responsive */
    .hero-new {
        padding: 120px 0 60px;
        min-height: auto;
    }

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

    .hero-text-left {
        align-items: center;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1.1rem;
    }

    .hero-download-btn {
        align-self: center;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
        margin: 0 auto;
    }


    /* Navbar simple responsive */
    .navbar-simple {
        padding: 15px 20px;
    }

    .navbar-simple.hidden {
        transform: translateY(-100%);
    }

    .logo-simple img {
        height: 60px;
    }

    .nav-menu-simple {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-link-simple {
        font-size: 14px !important;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease, top 0.3s ease;
        z-index: 999;
    }

    /* Ajustement du menu mobile quand navbar est réduite */
    .navbar.scrolled .nav-menu {
        top: 50px;
        height: calc(100vh - 50px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }

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

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

    /* Logo plus petit sur mobile */
    .logo img {
        height: 40px;
    }

    .navbar.scrolled .logo img {
        height: 32px;
    }

    /* Navbar wrapper plus compact sur mobile */
    .nav-wrapper {
        padding: 0.4rem 0;
    }

    .navbar.scrolled .nav-wrapper {
        padding: 0.25rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .app-visual {
        order: -1;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .ai-search-container {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .pillars-grid {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 10px;
    }

    .pillar-card {
        min-width: 200px;
        max-width: 200px;
        padding: 20px 16px;
        flex: 0 0 auto;
    }

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

    .app-cta-group {
        flex-direction: column;
    }

    .app-cta-group .btn-large {
        width: 100%;
        justify-content: center;
    }
}