/* ============================================
   InWorky - Clean Modern Landing Page
   Style: White, Blue #244F9D, Orange #E8913A
   ============================================ */

:root {
    --blue: #244F9D;
    --blue-light: #e8eef8;
    --blue-hover: #1a3a7a;
    --orange: #E8913A;
    --orange-light: #fef3e8;
    --orange-hover: #d47e2e;
    --dark: #1a1a2e;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e5e7eb;
    --bg-light: #f8f9fb;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; width: 100%; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== CONTAINER ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-title .blue { color: var(--blue); }
.section-title .orange { color: var(--orange); }
.section-subtitle { font-size: 16px; color: var(--text-light); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn svg { width: 18px; height: 18px; }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); background: var(--blue-light); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-white { background: white; color: var(--blue); }
.btn-white:hover { background: var(--bg-light); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-light); transition: var(--transition); }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    background: var(--white);
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--blue-light);
    border-radius: 100px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 16px;
}
.hero-title .blue { color: var(--blue); }
.hero-title .orange { color: var(--orange); }
.hero-subtitle {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-search {
    display: flex;
    gap: 0;
    max-width: 480px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}
.hero-search input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}
.hero-search button {
    padding: 14px 24px;
    background: var(--orange);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}
.hero-search button:hover { background: var(--orange-hover); }

/* Hero phone with artisan overlay */
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-phone-artisan { position: relative; width: 300px; height: 550px; }
.phone-frame-hero {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 480px;
    background: #111;
    border-radius: 36px;
    padding: 10px;
    border: 3px solid #ddd;
    box-shadow: 0 20px 50px rgba(36, 79, 157, 0.15);
    z-index: 1;
    overflow: hidden;
}
.phone-screen-hero {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-light);
}
.phone-screen-hero img { width: 100%; height: 100%; object-fit: cover; }
.artisan-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: top;
    z-index: 2;
    border-radius: 20px 20px 0 0;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    filter: drop-shadow(0 -10px 30px rgba(0,0,0,0.1));
}

/* Legacy phone mockup for download section */
.phone-mockup { position: relative; }
.phone-frame {
    width: 260px;
    height: 530px;
    background: #111;
    border-radius: 36px;
    padding: 10px;
    border: 3px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-light);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }

/* ===== SERVICES ===== */
.services { padding: 80px 0; background: var(--bg-light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-card-img {
    height: 160px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
    padding: 16px;
    text-align: center;
}
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.service-card p { font-size: 13px; color: var(--text-muted); }

/* Service icons style (for services without photos) */
.service-icon-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.service-icon-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.service-icon-card .icon {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: 12px;
    color: var(--blue);
}
.service-icon-card:hover .icon { background: var(--blue); color: white; }
.service-icon-card .icon svg { width: 24px; height: 24px; }
.service-icon-card h3 { font-size: 14px; font-weight: 600; color: var(--dark); }

/* Grille "Autres services" — responsive (remplace l'ancien inline repeat(6,1fr)) */
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: var(--white); }
.steps-container { display: flex; gap: 40px; justify-content: center; }
.step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    max-width: 320px;
}
.step-number {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== FEATURES ===== */
.features { padding: 80px 0; background: var(--bg-light); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-hover); }
.feature-icon {
    width: 52px; height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    border-radius: 14px;
    color: var(--orange);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.star-filled { color: #f59e0b; fill: #f59e0b; width: 16px; height: 16px; }
.testimonial-card > p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--dark); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ===== DOWNLOAD ===== */
.download { padding: 80px 0; background: var(--blue); color: white; }
.download-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.download h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.download p { font-size: 16px; opacity: 0.85; margin-bottom: 28px; line-height: 1.7; }
.download-badges { display: flex; gap: 12px; margin-bottom: 20px; }
.store-badge { transition: var(--transition); }
.store-badge:hover { transform: translateY(-2px); }
.store-badge img { height: 48px; }
.download-visual { display: flex; justify-content: center; }
.download-phone .phone-frame {
    width: 220px; height: 450px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* ===== CTA PROVIDER ===== */
.cta-provider { padding: 60px 0; background: var(--white); }
.cta-card {
    background: var(--orange-light);
    border: 2px solid var(--orange);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}
.cta-card h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.cta-card p { font-size: 16px; color: var(--text-light); margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 32px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: white; }
.footer-socials svg { width: 16px; height: 16px; }
.footer-links h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { font-size: 13px; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-links svg { width: 14px; height: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { margin-bottom: 40px; order: -1; }
    .hero-ctas { justify-content: center; }
    .hero-search { margin: 0 auto 40px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-container { flex-direction: column; align-items: center; }
    .download-container { grid-template-columns: 1fr; text-align: center; }
    .download-badges { justify-content: center; }
    .download-visual { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    /* Cacher le CTA navbar sur mobile — gardé uniquement hamburger + langue */
    .nav-actions .btn-glow { display: none; }
    .lang-btn { font-size: 12px; padding: 5px 10px; gap: 4px; }
    .lang-btn svg { width: 12px; height: 12px; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: white; padding: 20px; gap: 14px;
        box-shadow: var(--shadow); border-top: 1px solid var(--border);
        z-index: 999;
    }
    .nav-links.active a {
        font-size: 16px;
        padding: 6px 0;
        display: block;
    }
    .hero-title { font-size: 32px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .phone-frame { width: 200px; height: 410px; }
    .cta-card { padding: 32px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 26px; }
    .other-services-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .features-grid { grid-template-columns: 1fr; }
    .other-services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .download-badges { flex-direction: column; align-items: center; }
    .hero-search { flex-direction: column; }
    .hero-search button { border-radius: 0; }
}

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--bg-light); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== APP SCREENSHOTS GALLERY ===== */
.app-screenshots {
    padding: 80px 0 60px;
    background: var(--white);
    overflow: hidden;
}
.screenshots-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 0 44px;
    cursor: grab;
    user-select: none;
}
.screenshots-scroll-wrapper::-webkit-scrollbar { display: none; }
.screenshots-scroll-wrapper.is-dragging { cursor: grabbing; }
.screenshots-track {
    display: flex;
    gap: 32px;
    padding: 0 max(24px, calc((100vw - 1140px) / 2 + 24px));
    width: max-content;
    align-items: flex-start;
}

/* ── Screenshot Card (phone + caption) ── */
.screenshot-card {
    flex-shrink: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
}
.screenshot-card:hover { transform: translateY(-8px); }
.screenshot-card--featured .screenshot-phone {
    box-shadow: 0 24px 60px rgba(232,145,58,0.28);
    border-color: var(--orange);
}

/* ── Phone Frame ── */
.screenshot-phone {
    width: 260px;
    height: 520px;
    background: #0d0d0d;
    border-radius: 44px;
    border: 3px solid #2a2a2a;
    box-shadow: 0 20px 50px rgba(36,79,157,0.18),
                inset 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    padding: 14px 10px 10px;
    flex-shrink: 0;
}
.phone-notch {
    width: 90px;
    height: 22px;
    background: #0d0d0d;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}
.phone-notch::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #111;
}
.phone-screen-img {
    width: 100%;
    height: calc(100% - 30px);
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-light);
}
.phone-screen-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    pointer-events: none;
    display: block;
}

/* ── Caption below phone ── */
.screenshot-caption {
    text-align: center;
    padding: 0 8px;
}
.screenshot-caption h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.screenshot-caption p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}
.sc-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sc-btns-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

/* ── CTA buttons inside cards ── */
.sc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.sc-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.sc-btn-blue { background: var(--blue); color: white; }
.sc-btn-blue:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(36,79,157,0.3); }
.sc-btn-orange { background: var(--orange); color: white; }
.sc-btn-orange:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,145,58,0.35); }
.sc-btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--border); }
.sc-btn-outline:hover { border-color: var(--blue); background: var(--blue-light); }

