/* ============================================================
   Design tokens (fondations) — chargés en premier.
   Définissent les variables CSS : couleurs slate/brand/accent,
   typographie Inter, espacements, radii, shadows, container.
   Ne s'appliquent nulle part par eux-mêmes.
   ============================================================ */
@import url("front/_tokens-cc4oLI9.css");
@import url("front/_components-umI1rsK.css");
@import url("front/_header-4f6hkmM.css");
@import url("front/_footer-6_zfwFZ.css");
@import url("front/_home-XXy86bb.css");
@import url("front/_pages-hub-MMtb7D6.css");
@import url("front/_pages-solution-xI8lAaz.css");
@import url("front/_pages-blog-eQ9hjxo.css");
@import url("front/_pages-guide-Q6bA0a4.css");
@import url("front/_pages-glossary-bhDyopk.css");

/* ── Palette legacy (sera progressivement migrée vers les tokens)
   Fond       #FFFFFF / #F8F9FB
   Texte      #111827
   Bleu       #2563EB  (confiance, liens actifs)
   Vert       #16A34A  (CTA, action)
   Gris clair #E5E7EB  (bordures, séparateurs)
──────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
}

/* ── Header ─────────────────────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.site-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563EB;
    text-decoration: none;
    letter-spacing: -.5px;
    flex-shrink: 0;
}

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
}

.site-nav a {
    font-size: .9rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color .15s;
}

.site-nav a:hover {
    color: #2563EB;
}

/* Actions (Mon espace + CTA) */
.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-secondary {
    font-size: .9rem;
    font-weight: 500;
    color: #2563EB;
    text-decoration: none;
    transition: color .15s;
}

.btn-secondary:hover {
    color: #1D4ED8;
}

/* CTA */
.btn-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: .5rem 1.25rem;
    background: #16A34A;
    color: #ffffff;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background .15s, transform .1s;
}

.btn-cta:hover {
    background: #15803D;
    transform: translateY(-1px);
}

/* ── Layout main ────────────────────────────────────────── */

main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
}

/* ── Container (aligné avec le header) ───────────────────── */

.container {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
    border-top: 1px solid #E5E7EB;
    background: #ffffff;
}

.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.footer-col--brand {
    display: grid;
    gap: .35rem;
    color: #6B7280;
    font-size: .9rem;
}

.footer-brand {
    color: #111827;
    font-weight: 700;
    letter-spacing: -.3px;
}

.footer-col-title {
    font-size: .75rem;
    color: #6B7280;
    font-weight: 800;
    letter-spacing: .35px;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.footer-col--links {
    display: grid;
    gap: .55rem;
    align-content: start;
}

.footer-col--links a {
    font-size: .9rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
}

.footer-col--links a:hover {
    color: #2563EB;
}

.footer-col--links a[aria-disabled="true"] {
    opacity: .7;
    cursor: not-allowed;
}

/* ── Typographie ────────────────────────────────────────── */

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .75rem;
    letter-spacing: -.5px;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: .5rem;
}

p {
    margin-bottom: 1rem;
}

p.lead {
    font-size: 1.05rem;
    color: #4B5563;
    margin-bottom: 2rem;
}

p.signup-step {
    color: #6B7280;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 1.5rem;
}

.signup-split {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 2rem;
    align-items: start;
}

.signup-left {
    padding-top: .5rem;
}

.signup-pitch-badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .2px;
    background: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
    margin-bottom: 1rem;
}

.signup-pitch-title {
    margin-bottom: .85rem;
}

.signup-pitch-lead {
    font-size: 1.05rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.signup-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: .85rem;
    margin-bottom: 1.5rem;
}

.signup-benefit {
    border: 1px solid #E5E7EB;
    background: #ffffff;
    border-radius: 14px;
    padding: .95rem 1rem;
}

.signup-benefit-title {
    font-weight: 900;
    letter-spacing: -.2px;
    margin-bottom: .2rem;
}

.signup-benefit-text {
    font-size: .92rem;
    color: #6B7280;
    line-height: 1.35;
}

.signup-proof {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .4rem;
    color: #374151;
    font-weight: 600;
}

.signup-form-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(17, 24, 39, .10);
    padding: 1.75rem;
}

.signup-seats {
    margin-top: 1.25rem;
    max-width: 240px;
}

.plan-card-star {
    font-size: .95rem;
}

.plan-card-recommended {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: .5rem;
    padding: .15rem .5rem;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .3px;
    border-radius: 999px;
    background: #2563EB;
    color: #ffffff;
    vertical-align: middle;
}

/* ── /legal/signalement ─────────────────────────────────── */

.report-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.report-action {
    padding: .9rem 1rem;
    border-radius: 12px;
    justify-content: center;
}

.report-warning {
    margin-bottom: 1.25rem;
}

.report-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(17, 24, 39, .10);
    padding: 1.75rem;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.report-section-title {
    margin: .75rem 0 .25rem;
}

.report-full {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .report-actions { grid-template-columns: 1fr; }
    .report-card { padding: 1.25rem; }
    .report-grid { grid-template-columns: 1fr; }
}

.text-muted {
    color: #6B7280;
    font-size: .9rem;
}

/* ── /contact ───────────────────────────────────────────── */

main:has(.contact-hero) {
    max-width: none;
    padding: 0;
}

