/* =========================================================
   ACET HOLDING — Feuille de style
   Direction : identité industrielle sobre (acier / béton / ocre chantier)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
    /* Palette */
    --ink:        #121A24;   /* acier très foncé (fonds sombres, texte fort) */
    --steel:      #1C2733;   /* acier — navbar, footer */
    --steel-2:    #26333F;   /* acier clair — cartes sombres, hover */
    --concrete:   #EDEAE2;   /* fond clair "béton » */
    --concrete-2: #E1DCD1;   /* béton légèrement plus soutenu */
    --slate:      #5B6672;   /* texte secondaire */
    --line:       #D8D2C4;   /* séparateurs sur fond clair */
    --white:      #FFFFFF;
    --amber:      #C97A2E;   /* accent — ocre balisage chantier */
    --amber-dark: #A6621F;

    /* Typo */
    --font-display: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 3px;
    --shadow-soft: 0 10px 30px -12px rgba(18, 26, 36, 0.25);
}

*{ box-sizing: border-box; }

/* Sécurité globale : aucune image du site ne doit jamais dépasser son
   conteneur, quelle que soit la résolution du fichier fourni par l'admin. */
img { max-width: 100%; height: auto; display: block; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--white);
    font-size: 16px;
    line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

h1, h2, h3, h4, .display-font {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--ink);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--amber);
}

a { text-decoration: none; }

::selection { background: var(--amber); color: var(--white); }

/* Focus visible — accessibilité clavier */
a:focus-visible, button:focus-visible, .nav-link:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}

/* =========================================================
   Motif signature — joints de pavés (chevrons), en CSS pur
   ========================================================= */
.paver-pattern {
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(255,255,255,0.055) 34px, rgba(255,255,255,0.055) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 34px, rgba(255,255,255,0.055) 34px, rgba(255,255,255,0.055) 36px);
}

.paver-pattern-dark {
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(18,26,36,0.06) 34px, rgba(18,26,36,0.06) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 34px, rgba(18,26,36,0.06) 34px, rgba(18,26,36,0.06) 36px);
}

.paver-divider {
    height: 14px;
    width: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(201,122,46,0.35) 12px, rgba(201,122,46,0.35) 13px),
        repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(201,122,46,0.35) 12px, rgba(201,122,46,0.35) 13px);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar-acet {
    background-color: var(--steel);
    padding: 0;
    border-bottom: 3px solid var(--amber);
}

.navbar-acet .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    flex-wrap: wrap;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.brand-logo-frame {
    background: var(--white);
    border-radius: var(--radius);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.brand-logo-frame img {
    height: 38px;
    width: auto;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text .name {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.06em;
}

.brand-text .baseline {
    font-family: var(--font-mono);
    color: var(--amber);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius);
    padding: 8px 10px;
    display: none;
}

.nav-toggle-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 4px 0;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .nav-link {
    color: rgba(255,255,255,0.82);
    font-family: var(--font-display);
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 16px;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--white);
    border-bottom-color: var(--amber);
}

.nav-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    margin-left: 14px;
    transition: all .2s ease;
}

.nav-admin-link svg { width: 13px; height: 13px; flex-shrink: 0; }

.nav-admin-link:hover {
    color: var(--white);
    border-color: var(--amber);
    background: rgba(201,122,46,0.12);
}

/* =========================================================
   BOUTONS
   ========================================================= */
.btn-acet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all .2s ease;
    cursor: pointer;
}

.btn-acet-primary {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
}
.btn-acet-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: var(--white); }

.btn-acet-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}
.btn-acet-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-acet-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.btn-acet-dark:hover { background: var(--steel-2); border-color: var(--steel-2); }

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
    position: relative;
    /* Si assets/images/hero-bg.jpg est absent, seul le dégradé s'affiche. */
    background-image:
        linear-gradient(160deg, rgba(18,26,36,0.92) 0%, rgba(28,39,51,0.90) 60%, rgba(38,51,63,0.92) 100%),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    color: var(--white);
    padding: 100px 0 130px;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-inner { position: relative; z-index: 2; max-width: 780px; }

