:root{
    --bg:#f3f7fb;
    --card:#ffffff;
    --text:#081524;
    --muted:#536070;
    --line:#dbe4ef;
    --green:#06c95a;
    --green-dark:#038f40;
    --blue:#2563eb;
    --orange:#f59e0b;
    --purple:#7c3aed;
    --shadow:0 24px 70px rgba(17,37,58,.10);
    --shadow-soft:0 14px 40px rgba(17,37,58,.08);
    --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at 7% 12%,rgba(6,201,90,.10),transparent 28rem),
        linear-gradient(135deg,#f8fbff 0%,var(--bg) 52%,#eef3f9 100%);
    line-height:1.55;
}
body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background:linear-gradient(90deg,rgba(210,238,220,.24),transparent 30%,rgba(216,233,255,.22));
    z-index:-1;
}
a{color:inherit;text-decoration:none}
p{margin:0 0 1rem;color:var(--muted)}
h1,h2,h3{margin:0;color:var(--text);line-height:1.04;letter-spacing:-.045em}

/* Header horizontal */
.topbar{
    width:min(calc(100% - 32px),var(--container));
    min-height:74px;
    margin:18px auto 0;
    padding:12px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    border:1px solid var(--line);
    border-radius:24px;
    background:rgba(255,255,255,.88);
    box-shadow:var(--shadow-soft);
    backdrop-filter:blur(16px);
    position:sticky;
    top:14px;
    z-index:50;
}
.brand{
    font-size:1.28rem;
    font-weight:950;
    letter-spacing:-.05em;
}
.brand-fr{
    color:var(--green);
}

.main-nav{
    display:flex;
    gap:4px;
    padding:4px;
    border:1px solid #e7edf5;
    border-radius:16px;
    background:#f8fafc;
}
.main-nav a{
    min-height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 13px;
    border-radius:12px;
    color:#435064;
    font-size:.94rem;
    font-weight:850;
    position:relative;
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:6px;
    width:0;
    height:2px;
    border-radius:999px;
    background:var(--green);
    transform:translateX(-50%);
}
.main-nav a:hover{
    color:var(--text);
    background:#fff;
    box-shadow:0 5px 18px rgba(16,31,48,.07);
}
.main-nav a.is-active{
    color:var(--text);
    background:transparent;
    box-shadow:none;
}
.main-nav a.is-active::after{
    width:46px;
}



.top-actions{
    display:flex;
    align-items:center;
    gap:10px;
}
.login-link{
    color:#435064;
    font-weight:850;
}
.trial-link{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 15px;
    border-radius:14px;
    background:var(--green);
    color:#052e16;
    font-weight:950;
    box-shadow:0 14px 30px rgba(6,201,90,.20);
}

/* Buttons */
.btn{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    padding:0 18px;
    font-weight:950;
    border:1px solid transparent;
}
.btn-primary{
    background:var(--green);
    color:#052e16;
    box-shadow:0 16px 32px rgba(6,201,90,.20);
}
.btn-secondary{
    background:#fff;
    color:var(--text);
    border-color:var(--line);
}

/* Home */
.hero-saas{
    width:min(calc(100% - 44px),var(--container));
    margin:0 auto;
    padding:54px 0 24px;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,.72fr);
    gap:42px;
    align-items:center;
}
.trust-badge{
    width:max-content;
    max-width:100%;
    margin:0 0 18px;
    padding:6px 12px;
    border:1px solid rgba(3,143,64,.25);
    border-radius:999px;
    background:rgba(6,201,90,.13);
    color:#075b2c;
    font-size:.82rem;
    font-weight:950;
}
.hero-copy h1{
    max-width:780px;
    font-size:clamp(2.8rem,5vw,5.25rem);
    line-height:.96;
    letter-spacing:-.07em;
}
.hero-lead{
    max-width:720px;
    margin:20px 0 0;
    color:#39475b;
    font-size:clamp(1.08rem,1.55vw,1.3rem);
}
.hero-punch{
    margin:6px 0 0;
    color:var(--text);
    font-size:1.08rem;
    font-weight:950;
}
.done-row{
    display:grid;
    gap:9px;
    max-width:650px;
    margin:22px 0 0;
}
.done-row div{
    min-height:44px;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
    padding:10px 13px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.90);
    box-shadow:0 10px 24px rgba(17,37,58,.045);
}
.done-row span{
    color:var(--text);
    font-weight:900;
}
.done-row strong{
    padding:5px 10px;
    border:1px solid rgba(6,201,90,.28);
    border-radius:999px;
    background:rgba(6,201,90,.18);
    color:#052e16;
    font-size:.92rem;
    font-weight:950;
    white-space:nowrap;
}
.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}
.hero-note{
    margin:10px 0 0;
    color:#6b7687;
    font-size:.92rem;
}

