/* ═══════════════════════════════════════
   DUOPME — CUSTOM STYLESHEET
   Bootstrap 5.3 + Outfit/DM Sans
   ═══════════════════════════════════════ */

:root {
    --bleu:       #0B1D3A;
    --bleu-mid:   #142B52;
    --bleu-light: #1a3a6e;
    --rouge:      #C8102E;
    --rouge-dark: #a00d24;
    --blanc:      #FFFFFF;
    --gris-clair: #F4F6F9;
    --gris:       #8B95A5;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* iOS Safari : bloque le scroll horizontal */
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bleu);
    color: var(--blanc);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; }

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar-duo {
    background: rgba(11,29,58,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: 82px;
    transition: background 0.3s;
}

.duo-logo-circle {
    width: 58px;
    height: 58px;
    background: var(--blanc);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(200,16,46,0.15);
    flex-shrink: 0;
}
.duo-logo-circle img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
}

.duo-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--blanc);
    letter-spacing: -0.5px;
}
.duo-logo-text span { color: var(--rouge); }

.duo-nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.4rem 0.75rem;
}
.duo-nav-link:hover,
.duo-nav-link.active { color: var(--blanc) !important; }
.duo-nav-link.active { font-weight: 600; }

.duo-nav-cta {
    background: var(--rouge);
    color: var(--blanc) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(200,16,46,0.3);
}
.duo-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(200,16,46,0.45);
    color: var(--blanc) !important;
}

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ═══════════════════════════════════════
   HERO (homepage)
   ═══════════════════════════════════════ */
.duo-hero {
    background: #F7F8FB;
    padding-top: 110px;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.duo-hero::before {
    content: '';
    position: absolute;
    top: -30%; left: -20%;
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(200,16,46,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes heroGlow {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(30px,-20px) scale(1.05); }
}

.duo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #5a6577;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.duo-hero-badge::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--rouge);
    border-radius: 50%;
}

.duo-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--bleu);
}
.duo-hero h1 .accent      { color: var(--rouge); }
.duo-hero h1 .accent-blue {
    background: linear-gradient(135deg, #1a3a6e, #2b5ea7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.duo-hero-sub {
    font-size: 1.05rem;
    color: #5a6577;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 0 1.5rem;
}
.duo-hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(11,29,58,0.18);
    display: block;
}

/* Article page */
.article-hero {
    background: linear-gradient(160deg, var(--bleu-mid) 0%, var(--bleu) 100%);
    padding-top: 130px;
    padding-bottom: 40px;
}
.article-featured-img {
    max-width: 50%;
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    display: block;
    margin: 0 auto;
}
.article-h1 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    color: var(--blanc);
    max-width: 800px;
    margin: 1.5rem auto 1rem;
}
.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-body {
    background: #F7F8FB;
    padding: 60px 0;
}
/* Conteneur gris source */
.article-box {
    background: #F3F3F3;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    padding: 30px;
    margin-bottom: 0;
}
.article-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2rem 0 0.75rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}
.article-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin: 2rem 0 0.75rem;
}
.article-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #3a4a5e;
}
.article-content .article-img {
    width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}
/* FAQ section source style */
.article-faq-section { margin-top: 2rem; }
.article-faq-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2rem 0 0.75rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}
.article-faq-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin: 1.5rem 0 0.5rem;
}
.article-faq-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a4a5e;
    margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
    .article-featured-img { max-width: 100%; }
    .article-box { padding: 20px; }
}

/* Blog pagination */
.duo-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.duo-page-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}
.duo-page-btn:hover, .duo-page-btn.active {
    background: var(--rouge);
    border-color: var(--rouge);
    color: var(--blanc);
}
.duo-page-btn.prev-next { width: auto; padding: 0 16px; }