/* Pagination dots */
.screenshots-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}
.s-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}
.s-dot.active { background: var(--blue); width: 22px; border-radius: 4px; }

@media (max-width: 768px) {
    .screenshot-card { width: 240px; }
    .screenshot-phone { width: 222px; height: 444px; }
}

/* ===== APP DOWNLOAD SECTIONS (Clients + Partners) ===== */
.app-download-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.app-download-dark {
    background: var(--blue);
}
.app-dl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.app-dl-grid--reverse { direction: rtl; }
.app-dl-grid--reverse > * { direction: ltr; }

/* Phone frame inside download sections */
.app-dl-phone { display: flex; justify-content: center; }
.app-dl-phone-frame {
    width: 280px;
    height: 560px;
    background: #0d0d0d;
    border-radius: 48px;
    border: 3px solid #2a2a2a;
    box-shadow: 0 30px 70px rgba(36,79,157,0.22),
                inset 0 0 0 1px rgba(255,255,255,0.04);
    overflow: hidden;
    padding: 14px 10px 10px;
    flex-shrink: 0;
}
.app-dl-phone-frame--glow {
    box-shadow: 0 30px 70px rgba(232,145,58,0.28),
                0 0 0 1px rgba(232,145,58,0.15),
                inset 0 0 0 1px rgba(255,255,255,0.04);
    border-color: rgba(232,145,58,0.3);
}
.app-dl-phone-frame .phone-screen-img {
    width: 100%;
    height: calc(100% - 30px);
    border-radius: 30px;
    overflow: hidden;
}

/* Content */
.app-dl-content {}
.app-dl-content .section-title { text-align: left; font-size: 34px; margin-bottom: 16px; }
.app-dl-content > p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }
.app-dl-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.app-dl-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}
.app-dl-features li svg { color: var(--orange); flex-shrink: 0; width: 20px; height: 20px; }
.app-dl-features--white li { color: rgba(255,255,255,0.9); }
.app-dl-features--white li svg { color: var(--orange); }

.section-tag--white {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ── Smart Download Button ── */
.smart-dl-wrap { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.smart-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-radius: 16px;
    background: #111;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.smart-dl-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.smart-dl-android { background: #1a1a1a; }
.smart-dl-ios { background: #111; }
.smart-dl-orange { background: var(--orange); }
.smart-dl-orange:hover { background: var(--orange-hover); }
.smart-dl-btn .smart-dl-icon svg {
    width: 28px; height: 28px;
    fill: white;
    flex-shrink: 0;
}
.smart-dl-btn .smart-dl-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.smart-dl-btn .smart-dl-icon img.web-icon {
    filter: brightness(0) invert(1);
}
.smart-dl-btn .smart-dl-text { display: flex; flex-direction: column; line-height: 1.2; }
.smart-dl-btn .smart-dl-text small { font-size: 11px; opacity: 0.75; font-weight: 400; }
.smart-dl-btn .smart-dl-text strong { font-size: 17px; font-weight: 700; }
.smart-dl-desktop {
    display: flex !important;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .app-dl-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .app-dl-grid--reverse { direction: ltr; }
    .app-dl-content .section-title { text-align: center; }
    .app-dl-features { align-items: flex-start; display: inline-flex; }
    .smart-dl-wrap { align-items: center; }
    .smart-dl-desktop { justify-content: center; }
    .app-dl-phone { order: -1; }
    .app-download-dark .app-dl-phone { order: 1; }
}

/* ===== ARTISAN PARTNER SECTION ===== */
.artisan-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.artisan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.artisan-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(36,79,157,0.16);
    max-height: 580px;
    position: relative;
}
.artisan-img-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top;
    display: block;
}
.artisan-content { }
.artisan-content .section-tag {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}
.artisan-content .section-title {
    text-align: left;
    font-size: 34px;
    margin-bottom: 16px;
}
.artisan-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}
.artisan-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.artisan-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}
.artisan-benefits li svg {
    color: var(--orange);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: none;
}
.artisan-stats {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}
.artisan-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
}
.artisan-stat span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .artisan-grid { grid-template-columns: 1fr; gap: 40px; }
    .artisan-img-wrap { max-height: 420px; }
    .artisan-img-wrap img { height: 420px; }
    .artisan-content .section-title { text-align: center; font-size: 28px; }
    .artisan-content .section-tag { display: block; text-align: center; }
    .artisan-content > p { text-align: center; }
    .artisan-benefits { align-items: flex-start; }
    .artisan-stats { justify-content: center; }
}
@media (max-width: 768px) {
    .screenshot-item { width: 220px; height: 390px; }
    .artisan-benefits { align-items: flex-start; }
}

