/* ============================================
   INSERT.CSS — Page INSERT sur Artisan-Code.fr
   Charte : navy #1a2640 + accent orange #f59e0b
   ============================================ */

/* ── Hero CTA ─────────────────────────────── */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding: 13px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all .2s;
    text-decoration: none;
}
.hero-cta svg {
    width: 18px;
    height: 18px;
}
.hero-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245,158,11,.4);
}

/* ── Intro ────────────────────────────────── */
.intro-section { background: var(--bg); }

.intro-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 1.5rem;
    padding: 16px 24px;
    border-left: 4px solid var(--accent);
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
    text-align: left;
}

/* ── Features Grid ────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-card:hover {
    box-shadow: 0 6px 24px rgba(26,38,64,.1);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--navy);
}

.feature-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin: 0;
}

.feature-card p {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

/* Plan badges */
.plan-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    align-self: flex-start;
}
.plan-basique {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #86efac;
}
.plan-standard {
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid #93c5fd;
}
.plan-premium {
    background: #fef3c7;
    color: var(--accent-dark);
    border: 1px solid #fcd34d;
}

/* ── Pricing Grid ─────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 2rem auto 0;
    align-items: start;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    position: relative;
    transition: box-shadow .2s;
}
.pricing-card:hover {
    box-shadow: 0 6px 24px rgba(26,38,64,.1);
}

.pricing-featured {
    border: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(245,158,11,.15);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 12px;
    white-space: nowrap;
    letter-spacing: .04em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    font-size: .93rem;
    color: var(--text);
    padding-left: 22px;
    position: relative;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* ── Pilot Section ────────────────────────── */
.pilot-section { background: var(--bg-section); }

.pilot-block {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pilot-icon {
    width: 56px;
    height: 56px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pilot-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-dark);
}

.pilot-block h2 {
    font-size: 1.8rem;
    margin: 0;
}

.pilot-block p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.pilot-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 13px 32px;
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all .2s;
    text-decoration: none;
}
.pilot-cta:hover {
    background: var(--navy-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26,38,64,.25);
}

/* ── CTA Final ────────────────────────────── */
.cta-final {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.cta-block {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-block h2 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}

.cta-block > p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .2s;
}
.cta-btn svg {
    width: 18px;
    height: 18px;
}
.cta-btn:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245,158,11,.4);
}

.cta-contact {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    margin: 0;
}
.cta-contact a {
    color: var(--accent);
    font-weight: 600;
}
.cta-contact a:hover {
    color: #fff;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .intro-tagline {
        font-size: 1.05rem;
    }
    .pilot-block h2 {
        font-size: 1.5rem;
    }
    .cta-block h2 {
        font-size: 1.6rem;
    }
}