/* Dashboard mockup */
.dashboard-frame {
    background: linear-gradient(160deg, #0f2748 0%, #0a1a33 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 640px;
    margin: 2rem auto 0;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.dash-brand { display: flex; align-items: center; gap: 10px; }
.dash-avatar {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--rouge), #ff6b7f);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.75rem; color: white;
}
.dash-name   { font-weight: 600; font-size: 0.85rem; color: white; }
.dash-tag    {
    font-size: 0.65rem;
    background: rgba(76,175,80,0.15);
    color: #6ddb72;
    padding: 3px 10px;
    border-radius: 20px;
}
.dash-welcome {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    color: white;
}
.dash-welcome span { color: var(--rouge); }

.dash-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.dash-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
    transition: all 0.3s;
}
.dash-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.dash-card-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
    font-size: 1rem;
}
.dash-card-icon.email  { background: rgba(255,105,135,0.15); color: #ff6987; }
.dash-card-icon.phone  { background: rgba(59,130,246,0.15);  color: #5b9bff; }
.dash-card-icon.devis  { background: rgba(205,127,50,0.15);  color: #CD7F32; }
.dash-card-icon.rdv    { background: rgba(255,165,0,0.15);   color: #ffa500; }
.dash-card-icon.tasks  { background: rgba(52,211,153,0.15);  color: #34d399; }
.dash-card-icon.social { background: rgba(167,139,250,0.15); color: #a78bfa; }
.dash-card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: white;
}
.dash-card-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
    font-weight: 500;
}

/* ═══════════════════════════════════════
   INTRO CIBLE
   ═══════════════════════════════════════ */
.duo-intro-cible {
    background: var(--bleu);
}

.duo-intro-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 1rem;
}

.duo-intro-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: var(--blanc);
    line-height: 1.3;
    max-width: 680px;
    margin: 0 auto;
}

/* Hero buttons */
.duo-btn-primary {
    background: var(--rouge);
    color: var(--blanc) !important;
    padding: 12px 28px;
    border-radius: 60px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(200,16,46,0.35);
    border: none;
}
.duo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,16,46,0.5);
    color: var(--blanc) !important;
}

.duo-btn-secondary {
    background: rgba(11,29,58,0.05);
    color: var(--bleu) !important;
    padding: 12px 28px;
    border-radius: 60px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(11,29,58,0.12);
    transition: all 0.3s;
}
.duo-btn-secondary:hover {
    background: rgba(11,29,58,0.1);
    border-color: rgba(11,29,58,0.25);
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════ */
.duo-page-hero {
    padding-top: 130px;
    padding-bottom: 60px;
    background: linear-gradient(160deg, var(--bleu-mid) 0%, var(--bleu) 100%);
    position: relative;
    overflow: hidden;
}
.duo-page-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,16,46,0.08), transparent 70%);
    transform: translate(-50%,-50%);
    border-radius: 50%;
    pointer-events: none;
}
.duo-page-hero h1 {
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}
.duo-page-hero h1 .accent { color: var(--rouge); }
.duo-page-hero .page-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}
.duo-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.duo-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.duo-breadcrumb a:hover { color: var(--blanc); }

/* ═══════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════ */
.duo-section { padding: 100px 0; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rouge);
    margin-bottom: 1rem;
}
.section-tag::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--rouge);
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-sub {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════ */
.duo-proof {
    padding: 30px 0;
}
.proof-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blanc), rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.proof-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