/* ===== SCROLL ANIMATIONS ===== */
.services [data-animate],
.how-it-works [data-animate],
.app-screenshots [data-animate],
.artisan-section [data-animate],
.features [data-animate],
.testimonials [data-animate],
.download [data-animate],
.cta-provider [data-animate],
.faq [data-animate] { opacity: 0; transform: translateY(30px); }
.download [data-animate="fade-left"] { transform: translateX(40px); }
.artisan-section [data-animate="fade-right"] { opacity: 0; transform: translateX(-40px); }
.orbital-section [data-animate] { opacity: 0; transform: translateY(30px); }

/* ===== PERSONAS SECTION (legacy, kept for safety) ===== */
.personas-section {
    padding: 80px 0 100px;
    background: var(--bg);
}
.personas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px;
}

/* ── Card base ── */
.persona-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 32px rgba(36,79,157,.09);
    border: 1px solid rgba(36,79,157,.08);
    transition: transform .35s ease, box-shadow .35s ease;
}
.persona-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(36,79,157,.16);
}
.persona-card--dark {
    background: linear-gradient(145deg,#1a3362 0%,#244F9D 100%);
    border-color: rgba(255,255,255,.12);
}
.persona-card--dark:hover {
    box-shadow: 0 16px 48px rgba(36,79,157,.35);
}

/* ── Image area ── */
.persona-img-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 320px;
    background: linear-gradient(180deg,#dde8ff 0%,rgba(221,232,255,0) 100%);
    overflow: hidden;
}
.persona-card--dark .persona-img-wrap {
    background: linear-gradient(180deg,rgba(255,255,255,.12) 0%,rgba(255,255,255,0) 100%);
}
.persona-img {
    height: 310px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,.18));
    transition: transform .4s ease;
}
.persona-card:hover .persona-img { transform: translateY(-8px) scale(1.03); }