/* Mockup */
.product-mockup{
    border:1px solid var(--line);
    border-radius:28px;
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow);
    padding:16px;
    transform:rotate(-1deg) scale(.92);
    transform-origin:center;
}
.mockup-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    margin-bottom:12px;
}
.mockup-top span{
    display:block;
    color:var(--muted);
    font-size:.78rem;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.mockup-top strong{
    display:block;
    color:var(--text);
    font-size:1.14rem;
    letter-spacing:-.03em;
}
.mockup-top em{
    min-height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 12px;
    border-radius:13px;
    background:var(--green);
    color:#052e16;
    font-style:normal;
    font-size:.82rem;
    font-weight:950;
    white-space:nowrap;
}
.mockup-kpis{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
}
.mockup-kpis div,.mockup-chart,.mockup-list div{
    border:1px solid var(--line);
    background:#f8fafc;
    border-radius:16px;
}
.mockup-kpis div{
    padding:11px;
}
.mockup-kpis span{
    display:block;
    color:var(--muted);
    font-size:.7rem;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.mockup-kpis strong{
    display:block;
    margin-top:5px;
    color:var(--text);
    font-size:1.65rem;
    line-height:1;
    letter-spacing:-.05em;
}
.mockup-chart{
    margin-top:8px;
    min-height:118px;
    padding:12px;
    display:grid;
    grid-template-columns:1fr 90px;
    gap:16px;
    align-items:center;
}
.bars{
    height:72px;
    display:flex;
    align-items:end;
    gap:8px;
}
.bars i{
    flex:1;
    min-width:12px;
    border-radius:9px 9px 3px 3px;
    background:linear-gradient(180deg,#22c55e,#059669);
}
.donut{
    width:70px;
    height:70px;
    border-radius:50%;
    background:conic-gradient(#06c95a 0 68%,#d8e9ff 68% 100%);
    position:relative;
}
.donut::after{
    content:"";
    position:absolute;
    inset:16px;
    border-radius:50%;
    background:#f8fafc;
}
.mockup-list{
    display:grid;
    gap:6px;
    margin-top:8px;
}
.mockup-list div{
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0 12px;
}
.mockup-list span,.mockup-list strong{
    font-weight:900;
}
.mockup-list strong{
    color:var(--green-dark);
}

/* Confidence */
.confidence-bar{
    width:min(calc(100% - 44px),var(--container));
    margin:0 auto;
    padding:14px 16px;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
    border:1px solid var(--line);
    border-radius:22px;
    background:rgba(255,255,255,.78);
    box-shadow:var(--shadow-soft);
}
.confidence-bar span{
    color:#374151;
    font-size:.9rem;
    font-weight:900;
    text-align:center;
}

/* Teasers */
.feature-teasers{
    width:min(calc(100% - 44px),var(--container));
    margin:18px auto 0;
}
.section-label{
    margin:0 0 12px;
    color:var(--muted);
    font-size:.78rem;
    font-weight:950;
    letter-spacing:.13em;
    text-align:center;
    text-transform:uppercase;
}
.teaser-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
}
.teaser-grid article{
    padding:18px;
    border:1px solid var(--line);
    border-radius:20px;
    background:rgba(255,255,255,.86);
    box-shadow:var(--shadow-soft);
}
.ico{
    width:30px;
    height:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
    border-radius:9px;
    font-size:.85rem;
    font-weight:950;
}
.ico.blue{background:rgba(37,99,235,.13);color:var(--blue)}
.ico.green{background:rgba(6,201,90,.14);color:var(--green-dark)}
.ico.orange{background:rgba(245,158,11,.18);color:#a16207}
.ico.purple{background:rgba(124,58,237,.14);color:var(--purple)}
.teaser-grid strong{
    display:block;
    color:var(--text);
    font-size:1.04rem;
}
.teaser-grid p{
    margin:6px 0 0;
    font-weight:700;
    line-height:1.35;
}

/* Pricing home */
.home-pricing{
    width:min(calc(100% - 44px),var(--container));
    margin:18px auto 0;
    padding:24px;
    text-align:center;
    border:1px solid var(--line);
    border-radius:24px;
    background:rgba(255,255,255,.80);
    box-shadow:var(--shadow-soft);
}
.home-pricing h2{
    font-size:clamp(1.6rem,3vw,2.4rem);
}
.home-pricing p{
    margin:6px 0 16px;
}

/* Pages internes */
.section,.page-hero{
    width:min(calc(100% - 44px),var(--container));
    margin-inline:auto;
}
.page-hero{padding:56px 0 24px}
.page-hero h1{
    max-width:860px;
    font-size:clamp(2.35rem,5vw,4.6rem);
}
.page-hero p{
    max-width:760px;
    margin-top:18px;
    font-size:clamp(1.05rem,1.7vw,1.25rem);
}
.section{padding:34px 0}
.eyebrow{
    margin:0 0 12px;
    color:var(--green-dark);
    font-size:.8rem;
    font-weight:950;
    letter-spacing:.13em;
    text-transform:uppercase;
}
.grid-2,.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}
.feature-grid,.price-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}
.card,.feature-card,.price-card,.contact-card,.large-card,.cta-panel,.notice{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow-soft);
    padding:24px;
}
.band{
    width:min(calc(100% - 44px),var(--container));
    border-radius:34px;
    padding:28px;
    background:rgba(238,248,242,.62);
    border:1px solid rgba(6,201,90,.12);
}
.feature-card h2,.feature-card h3,.price-card h2,.price-card h3,.contact-card h2,.contact-card h3,.card h3{
    font-size:1.3rem;
    margin-bottom:10px;
}
.check-list{
    margin:16px 0 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}
.check-list li{
    position:relative;
    padding-left:24px;
    color:var(--muted);
    font-weight:750;
}
.check-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--green-dark);
    font-weight:950;
}
.price{margin:16px 0}
.price strong{
    display:block;
    font-size:clamp(2rem,4vw,3rem);
    color:var(--text);
}
.price span{color:var(--muted);font-weight:800}
.price-actions,.cta-panel{display:flex;flex-wrap:wrap;gap:12px}
.price-card.is-featured{
    border-color:rgba(6,201,90,.35);
    box-shadow:0 24px 70px rgba(6,201,90,.12);
}
.notice{background:rgba(216,233,255,.45)}
.contact-card form{display:grid;gap:14px}
.field{display:grid;gap:6px}
.field label{color:var(--text);font-weight:850}
.field input,.field textarea{
    width:100%;
    border:1px solid var(--line);
    border-radius:14px;
    padding:12px 13px;
    font:inherit;
    background:#f8fafc;
}
.form-note{font-size:.92rem}
.workflow{display:grid;gap:12px}
.cta-panel{align-items:center;justify-content:space-between}