/* ═══════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════ */
.feature-card {
    background: var(--blanc);
    border: 2px solid var(--rouge);
    border-radius: 14px;
    padding: 0 0 22px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(200,16,46,0.08);
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(200,16,46,0.15);
}
.feature-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 20px;
}
.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.feature-card:hover .feature-card-img img { transform: scale(1.04); }
.feature-card-body { padding: 22px; }
/* legacy icon layout (used in extra features) */
.feature-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.feature-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    background: var(--bleu);
    box-shadow: 0 4px 12px rgba(11,29,58,0.2);
    flex-shrink: 0;
}
.feature-icon i { color: var(--blanc); }
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    color: var(--bleu);
    line-height: 1.2;
}
.feature-card p {
    color: #5a6577;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════
   HOW IT WORKS — STEPS
   ═══════════════════════════════════════ */
.duo-how {
    background: linear-gradient(180deg, var(--bleu) 0%, var(--bleu-mid) 100%);
}

.step-number {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background: transparent;
}
.step-number img {
    width: 80px; height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}
.step p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   TARGET CARDS
   ═══════════════════════════════════════ */
.target-card {
    background: var(--blanc);
    border: 2px solid var(--rouge);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(200,16,46,0.08);
    height: 100%;
}
.target-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200,16,46,0.15);
}
.target-card .icon { font-size: 2rem; margin-bottom: 16px; color: var(--rouge); }
.target-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bleu);
}
.target-card p {
    font-size: 0.88rem;
    color: #5a6577;
    line-height: 1.5;
    margin: 0;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.duo-testimonials {
    background: var(--gris-clair);
}
.duo-testimonials .section-title { color: var(--bleu); }
.duo-testimonials .section-tag   { color: var(--rouge); }
.duo-testimonials .section-sub   { color: var(--gris); }

.testi-card {
    background: var(--blanc);
    border-radius: 16px;
    padding: 32px 28px;
    border-left: 4px solid var(--rouge);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.testi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.testi-quote {
    font-size: 2.5rem;
    color: var(--rouge);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 12px;
}
.testi-text {
    font-size: 0.95rem;
    color: #3a4a5e;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(200,16,46,0.2);
}
.testi-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bleu);
}
.testi-role {
    font-size: 0.78rem;
    color: var(--gris);
}
.testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; }

/* ═══════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════ */
.duo-pricing {
    background: var(--gris-clair);
    color: var(--bleu);
}
.duo-pricing .section-title { color: var(--bleu); }
.duo-pricing .section-sub   { color: var(--gris); }
.duo-pricing .section-tag   { color: var(--rouge); }

.price-card {
    background: var(--blanc);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--bleu);
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    height: 100%;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.price-card.popular {
    border: 2px solid var(--rouge);
    box-shadow: 0 8px 40px rgba(200,16,46,0.12);
}
.price-card.popular::after {
    content: 'POPULAIRE';
    position: absolute;
    top: 20px; right: -30px;
    background: var(--rouge);
    color: var(--blanc);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.price-tier {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rouge);
    margin-bottom: 4px;
}
.price-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bleu);
    margin-bottom: 4px;
}
.price-desc {
    font-size: 0.85rem;
    color: var(--gris);
    margin-bottom: 1.5rem;
}
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 1.5rem;
}
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--bleu); }
.price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--bleu);
    line-height: 1;
    letter-spacing: -2px;
}
.price-period { font-size: 1rem; color: var(--gris); font-weight: 500; }

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1px 0;
    font-size: 0.9rem;
    color: #3a4a5e;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.price-features li:last-child { border-bottom: none; }
.price-features li .fa-check-circle {
    color: var(--rouge);
    font-size: 1rem;
    flex-shrink: 0;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}
.price-btn.outline {
    border: 2px solid var(--bleu);
    color: var(--bleu);
}
.price-btn.outline:hover { background: var(--bleu); color: var(--blanc); }
.price-btn.filled {
    background: var(--rouge);
    color: var(--blanc);
    border: 2px solid var(--rouge);
    box-shadow: 0 4px 20px rgba(200,16,46,0.25);
}
.price-btn.filled:hover { background: var(--rouge-dark); transform: translateY(-1px); }

/* Card essai gratuit */
.price-card-free {
    border: 2px solid #2ecc71;
    box-shadow: 0 8px 40px rgba(46,204,113,0.10);
}
.price-card-free::after {
    content: 'ESSAI GRATUIT';
    position: absolute;
    top: -1px;
    right: 20px;
    background: #2ecc71;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-family: 'Outfit', sans-serif;
}
.price-btn-free {
    display: block;
    text-align: center;
    padding: 11px;
    font-size: 0.85rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    background: #2ecc71;
    color: #fff;
    border: 2px solid #2ecc71;
    box-shadow: 0 4px 20px rgba(46,204,113,0.22);
}
.price-btn-free:hover { background: #27ae60; border-color: #27ae60; color: #fff; transform: translateY(-1px); }

/* Bannière avantages */
.duo-banner {
    background: var(--bleu);
    border-radius: 16px;
    padding: 24px 32px;
}
.duo-banner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.duo-banner-item i { color: var(--rouge); font-size: 1rem; }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.duo-faq { background: var(--bleu-mid); }

.faq-accordion .accordion-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    background: transparent;
    color: var(--blanc);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(200,16,46,0.08);
    color: var(--blanc);
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    filter: invert(1);
    opacity: 0.6;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(1);
    opacity: 1;
}
.faq-accordion .accordion-body {
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 24px 20px;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }

