:root {
    --green-950: #13270e;
    --green-900: #1d3a15;
    --green-800: #28531e;
    --green-700: #356a28;
    --green-100: #e7efe3;
    --green-50: #f4f8f1;
    --gold: #c79a43;
    --ink: #172016;
    --muted: #5e6a5d;
    --paper: #fbfbf7;
    --line: #dfe6da;
    --shadow: 0 18px 45px rgba(19, 39, 14, 0.12);
    --radius: 8px;
    --container: min(1180px, calc(100% - 40px));
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}
.container {
    width: var(--container);
    margin-inline: auto;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    background: #fff;
    padding: 10px 16px;
    z-index: 1000;
}
.skip-link:focus {
    top: 10px;
}
.topbar {
    background: var(--green-950);
    color: #e9f1e5;
    font-size: 0.83rem;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}
.topbar a:hover {
    text-decoration: underline;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 251, 247, 0.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(40, 83, 30, 0.1);
}
.site-header__inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}
.brand img {
    width: 58px;
    height: 58px;
    /* object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--line); */
}
.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand__text strong {
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    color: var(--green-900);
}
.brand__text small {
    font-size: 0.74rem;
    color: var(--muted);
    margin-top: 6px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 23px;
    font-weight: 650;
    font-size: 0.94rem;
}
.main-nav > a:not(.btn) {
    position: relative;
    padding: 28px 0;
}
.main-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 19px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: 0.2s;
}
.main-nav > a:hover::after,
.main-nav > a.is-active::after {
    transform: scaleX(1);
}
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
}
.nav-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--green-900);
    margin: 6px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 5px;
    background: var(--green-800);
    color: #fff;
    font-weight: 750;
    border: 1px solid var(--green-800);
    transition: 0.2s;
    cursor: pointer;
}
.btn-full {
    width: 100%;
}
.btn:hover {
    color: #fff;
    background: var(--green-900);
    transform: translateY(-1px);
}
.btn--small {
    min-height: 42px;
    padding: 0 18px;
}
.btn--outline {
    background: transparent;
    color: var(--green-900);
}
.btn--light {
    background: #fff;
    color: var(--green-900);
    border-color: #fff;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--green-700);
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}
h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.12;
    margin: 0 0 18px;
    color: var(--green-950);
}
h1 {
    font-size: clamp(2.65rem, 6vw, 5.6rem);
    letter-spacing: -0.045em;
}
h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -0.025em;
}
h3 {
    font-size: 1.42rem;
}
.lead {
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    color: var(--muted);
    max-width: 760px;
}
.hero {
    min-height: 690px;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            rgba(19, 39, 14, 0.9) 0%,
            rgba(19, 39, 14, 0.55) 50%,
            rgba(19, 39, 14, 0.15) 100%
        ),
        url("../images/equipe-bce.jpg") center/cover;
}
.hero__content {
    padding: 105px 0 90px;
    max-width: 790px;
    color: #fff;
}
.hero h1,
.hero .eyebrow {
    color: #fff;
}
.hero p {
    font-size: 1.22rem;
    max-width: 700px;
    color: #e4eadf;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 58px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.hero__facts strong {
    display: block;
    font-size: 1.5rem;
    font-family: Georgia, serif;
}
.hero__facts span {
    font-size: 0.82rem;
    color: #d7e2d2;
}
.section {
    padding: 100px 0;
}
.section--soft {
    background: var(--green-50);
}
.section--dark {
    background: var(--green-950);
    color: #edf2ea;
}
.section--dark h2,
.section--dark h3 {
    color: #fff;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 48px;
}
.section-head > div:first-child {
    max-width: 760px;
}
.section-head p {
    color: var(--muted);
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(22, 50, 16, 0.04);
    transition: 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.card__head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}