.contact-hero {
    background: radial-gradient(900px 450px at 20% 20%, rgba(37, 99, 235, .16) 0%, rgba(37, 99, 235, 0) 60%),
        radial-gradient(800px 420px at 80% 20%, rgba(168, 85, 247, .14) 0%, rgba(168, 85, 247, 0) 62%),
        linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
    text-align: center;
    padding: 5rem 0 3.25rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-hero-lead {
    max-width: 72ch;
    margin: 0 auto 1.75rem;
    font-size: 1.1rem;
    color: #4B5563;
}

.contact-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-cta {
    border-radius: 999px;
    padding: .6rem 1rem;
}

.contact-quick {
    padding: 2.5rem 0 0;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.contact-card {
    box-shadow: 0 14px 40px rgba(17, 24, 39, .08);
}

.contact-card--muted {
    background: #F8FAFC;
}

.contact-card-head {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: .85rem;
    align-items: start;
    margin-bottom: .75rem;
}

.contact-card-title {
    font-size: 1.05rem;
    margin: 0 0 .1rem 0;
}

.contact-card-sub {
    margin: 0;
}

.contact-card-line {
    margin: 0 0 .35rem 0;
    font-weight: 650;
    color: #111827;
}

.contact-card-points {
    margin: 0;
    padding-left: 1.15rem;
    font-size: .9rem;
    color: #374151;
    line-height: 1.45;
}

.contact-card-points li {
    margin-bottom: .25rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
    background: #ffffff;
}

.contact-icon--blue {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1E40AF;
}

.contact-icon--red {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #991B1B;
}

.contact-icon--fr {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #166534;
}

.contact-section {
    padding: 2.75rem 0 0;
}

.contact-form-layout {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(17, 24, 39, .10);
    padding: 1.75rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.contact-form-grid > div {
    margin-bottom: 0;
}

.contact-form-full {
    grid-column: 1 / -1;
}

.contact-reassurance {
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-faq {
    padding: 2.5rem 0 4.5rem;
}

.contact-faq-card h2 {
    margin-bottom: 1rem;
}

.contact-faq-items {
    display: grid;
    gap: .85rem;
}

.contact-faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: .9rem 1rem;
    background: #ffffff;
}

.contact-faq-item summary {
    cursor: pointer;
    font-weight: 800;
    color: #111827;
}

.contact-faq-item p {
    margin-top: .65rem;
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .contact-hero { padding: 3rem 0 2.25rem; }
    .contact-hero h1 { font-size: 1.85rem; }
    .contact-hero-lead { font-size: 1rem; }

    .contact-form-card { padding: 1.25rem; }
    .contact-form-grid { grid-template-columns: 1fr; }
}

/* ── Boutons ────────────────────────────────────────────── */

.btn-primary,
.btn-outline,
.btn-outline-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .65rem 1.4rem;
    font-size: .95rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s, transform .1s;
}

.btn-primary {
    background: #16A34A;
    color: #ffffff;
}

.btn-primary:hover {
    background: #15803D;
    transform: translateY(-1px);
}

.btn-outline {
    background: #ffffff;
    color: #2563EB;
    border-color: #2563EB;
}

.btn-outline:hover {
    background: #EFF6FF;
}

.btn-outline-danger {
    background: #ffffff;
    color: #DC2626;
    border-color: #DC2626;
}

.btn-outline-danger:hover {
    background: #FEF2F2;
}

/* ── Alertes ────────────────────────────────────────────── */

.alert {
    padding: .85rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    font-size: .95rem;
}

.alert-error {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #991B1B;
}

.alert-warning {
    background: #FFFBEB;
    border-color: #FDE68A;
    color: #92400E;
}

.alert-info {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1E40AF;
}

.alert-success {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #166534;
}

/* ── Formulaires ────────────────────────────────────────── */

form fieldset {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

form legend {
    padding: 0 .5rem;
    font-weight: 600;
    color: #374151;
    font-size: .95rem;
}

form label {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: .35rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="password"],
form input[type="number"],
form select,
form textarea {
    width: 100%;
    padding: .55rem .75rem;
    font-size: .95rem;
    color: #111827;
    background: #ffffff;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    transition: border-color .15s, box-shadow .15s;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #6B7280 50%),
        linear-gradient(135deg, #6B7280 50%, transparent 50%),
        linear-gradient(to right, transparent, transparent);
    background-position: calc(100% - 18px) calc(1em + 2px),
        calc(100% - 13px) calc(1em + 2px),
        0 0;
    background-size: 5px 5px, 5px 5px, 100% 100%;
    background-repeat: no-repeat;
    padding-right: 2.25rem;
}

form .form-row,
form > div {
    margin-bottom: 1rem;
}

form ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #DC2626;
    font-size: .85rem;
}

form ul li {
    margin-top: .35rem;
}

/* Radios déployés (forfait) */
form input[type="radio"] {
    margin-right: .5rem;
}

form input[type="radio"] + label {
    display: inline-block;
    margin-bottom: .25rem;
    cursor: pointer;
}

/* Checkbox alignement (acceptation légale) */
form input[type="checkbox"] {
    margin-right: .5rem;
    transform: translateY(2px);
}

form input[type="checkbox"] + label {
    display: inline;
    font-weight: 500;
}

.form-actions {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-top: 1.5rem;
}

/* ── /forfaits ──────────────────────────────────────────── */

.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.forfait-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}

.forfait-card:hover {
    border-color: #2563EB;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .08);
    transform: translateY(-2px);
}

.forfait-card--disabled {
    opacity: .6;
    background: #F9FAFB;
}

.forfait-card--disabled:hover {
    border-color: #E5E7EB;
    box-shadow: none;
    transform: none;
}

.forfait-card header {
    margin-bottom: 1rem;
}

.forfait-card h2 {
    font-size: 1.15rem;
    margin-bottom: .25rem;
}

.forfait-price {
    font-size: .9rem;
    color: #6B7280;
    margin: 0;
}

.forfait-price strong {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    display: inline-block;
    margin-right: .25rem;
}

.forfait-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    flex: 1;
}

.forfait-features li {
    padding: .35rem 0;
    font-size: .9rem;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
}

.forfait-features li:last-child {
    border-bottom: none;
}

.forfait-card footer {
    margin-top: 1rem;
}

.forfait-card .btn-primary {
    width: 100%;
}

.forfait-soon {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: .65rem 1rem;
    background: #F3F4F6;
    color: #6B7280;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 500;
}

/* ── /inscription/legal ─────────────────────────────────── */

.legal-doc-block {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.legal-doc-block details {
    margin-bottom: .75rem;
}

.legal-doc-block summary {
    cursor: pointer;
    color: #2563EB;
    font-size: .9rem;
    font-weight: 500;
    padding: .25rem 0;
    user-select: none;
}

.legal-doc-block summary:hover {
    color: #1D4ED8;
}

.legal-doc-content {
    margin-top: .75rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: .9rem;
    color: #374151;
    max-height: 280px;
    overflow-y: auto;
}

.legal-doc-content h2 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

/* ── Typographie pour le contenu légal Markdown rendu ──────
   Scopée à `.legal-article` (pages /cgu /dpa /cgv /legal/{page})
   et à `.legal-doc-content` (page de signature inscription).
   Réintroduit la typographie standard que le reset global supprime. */

.legal-article,
.legal-doc-content {
    color: #1F2937;
    line-height: 1.7;
}

.legal-article {
    max-width: 75ch;
    margin: 0 auto;
    font-size: 1rem;
}

.legal-article h1,
.legal-doc-content h1 {
    font-size: 1.85rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    line-height: 1.25;
    color: #111827;
}

.legal-article h2,
.legal-doc-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 .75rem;
    line-height: 1.3;
    color: #111827;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: .35rem;
}

.legal-article h3,
.legal-doc-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.5rem 0 .5rem;
    color: #111827;
}