/* ═══════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════ */
.duo-contact-section { background: var(--gris-clair); }
.duo-contact-section .section-title { color: var(--bleu); }
.duo-contact-section .section-tag   { color: var(--rouge); }

.contact-card {
    background: var(--blanc);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.contact-info-card {
    background: var(--bleu);
    border-radius: 20px;
    padding: 40px 36px;
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-info-icon {
    width: 44px; height: 44px;
    background: rgba(200,16,46,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rouge);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}
.contact-info-value {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.duo-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bleu);
    margin-bottom: 6px;
}
.duo-form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--bleu);
    transition: border-color 0.2s;
    background: #fafbfc;
}
.duo-form-control:focus {
    border-color: var(--rouge);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
    background: var(--blanc);
}
.duo-form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--bleu);
    background: #fafbfc;
    transition: border-color 0.2s;
}
.duo-form-select:focus {
    border-color: var(--rouge);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}

/* ═══════════════════════════════════════
   BLOG
   ═══════════════════════════════════════ */
.duo-blog { background: var(--bleu-mid); }
.duo-blog .section-title { color: var(--blanc); }
.duo-blog .section-sub   { color: rgba(255,255,255,0.45); }

.blog-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200,16,46,0.4);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.blog-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.blog-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bleu-light), var(--bleu-mid));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
}
.blog-card-body { padding: 24px; }
.blog-card-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rouge);
    margin-bottom: 10px;
}
.blog-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blanc);
    line-height: 1.35;
    margin-bottom: 10px;
}
.blog-card-excerpt {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-card-meta span { color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.duo-cta {
    background: linear-gradient(135deg, var(--bleu-mid) 0%, var(--bleu) 50%, #1a0a12 100%);
    position: relative;
    overflow: hidden;
}
.duo-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,16,46,0.12), transparent 70%);
    transform: translate(-50%,-50%);
    border-radius: 50%;
    pointer-events: none;
}
.duo-cta .cta-content { position: relative; z-index: 2; }
.duo-cta h2 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
}
.duo-cta h2 .accent { color: var(--rouge); }
.duo-cta p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.duo-btn-ghost {
    color: white !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.06) !important;
    padding: 12px 28px;
    border-radius: 60px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.duo-btn-ghost:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.35) !important;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.duo-footer {
    background: #060E1A;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.duo-footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}
.duo-footer-link {
    display: block;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.2s;
}
.duo-footer-link:hover { color: var(--blanc); }
.duo-footer-hr {
    border-color: rgba(255,255,255,0.06);
    margin: 0.5rem 0 1.5rem;
}

/* TRICOLORE */
.tricolore {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #002395 33%, #FFFFFF 33% 66%, #ED2939 66%);
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.pilier-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.pilier-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,16,46,0.3);
    transform: translateY(-3px);
}
.pilier-icon {
    width: 60px; height: 60px;
    background: rgba(200,16,46,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px;
}
.pilier-icon i { color: var(--rouge); }
.pilier-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--blanc);
}
.pilier-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.fondateur-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 48px 40px;
}
.fondateur-avatar-wrap {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--rouge), #ff6b7f);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