.hero-kicker {
    font-family: var(--font-mono);
    color: var(--amber);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(201,122,46,0.4);
    padding: 6px 14px;
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero-title .accent { color: var(--amber); }

.hero-lead {
    font-family: var(--font-body);
    text-transform: none;
    color: rgba(255,255,255,0.78);
    font-size: 1.12rem;
    max-width: 600px;
    margin-bottom: 36px;
    font-weight: 400;
    letter-spacing: normal;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Bande de repères (informations publiques, non financières) */
.fact-strip {
    background: var(--white);
    position: relative;
    z-index: 3;
    margin-top: -64px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.fact-strip .row { margin: 0; }

.fact-item {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.fact-item:last-child { border-right: none; }

.fact-value {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ink);
    display: block;
    line-height: 1;
}

.fact-label {
    font-family: var(--font-display);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 8px;
    display: block;
}

/* =========================================================
   FONDATEUR
   ========================================================= */

/* Mise en page indépendante des colonnes Bootstrap : garantit que
   photo et texte restent côte à côte quelle que soit la résolution
   de l'image fournie, sans dépendre du chargement de Bootstrap. */
.founder-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.founder-photo-col {
    flex: 0 1 320px;
    width: 100%;
    max-width: 320px;
}

.founder-text-col {
    flex: 1 1 420px;
    min-width: 280px;
}

/* Encart photo : ratio fixe obtenu via la marge intérieure (%),
   une technique fiable sur tous les navigateurs, quelle que soit
   la taille ou l'orientation réelle du fichier image fourni. */
.founder-photo-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: var(--steel-2);
    border-radius: var(--radius);
    border: 2px solid rgba(201,122,46,0.4);
    overflow: hidden;
}

.founder-photo-frame::before {
    content: "";
    display: block;
    padding-top: 125%; /* ratio 4:5 : hauteur = 125% de la largeur */
}

.founder-photo-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.founder-photo-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 0 20px;
}

.founder-photo-frame.is-empty .founder-photo-placeholder { display: flex; }

.founder-role {
    font-family: var(--font-mono);
    color: var(--amber);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.founder-quote {
    border-left: 3px solid var(--amber);
    padding: 4px 0 4px 20px;
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--white);
    font-style: normal;
}

.founder-bio-text {
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    margin-bottom: 16px;
}
.founder-bio-text:last-child { margin-bottom: 0; }

/* =========================================================
   SECTIONS GENERALES
   ========================================================= */
.section { padding: 96px 0; }
.section-tight { padding: 70px 0; }
.section-alt { background-color: var(--concrete); }
.section-dark { background-color: var(--ink); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-heading { max-width: 640px; margin-bottom: 52px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 16px;
}

.section-sub {
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    color: var(--slate);
    font-size: 1.02rem;
}

/* =========================================================
   PRESENTATION
   ========================================================= */
.pillar-list { list-style: none; padding: 0; margin: 0; }
.pillar-list li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
}
.pillar-list li:first-child { padding-top: 0; }
.pillar-list li:last-child { border-bottom: none; }

.pillar-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--ink);
    color: var(--amber);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pillar-icon svg { width: 20px; height: 20px; }

.pillar-copy h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.pillar-copy p { margin: 0; color: var(--slate); font-size: 0.95rem; }

/* =========================================================
   ACTIVITES — cartes produits
   ========================================================= */
.activity-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: var(--amber);
}

.activity-index {
    font-family: var(--font-mono);
    color: var(--line);
    font-size: 2.4rem;
    font-weight: 600;
    position: absolute;
    top: 18px;
    right: 22px;
    line-height: 1;
    user-select: none;
}

.activity-icon {
    width: 54px;
    height: 54px;
    background: var(--ink);
    color: var(--amber);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.activity-icon svg { width: 26px; height: 26px; }

.activity-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.activity-card p {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =========================================================
   PRODUITS AVEC PHOTO — Nos productions (pavés / béton / bordures)
   ========================================================= */
.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: var(--amber);
}

.product-image-wrap { position: relative; }

/* Encart photo : ratio fixe via marge intérieure (%), fiable quelle
   que soit la résolution ou l'orientation réelle du fichier fourni. */
.product-image-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--concrete-2);
}

.product-image-frame::before {
    content: "";
    display: block;
    padding-top: 68%; /* ratio paysage ~ 3:2 */
}

