/* ============================================
   Easy Concierge - Refonte V2
   Design System Premium
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    /* Colors */
    --primary: #0f2b46;
    --primary-light: #1a3d5c;
    --accent: #ff6b4a;
    --accent-hover: #e85a3a;
    --teal: #00c9a7;
    --teal-light: #e6faf6;
    --bg-warm: #faf8f5;
    --bg-light: #f5f3f0;
    --bg-dark: #0a1628;
    --text-primary: #1a1a2e;
    --text-secondary: #5a6478;
    --text-light: #8892a4;
    --white: #ffffff;
    --border: #e8e6e3;
    --shadow-sm: 0 2px 8px rgba(15, 43, 70, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 43, 70, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 43, 70, 0.12);
    --shadow-xl: 0 30px 80px rgba(15, 43, 70, 0.16);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.navbar-logo img,
.navbar-brand img {
    height: 42px;
    width: auto;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding: 4px 0;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
    border-radius: 2px;
}

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

.navbar-links a:hover {
    color: var(--accent);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.nav-dropdown-btn {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    transition: var(--transition-fast);
}

.nav-dropdown-btn:hover {
    color: var(--accent);
}

.nav-dropdown-btn svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

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

.nav-dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 220px;
    padding: 8px;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
}

.nav-dropdown-menu a:hover {
    background: var(--bg-warm);
    color: var(--accent);
}

.nav-dropdown-menu a::after {
    display: none;
}

/* Navbar CTA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-login {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
}

.btn-login:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.btn-login svg {
    width: 16px;
    height: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, var(--primary) 0%, #163a5f 40%, #1a4a6e 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Decorative gradient orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero-typed-wrapper {
    font-size: clamp(36px, 5vw, 56px);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 20px;
    min-height: 1.3em;
}

.hero-typed {
    color: var(--teal);
}

.typed-cursor {
    color: var(--teal);
    font-weight: 300;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-mockup {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mockup img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card:nth-child(2) {
    bottom: -20px;
    left: -30px;
    animation-delay: -2s;
}

.hero-floating-card:nth-child(3) {
    top: -20px;
    right: -30px;
    animation-delay: -4s;
}

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

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.floating-text strong {
    display: block;
    font-size: 14px;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.floating-text span {
    font-size: 12px;
    color: var(--text-light);
}

/* --- SOCIAL PROOF BAR --- */
.social-proof-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.social-proof-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.proof-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.proof-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* --- SECTION BASE --- */
.section {
    padding: var(--section-padding);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

/* --- FRENCH PMS SECTION --- */
.french-pms-section {
    background: var(--bg-warm);
}

.french-pms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.french-pms-block .section-title {
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 16px;
    text-align: left;
}

.french-pms-block p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .french-pms-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* --- WHY SECTION --- */
.why-section {
    background: var(--bg-warm);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    opacity: 0;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

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

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* --- FEATURES TABS --- */
.features-section {
    background: var(--white);
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.feature-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.feature-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.feature-tab svg {
    width: 18px;
    height: 18px;
}

.feature-panel {
    display: none;
    animation: fadeSlideUp 0.5s ease;
}

.feature-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-panel-content {
    padding-right: 20px;
}

.feature-panel h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.feature-panel > p,
.feature-panel-content > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.feature-checklist li svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-panel.feature-panel-full.active {
    grid-template-columns: 1fr;
}

.feature-panel-full .feature-panel-content {
    max-width: 700px;
}

.feature-panel-visual {
    position: relative;
}

.feature-panel-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* --- INTEGRATIONS --- */
.integrations-section {
    background: var(--bg-warm);
}

.integrations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.integration-item:hover {
    transform: translateY(-4px);
}

.integration-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    font-size: 28px;
    transition: var(--transition-fast);
}

.integration-item:hover .integration-logo {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.integration-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* --- SCREENSHOTS / GALLERY --- */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-smooth);
}

.gallery-card:hover img {
    transform: scale(1.03);
}

.gallery-card-body {
    padding: 24px;
}

.gallery-card-body h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.gallery-card-body p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* --- PRICING --- */
.pricing-section {
    background: var(--bg-warm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1360px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    border: 2px solid var(--border);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0 4px;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-card .price-alt {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--bg-warm);
}

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

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* --- FAQ SECTION --- */
.faq-section {
    background: var(--bg-warm);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- CTA SECTION --- */
.cta-section {
    background: linear-gradient(145deg, var(--primary) 0%, #163a5f 50%, #1a4a6e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- TRUSTED / CLIENTS --- */
.trusted-section {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.trusted-title {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logos img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition-fast);
}

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

/* --- FOOTER --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

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

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-brand img {
    height: 36px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
}

.footer h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge svg {
    width: 14px;
    height: 14px;
}

/* --- MODAL LOGIN --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(12px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.modal-box {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 440px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.modal-box h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-box > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-box input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-warm);
    transition: var(--transition-fast);
}

.modal-box input:focus {
    border-color: var(--accent);
    outline: none;
    background: var(--white);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    background: none;
    border: none;
    transition: var(--transition-fast);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* --- FLOATING CTA --- */
.floating-cta {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta .btn-primary {
    padding: 14px 28px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
}

/* --- SCROLL ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

/* --- RESPONSIVE --- */

/* Large screens */
@media (max-width: 1280px) {
    .hero .container {
        gap: 40px;
    }
}

/* Tablets landscape */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-panel.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-panel-content {
        padding-right: 0;
    }

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

/* Tablets portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border);
        z-index: 1000;
    }

    .navbar-links.open {
        display: flex;
    }

    .navbar-links > a,
    .navbar-links > .nav-dropdown,
    .navbar-links > button {
        width: 100%;
    }

    .navbar-links > a {
        font-size: 15px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-links > button.btn-login {
        margin-top: 8px;
        align-self: flex-start;
    }

    .hamburger {
        display: flex;
    }

    .nav-dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-dropdown-btn {
        font-size: 15px;
        justify-content: flex-start;
        gap: 6px;
        padding: 12px 0;
        width: 100%;
    }

    .nav-dropdown-btn svg {
        width: 14px;
        height: 14px;
        transition: transform var(--transition-fast);
    }

    .nav-dropdown.open .nav-dropdown-btn svg {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        min-width: auto;
        padding: 0;
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        transition: max-height 0.3s ease, opacity 0.2s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        visibility: visible;
        opacity: 1;
        max-height: 300px;
        pointer-events: all;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        /* Disable hover on mobile - use click only */
    }

    .nav-dropdown-menu a {
        font-size: 14px;
        padding: 8px 0 8px 16px;
        color: var(--text-secondary);
        text-align: left;
    }

    .floating-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-floating-card {
        display: none;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }

    .features-tabs {
        gap: 6px;
    }

    .feature-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .social-proof-bar .container {
        gap: 32px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 360px !important;
    }

    :root {
        --section-padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .btn-white, .btn-ghost {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-typed-wrapper {
        font-size: 30px;
    }

    .social-proof-bar .container {
        flex-direction: column;
        gap: 20px;
    }

    .integrations-grid {
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Très grands écrans */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}