/* glow orb behind character */
.persona-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    opacity: .35;
    z-index: 1;
}
.persona-glow--blue  { background: #244F9D; }
.persona-glow--orange { background: #E8913A; }

/* ── Content area ── */
.persona-body {
    padding: 32px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.persona-body h3 {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    margin: 0;
}
.persona-card--dark .persona-body h3 { color: #fff; }
.persona-body p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}
.persona-card--dark .persona-body p { color: rgba(255,255,255,.75); }

/* badge pill */
.persona-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    width: fit-content;
}
.persona-badge--blue   { background: rgba(36,79,157,.1);  color: var(--blue); }
.persona-badge--orange { background: rgba(232,145,58,.22); color: #d4780a; }
.persona-card--dark .persona-badge--orange { background: rgba(232,145,58,.28); color: #f0a545; }

/* perks list */
.persona-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.persona-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}
.persona-perks li svg { color: var(--orange); flex-shrink: 0; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.persona-perks--white li { color: rgba(255,255,255,.9); }
.persona-perks--white li svg { color: #f0a545; }

/* download row */
.persona-dl {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .personas-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
    .personas-grid { max-width: 100%; }
    .persona-img-wrap { height: 260px; }
    .persona-img { height: 250px; }
    .persona-body { padding: 24px 20px 28px; }
    .persona-body h3 { font-size: 1.3rem; }
    .persona-dl { flex-direction: column; }
    .persona-dl .smart-dl-btn { justify-content: center; }
}

/* ===================================================
   ORBITAL PERSONAS SECTION
   Adaptation of RadialOrbitalTimeline in vanilla JS/CSS
   =================================================== */

/* ── Section container ── */
.orbital-section {
    background: #04091a;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.orbital-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(36,79,157,.18) 0%, transparent 70%);
    pointer-events: none;
}
/* Override section-tag for dark bg */
.section-tag--white {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.2);
}

/* ── Layout: orbital + panel ── */
.orbital-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    padding: 48px 40px 0;
    min-height: 520px;
}

/* ── Arena ── */
.orbital-arena-wrap {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.orbital-arena {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

/* Orbit ring */
.orbital-track-ring {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.07);
    pointer-events: none;
}

/* Center orb */
.orbital-center-orb {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #244F9D, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 32px rgba(36,79,157,.55), 0 0 64px rgba(36,79,157,.25);
    animation: orb-breathe 2.8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes orb-breathe {
    0%,100% { box-shadow: 0 0 32px rgba(36,79,157,.55),0 0 64px rgba(36,79,157,.25); }
    50%      { box-shadow: 0 0 52px rgba(36,79,157,.85),0 0 90px rgba(36,79,157,.45); }
}

/* Ping rings around center orb */
.orb-ping {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    animation: orb-ping-anim 2s ease-out infinite;
}
.orb-ping--1 { width: 84px;  height: 84px; }
.orb-ping--2 { width: 104px; height: 104px; animation-delay: .6s; border-color: rgba(255,255,255,.07); }
@keyframes orb-ping-anim {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(1.5); opacity: 0;  }
}

/* ── Orbital nodes ── */
.orbital-node {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: opacity .7s ease;
    /* transform (x,y) set by JS every frame */
}
.orbital-node-halo {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    filter: blur(22px);
    opacity: .22;
    transition: opacity .4s;
    pointer-events: none;
    z-index: 0;
}
.orbital-node-halo--blue   { background: #244F9D; }
.orbital-node-halo--orange { background: #E8913A; }
.orbital-node.active .orbital-node-halo { opacity: .6; }

.orbital-node-img {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 118px;
    border-radius: 18px;
    border: 2px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: border-color .3s, transform .35s, box-shadow .35s;
}
.orbital-node-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: transform .4s ease;
}
.orbital-node:hover .orbital-node-img,
.orbital-node.active .orbital-node-img {
    border-color: rgba(255,255,255,.55);
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(0,0,0,.45), 0 0 14px rgba(255,255,255,.12);
}
.orbital-node.active .orbital-node-img {
    transform: scale(1.18);
    border-color: #fff;
}

.orbital-node-label {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.55);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
    transition: color .3s;
}
.orbital-node:hover .orbital-node-label,
.orbital-node.active .orbital-node-label { color: #fff; }

.orbital-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.3);
    font-size: 12px;
    font-weight: 500;
    user-select: none;
}

/* ── Info panel (right side) ── */
.orbital-info-panel {
    width: 380px;
    min-height: 480px;
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}

/* Prompt (nothing selected) */
.orbital-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    border: 1px dashed rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    color: rgba(255,255,255,.35);
    font-size: 15px;
    line-height: 1.75;
}
.orbital-prompt-dots { display: flex; gap: 10px; }
.orb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: orb-breathe 2s ease-in-out infinite;
}
.orb-dot--blue   { background: #244F9D; box-shadow: 0 0 8px #244F9D; }
.orb-dot--orange { background: #E8913A; box-shadow: 0 0 8px #E8913A; animation-delay: .6s; }

/* Expanded card */
.orbital-card {
    width: 100%;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(20px);
    position: relative;
    animation: orb-card-in .38s cubic-bezier(.22,1,.36,1);
}
@keyframes orb-card-in {
    from { opacity: 0; transform: translateX(28px) scale(.97); }
    to   { opacity: 1; transform: translateX(0)     scale(1);   }
}

/* Card image area */
.orbital-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.01) 100%);
}
.orbital-card-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .3;
    z-index: 0;
}
.orbital-card-img-wrap img {
    position: relative;
    z-index: 1;
    height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.5));
}