.legal-article h4,
.legal-doc-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 .35rem;
    color: #111827;
}

.legal-article p,
.legal-doc-content p {
    margin: 0 0 1rem;
}

.legal-article ul,
.legal-article ol,
.legal-doc-content ul,
.legal-doc-content ol {
    margin: 0 0 1rem 0;
    padding-left: 1.75rem;
}

.legal-article ul,
.legal-doc-content ul {
    list-style: disc;
}

.legal-article ol,
.legal-doc-content ol {
    list-style: decimal;
}

.legal-article li,
.legal-doc-content li {
    margin-bottom: .35rem;
}

.legal-article li > ul,
.legal-article li > ol,
.legal-doc-content li > ul,
.legal-doc-content li > ol {
    margin-top: .35rem;
    margin-bottom: 0;
}

.legal-article blockquote,
.legal-doc-content blockquote {
    margin: 1rem 0;
    padding: .75rem 1rem;
    border-left: 4px solid #2563EB;
    background: #F9FAFB;
    color: #374151;
    font-style: italic;
}

.legal-article blockquote p:last-child,
.legal-doc-content blockquote p:last-child {
    margin-bottom: 0;
}

.legal-article a,
.legal-doc-content a {
    color: #2563EB;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-article a:hover,
.legal-doc-content a:hover {
    color: #1D4ED8;
}

.legal-article strong,
.legal-doc-content strong {
    font-weight: 700;
    color: #111827;
}

.legal-article em,
.legal-doc-content em {
    font-style: italic;
}

.legal-article code,
.legal-doc-content code {
    background: #F3F4F6;
    color: #B91C1C;
    padding: .1rem .4rem;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .9em;
}

.legal-article pre,
.legal-doc-content pre {
    background: #111827;
    color: #F9FAFB;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1rem 0;
    font-size: .9rem;
}

.legal-article pre code,
.legal-doc-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.legal-article hr,
.legal-doc-content hr {
    border: 0;
    border-top: 1px solid #E5E7EB;
    margin: 2rem 0;
}

.legal-article table,
.legal-doc-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .95rem;
}

.legal-article th,
.legal-article td,
.legal-doc-content th,
.legal-doc-content td {
    padding: .55rem .75rem;
    border: 1px solid #E5E7EB;
    text-align: left;
    vertical-align: top;
}

.legal-article th,
.legal-doc-content th {
    background: #F9FAFB;
    font-weight: 600;
}

@media (max-width: 640px) {
    .legal-article {
        font-size: .95rem;
    }
    .legal-article h1 { font-size: 1.5rem; }
    .legal-article h2 { font-size: 1.2rem; }
    .legal-article h3 { font-size: 1.05rem; }
}

/* ── /inscription/succes & /inscription/en-attente ──────── */

.signup-confirmation,
.signup-pending {
    max-width: 620px;
    margin: 2rem auto;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    text-align: center;
}

.signup-confirmation h1,
.signup-pending h1 {
    margin-bottom: 1rem;
}

.signup-confirmation .form-actions,
.signup-pending .form-actions {
    justify-content: center;
    margin-top: 2rem;
}

/* ── /inscription — layout 2 colonnes ───────────────────── */

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.signup-grid > div {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .signup-split {
        grid-template-columns: 1fr;
    }

    .signup-benefits {
        grid-template-columns: 1fr;
    }

    .signup-form-card {
        padding: 1.25rem;
    }

    .signup-grid {
        grid-template-columns: 1fr;
    }
}

/* ── /inscription — cards de forfait ────────────────────── */

.plan-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: .5rem;
}

.plan-card {
    position: relative;
    display: block;
    padding: 1.25rem 1rem;
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .1s, box-shadow .15s;
}

.plan-card:hover {
    border-color: #93C5FD;
    transform: translateY(-1px);
}

/* Radio caché visuellement mais reste fonctionnel (focus, keyboard) */
.plan-card-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* État sélectionné via :has() — fallback acceptable si le navigateur ne supporte pas */
.plan-card:has(input:checked) {
    border-color: #2563EB;
    background: #EFF6FF;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .12);
}

/* État focus clavier */
.plan-card:has(input:focus-visible) {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

.plan-card-body {
    text-align: center;
}

.plan-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .35rem;
}

.plan-card-price {
    font-size: .8rem;
    color: #6B7280;
    margin-bottom: .85rem;
}

.plan-card-price strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: .15rem;
}

.plan-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #F3F4F6;
    padding-top: .65rem;
}

.plan-card-features li {
    font-size: .82rem;
    color: #4B5563;
    padding: .15rem 0;
    text-align: left;
}

/* ── /fonctionnalites ────────────────────────────────────── */