/* Capacités liste */
.capacites-list {
    list-style: none;
    padding: 0;
}
.capacites-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.capacites-list li:last-child { border-bottom: none; }
.capacites-list li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--rouge);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Modes d'automatisation */
.mode-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.mode-card:hover {
    border-color: rgba(200,16,46,0.3);
    transform: translateY(-2px);
}
.mode-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blanc);
}
.mode-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
    line-height: 1.5;
}
.mode-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.mode-badge.manuel   { background: rgba(100,100,100,0.2); color: rgba(255,255,255,0.5); }
.mode-badge.semi     { background: rgba(59,130,246,0.2);  color: #5b9bff; }
.mode-badge.auto     { background: rgba(52,211,153,0.2);  color: #34d399; }

/* ═══════════════════════════════════════
   CGU / MENTIONS LÉGALES
   ═══════════════════════════════════════ */
.cgu-block {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cgu-block h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}
.cgu-block h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    margin-bottom: 10px;
}
.cgu-block p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 10px;
}
.cgu-block p:last-child { margin-bottom: 0; }
.cgu-block ul, .cgu-block ol {
    padding-left: 1.4rem;
    margin-bottom: 10px;
}
.cgu-block li {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 4px;
}
.cgu-block a {
    color: var(--rouge);
    text-decoration: none;
}
.cgu-block a:hover { text-decoration: underline; }

/* ─── Cartes légales (duo-cards) ─── */
.duo-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.75rem 0;
}
.duo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem 1.1rem;
}
.duo-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.duo-card-detail {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.25rem 0;
    gap: 1rem;
}
.duo-card-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    flex-shrink: 0;
}
.duo-card-value {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    text-align: right;
    line-height: 1.5;
}
.duo-card-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}

/* ─── Fiches clé/valeur (duo-kv) ─── */
.duo-kv { display: flex; flex-direction: column; }
.duo-kv-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.duo-kv-row:last-child { border-bottom: none; }
.duo-kv-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    padding: 0.75rem;
}
.duo-kv-value {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    padding: 0.75rem;
    line-height: 1.55;
}
.duo-kv-value a { color: var(--rouge); text-decoration: none; }
.duo-kv-value a:hover { text-decoration: underline; }
@media (max-width: 480px) {
    .duo-kv-row { grid-template-columns: 1fr; }
    .duo-kv-label { padding-bottom: 0.1rem; }
    .duo-kv-value { padding-top: 0; }
}

/* ─── Tableaux (duo-table) ─── */
.duo-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.duo-table-hint {
    display: none;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    text-align: right;
    padding: 0.3rem 0;
    font-style: italic;
}
@media (max-width: 576px) { .duo-table-hint { display: block; } }
.duo-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.duo-table thead th {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    padding: 0.75rem 0.85rem;
    text-align: left;
}
.duo-table tbody td {
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    vertical-align: top;
    line-height: 1.5;
}
.duo-table tbody tr:last-child td { border-bottom: none; }