/* Close button */
.orbital-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}
.orbital-close:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Card body */
.orbital-card-body {
    padding: 22px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.orbital-card-body h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}
.orbital-card-body p {
    color: rgba(255,255,255,.6);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
}

/* Badge */
.orbital-card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid transparent;
}
.orb-badge--blue   { background: rgba(36,79,157,.3);    color: #7ba8ff; border-color: rgba(36,79,157,.5); }
.orb-badge--orange { background: rgba(232,145,58,.22);  color: #f0a545; border-color: rgba(232,145,58,.4); }

/* Perks */
.orbital-card-perks {
    list-style: none;
    padding: 0; margin: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.orbital-card-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
}
.orbital-card-perks li svg {
    color: #E8913A;
    flex-shrink: 0;
    width: 15px; height: 15px;
    fill: none; stroke: currentColor; stroke-width: 2;
}

/* Download buttons inside card */
.orbital-card-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

/* ── Responsive ── */
@media (max-width: 1080px) {
    .orbital-arena { width: 420px; height: 420px; }
    .orbital-track-ring { width: 330px; height: 330px; }
    .orbital-info-panel { width: 340px; }
}
@media (max-width: 880px) {
    .orbital-layout {
        flex-direction: column;
        gap: 28px;
        min-height: auto;
        padding-bottom: 0;
    }
    .orbital-arena { width: 360px; height: 360px; }
    .orbital-track-ring { width: 285px; height: 285px; }
    .orbital-info-panel { width: 100%; max-width: 400px; min-height: auto; }
    .orbital-card-img-wrap { height: 180px; }
    .orbital-card-img-wrap img { height: 170px; }
}
@media (max-width: 500px) {
    .orbital-arena { width: 300px; height: 300px; }
    .orbital-track-ring { width: 238px; height: 238px; }
    .orbital-node-img { width: 72px; height: 96px; }
    .orbital-card-btns { flex-direction: column; }
    .orbital-card-btns .smart-dl-btn { justify-content: center; }
}

/* =============================================
   DOWNLOAD SECTION — DUAL-APP LAYOUT
   ============================================= */
.dl-apps-grid {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.dl-app-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dl-app-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}
/* Badges — light bg sections */
.dl-app-badge--blue {
    background: rgba(36,79,157,0.12);
    color: var(--blue);
}
.dl-app-badge--orange {
    background: rgba(232,145,58,0.12);
    color: var(--orange);
}
/* Badges — dark/blue bg sections (download section) */
.dl-app-badge--white-blue {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.dl-app-badge--white-orange {
    background: rgba(232,145,58,0.25);
    color: #f0a545;
}
.dl-app-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}
.dl-app-name--white { color: rgba(255,255,255,0.9); }
.dl-app-name strong { font-weight: 800; }
.dl-app-group .download-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 4px;
}
/* Web link — light bg */
.dl-web-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    border: 1.5px solid rgba(36,79,157,0.3);
    border-radius: 24px;
    padding: 7px 16px;
    transition: var(--transition);
    width: fit-content;
}
.dl-web-link:hover {
    background: rgba(36,79,157,0.06);
    border-color: var(--blue);
}
.dl-web-link--orange {
    color: var(--orange);
    border-color: rgba(232,145,58,0.3);
}
.dl-web-link--orange:hover {
    background: rgba(232,145,58,0.06);
    border-color: var(--orange);
}
/* Web link — white (for dark/blue bg sections) */
.dl-web-link--white {
    color: rgba(255,255,255,0.75);
    border-color: rgba(255,255,255,0.3);
}
.dl-web-link--white:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
}
.dl-web-link--white-orange {
    color: #f0a545;
    border-color: rgba(240,165,69,0.35);
}
.dl-web-link--white-orange:hover {
    color: #fbb45a;
    border-color: rgba(240,165,69,0.7);
    background: rgba(240,165,69,0.1);
}
/* Separator — default */
.dl-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding-top: 32px;
    gap: 0;
    position: relative;
}
.dl-separator::before {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--border);
    margin-bottom: 8px;
}
.dl-separator::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--border);
    margin-top: 8px;
}
.dl-separator span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
/* Separator — white variant for dark backgrounds */
.dl-separator--white::before,
.dl-separator--white::after {
    background: rgba(255,255,255,0.2);
}
.dl-separator--white span {
    color: rgba(255,255,255,0.45);
}