/* La page fonctionnalites est large et alterne les fonds : on neutralise
   le padding/max-width que la balise <main> applique par défaut. */
main:has(.features-hero) {
    max-width: none;
    padding: 0;
}

/* Home hero pleine largeur */
main:has(.home-hero) {
    max-width: none;
    padding: 0;
}

.home-hero {
    position: relative;
    background: radial-gradient(900px 450px at 20% 20%, rgba(168, 85, 247, .28) 0%, rgba(168, 85, 247, 0) 60%),
        radial-gradient(800px 420px at 80% 20%, rgba(37, 99, 235, .22) 0%, rgba(37, 99, 235, 0) 62%),
        linear-gradient(135deg, #070A12 0%, #0B1220 55%, #070A12 100%);
    color: #ffffff;
    padding: 4.5rem 0;
    overflow: hidden;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(500px 220px at 55% 55%, rgba(59, 130, 246, .22) 0%, rgba(59, 130, 246, 0) 60%),
        radial-gradient(460px 200px at 70% 40%, rgba(168, 85, 247, .22) 0%, rgba(168, 85, 247, 0) 60%);
    filter: blur(14px);
    pointer-events: none;
    opacity: .85;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
    align-items: center;
}

.home-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.home-hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 2rem;
}

.home-hero-actions {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.75rem;
}

.home-hero .btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, .75);
}

.home-hero .btn-outline:hover {
    background: rgba(255, 255, 255, .08);
}

.home-hero-proofs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .5rem;
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
}

.home-hero-proofs li {
    position: relative;
    padding-left: 1.75rem;
}

.home-hero-proofs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 999px;
    background: rgba(22, 163, 74, .18);
    color: #86EFAC;
    font-weight: 800;
    font-size: .8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dialer-mock {
    background: rgba(15, 23, 42, .85);
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
}

.dialer-mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .35);
}

.dialer-mock-title {
    font-weight: 700;
    letter-spacing: -.3px;
}

.dialer-mock-body {
    padding: 1.1rem;
    display: grid;
    gap: 1rem;
}

.dialer-mock-queue {
    display: grid;
    gap: .6rem;
}

.dialer-mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem .85rem;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 12px;
    background: rgba(2, 6, 23, .25);
}

.dialer-mock-row--active {
    border-color: rgba(239, 68, 68, .35);
    background: rgba(239, 68, 68, .08);
}

.dialer-mock-name {
    font-weight: 650;
    color: rgba(255, 255, 255, .92);
    line-height: 1.25;
}

.dialer-mock-meta {
    font-size: .85rem;
    color: rgba(255, 255, 255, .68);
}

.dialer-mock-actions {
    display: grid;
    gap: .75rem;
}

.dialer-mock-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(180deg, rgba(22, 163, 74, .95) 0%, rgba(21, 128, 61, .95) 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: .85rem 1rem;
    font-weight: 750;
    letter-spacing: -.2px;
    cursor: pointer;
}

.dialer-mock-note {
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .18);
    border-radius: 12px;
    padding: .85rem 1rem;
}

.dialer-mock-note-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: .35rem;
    font-weight: 600;
}

.dialer-mock-note-text {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.35;
}

.dialer-call {
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 14px;
    background: rgba(2, 6, 23, .22);
    padding: .85rem .95rem;
}

.dialer-call-title {
    font-weight: 850;
    letter-spacing: -.3px;
    color: rgba(255, 255, 255, .92);
    margin-bottom: .15rem;
}

.dialer-call-meta {
    font-size: .85rem;
    color: rgba(255, 255, 255, .68);
    margin-bottom: .65rem;
}

.dialer-call-status {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.dialer-keypad {
    display: grid;
    gap: .75rem;
}

.dialer-keys {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
}

.dialer-key {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(2, 6, 23, .18);
    color: rgba(255, 255, 255, .9);
    font-weight: 850;
    letter-spacing: -.2px;
    user-select: none;
}

.dialer-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.dialer-hangup {
    appearance: none;
    border: 1px solid rgba(239, 68, 68, .35);
    background: rgba(239, 68, 68, .12);
    color: #FECACA;
    border-radius: 12px;
    padding: .85rem 1rem;
    font-weight: 800;
    letter-spacing: -.2px;
    cursor: pointer;
}

.dialer-hangup:hover {
    background: rgba(239, 68, 68, .18);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .55rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2px;
    border: 1px solid rgba(255, 255, 255, .12);
    white-space: nowrap;
}

.badge--green { background: rgba(22, 163, 74, .18); color: #86EFAC; }
.badge--blue { background: rgba(37, 99, 235, .18); color: #BFDBFE; }
.badge--amber { background: rgba(245, 158, 11, .18); color: #FDE68A; }
.badge--purple { background: rgba(168, 85, 247, .18); color: #E9D5FF; }
.badge--red { background: rgba(239, 68, 68, .18); color: #FECACA; }

.features-hero,
.features-section,
.features-final-cta {
    padding: 4rem 0;
}

.features-hero .container,
.features-section .container,
.features-final-cta .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.features-hero {
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.features-hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.features-hero-lead {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 2rem;
}

.features-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.features-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: -.3px;
}

.features-section > p:first-of-type {
    font-size: 1.05rem;
    color: #4B5563;
    margin-bottom: 1.25rem;
}

.features-section--alt {
    background: #F8FAFC;
}

.cards-row {
    display: flex;
    gap: 1.75rem;
    align-items: stretch;
    flex-wrap: nowrap;
}

.card {
    flex: 1;
    max-width: none;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
}

.cards-row > .card {
    /* 2 colonnes : 50% + 50% (en déduisant la moitié du gap) */
    flex: 0 0 calc(50% - 0.875rem);
    max-width: calc(50% - 0.875rem);
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.card--muted {
    background: #F8FAFC;
}

.feature-head {
    margin-bottom: 1rem;
}

.feature-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.5rem;
    align-items: start;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 750;
    letter-spacing: .2px;
    background: rgba(22, 163, 74, .12);
    color: #166534;
    border: 1px solid rgba(22, 163, 74, .25);
    margin-bottom: .75rem;
}

.feature-badge--brain {
    background: rgba(37, 99, 235, .10);
    color: #1E40AF;
    border-color: rgba(37, 99, 235, .25);
}

.feature-badge--rocket {
    background: rgba(245, 158, 11, .12);
    color: #92400E;
    border-color: rgba(245, 158, 11, .25);
}

.feature-badge--chart {
    background: rgba(168, 85, 247, .10);
    color: #6D28D9;
    border-color: rgba(168, 85, 247, .25);
}

.features-section--campaign {
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
}

.card--campaign {
    border-color: rgba(37, 99, 235, .25);
    box-shadow: 0 10px 28px rgba(37, 99, 235, .08);
}

.feature-split--campaign {
    margin-top: .25rem;
}

.steps {
    display: grid;
    gap: .75rem;
    margin-top: 1.25rem;
}

.step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .75rem;
    align-items: start;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    border-radius: 12px;
    padding: .75rem .85rem;
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #1E40AF;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    flex-shrink: 0;
}

.step-title {
    font-weight: 800;
    letter-spacing: -.2px;
    margin-bottom: .1rem;
}

.step-text {
    font-size: .9rem;
    color: #6B7280;
    line-height: 1.35;
}

.campaign-mock {
    background: #0B1220;
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 16px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.campaign-mock-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .35);
}

.campaign-mock-title {
    font-weight: 850;
    letter-spacing: -.3px;
    margin-bottom: .15rem;
}

.campaign-mock-subtitle {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
}

.campaign-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    padding: 1rem 1.1rem 0;
}

.kpi {
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .22);
    border-radius: 12px;
    padding: .75rem .85rem;
}

.kpi-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .62);
    font-weight: 650;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.kpi-value {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.4px;
}

.campaign-progress {
    margin: .9rem 1.1rem 0;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .18);
    overflow: hidden;
}