/* ─── Grille tarifs CGU ─── */
.cgu-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}
.cgu-pricing-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    position: relative;
}
.cgu-pricing-item.featured { border-color: var(--rouge); }
.cgu-pricing-item.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -0.5rem; left: 50%;
    transform: translateX(-50%);
    background: var(--rouge);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.65rem;
    border-radius: 20px;
}
.cgu-pricing-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.4rem;
}
.cgu-pricing-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
}
.cgu-pricing-price.free { color: #51cf66; }
.cgu-pricing-price span { font-size: 0.8rem; font-weight: 400; }

/* ─── Utilitaires légaux ─── */
.duo-legal-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════
   SUCCESS MESSAGE
   ═══════════════════════════════════════ */
.duo-alert-success {
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    color: #34d399;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ═══════════════════════════════════════
   CAROUSEL PHONE — DC COMPONENTS
   ═══════════════════════════════════════ */
.dc-wrapper { font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif; -webkit-font-smoothing: antialiased; width: 340px; margin: 0 auto; padding: 20px 0; }
.dc-wrapper *, .dc-wrapper *::before, .dc-wrapper *::after { box-sizing: border-box; margin: 0; padding: 0; }
.dc-phone { background-color: #0F1729; border-radius: 28px; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.05); position: relative; aspect-ratio: 9 / 16.5; display: flex; flex-direction: column; }
.dc-phone-header { padding: 12px 16px 8px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%); flex-shrink: 0; }
.dc-phone-header__logo { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #3B82F6, #06B6D4); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: white; }
.dc-phone-header__title { font-size: 14px; font-weight: 700; color: #E2E8F0; }
.dc-phone-header__sub { font-size: 10.5px; color: #64748B; }
.dc-phone-header__actions { margin-left: auto; display: flex; gap: 6px; }
.dc-phone-header__btn { width: 30px; height: 30px; border-radius: 8px; background-color: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 13px; border: none; cursor: default; }
.dc-viewport { padding: 14px 16px 10px; flex: 1; overflow: hidden; position: relative; }
.dc-slide { display: none; }
.dc-slide.dc-active { display: block; }
.dc-stag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 20px; margin-bottom: 10px; }
.dc-stag__dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dc-stag__label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; }
.dc-stitle { font-size: 18px; font-weight: 800; color: #E2E8F0; margin: 0 0 12px 0; line-height: 1.3; }
.dc-mcard { padding: 10px 12px; border-radius: 12px; margin-bottom: 8px; background-color: rgba(255,255,255,0.04); }
.dc-badge { font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 12px; white-space: nowrap; }
.dc-ibox { border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dc-idot { border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dc-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; z-index: 10; background-color: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); color: #94A3B8; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; }
.dc-arrow:hover { background-color: rgba(255,255,255,0.14); }
.dc-arrow--left { left: 6px; }
.dc-arrow--right { right: 6px; }
.dc-dots { display: flex; justify-content: center; gap: 5px; padding: 6px 0 10px; flex-shrink: 0; }
.dc-dot { height: 7px; border-radius: 4px; border: none; cursor: pointer; background-color: rgba(255,255,255,0.15); width: 7px; transition: all 0.3s ease; padding: 0; }
.dc-dot.active { width: 20px; background-color: #3B82F6; }
.dc-nav { display: flex; justify-content: space-around; padding: 8px 0 12px; border-top: 1px solid rgba(255,255,255,0.06); background-color: rgba(0,0,0,0.2); flex-shrink: 0; }
.dc-nav__item { display: flex; flex-direction: column; align-items: center; gap: 2px; transition: opacity 0.3s; cursor: default; background: none; border: none; }
.dc-nav__icon { font-size: 16px; }
.dc-nav__label { font-size: 9.5px; color: #94A3B8; font-weight: 500; }
.dc-label { text-align: center; margin-top: 14px; font-size: 13px; font-weight: 600; color: #64748B; }

/* ═══════════════════════════════════════
   SCROLL REVEAL — INTERSECTION OBSERVER
   ═══════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    -webkit-transition: opacity .65s ease, -webkit-transform .65s ease;
            transition: opacity .65s ease, transform .65s ease;
    will-change: opacity, transform;
}
[data-reveal="up"]    { -webkit-transform: translateY(36px); transform: translateY(36px); }
[data-reveal="left"]  { -webkit-transform: translateX(-50px); transform: translateX(-50px); }
[data-reveal="right"] { -webkit-transform: translateX(50px);  transform: translateX(50px); }
[data-reveal].is-visible { opacity: 1; -webkit-transform: none; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        -webkit-transition: none; transition: none;
        opacity: 1 !important;
        -webkit-transform: none !important; transform: none !important;
    }
}

/* Grain noise overlay */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .duo-section { padding: 60px 0; }
    .duo-hero { padding-top: 100px; padding-bottom: 40px; }
    .duo-hero h1 { letter-spacing: -1px; }
    .duo-page-hero { padding-top: 110px; padding-bottom: 40px; }
    .duo-page-hero h1 { letter-spacing: -1px; }
    .dash-grid { gap: 6px; }
    .dashboard-frame { padding: 14px 16px; }
    .contact-card { padding: 28px 20px; }
    .contact-info-card { padding: 28px 20px; }
    .fondateur-card { padding: 32px 24px; }

    /* Carousel phone — responsive */
    .dc-wrapper { width: 280px; }

    /* iOS Safari : évite le scroll horizontal causé par translateX */
    [data-reveal="left"],
    [data-reveal="right"] {
        -webkit-transform: translateY(36px);
        transform: translateY(36px);
    }
}