/* Footer */
.site-footer{
    width:min(calc(100% - 44px),var(--container));
    margin:18px auto 16px;
    padding:18px 20px;
    border:1px solid var(--line);
    border-radius:22px;
    background:rgba(255,255,255,.76);
    box-shadow:var(--shadow-soft);
}
.site-footer strong{
    color:var(--text);
    font-weight:950;
}
.site-footer p{
    margin:4px 0 0;
}
.footer-note{
    margin-top:10px!important;
    font-size:.9rem;
}

/* Responsive */
@media(max-width:1050px){
    .hero-saas{grid-template-columns:1fr}
    .product-mockup{max-width:650px}
    .confidence-bar,.teaser-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .feature-grid,.price-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:850px){
    .topbar{align-items:stretch;flex-wrap:wrap}
    .main-nav{order:3;width:100%;overflow-x:auto}
    .top-actions{margin-left:auto}
    .grid-2,.contact-grid,.cta-panel{grid-template-columns:1fr}
}
@media(max-width:640px){
    .hero-saas,.confidence-bar,.feature-teasers,.home-pricing,.section,.page-hero,.site-footer{
        width:min(calc(100% - 24px),var(--container));
    }
    .hero-saas{padding-top:34px}
    .hero-copy h1{font-size:2.65rem}
    .done-row div,.mockup-chart{grid-template-columns:1fr}
    .mockup-kpis,.confidence-bar,.teaser-grid,.feature-grid,.price-grid{grid-template-columns:1fr}
    .top-actions{width:100%;justify-content:space-between}
    .trial-link{flex:1}
}