.campaign-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563EB 0%, #16A34A 100%);
    border-radius: 999px;
}

.campaign-chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .45rem;
    align-items: end;
    padding: 1rem 1.1rem 1.15rem;
}

.campaign-chart .bar {
    border-radius: 8px 8px 4px 4px;
    background: rgba(37, 99, 235, .65);
    border: 1px solid rgba(37, 99, 235, .25);
}

.kpi-big-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin: 1.15rem 0 1rem;
}

.kpi-big {
    border: 1px solid #E5E7EB;
    background: #ffffff;
    border-radius: 14px;
    padding: .9rem 1rem;
}

.kpi-big-value {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -.6px;
    color: #111827;
    line-height: 1.1;
    margin-bottom: .1rem;
}

.kpi-big-label {
    font-size: .85rem;
    color: #6B7280;
    font-weight: 650;
    letter-spacing: .2px;
}

.management-mock {
    background: #0B1220;
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 16px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.management-mock-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .35);
}

.management-mock-title {
    font-weight: 850;
    letter-spacing: -.3px;
    margin-bottom: .15rem;
}

.management-mock-subtitle {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
}

.management-mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    padding: 1rem 1.1rem 1.15rem;
}

.management-panel {
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .22);
    border-radius: 14px;
    padding: .85rem .95rem;
}

.management-panel-title {
    font-size: .75rem;
    color: rgba(255, 255, 255, .62);
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.agent-row,
.campaign-row {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    gap: .55rem;
    align-items: center;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.campaign-row {
    grid-template-columns: 1fr auto;
    gap: .6rem;
}

.agent-row:last-child,
.campaign-row:last-child {
    border-bottom: none;
}

.agent-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .35);
}

.agent-dot--green { background: rgba(34, 197, 94, .85); }
.agent-dot--amber { background: rgba(245, 158, 11, .85); }
.agent-dot--red { background: rgba(239, 68, 68, .85); }

.agent-name,
.campaign-name {
    font-weight: 650;
    color: rgba(255, 255, 255, .9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.management-spark {
    margin-top: .75rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .35rem;
    align-items: end;
}

.management-spark .spark {
    border-radius: 8px 8px 4px 4px;
    background: rgba(168, 85, 247, .55);
    border: 1px solid rgba(168, 85, 247, .25);
}

/* Robot dialer section (identité visuelle dédiée) */

.robot-section {
    position: relative;
    padding: 4.5rem 0;
    background: radial-gradient(900px 450px at 20% 20%, rgba(168, 85, 247, .28) 0%, rgba(168, 85, 247, 0) 60%),
        radial-gradient(800px 420px at 80% 20%, rgba(37, 99, 235, .22) 0%, rgba(37, 99, 235, 0) 62%),
        linear-gradient(135deg, #070A12 0%, #0B1220 55%, #070A12 100%);
    color: #ffffff;
    overflow: hidden;
}

.robot-section::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(500px 220px at 55% 55%, rgba(59, 130, 246, .22) 0%, rgba(59, 130, 246, 0) 60%),
        radial-gradient(460px 200px at 70% 40%, rgba(168, 85, 247, .22) 0%, rgba(168, 85, 247, 0) 60%);
    filter: blur(14px);
    pointer-events: none;
    opacity: .85;
}

.robot-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem;
    align-items: start;
}

.robot-badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .2px;
    background: rgba(168, 85, 247, .16);
    border: 1px solid rgba(168, 85, 247, .28);
    color: #E9D5FF;
    margin-bottom: .9rem;
}

.robot-section h2 {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: .85rem;
}

.robot-lead {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.robot-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    margin-bottom: 1.5rem;
}

.robot-mini {
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .25);
    border-radius: 14px;
    padding: .95rem 1rem;
}

.robot-mini-title {
    font-weight: 850;
    letter-spacing: -.2px;
    margin-bottom: .25rem;
}

.robot-mini-text {
    font-size: .9rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.35;
}

.robot-flow {
    display: grid;
    gap: .35rem;
    margin: 1.25rem 0 1.5rem;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
}

