/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #6C3AED;
    --primary-light: #8B5CF6;
    --primary-dark: #5B21B6;
    --accent: #06B6D4;
    --bg: #0A0A0F;
    --bg-card: #111118;
    --bg-card-hover: #16161F;
    --surface: #1A1A24;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --text: #E4E4E7;
    --text-muted: #71717A;
    --text-dim: #52525B;
    --white: #FAFAFA;
    --gradient: linear-gradient(135deg, #6C3AED, #06B6D4);
    --gradient-text: linear-gradient(135deg, #8B5CF6, #06B6D4, #8B5CF6);
    --glow: 0 0 40px rgba(108,58,237,0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(108,58,237,0.3); }
    50% { box-shadow: 0 0 40px rgba(108,58,237,0.5), 0 0 80px rgba(6,182,212,0.2); }
}

/* Particles */
.particle {
    position: absolute;
    background: rgba(108,58,237,0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    pointer-events: none;
}
@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

/* ========== NAV ========== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}
.nav.scrolled {
    padding: 12px 0;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-size: 1.6rem; font-weight: 800; color: var(--white);
    text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--primary-light); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; transition: var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gradient); transition: var(--transition); border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--gradient); color: white; border: none; padding: 10px 24px;
    border-radius: 50px; font-weight: 600; font-size: 0.85rem; cursor: pointer;
    transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 2px; background: var(--white); border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-particles { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(108,58,237,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 20%, rgba(6,182,212,0.08) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: rgba(108,58,237,0.1); border: 1px solid rgba(108,58,237,0.2);
    font-size: 0.85rem; color: var(--primary-light); font-weight: 500;
    margin-bottom: 32px;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
    line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px; color: var(--white);
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted);
    max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
    border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: var(--transition); cursor: pointer;
    border: none; font-family: inherit;
}
.btn-primary {
    background: var(--gradient); color: white;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.btn-glass {
    background: rgba(255,255,255,0.05); color: var(--white);
    border: 1px solid var(--border-hover);
}
.btn-glass:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.btn-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* Stats */
.hero-stats {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px 32px; text-align: center;
    min-width: 160px; transition: var(--transition);
}
.stat-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.stat-number {
    font-size: 2.2rem; font-weight: 800; color: var(--white); display: inline;
}
.stat-unit { font-size: 1.5rem; font-weight: 700; color: var(--primary-light); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.scroll-indicator {
    width: 24px; height: 40px; border: 2px solid var(--border-hover);
    border-radius: 12px; position: relative;
}
.scroll-indicator::after {
    content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background: var(--primary-light); border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(108,58,237,0.1); border: 1px solid rgba(108,58,237,0.15);
    font-size: 0.8rem; color: var(--primary-light); font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    letter-spacing: -1px; color: var(--white); margin-bottom: 16px;
}
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ========== SERVICES ========== */
.services { padding: 120px 0; position: relative; }
.services::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px 28px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.service-card:hover {
    border-color: rgba(108,58,237,0.3); transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-hover-line {
    position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gradient); transition: width 0.4s ease;
}
.service-card:hover .service-hover-line { width: 100%; }
.service-icon-wrap {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(108,58,237,0.1); display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(108,58,237,0.2); transform: scale(1.1); }
.service-icon { font-size: 1.5rem; }
.service-card h3 {
    font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ========== LIGHTHOUSE SEO ========== */
.lighthouse {
    padding: 120px 0; position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(34,197,94,0.03) 50%, var(--bg) 100%);
}
.lighthouse::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.lighthouse-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.lighthouse-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800;
    color: var(--white); line-height: 1.2; margin: 16px 0 20px;
}
.lighthouse-left p {
    color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 28px;
}
.lighthouse-benefits { display: flex; flex-direction: column; gap: 14px; }
.lh-benefit {
    display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text);
}
.lh-benefit .check { width: 20px; height: 20px; flex-shrink: 0; }

/* Lighthouse card */
.lighthouse-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px; position: relative; overflow: hidden;
}
.lighthouse-card::before {
    content: ''; position: absolute; top: -50%; right: -30%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.lh-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
    padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.lh-header span { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.lh-scores {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px;
}
.lh-score-item { text-align: center; }
.lh-circle {
    width: 90px; height: 90px; margin: 0 auto 8px; position: relative;
}
.lh-circle svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.lh-progress {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.lh-score-num {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 1.4rem; font-weight: 800; color: #22C55E;
}
.lh-score-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.lh-score-item.featured .lh-circle { transform: scale(1.1); }
.glow-green { filter: drop-shadow(0 0 12px rgba(34,197,94,0.3)); }
.lh-footer { text-align: center; padding-top: 16px; border-top: 1px solid var(--border); }
.lh-badge-perfect {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
    color: #22C55E; font-size: 0.8rem; font-weight: 600;
}
.lh-note {
    text-align: center; margin-top: 16px; font-size: 0.8rem; color: var(--text-dim);
}
.lh-note a { color: var(--primary-light); text-decoration: none; }
.lh-note a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
    .lighthouse-wrapper { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .lh-scores { grid-template-columns: repeat(2, 1fr); }
    .lh-circle { width: 80px; height: 80px; }
}

/* ========== PORTFOLIO ========== */
.portfolio {
    padding: 120px 0; position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(108,58,237,0.03) 50%, var(--bg) 100%);
}
.portfolio::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.portfolio-grid { display: flex; flex-direction: column; gap: 60px; }

.portfolio-item {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.portfolio-item:nth-child(even) { direction: rtl; }
.portfolio-item:nth-child(even) > * { direction: ltr; }

.portfolio-preview { perspective: 1000px; }
.portfolio-browser {
    background: #1E1E2A; border-radius: 12px 12px 0 0; padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    border: 1px solid var(--border); border-bottom: none;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
    width: 10px; height: 10px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28CA41; }
.browser-url {
    flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px;
    padding: 4px 12px; font-size: 0.75rem; color: var(--text-dim);
}

.portfolio-screen {
    border: 1px solid var(--border); border-top: none;
    border-radius: 0 0 12px 12px; overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-item:hover .portfolio-screen {
    transform: rotateX(-2deg) rotateY(2deg) scale(1.02);
}

/* Mock site — Psychothérapeute */
.psy-screen { background: linear-gradient(135deg, #F0F7F4, #E8F5EE); }
.mock-hero-psy { padding: 24px; min-height: 200px; position: relative; }
.mock-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
}
.mock-logo-text { font-weight: 700; font-size: 0.8rem; color: #2D5A3D; }
.mock-nav-links { display: flex; gap: 8px; }
.mock-nav-links span { width: 32px; height: 3px; background: rgba(45,90,61,0.2); border-radius: 2px; }
.mock-content { max-width: 60%; }
.mock-tag-psy {
    display: inline-block; font-size: 0.55rem; color: #5BA37A; font-weight: 600;
    background: rgba(91,163,122,0.15); padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.mock-title-psy { font-size: 1.1rem; font-weight: 800; color: #1A3D2A; line-height: 1.2; margin-bottom: 8px; }
.mock-text { width: 80%; height: 6px; background: rgba(0,0,0,0.08); border-radius: 3px; margin-bottom: 12px; }
.mock-btn-psy {
    display: inline-block; background: #3D8B5E; color: white; font-size: 0.6rem;
    padding: 6px 14px; border-radius: 20px; font-weight: 600;
}
.mock-image-psy {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    width: 100px; height: 100px;
}
.mock-circle-1 {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #86BC9C, #5BA37A); opacity: 0.6;
    position: absolute; right: 0; top: 10px;
}
.mock-circle-2 {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(91,163,122,0.3); position: absolute; right: 40px; top: 0;
}
.mock-sections-psy { padding: 12px 24px 24px; display: flex; gap: 8px; }
.mock-section-block {
    flex: 1; height: 40px; background: rgba(0,0,0,0.04); border-radius: 8px;
}

/* Mock site — Artisan */
.artisan-screen { background: linear-gradient(135deg, #1A1A2E, #16213E); }
.mock-hero-artisan { padding: 24px; min-height: 200px; }
.mock-hero-artisan .mock-logo-text { color: #F5A623; }
.mock-hero-artisan .mock-nav-links span { background: rgba(255,255,255,0.15); }
.mock-tag-artisan {
    display: inline-block; font-size: 0.55rem; color: #F5A623; font-weight: 600;
    background: rgba(245,166,35,0.15); padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.mock-title-artisan { font-size: 1.1rem; font-weight: 800; color: #FFFFFF; line-height: 1.2; margin-bottom: 8px; }
.mock-hero-artisan .mock-text { background: rgba(255,255,255,0.1); }
.mock-btn-artisan {
    display: inline-block; background: #F5A623; color: #1A1A2E; font-size: 0.6rem;
    padding: 6px 14px; border-radius: 20px; font-weight: 700;
}
.mock-gallery-artisan { display: flex; gap: 6px; margin-top: 16px; }
.mock-gallery-item {
    flex: 1; height: 50px; border-radius: 6px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.05);
}
.mock-sections-artisan { padding: 12px 24px 24px; display: flex; gap: 8px; }
.mock-sections-artisan .mock-section-block {
    flex: 1; height: 40px; background: rgba(255,255,255,0.04); border-radius: 8px;
}

/* Mock site — Coach sportif */
.coach-screen { background: linear-gradient(135deg, #0F0F0F, #1A0A2E); }
.mock-hero-coach { padding: 24px; min-height: 200px; }
.mock-hero-coach .mock-logo-text { color: #E040FB; font-weight: 800; }
.mock-hero-coach .mock-nav-links span { background: rgba(255,255,255,0.15); }
.mock-tag-coach {
    display: inline-block; font-size: 0.55rem; color: #E040FB; font-weight: 600;
    background: rgba(224,64,251,0.15); padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.mock-title-coach { font-size: 1.1rem; font-weight: 900; color: #FFFFFF; line-height: 1.2; margin-bottom: 8px; }
.mock-hero-coach .mock-text { background: rgba(255,255,255,0.1); }
.mock-btn-coach {
    display: inline-block; background: linear-gradient(135deg, #E040FB, #7C4DFF);
    color: white; font-size: 0.6rem; padding: 6px 14px; border-radius: 20px; font-weight: 700;
}
.mock-stats-coach { display: flex; gap: 12px; margin-top: 16px; }
.mock-stat-item {
    flex: 1; text-align: center; padding: 8px;
    background: rgba(255,255,255,0.05); border-radius: 8px;
    border: 1px solid rgba(224,64,251,0.15);
}
.mock-stat-num { font-size: 0.8rem; font-weight: 800; color: #E040FB; }
.mock-stat-lbl { width: 60%; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin: 4px auto 0; }
.mock-sections-coach { padding: 12px 24px 24px; display: flex; gap: 8px; }
.mock-sections-coach .mock-section-block {
    flex: 1; height: 40px; background: rgba(255,255,255,0.03); border-radius: 8px;
}

/* Portfolio info */
.portfolio-info { padding: 12px 0; }
.portfolio-category {
    display: inline-block; font-size: 0.75rem; color: var(--accent);
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.portfolio-info h3 {
    font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.portfolio-info p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.portfolio-tags span {
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem;
    background: rgba(108,58,237,0.1); color: var(--primary-light);
    border: 1px solid rgba(108,58,237,0.15);
}

/* ========== PLANS ========== */
.plans {
    padding: 120px 0; position: relative;
}
.plans::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.plans-toggle {
    display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px;
}
.toggle-label { font-size: 0.9rem; color: var(--text-dim); font-weight: 500; transition: var(--transition); }
.toggle-label.active { color: var(--white); }
.badge-save {
    background: rgba(6,182,212,0.15); color: var(--accent); font-size: 0.7rem;
    padding: 2px 8px; border-radius: 20px; font-weight: 600;
}
.toggle-switch {
    width: 48px; height: 26px; border-radius: 13px; border: none; cursor: pointer;
    background: var(--surface); position: relative; transition: var(--transition);
}
.toggle-switch.active { background: var(--primary); }
.toggle-knob {
    position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
    border-radius: 50%; background: white; transition: var(--transition);
}
.toggle-switch.active .toggle-knob { left: 25px; }

.plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px;
}

.plan-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 0; overflow: hidden;
    transition: var(--transition); position: relative;
    display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-8px); border-color: var(--border-hover); }

.plan-card.popular {
    border-color: rgba(108,58,237,0.4);
    box-shadow: 0 0 40px rgba(108,58,237,0.1);
    transform: scale(1.03);
}
.plan-card.popular:hover { transform: scale(1.03) translateY(-8px); }

.plan-card.premium { border-color: rgba(6,182,212,0.3); }
.plan-card.premium:hover { box-shadow: 0 0 40px rgba(6,182,212,0.1); }

.popular-badge, .premium-badge {
    text-align: center; padding: 8px; font-size: 0.8rem; font-weight: 700;
}
.popular-badge { background: var(--gradient); color: white; }
.premium-badge { background: linear-gradient(135deg, #06B6D4, #8B5CF6); color: white; }

.plan-header { padding: 32px 28px 24px; text-align: center; }
.plan-header h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.plan-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }
.price-creation {
    display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px;
}
.price-creation small { font-weight: 400; }
.price-monthly { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--white); }
.price-period { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

.plan-features {
    list-style: none; padding: 0 28px; flex: 1;
    border-top: 1px solid var(--border); padding-top: 24px;
}
.plan-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 0.88rem;
}
.plan-features li.included { color: var(--text); }
.plan-features li.excluded { color: var(--text-dim); }

.check, .cross { width: 18px; height: 18px; flex-shrink: 0; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.check { stroke: #22C55E; }
.cross { stroke: var(--text-dim); }

.plan-footer {
    padding: 24px 28px; text-align: center;
    border-top: 1px solid var(--border); margin-top: 16px;
}
.plan-extra { display: block; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 8px; }
.plan-engagement { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.btn-plan { width: 100%; justify-content: center; padding: 14px; }
.btn-plan:not(.btn-primary):not(.btn-premium) {
    background: rgba(255,255,255,0.05); color: var(--white);
    border: 1px solid var(--border-hover);
}
.btn-plan:not(.btn-primary):not(.btn-premium):hover {
    background: rgba(255,255,255,0.1);
}
.btn-premium { background: linear-gradient(135deg, #06B6D4, #8B5CF6); color: white; }
.btn-premium:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(6,182,212,0.3); }

/* Tout inclus */
.plan-allincluded {
    background: var(--bg-card); border: 1px solid rgba(108,58,237,0.3);
    border-radius: var(--radius); padding: 48px; position: relative; overflow: hidden;
    margin-bottom: 32px;
}
.allincluded-glow {
    position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(108,58,237,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.allincluded-content {
    display: flex; justify-content: space-between; align-items: center; gap: 48px;
    position: relative; z-index: 1;
}
.allincluded-left { flex: 1; }
.allincluded-left h3 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin: 12px 0; }
.allincluded-left p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.allincluded-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.allincluded-features li { font-size: 0.9rem; color: var(--text); }
.allincluded-right { text-align: center; flex-shrink: 0; }
.allincluded-amount { font-size: 4rem; font-weight: 900; color: var(--white); }
.allincluded-period { font-size: 1.2rem; color: var(--text-muted); }
.allincluded-engagement {
    display: block; font-size: 0.85rem; color: var(--text-muted);
    margin: 8px 0 20px;
}

.extras-note {
    text-align: center; padding: 20px; background: var(--surface);
    border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.extras-note p { font-size: 0.85rem; color: var(--text-muted); margin: 4px 0; }

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0; position: relative;
}
.contact::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.contact-wrapper {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start;
}
.contact-form {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--surface);
    color: var(--white); font-family: inherit; font-size: 0.9rem;
    transition: var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,58,237,0.15);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-success {
    margin-top: 16px; padding: 16px; border-radius: var(--radius-sm);
    background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
    color: #22C55E; font-weight: 500; text-align: center;
    display: none;
}
.form-success.show { display: block; animation: fadeInUp 0.4s ease; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    transition: var(--transition);
}
.info-card:hover { border-color: var(--border-hover); transform: translateX(4px); }
.info-icon { font-size: 1.5rem; margin-bottom: 12px; }
.info-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.info-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ========== FOOTER ========== */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}
.footer-content {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .plan-card.popular { transform: none; }
    .plan-card.popular:hover { transform: translateY(-8px); }
    .portfolio-item { grid-template-columns: 1fr; gap: 24px; }
    .portfolio-item:nth-child(even) { direction: ltr; }
    .allincluded-content { flex-direction: column; text-align: center; }
    .allincluded-features { justify-items: center; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,15,0.98); flex-direction: column;
        align-items: center; justify-content: center; gap: 32px;
        backdrop-filter: blur(20px);
    }
    .nav-links.open { display: flex; z-index: 999; }
    .nav-links a { font-size: 1.3rem; color: var(--white); }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; z-index: 1000; }
    
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; align-items: center; }
    .stat-card { width: 100%; max-width: 280px; }
    .form-row { grid-template-columns: 1fr; }
    .allincluded-features { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    
    .hero h1 { letter-spacing: -1px; }
    .contact-form { padding: 24px; }
    .plan-allincluded { padding: 32px 24px; }
}