/* Ajustements home après revue */
body {
    background:
        radial-gradient(circle at 8% 16%, rgba(6, 201, 90, .13), transparent 30rem),
        radial-gradient(circle at 82% 18%, rgba(216, 233, 255, .55), transparent 34rem),
        linear-gradient(135deg, #f7fbff 0%, #eef6fb 46%, #edf7f1 100%);
}

.nowrap {
    white-space: nowrap;
}

.hero-copy h1 {
    max-width: 900px;
    font-size: clamp(2.65rem, 4.25vw, 4.45rem);
}

.product-mockup {
    padding-bottom: 16px;
}

.mockup-chart {
    margin-bottom: 0;
}

.mockup-list {
    display: none;
}

.feature-teasers {
    margin-top: 18px;
}

.confidence-bar {
    margin-top: 18px;
}

.home-pricing {
    display: none;
}

/* Hero v2 : titre pleine largeur, cartouches + mockup alignés */
.hero-v2 {
    padding-top: 34px;
    padding-bottom: 14px;
    display: block;
}

.hero-head {
    max-width: 1120px;
    margin: 0 auto 18px;
    text-align: center;
}

.hero-head .trust-badge {
    margin-left: auto;
    margin-right: auto;
}

.hero-head h1 {
    max-width: none;
    font-size: clamp(2.35rem, 3.65vw, 4rem);
    line-height: .98;
    letter-spacing: -.065em;
}

.nowrap {
    white-space: nowrap;
}

.hero-head .hero-lead {
    max-width: 980px;
    margin: 14px auto 0;
    text-align: center;
}

.hero-head .hero-punch {
    text-align: center;
    margin-top: 4px;
}

.hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 22px;
    align-items: stretch;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left .done-row {
    max-width: none;
    margin-top: 0;
}

.hero-left .done-row div {
    min-height: 50px;
}

.hero-left .hero-actions {
    margin-top: 16px;
}

.product-mockup {
    transform: none;
    width: 100%;
    min-height: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mockup-chart {
    flex: 1;
}

.feature-teasers {
    margin-top: 12px;
}

@media(max-width:1050px){
    .hero-main {
        grid-template-columns: 1fr;
    }
}

/* Correction sous-titre hero : une ligne plus lisible */
.hero-head .hero-lead {
    max-width: 1120px;
    white-space: nowrap;
    font-size: clamp(.98rem, 1.18vw, 1.12rem);
    letter-spacing: -.01em;
    line-height: 1.35;
}

/* Ajustement final home : retrait punchline + respiration */
.hero-head {
    margin-bottom: 24px;
}

.hero-head .hero-lead {
    margin-top: 12px;
}

.hero-punch {
    display: none;
}

.feature-teasers {
    margin-top: 24px;
}

.section-label {
    margin-bottom: 14px;
}

/* V3 accueil : hiérarchie, animation Déjà fait, réassurance */
.hero-v2 {
    padding-top: 26px;
}

.hero-head h1 {
    font-size: clamp(2.15rem, 3.2vw, 3.55rem);
    line-height: 1;
}

.main-nav a.is-active {
    background: transparent;
    color: var(--green-dark);
    box-shadow: none;
    font-weight: 950;
}

.main-nav a.is-active::after {
    content: "";
    display: block;
    height: 3px;
    width: 18px;
    margin: 5px auto 0;
    border-radius: 999px;
    background: var(--green);
}

.done-animated div strong {
    position: relative;
    overflow: hidden;
    transform-origin: center;
    animation: dejaStamp 3.6s ease-in-out infinite;
}

.done-animated div:nth-child(2) strong {
    animation-delay: .45s;
}

.done-animated div:nth-child(3) strong {
    animation-delay: .9s;
}

@keyframes dejaStamp {
    0%, 72%, 100% {
        transform: scale(1);
        box-shadow: none;
    }
    8% {
        transform: scale(1.08) rotate(-1deg);
        box-shadow: 0 8px 18px rgba(6,201,90,.18);
    }
    14% {
        transform: scale(.98);
    }
}

.mockup-chart {
    grid-template-columns: minmax(0, 1fr) 116px;
    align-items: stretch;
}

.mockup-chart-block {
    display: grid;
    gap: 8px;
    align-content: center;
}

.mockup-mini-label {
    display: block;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.donut-block {
    justify-items: center;
    text-align: center;
}

.confidence-strip {
    width: min(calc(100% - 44px), var(--container));
    margin: 18px auto 0;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.78);
    box-shadow: var(--shadow-soft);
}

.confidence-strip span {
    color: #374151;
    font-size: .86rem;
    font-weight: 900;
    text-align: center;
}

.feature-teasers {
    margin-top: 18px;
}

@media(max-width:1050px) {
    .confidence-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:640px) {
    .confidence-strip {
        width: min(calc(100% - 24px), var(--container));
        grid-template-columns: 1fr;
    }
}

/* V3 : bandeau confiance sous les cartes, 4 éléments */
.confidence-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 16px;
}

/* V4 : crédibilité, hiérarchie, footer sérieux */
.hero-head h1 {
    font-size: clamp(2rem, 2.72vw, 3.15rem);
    line-height: 1.02;
}

.hero-head .hero-lead {
    margin-top: 10px;
}

/* URSSAF en ambre dans le mockup */
.mockup-kpis div:nth-child(2) {
    background: #faeeda;
    border-color: #f3d79b;
}

.mockup-kpis div:nth-child(2) span,
.mockup-kpis div:nth-child(2) strong {
    color: #854f0b;
}

/* Bandeau confiance plus crédible */
.confidence-strip {
    background: #f4fbf8;
    border-color: rgba(6, 201, 90, .18);
    box-shadow: 0 14px 34px rgba(17, 37, 58, .07);
}

.confidence-strip span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    background: rgba(255,255,255,.72);
}