.robot-flow-item {
    border: 1px dashed rgba(148, 163, 184, .25);
    background: rgba(2, 6, 23, .18);
    border-radius: 12px;
    padding: .6rem .8rem;
    width: fit-content;
}

.robot-flow-item--accent {
    border-style: solid;
    border-color: rgba(168, 85, 247, .35);
    background: rgba(168, 85, 247, .12);
    color: #E9D5FF;
    font-weight: 800;
}

.robot-flow-arrow {
    margin-left: .55rem;
    opacity: .8;
}

.robot-cta .btn-primary {
    box-shadow: 0 10px 28px rgba(22, 163, 74, .18);
}

.robot-mock {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .22);
    background: rgba(2, 6, 23, .35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.robot-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .35);
}

.robot-mock-title {
    font-weight: 900;
    letter-spacing: -.3px;
}

.robot-live {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .35px;
    padding: .3rem .6rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, .14);
    border: 1px solid rgba(239, 68, 68, .25);
}

.robot-live::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(239, 68, 68, .9);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, .14);
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: .75; }
}

.robot-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    padding: 1rem 1.1rem 0;
}

.robot-stat {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .65rem;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(2, 6, 23, .22);
    border-radius: 14px;
    padding: .85rem .9rem;
}

.robot-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, .12);
    border: 1px solid rgba(168, 85, 247, .22);
}

.robot-stat-value {
    font-weight: 950;
    font-size: 1.25rem;
    letter-spacing: -.4px;
    line-height: 1.1;
}

.robot-stat-label {
    color: rgba(255, 255, 255, .66);
    font-size: .85rem;
}

.robot-progress {
    margin: 1rem 1.1rem 0;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .16);
    overflow: hidden;
}

.robot-progress-bar {
    height: 100%;
    width: 68%;
    background: linear-gradient(90deg, rgba(168, 85, 247, .95) 0%, rgba(37, 99, 235, .95) 55%, rgba(22, 163, 74, .95) 100%);
    border-radius: 999px;
    animation: progressShift 3.8s ease-in-out infinite;
    transform-origin: left;
}

@keyframes progressShift {
    0%, 100% { transform: scaleX(.92); opacity: .9; }
    50% { transform: scaleX(1); opacity: 1; }
}

.robot-status {
    padding: 1rem 1.1rem 1.2rem;
    display: grid;
    gap: .55rem;
}

.robot-status-row {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    gap: .6rem;
    align-items: center;
    padding: .55rem .75rem;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .14);
    background: rgba(2, 6, 23, .18);
}

.pricing-kpi-mock {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .22);
    background: rgba(2, 6, 23, .35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.pricing-kpi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    background: rgba(2, 6, 23, .35);
}

.pricing-kpi-title {
    font-weight: 900;
    letter-spacing: -.3px;
    color: rgba(255, 255, 255, .92);
}

.pricing-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    padding: 1rem 1.1rem 0;
}

.pricing-kpi-card {
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(2, 6, 23, .22);
    border-radius: 14px;
    padding: .85rem .9rem;
}

.pricing-kpi-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .62);
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.pricing-kpi-value {
    font-size: 1.5rem;
    font-weight: 950;
    letter-spacing: -.5px;
    color: rgba(255, 255, 255, .95);
    line-height: 1.1;
    margin-bottom: .25rem;
}

.pricing-kpi-trend {
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .2px;
    padding: .15rem .45rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    width: fit-content;
}

.pricing-kpi-trend--up {
    background: rgba(34, 197, 94, .14);
    color: #86EFAC;
    border-color: rgba(34, 197, 94, .25);
}

.pricing-kpi-trend--down {
    background: rgba(239, 68, 68, .14);
    color: #FECACA;
    border-color: rgba(239, 68, 68, .25);
}

.pricing-kpi-trend--flat {
    background: rgba(59, 130, 246, .14);
    color: #BFDBFE;
    border-color: rgba(59, 130, 246, .25);
}

.pricing-kpi-progress {
    padding: 1rem 1.1rem 0;
}

.pricing-kpi-progress-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, .75);
    font-size: .85rem;
    font-weight: 650;
    margin-bottom: .5rem;
}

.pricing-kpi-progress-value {
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
}

.pricing-kpi-progress-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .16);
    overflow: hidden;
}

.pricing-kpi-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, .95) 0%, rgba(22, 163, 74, .95) 100%);
    border-radius: 999px;
}