/* =============================================
   ORB CARD WEB LINK
   ============================================= */
.orb-web-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 6px 14px;
    margin-top: 6px;
    width: fit-content;
    transition: var(--transition);
}
.orb-web-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
}
.orb-web-link--orange {
    color: rgba(240,165,69,0.7);
    border-color: rgba(240,165,69,0.25);
}
.orb-web-link--orange:hover {
    color: #f0a545;
    border-color: rgba(240,165,69,0.6);
    background: rgba(240,165,69,0.07);
}

/* =============================================
   SECTION WEB LINK (clients-app / partners-app)
   ============================================= */
.section-web-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 12px;
    padding: 8px 0;
    border-bottom: 1.5px solid transparent;
    transition: var(--transition);
    width: fit-content;
}
.section-web-link:hover {
    color: var(--blue);
    border-bottom-color: var(--blue);
}
.section-web-link--white {
    color: rgba(255,255,255,0.55);
}
.section-web-link--white:hover {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.5);
}

/* =============================================
   ARTISAN CTA GROUP (two buttons side by side)
   ============================================= */
.artisan-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

/* =============================================
   RESPONSIVE — DOWNLOAD DUAL-APP
   ============================================= */
@media (max-width: 680px) {
    .dl-apps-grid { flex-direction: column; gap: 20px; }
    .dl-separator { flex-direction: row; min-height: auto; padding-top: 0; }
    .dl-separator::before { width: 40px; height: 1px; margin-bottom: 0; margin-right: 8px; }
    .dl-separator::after  { width: 40px; height: 1px; margin-top: 0; margin-left: 8px; }
    .artisan-cta-group { flex-direction: column; }
    .artisan-cta-group .btn { width: 100%; justify-content: center; }
}

/* =============================================
   SECTION TAG — pastille orangée globale
   ============================================= */
.section-tag {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(232,145,58,0.2);
}

/* =============================================
   BTN-PRIMARY + BTN-GLOW (navbar CTA)
   ============================================= */
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-glow { box-shadow: 0 0 18px rgba(36,79,157,.30); }
.btn-glow:hover { box-shadow: 0 0 28px rgba(36,79,157,.50); }

/* =============================================
   FEATURE-ICON-WRAP (icône carrée dans features)
   ============================================= */
.feature-icon-wrap {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    border-radius: 14px;
    color: var(--orange);
}
.feature-icon-wrap svg { width: 24px; height: 24px; }
.feature-card:hover .feature-icon-wrap { background: var(--orange); color: white; }

/* =============================================
   STEP CONNECTOR (ligne entre les étapes)
   ============================================= */
.step-connector {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-light), var(--orange));
    align-self: flex-start;
    margin-top: 64px;
    flex-shrink: 0;
    border-radius: 2px;
    opacity: 0.5;
}
@media (max-width: 1024px) {
    .step-connector { display: none; }
}

/* =============================================
   LISIBILITÉ — taille minimale texte secondaire
   ============================================= */
.service-card p  { font-size: 14px; }
.feature-card p  { font-size: 14px; }
.faq-item p      { font-size: 15px; line-height: 1.75; }

