/* assets/styles/app.css */
.page-wrapper {
    padding-bottom: 0;
}

.page-body {
    padding-bottom: 4.5rem; /* hauteur du footer */
}

/* ── Utilitaires ── */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.fw-black { font-weight: 900; }
.ls-wide { letter-spacing: .08em; }

/* ── Gradient text hero ── */
.text-gradient {
    background: linear-gradient(135deg, #0054a6, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero section ── */
.hero-section {
    background: linear-gradient(180deg, #edf2ff 0%, #f5f8ff 60%, #fff 100%);
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 84, 166, 0.07) 1.5px, transparent 1.5px);
    background-size: 34px 34px;
    pointer-events: none;
}
.hero-section > * { position: relative; }
.hero-visual {
    background: linear-gradient(135deg, #0054a6, #00b4d8);
    padding: 3rem 0 0;
    margin-top: 3rem;
}
.hero-mockup {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden;
}
.hero-mockup-bar .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

/* ── Feature icon ── */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-card-accent {
    background: linear-gradient(135deg, #f5f8ff, #fff);
}
.feature-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: default;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 84, 166, 0.1) !important;
}

/* ── Steps ── */
.step-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0054a6, #00b4d8) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0, 84, 166, 0.3);
}
.step-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 84, 166, 0.1) !important;
}
.step-arrow { font-weight: 300; }

/* ── Pricing ── */
.pricing-card {
    border: 0 !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 84, 166, 0.13) !important;
}
.pricing-accent {
    height: 4px;
    background: #e2e8f0;
}
.pricing-featured .pricing-accent {
    height: 6px;
    background: linear-gradient(90deg, #0054a6, #00b4d8);
}
.pricing-featured {
    background: #f0f6ff;
    box-shadow: 0 4px 24px rgba(0, 84, 166, 0.12) !important;
}
.pricing-featured:hover {
    box-shadow: 0 16px 48px rgba(0, 84, 166, 0.2) !important;
}
.pricing-divider {
    border-color: rgba(0,0,0,.08);
}

/* ── CTA final gradient ── */
.cta-section {
    background-color: #0054a6;
    background: linear-gradient(135deg, #0a4fa6 0%, #0073d0 55%, #00b4d8 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.cta-section > * { position: relative; }

/* ── Footer links ── */
.footer-link:hover { color: #fff !important; }

/* ── Accessibilité ── */
:focus-visible {
    outline: 3px solid #0054a6;
    outline-offset: 3px;
    border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; }
}