.card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--green-100);
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    font-weight: 900;
    color: var(--green-800);
}
.card__head .card__icon {
    width: 100%;
    margin-bottom: 0;
}
.card__icon i {
    font-size: 2.25rem;
}
.card p {
    color: var(--muted);
}
.text-link {
    color: var(--green-800);
    font-weight: 800;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.text-link:before {
    content: "";
    position: absolute;
    inset: 0;
}
.split {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 70px;
    align-items: center;
}
.media-card {
    position: relative;
}
.media-card img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.media-card__caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    background: rgba(255, 255, 255, 0.93);
    padding: 21px 24px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.check-list li {
    position: relative;
    padding-left: 29px;
    margin: 12px 0;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-700);
    font-weight: 900;
}
.process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.process__item {
    padding: 30px 0;
    border-top: 2px solid var(--gold);
}
.process__item span {
    font-size: 0.78rem;
    font-weight: 850;
    color: #9fc091;
    letter-spacing: 0.13em;
}
.page-hero {
    padding: 105px 0 76px;
    background: linear-gradient(135deg, var(--green-950), var(--green-800));
    color: #fff;
}
.page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    color: #fff;
}
.page-hero p {
    color: #dce6d7;
}
.breadcrumbs {
    font-size: 0.85rem;
    color: #cbd8c5;
    margin-bottom: 22px;
}
.breadcrumbs a {
    text-decoration: underline;
}
.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.identity-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 25px;
}
.identity-card small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 750;
}
.identity-card strong {
    display: block;
    margin-top: 7px;
    font-size: 1.12rem;
}
.service-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 28px;
    padding: 38px 0;
    border-top: 1px solid var(--line);
}
.service-detail__icon {
    font:
        700 3rem Georgia,
        serif;
    color: var(--gold);
    position: relative;
    top: 5px;
}
.service-detail p {
    color: var(--muted);
    max-width: 800px;
}
.gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}
.gallery__main {
    height: 560px;
}
.gallery__side {
    display: grid;
    gap: 20px;
}
.gallery__side img {
    height: 270px;
}
.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.sector {
    /* min-height: 290px; */
    padding: 34px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
}
.sector::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: -55px;
    bottom: -55px;
    background: var(--green-100);
}
.sector h2 {
    font-size: 1.8rem;
}
.sector p {
    max-width: 480px;
    color: var(--muted);
}
.transport-banner {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 40px;
}
.transport-banner img {
    border-radius: 18px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 38px;
}
.contact-panel,
.form-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px;
}
.contact-panel {
    max-height: 620px;
}
.contact-list {
    display: grid;
    gap: 23px;
    margin-top: 30px;
}
.contact-item small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 750;
    margin-bottom: 4px;
}
.contact-item a {
    color: var(--green-800);
    font-weight: 750;
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field {
    display: grid;
    gap: 7px;
}
.field--full {
    grid-column: 1/-1;
}
.field label {
    font-weight: 750;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #ccd6c7;
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
}
.field textarea {
    min-height: 145px;
    resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 3px solid rgba(53, 106, 40, 0.15);
    border-color: var(--green-700);
}
.form-note {
    font-size: 0.82rem;
    color: var(--muted);
}
#form-status {
    font-weight: 650;
    color: var(--green-700);
}
.legal {
    max-width: 900px;
}
.legal h2 {
    font-size: 1.7rem;
    margin-top: 45px;
}
.legal p,
.legal li {
    color: #465245;
}
.cta {
    background: linear-gradient(135deg, var(--green-800), var(--green-950));
    border-radius: var(--radius);
    padding: 55px;
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}
.cta h2 {
    color: #fff;
    margin-bottom: 8px;
}
.cta p {
    color: #dce7d8;
    margin: 0;
}
.cta .btn {
    flex: none;
}
.footer {
    background: #0d1d0a;
    color: #cbd7c7;
    padding: 70px 0 22px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.15fr 0.9fr 0.7fr;
    gap: 38px;
}
.footer__grid a.brand:hover {
    text-decoration: none;
}
.footer h2 {
    font:
        750 0.8rem Inter,
        Arial,
        sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #fff;
    margin-bottom: 18px;
}
.footer p,
.footer address {
    font-size: 0.88rem;
    font-style: normal;
}
.footer a:hover {
    color: #fff;
    text-decoration: underline;
}
.brand--footer .brand__text strong {
    color: #fff;
}
.brand--footer .brand__text small {
    color: #b8c8b4;
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-top: 20px;
    margin-top: 45px;
    font-size: 0.8rem;
}
.notice {
    padding: 16px 20px;
    border-left: 4px solid var(--gold);
    background: #fff;
    border-radius: 8px;
    color: var(--muted);
}
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}
@media (max-width: 980px) {
    .topbar__inner {
        justify-content: center;
    }
    .topbar__inner > span:first-child {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--paper);
        padding: 25px 20px 35px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .main-nav.is-open {
        display: flex;
    }
    .main-nav > a:not(.btn) {
        padding: 10px 0;
    }
    .main-nav > a:not(.btn)::after {
        bottom: 4px;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .split,
    .contact-grid,
    .transport-banner {
        grid-template-columns: 1fr;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
    .gallery__main {
        height: 430px;
    }
    .gallery__side {
        grid-template-columns: 1fr 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        min-height: 640px;
        background-position: 60% center;
    }
    .hero__content {
        max-width: 680px;
    }
    .section-head {
        align-items: start;
        flex-direction: column;
    }
    .media-card img {
        height: 470px;
    }
}
@media (max-width: 650px) {
    :root {
        --container: min(100% - 28px, 1180px);
    }
    .topbar__contacts span {
        display: none;
    }
    .site-header__inner {
        height: 74px;
    }
    .brand img {
        width: 49px;
        height: 49px;
    }
    .brand__text small {
        display: none;
    }
    .main-nav {
        top: 74px;
    }
    .hero {
        min-height: 610px;
        background:
            linear-gradient(
                105deg,
                rgba(19, 39, 14, 0.94),
                rgba(19, 39, 14, 0.72)
            ),
            url("../images/equipe-bce.jpg") 54% center/cover;
    }
    .hero__content {
        padding: 78px 0;
    }
    .hero__facts {
        gap: 22px;
    }
    .section {
        padding: 72px 0;
    }
    .cards,
    .process,
    .sector-grid,
    .identity-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .field--full {
        grid-column: auto;
    }
    .service-detail {
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .gallery__main {
        height: 360px;
    }
    .gallery__side {
        grid-template-columns: 1fr;
    }
    .gallery__side img {
        height: 300px;
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .footer__bottom,
    .cta {
        align-items: flex-start;
        flex-direction: column;
    }
    .contact-panel,
    .form-panel,
    .cta {
        padding: 28px;
    }
    .page-hero {
        padding: 78px 0 60px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Extensions ajoutées pour la version Laravel : formulaires, suivi de dossier,
   recherche, espace client. Mêmes variables de couleur que le reste du site.
   ========================================================================== */
/* .page-hero {
    position: relative;
    padding: 70px 20px;
    color: #fff;
    text-align: center;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(19, 39, 14, 0.88),
        rgba(19, 39, 14, 0.6)
    );
} */
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    color: #fff;
    margin: 0;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* max-width: 560px; */
    width: 100%;
}
.form label {
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form input,
.form select,
.form textarea {
    padding: 11px 14px;
    border: 1px solid #d7ddd0;
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: inherit;
}
.form textarea {
    resize: vertical;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    margin-top: 24px;
}
@media (max-width: 760px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.service-block {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid #e6ebe0;
}
.service-number {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    color: var(--gold, #b08a3e);
    font-weight: bold;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}
.check-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 6px;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold, #b08a3e);
    font-weight: bold;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #eee;
}
.badge--nouveau {
    background: #fde9c8;
    color: #7a5000;
}
.badge--en_cours,
.badge--en_traitement {
    background: #d7e7f7;
    color: #1b4a75;
}
.badge--en_attente_client {
    background: #f3d9c4;
    color: #7a3b0a;
}
.badge--termine,
.badge--traite {
    background: #d9ecd2;
    color: #245c14;
}
.badge--cloture,
.badge--archive {
    background: #e3e3e3;
    color: #555;
}

.progress-track {
    height: 8px;
    border-radius: 999px;
    background: #e6ebe0;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold, #b08a3e), #e2c98c);
    border-radius: 999px;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.timeline li {
    border-left: 3px solid var(--gold, #b08a3e);
    padding: 4px 0 18px 18px;
    margin-bottom: 2px;
}
.timeline-date {
    display: block;
    font-size: 0.78rem;
    color: #7c877a;
    margin-top: 2px;
}

.dossier-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}
.dossier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid #e6ebe0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
}
.dossier-row:hover {
    background: #f7faf5;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}
.kpi {
    background: #f2efe9;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
}
.kpi strong {
    display: block;
    font-size: 1.8rem;
    color: var(--green-900, #1d3a15);
}
.kpi span {
    font-size: 0.78rem;
    color: #7c877a;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}
.search-result {
    padding: 16px 0;
    border-bottom: 1px solid #e6ebe0;
}
.search-result h3 {
    margin: 6px 0;
}

.prose p {
    line-height: 1.7;
    font-size: 1rem;
}

.top-search {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-search input {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.82rem;
    min-width: 170px;
}
.top-search input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}
.top-search button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
}
.flash {
    max-width: 1160px;
    margin: 18px auto;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.92rem;
}
.flash--success {
    background: #e7efe3;
    color: #1d3a15;
    border: 1px solid #bcd6ae;
}
.flash--error {
    background: #fbeceb;
    color: #7a2b23;
    border: 1px solid #e7b9b4;
}
.newsletter-box {
    background: var(--green-950, #13270e);
    color: #fff;
    padding: 46px 20px;
    text-align: center;
}
.newsletter-box form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}
.newsletter-box input[type="email"] {
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 260px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.client-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}
.client-card a {
    color: var(--green-800);
    font-weight: 500;
}
.client-card a:hover {
    text-decoration: underline;
}
.client-space-link {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
    background-color: #fff;
    color: var(--green-800);
    border-radius: 0.25rem;
    padding: 0.25rem;
    margin-left: 1em;
    text-decoration: none !important;
    transition: 0.2s;
}
.client-space-link:hover {
    opacity: 0.8;
    background-color: var(--green-50);
}
.client-space-link i {
    font-weight: 500;
}