.pricing-kpi-foot {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.dot--blue { background: rgba(59, 130, 246, .95); }
.dot--violet { background: rgba(168, 85, 247, .95); }
.dot--green { background: rgba(34, 197, 94, .95); }

.pill {
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .2px;
    padding: .25rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.pill--blue { background: rgba(59, 130, 246, .16); color: #BFDBFE; }
.pill--violet { background: rgba(168, 85, 247, .16); color: #E9D5FF; }
.pill--green { background: rgba(34, 197, 94, .16); color: #86EFAC; }

@media (max-width: 640px) {
    .robot-section { padding: 3rem 0; }
    .robot-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .robot-mini-grid { grid-template-columns: 1fr; }
}

.feature-strong {
    font-size: 1.05rem;
    font-weight: 650;
    color: #111827;
    margin-bottom: 1.25rem;
}

.timeline {
    position: relative;
    margin-top: 1.25rem;
    display: grid;
    gap: .85rem;
    padding-left: .25rem;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: .75rem;
    align-items: start;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -14px;
    width: 2px;
    background: #E5E7EB;
}

.timeline-item:last-child::before {
    display: none;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: #111827;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
}

.avatar--blue { background: #EFF6FF; border-color: #BFDBFE; color: #1E40AF; }
.avatar--green { background: #F0FDF4; border-color: #BBF7D0; color: #166534; }

.timeline-title {
    font-weight: 750;
    letter-spacing: -.2px;
    margin-bottom: .15rem;
}

.timeline-text {
    font-size: .9rem;
    color: #6B7280;
    line-height: 1.35;
}

.crm-mock {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .12);
}

.crm-mock-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.crm-mock-name {
    font-weight: 800;
    letter-spacing: -.3px;
    margin-bottom: .15rem;
}

.crm-mock-meta {
    font-size: .85rem;
    color: #6B7280;
}

.crm-mock-tags {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.crm-mock-panels {
    padding: 1rem 1.1rem;
    display: grid;
    gap: .75rem;
}

.crm-panel {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: .85rem .95rem;
    background: #ffffff;
}

.crm-panel-title {
    font-size: .8rem;
    color: #6B7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: .5rem;
}

.crm-panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.crm-panel-muted {
    font-size: .85rem;
    color: #6B7280;
    white-space: nowrap;
}

.crm-panel-text {
    font-size: .92rem;
    color: #374151;
    line-height: 1.35;
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.mini-card {
    border: 1px solid #E5E7EB;
    background: #ffffff;
    border-radius: 12px;
    padding: .85rem .95rem;
}

.mini-card-title {
    font-weight: 750;
    letter-spacing: -.2px;
    margin-bottom: .2rem;
}

.mini-card-text {
    font-size: .9rem;
    color: #6B7280;
    line-height: 1.35;
}

.dialer-mock--compact .dialer-mock-body {
    padding: .9rem;
}

.dialer-mock--compact .dialer-mock-row {
    padding: .65rem .75rem;
}

.dialer-mock--compact .dialer-mock-actions {
    margin-top: .25rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.features-list li {
    position: relative;
    padding: .55rem 0 .55rem 2rem;
    font-size: 1rem;
    color: #1F2937;
    border-bottom: 1px solid #F3F4F6;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .55rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #DCFCE7;
    color: #16A34A;
    font-weight: 700;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features-punchline {
    margin-top: 1.5rem;
    padding: .85rem 1.25rem;
    background: #EFF6FF;
    border-left: 3px solid #2563EB;
    color: #1E40AF;
    font-style: italic;
    font-weight: 500;
    border-radius: 0 6px 6px 0;
}

.solutions-target {
    margin: -.25rem 0 .25rem 0;
    color: #6B7280;
    font-size: .9rem;
    font-style: italic;
}

/* ── /forfaits — page tarifs ─────────────────────────────── */

/* La page tarifs enchaîne beaucoup de sections : on réduit le padding vertical
   pour éviter une page trop "longue". Ciblage via :has(.pricing-plans-grid). */
main:has(.pricing-plans-grid) .features-section,
main:has(.pricing-plans-grid) .features-final-cta {
    padding: 2.5rem 0;
}

/* Titre "Comparez les forfaits" : rapproché de la grille de tarifs */
main:has(.pricing-plans-grid) .pricing-compare-head {
    padding-bottom: .75rem;
}

main:has(.pricing-plans-grid) .pricing-compare-title {
    text-align: center;
    margin-bottom: 0;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-plan-tile {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
}

.pricing-plan-tile--alt {
    background: #F8FAFC;
}

.pricing-plan-tile .features-list {
    margin-bottom: 1.25rem;
}

.pricing-plan-tile .pricing-plan-header h2 {
    margin-top: 0;
}

/* ── /forfaits — Europe + consommation (deux colonnes) ─── */

.pricing-calls-two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    align-items: start;
}

.pricing-calls-two-cols .pricing-europe-head {
    text-align: left;
    max-width: none;
    margin: 0 0 1.25rem;
}

.pricing-calls-two-cols .pricing-europe-card {
    max-width: none;
    margin: 0;
}

.pricing-consumption-intro {
    font-size: .95rem;
    line-height: 1.55;
    color: #374151;
    margin: 0 0 .65rem;
}

.pricing-consumption-intro:last-of-type {
    margin-bottom: 0;
}

.pricing-consumption-card .pricing-europe-table {
    margin-bottom: 1.35rem;
}

.pricing-consumption-block-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #111827;
    margin: 0 0 .85rem;
}

.pricing-consumption-card .pricing-consumption-block-title:not(:first-child) {
    margin-top: 1rem;
}

.pricing-consumption-recharge {
    margin: 0 0 .85rem;
    font-size: .95rem;
}

@media (max-width: 900px) {
    .pricing-calls-two-cols {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .pricing-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ── /forfaits — Europe francophone (option tarifs) ─────── */

.pricing-europe-head {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 1.75rem;
}

.pricing-europe-head h2 {
    font-size: 1.5rem;
    margin-bottom: .75rem;
}

.pricing-europe-lead {
    font-size: 1.05rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: .5rem;
}

.pricing-europe-intro {
    margin-bottom: 0;
}

.pricing-europe-card {
    max-width: 42rem;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
}

.pricing-europe-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
}

.pricing-europe-table th,
.pricing-europe-table td {
    padding: .85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #F3F4F6;
}

.pricing-europe-table th {
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #6B7280;
    background: #F9FAFB;
}

.pricing-europe-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-europe-table td:last-child {
    font-weight: 700;
    color: #111827;
    font-variant-numeric: tabular-nums;
}

.pricing-europe-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .55rem;
}

.pricing-europe-benefits li {
    position: relative;
    padding-left: 1.6rem;
    font-size: .95rem;
    color: #374151;
    font-weight: 500;
}

.pricing-europe-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: .05rem;
    color: #16A34A;
    font-weight: 800;
}

@media (max-width: 640px) {
    .pricing-europe-card {
        padding: 1.25rem 1.1rem;
    }

    .pricing-europe-table th,
    .pricing-europe-table td {
        padding: .65rem .75rem;
        font-size: .9rem;
    }
}

/* ── Homepage pricing (simplifié) ───────────────────────── */

.pricing-home-head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.pricing-home-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.pricing-home-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 1.5rem;
}

.pricing-home-card--featured {
    border-color: rgba(37, 99, 235, .35);
    box-shadow: 0 14px 36px rgba(37, 99, 235, .12);
    transform: translateY(-4px);
}

.pricing-home-featured {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .35px;
    color: #ffffff;
    background: #2563EB;
    border-radius: 999px;
    padding: .25rem .6rem;
    margin-bottom: .75rem;
}

.pricing-home-title {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -.3px;
    margin-bottom: .5rem;
}

.pricing-home-price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    margin-bottom: 1rem;
    color: #6B7280;
}

.pricing-home-price strong {
    font-size: 2rem;
    font-weight: 950;
    letter-spacing: -.6px;
    color: #111827;
}

.pricing-home-price span {
    font-size: .95rem;
}

.pricing-home-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .5rem;
}

.pricing-home-points li {
    position: relative;
    padding-left: 1.6rem;
    color: #374151;
    font-size: .95rem;
}

.pricing-home-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .05rem;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    background: #DCFCE7;
    color: #16A34A;
    font-weight: 900;
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-home-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

/* ── Homepage reassurance (téléphonie) ──────────────────── */

.reassurance-section {
    background: #ffffff;
}

.reassurance-head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.reassurance-item {
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    border-radius: 14px;
    padding: 1.1rem 1rem;
}

.reassurance-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    margin-bottom: .75rem;
}

.reassurance-title {
    font-weight: 900;
    letter-spacing: -.2px;
    margin-bottom: .25rem;
}

.reassurance-text {
    font-size: .9rem;
    color: #6B7280;
    line-height: 1.35;
}

.pricing-plan {
    position: relative;
}

.pricing-plan-header {
    margin-bottom: 1.25rem;
}

.pricing-plan-header h2 {
    font-size: 1.6rem;
    margin-bottom: .5rem;
}

.pricing-price {
    font-size: 1rem;
    color: #6B7280;
    margin: 0 0 .5rem 0;
}

.pricing-price strong {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-right: .25rem;
}

.pricing-price em {
    font-style: normal;
    color: #4B5563;
    font-size: .95rem;
}

.pricing-baseline {
    color: #4B5563;
    font-size: 1.05rem;
    margin: 0;
}

/* Bandeau "Le plus populaire" sur Pro */
.pricing-plan--popular {
    border-top: 4px solid #2563EB;
    border-bottom: 4px solid #2563EB;
    background: #ffffff;
    position: relative;
}

.pricing-popular {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: #2563EB;
    color: #ffffff;
    padding: .35rem 1rem;
    border-radius: 0 0 6px 6px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .3px;
}

/* Module Robot — encadré bleu pâle */
.pricing-robot {
    padding: 4rem 0;
    background: #EFF6FF;
    border-top: 1px solid #BFDBFE;
    border-bottom: 1px solid #BFDBFE;
}

.pricing-robot .container { padding-left: 2rem; padding-right: 2rem; }

.pricing-robot .pricing-price strong {
    color: #1E40AF;
}

/* Inclus dans toutes les offres */
.pricing-included {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
}

.pricing-included .container { padding-left: 2rem; padding-right: 2rem; }

.pricing-included h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-included-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    text-align: left;
    margin: 0 auto;
    max-width: 1100px;
}

.pricing-included-card {
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    border-radius: 14px;
    padding: 1.1rem 1rem;
}

.pricing-included-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    margin-bottom: .75rem;
}

.pricing-included-title {
    font-weight: 900;
    letter-spacing: -.2px;
    margin-bottom: .35rem;
}

.pricing-included-text {
    font-size: .92rem;
    color: #6B7280;
    line-height: 1.35;
}

.pricing-included-banner {
    margin: 1.25rem auto 0;
    max-width: 1100px;
    border: 1px solid #BFDBFE;
    background: #EFF6FF;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    text-align: left;
}

.pricing-included-banner-title {
    font-weight: 900;
    letter-spacing: -.2px;
    margin-bottom: .15rem;
    color: #1E40AF;
}

.pricing-included-banner-text {
    color: #1E40AF;
    font-weight: 600;
    margin: 0;
}

/* FAQ */
.pricing-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-faq-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.pricing-faq-item:last-child {
    margin-bottom: 0;
}

.pricing-faq-item h3 {
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: .5rem;
    font-weight: 600;
}

.pricing-faq-item p {
    margin-bottom: .5rem;
    color: #374151;
}

.pricing-faq-item p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pricing-plan-tile {
        padding: 1.5rem;
    }

    .pricing-popular { right: 1rem; font-size: .7rem; }
    .pricing-price strong { font-size: 1.6rem; }
    .pricing-robot,
    .pricing-included { padding: 2.5rem 0; }
    .pricing-robot .container,
    .pricing-included .container { padding-left: 1.25rem; padding-right: 1.25rem; }

    .pricing-included-grid {
        grid-template-columns: 1fr;
        gap: .85rem;
    }
}

.features-final-cta {
    text-align: center;
    background: #111827;
    color: #ffffff;
}

.features-final-cta h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.features-final-cta > p:first-of-type {
    color: #D1D5DB;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.features-final-cta .btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.features-final-cta .btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

@media (max-width: 640px) {
    .features-hero h1 { font-size: 1.8rem; }
    .features-section h2 { font-size: 1.35rem; }
    .features-hero,
    .features-section,
    .features-final-cta { padding: 2.5rem 0; }
    .features-hero .container,
    .features-section .container,
    .features-final-cta .container { padding-left: 1.25rem; padding-right: 1.25rem; }

    .card { padding: 1.5rem; }

    .feature-split {
        grid-template-columns: 1fr;
    }

    .mini-cards {
        grid-template-columns: 1fr;
    }

    .cards-grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .campaign-kpis {
        grid-template-columns: 1fr;
    }

    .kpi-big-cards {
        grid-template-columns: 1fr;
    }

    .management-mock-grid {
        grid-template-columns: 1fr;
    }

    .pricing-home-grid {
        grid-template-columns: 1fr;
    }

    .pricing-home-card--featured {
        transform: none;
    }

    .reassurance-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 3rem 0;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .home-hero h1 {
        font-size: 2.1rem;
    }
}