.product-image-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-image-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 18px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    background: var(--concrete-2);
}

.product-image-frame.is-empty .product-image-placeholder { display: flex; }

.product-icon-badge {
    position: absolute;
    left: 20px;
    bottom: -20px;
    width: 44px;
    height: 44px;
    background: var(--ink);
    color: var(--amber);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px -4px rgba(18,26,36,0.45);
    z-index: 2;
}
.product-icon-badge svg { width: 21px; height: 21px; }

.product-body {
    padding: 34px 26px 26px;
    flex: 1;
}

.product-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-body p {
    color: var(--slate);
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================================
   PROCESSUS — étapes numérotées (ordre réel de fabrication)
   ========================================================= */
.process-track {
    display: flex;
    flex-wrap: wrap;
    counter-reset: step;
}

.process-step {
    flex: 1 1 180px;
    padding: 0 22px 22px 0;
    position: relative;
}

.process-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--amber-dark);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.process-step h4 {
    font-size: 0.98rem;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.process-step p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    margin: 0;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 14px;
    height: 1px;
    background: rgba(201,122,46,0.5);
}

/* =========================================================
   GALERIE
   ========================================================= */
.gallery-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.gallery-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card .card-body { padding: 20px 22px; }

.gallery-card .card-title {
    font-family: var(--font-display);
    font-size: 1.02rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.gallery-card .card-text {
    color: var(--slate);
    font-size: 0.92rem;
    margin: 0;
}

.gallery-empty {
    text-align: center;
    padding: 70px 20px;
    color: var(--slate);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}

.breadcrumb-acet {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--slate);
    margin-bottom: 20px;
}
.breadcrumb-acet a { color: var(--amber-dark); }
.breadcrumb-acet a:hover { text-decoration: underline; }

/* =========================================================
   CTA CONTACT
   ========================================================= */
.cta-section {
    background: var(--steel);
    color: var(--white);
    border-radius: var(--radius);
    padding: 54px 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute; inset: 0;
}

.cta-content { position: relative; z-index: 2; max-width: 560px; }
.cta-content h3 { color: var(--white); margin-bottom: 10px; font-size: 1.6rem; }
.cta-content p { color: rgba(255,255,255,0.72); margin: 0; }
.cta-actions { position: relative; z-index: 2; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer-acet {
    background: var(--ink);
    color: rgba(255,255,255,0.68);
    padding-top: 64px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 34px; background: var(--white); padding: 4px 6px; border-radius: var(--radius); }
.footer-brand span {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}

.footer-acet h5 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-acet p, .footer-acet li { font-size: 0.92rem; color: rgba(255,255,255,0.62); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.62); transition: color .2s ease; }
.footer-links a:hover { color: var(--amber); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--amber); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
    .nav-toggle-btn { display: block; }

    .nav-links-wrap {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0 20px;
    }

    .nav-links-wrap.open { display: flex; }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links .nav-link {
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-left: 2px solid transparent;
        padding: 14px 6px;
    }

    .nav-links .nav-link.active,
    .nav-links .nav-link:hover {
        border-bottom-color: rgba(255,255,255,0.08);
        border-left-color: var(--amber);
        background: rgba(255,255,255,0.03);
    }

    .nav-admin-link { margin: 14px 0 0; align-self: flex-start; }

    .fact-strip { margin-top: 30px; border-radius: var(--radius); }
    .fact-item { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 10px; }
    .fact-item:last-child { border-bottom: none; }

    .founder-layout { gap: 32px; }
    .founder-photo-col { max-width: 240px; margin: 0 auto; }

    .hero-section { padding: 60px 0 50px; text-align: left; }

    .cta-section { flex-direction: column; align-items: flex-start; text-align: left; padding: 38px 26px; }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .section { padding: 64px 0; }
    .section-tight { padding: 48px 0; }
    .hero-title { font-size: 2rem; }
    .brand-text .name { font-size: 1.05rem; }
    .brand-logo-frame img { height: 30px; }
    .gallery-card img { height: 200px; }
    .process-step { flex: 1 1 100%; padding-right: 0; }
    .process-step:not(:last-child)::after { display: none; }
}