/* =============================================
   REFONTE 2026 — Hero double audience, poster cards,
   CTA final. Chaque image utilisée une seule fois.
   ============================================= */

/* ── Hero : deux personas (client + artisan) ── */
.hero-personas {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 460px;
}
.hero-personas::before {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 50% 50%, rgba(36,79,157,0.14), rgba(232,145,58,0.10) 55%, transparent 72%);
    border-radius: 50%;
    z-index: 0;
}
.hero-personas img {
    position: relative;
    z-index: 1;
    height: 440px;
    width: auto;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
}
.hero-persona-client  { margin-right: -36px; }
.hero-persona-provider { margin-left: -36px; z-index: 2; }
/* <picture> wrapper transparent au layout flex (fallback WebP→PNG) */
.hero-personas picture { display: contents; }

/* Badges flottants sur le hero */
.hero-float-badge {
    position: absolute;
    z-index: 3;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}
.hero-float-badge .hfb-icon {
    width: 30px; height: 30px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero-float-badge .hfb-icon svg { width: 17px; height: 17px; }
.hero-float-badge small { display: block; font-size: 11px; font-weight: 500; color: var(--text-muted); }
.hfb-blue   { top: 14%; left: 0; }
.hfb-blue   .hfb-icon { background: var(--blue-light); color: var(--blue); }
.hfb-orange { bottom: 20%; right: 0; }
.hfb-orange .hfb-icon { background: var(--orange-light); color: var(--orange); }

/* ── Poster card : visuel marketing autonome (remplace phone-in-phone) ── */
.poster-card {
    max-width: 330px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    border: 7px solid #fff;
    box-shadow: 0 30px 70px rgba(36,79,157,0.20);
    transform: rotate(-1.5deg);
    transition: transform 0.4s ease;
}
.poster-card:hover { transform: rotate(0) translateY(-6px); }
.poster-card img { width: 100%; display: block; border-radius: 23px; }
.app-download-dark .poster-card {
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 30px 70px rgba(0,0,0,0.40);
}

/* ── Stats artisan (compteurs) ── */
.audience-stats {
    display: flex;
    gap: 28px;
    margin: 4px 0 30px;
    flex-wrap: wrap;
}
.audience-stat strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
}
.audience-stat span { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ── CTA final : double piste ── */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
    text-align: center;
}
.final-cta h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.final-cta h2 span { color: var(--orange); }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; }
.final-cta-paths {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 760px;
    margin: 0 auto;
}
.final-cta-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.final-cta-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.final-cta-card .fcc-icon {
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.final-cta-card .fcc-icon svg { width: 26px; height: 26px; }
.final-cta-card.fcc-client .fcc-icon  { background: rgba(255,255,255,0.15); color: #fff; }
.final-cta-card.fcc-provider .fcc-icon { background: var(--orange); color: #fff; }
.final-cta-card h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.final-cta-card p  { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.final-cta-card .btn { width: 100%; justify-content: center; }

/* ── Responsive refonte ── */
@media (max-width: 1024px) {
    .hero-personas { min-height: 380px; margin-top: 20px; }
    .hero-personas img { height: 360px; }
    .hero-personas::before { width: 340px; height: 340px; }
}
@media (max-width: 768px) {
    .hero-personas img { height: 300px; }
    .hero-persona-client { margin-right: -24px; }
    .hero-persona-provider { margin-left: -24px; }
    .hero-float-badge { font-size: 12px; padding: 8px 11px; }
    .hfb-blue { left: -4px; }
    .hfb-orange { right: -4px; }
    .poster-card { max-width: 280px; }
    .final-cta h2 { font-size: 26px; }
    .audience-stats { justify-content: center; gap: 22px; }
    .final-cta-paths { flex-direction: column; }
}
@media (max-width: 480px) {
    .hero-personas img { height: 250px; }
    .hero-float-badge small { display: none; }
}