.confidence-strip b {
    font-size: 1rem;
    line-height: 1;
}

/* Footer V4 */
.footer-v4 {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    gap: 22px;
    align-items: start;
}

.footer-v4 div {
    display: grid;
    gap: 7px;
}

.footer-v4 strong {
    margin-bottom: 2px;
}

.footer-v4 a,
.footer-v4 span {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 750;
}

.footer-v4 a:hover {
    color: var(--green-dark);
}

.footer-v4 .footer-note {
    grid-column: 1 / -1;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

@media(max-width:850px) {
    .footer-v4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .footer-v4 {
        grid-template-columns: 1fr;
    }
}

/* Footer compact V5 */
.footer-compact {
    margin-top: 14px;
    padding: 14px 18px;
    display: grid;
    gap: 8px;
}

.footer-compact p {
    margin: 0;
}

.footer-compact nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 6px;
    border-top: 1px solid var(--line);
}

.footer-compact nav a {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 850;
}

.footer-compact nav a:nth-child(2) {
    text-align: center;
}

.footer-compact nav a:nth-child(3) {
    text-align: right;
}

.footer-compact .footer-note {
    margin-top: 0 !important;
    font-size: .82rem;
}

/* Footer légal seul */
.footer-legal-only {
    margin-top: 12px;
    padding: 12px 18px;
    display: grid;
    gap: 8px;
    text-align: center;
}

.footer-legal-only nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-legal-only nav a {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 850;
}

.footer-legal-only nav a:hover {
    color: var(--green-dark);
}

.footer-legal-only .footer-note {
    margin: 0 !important;
    font-size: .82rem;
    text-align: center;
}

/* Micro-finitions home validée */
.hero-head .trust-badge {
    margin-bottom: 10px;
}

.confidence-strip span {
    gap: 10px;
    line-height: 1;
}

.confidence-strip span b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    line-height: 1;
}

/* Marque header avec .fr */
.brand span {
    font-size: .72em;
    color: var(--green-dark);
    margin-left: 1px;
}

/* Ajustement .fr dans le logo */
.brand span {
    font-size: .82em;
    color: var(--text);
    margin-left: 1px;
    font-weight: 950;
}

/* deja-fait fonctionnalites interactive cards */
.page-hero-compact{padding-bottom:22px}
.section-tight{padding-top:14px}
.feature-hint{
  margin-top:14px;
  font-size:.98rem;
  color:#5d6b7a;
}
.feature-grid-4{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.feature-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor:pointer;
}
.feature-card-link:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 38px rgba(15,23,42,.10);
}
.feature-card-link h2{
  margin-bottom:12px;
}
@media (max-width: 900px){
  .feature-grid-4{
    grid-template-columns:1fr;
  }
}

/* deja-fait fonctionnalites centered polish */
.features-hero{
  text-align:center;
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
  padding-top:58px;
  padding-bottom:26px;
}
.features-hero h1{
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}
.features-hero > p:not(.feature-hint){
  max-width:690px;
  margin-left:auto;
  margin-right:auto;
}
.features-hero .feature-hint{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  padding:9px 15px;
  border:1px solid rgba(6,182,92,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 24px rgba(15,23,42,.05);
  color:#314255;
  font-weight:700;
  font-size:.92rem;
}
.feature-grid-4{
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:20px !important;
}
.feature-grid-4 .feature-card{
  min-height:138px;
}
.feature-grid-4 .feature-card h2{
  font-size:1.22rem;
}
.feature-grid-4 .feature-card p{
  font-size:.98rem;
}
@media (max-width: 760px){
  .features-hero{
    text-align:left;
    padding-top:38px;
  }
  .features-hero h1,
  .features-hero > p:not(.feature-hint){
    margin-left:0;
    margin-right:0;
  }
  .feature-grid-4{
    grid-template-columns:1fr !important;
  }
}


