:root {
--green-bright: #6cbf3e;
--green-mid: #4a9b2a;
--green-dark: #2e7d1f;
--green-deep: #234d16;
--green-pale: #eef8e6;
--green-paler: #f5faf0;
--ink: #1b1e19;
--ink-soft: #4a4f47;
--paper: #fbfbf7;
--line: #e2e6dd;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'Manrope', sans-serif;
background: var(--paper);
color: var(--ink);
line-height: 1.5;
}
h1, h2, h3, .display {
font-family: 'Fraunces', serif;
font-weight: 600;
letter-spacing: -0.01em;
}
a { color: inherit; }
img { height: 96px; display: block; }
.wrap {
max-width: 95%;
margin: 0 auto;
padding: 0 28px;
}

/* ---------- top bar ---------- */
.topbar {
    height: 6px;
    background: linear-gradient(90deg, var(--green-bright), var(--green-mid));
}
.site-header {
  transition: transform 0.3s ease;
}

.site-header.hide {
  transform: translateY(-100%);
}

header.site-header {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-mark img { height: 96px; width: auto; }
nav.top-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 15px;
    margin-left: 28px;
}
nav.top-nav a:hover { color: var(--green-dark); }

.btn {
    display: block;
    width: fit-content;
    margin: 10px auto;

    background: var(--green-bright);
    color: #14260a;
    font-weight: 800;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 40px;
    font-size: 15px;
    transition: transform 0.15s ease, background 0.15s ease;
    text-align: center;
}
.btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-outline {
display: inline-block;
border: 2px solid var(--green-bright);
color: var(--green-deep);
font-weight: 800;
text-decoration: none;
padding: 11px 24px;
border-radius: 40px;
font-size: 15px;
}

/* ---------- hero ---------- */
.hero {
padding: 20px 0 20px 0;
text-align: center;
}
.hero .eyebrow {
color: var(--green-dark);
font-weight: 800;
font-size: 15px;
margin-bottom: 18px;
}
.hero h1 {
font-size: 46px;
line-height: 1.15;
max-width: 720px;
margin: 0 auto 22px auto;
}
.hero h1 em {
font-style: normal;
color: var(--green-mid);
}
.hero p.lead {
font-size: 19px;
color: var(--ink-soft);
max-width: 560px;
margin: 0 auto 20px auto;
}
.hero .cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero .cta-row .btn,
.hero .cta-row .btn-outline {
    margin: 0;
    width: fit-content;
}
/* ---------- benefits ---------- */
.benefits {
padding: 10px 0 56px 0;
}
.benefits .wrap {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
}
.benefit-card {
text-align: center;
padding: 20px 10px;
}
.benefit-card .icon {
width: 64px;
height: 64px;
border-radius: 50%;
background: var(--green-pale);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 14px auto;
}
.benefit-card .icon svg { width: 30px; height: 30px; }
.benefit-card .label {
font-weight: 700;
font-size: 15px;
color: var(--ink);
}

/* ---------- section shell ---------- */
section { padding: 50px 0; }
section.tinted { background: var(--green-paler); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px auto; }
.section-head h2 { font-size: 32px; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16.5px; }

.section-head-page { text-align: center; max-width: 620px; margin: 0 auto 0px auto; }
.section-head-page h2 { font-size: 32px; margin-bottom: 12px; }
.section-head-page p { color: var(--ink-soft); font-size: 16.5px; }
/* ---------- steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
    gap: 28px;
    margin: 0;
}

.step-card {
    position: relative;
    padding: 30px 22px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    border-color: var(--green-bright);
}

.step-card .num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-bright);
    color: #14260a;
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.25s ease;
}

.step-card:hover .num {
    transform: scale(1.08);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.step-card p {
    color: var(--ink-soft);
    font-size: 15.5px;
}

/* ---------- why ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.why-card {
    grid-column: span 2;
    text-align: center;
    padding: 10px;
    background: #f7f7f5;
    border-radius: 16px;
}

/* 1 raison : pleine largeur */
.why-grid-1 .why-card {
    grid-column: 1 / -1;
}

/* 2 raisons : 50 % / 50 % */
.why-grid-2 .why-card {
    grid-column: span 3;
}

/* 3 raisons : 3 colonnes */
.why-grid-3 .why-card {
    grid-column: span 2;
}

/* 4 raisons : 3 en haut + 1 pleine largeur */
.why-grid-4 .why-card:nth-child(4) {
    grid-column: 1 / -1;
}

/* 5 raisons : 3 en haut + 2 en bas */
.why-grid-5 .why-card:nth-child(4),
.why-grid-5 .why-card:nth-child(5) {
    grid-column: span 3;
}

/* Icône */
.why-card .emoji {
    font-size: 34px;
    margin-bottom: 14px;
}

/* Titres */
.why-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

/* Texte */
.why-card p {
    color: var(--ink-soft);
    font-size: 15.5px;
}

/* ---------- arguments ---------- */
.arguments {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.arg-card {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
}

/* 1 argument */
.arguments-1 .arg-card {
    grid-column: 1 / -1;
}

/* 2 arguments */
.arguments-2 .arg-card {
    grid-column: span 3;
}

/* 3 arguments */
.arguments-3 .arg-card {
    grid-column: span 2;
}

/* 4 arguments : 3 en haut + 1 pleine largeur */
.arguments-4 .arg-card:nth-child(4) {
    grid-column: 1 / -1;
}

/* 5 arguments : 3 en haut + 2 en bas */
.arguments-5 .arg-card:nth-child(4),
.arguments-5 .arg-card:nth-child(5) {
    grid-column: span 3;
}

/* Icône */
.arg-card .arg-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Texte */
.arg-card h3 {
    font-size: 17.5px;
    color: var(--green-dark);
    margin-bottom: 6px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.arg-card p {
    color: var(--ink-soft);
    font-size: 15px;
}

/* ---------- devis / cta ---------- */
.devis {
background: var(--green-deep);
color: #fff;
padding: 70px 0;
}
.devis .wrap { text-align: center; max-width: 640px; }
.devis h2 { font-size: 34px; margin-bottom: 16px; color: #fff; }
.devis p { color: #d9ead0; font-size: 17px; margin-bottom: 10px; }
.devis .steps-mini {
text-align: left;
display: inline-block;
margin: 26px 0 30px 0;
color: #eaf6e2;
font-size: 15.5px;
}
.devis .steps-mini div { margin-bottom: 8px; padding-left: 26px; position: relative; }
.devis .steps-mini div::before {
content: "✓";
position: absolute;
left: 0;
color: var(--green-bright);
font-weight: 800;
}
.devis .btn {
font-size: 17px;
padding: 15px 34px;
}

/* ---------- footer ---------- */
footer {
background: #14260a;
color: #cfe0c4;
padding: 40px 0 30px 0;
}
footer .wrap {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
footer .f-brand { display: flex; align-items: center; gap: 14px; }
footer .f-brand img { height: 40px; }
footer .f-brand .name { font-weight: 800; color: #fff; font-size: 18px; font-family: 'Fraunces', serif; }
footer .f-brand .tag { font-size: 13px; color: #a9c29a; margin-top: 2px; }
footer .f-contact { text-align: right; font-size: 14.5px; }
footer .f-contact a { color: var(--green-bright); font-weight: 700; text-decoration: none; }
footer .f-contact .addr { color: #a9c29a; margin-top: 4px; }
footer .legal {
text-align: center;
font-size: 12.5px;
color: #6f8a63;
margin-top: 28px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  background: rgba(251, 251, 247, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.brand {
  text-decoration: none;
  color: var(--green-deep);
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
}

/* Menu ordinateur */

.top-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
}

.top-nav a:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}

.top-nav .nav-cta {
  background: var(--green-bright);
  color: #14260a;
  border-radius: 30px;
  padding: 11px 17px;
  margin-left: 8px;
}

.top-nav .nav-cta:hover {
  background: var(--green-mid);
  color: white;
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: var(--green-deep);
  border-radius: 5px;
  transition: 0.25s ease;
}

.hamburger:hover {
  background: var(--green-pale);
}


/* =========================================================
   MENU MOBILE PLEIN ÉCRAN
   ========================================================= */

.mobile-menu-overlay {
  display: none;
}


/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*------------------------------------Galerie---------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
.galerie-page {
    padding: 60px 0;
}
.galerie-header {
    margin-bottom: 35px;
}
.galerie-header h1 {
    margin: 5px 0 10px;
}
.galerie-header p {
    margin: 0;
    color: #666;
}
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}
.galerie-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
    box-shadow: 0 5px 18px rgba(0,0,0,0.10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.galerie-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.galerie-item:hover .galerie-photo {
    transform: scale(1.03);
}
.galerie-empty {
    text-align: center;
    padding: 50px 0;
}
.galerie-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.galerie-pages {
    display: flex;
    align-items: center;
    gap: 8px;
}
.galerie-page-number,
.galerie-pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    box-sizing: border-box;
    border-radius: 8px;
    text-decoration: none;
    background: #f1f1f1;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.galerie-page-number:hover,
.galerie-pagination-btn:hover {
    background: var(--green-mid);
    color: #ffffff;
    transform: translateY(-2px);
}
.galerie-page-number.active {
    background: var(--green-mid);
    color: #ffffff;
    font-weight: 700;
}
.galerie-lightbox {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.galerie-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.galerie-lightbox img {
    width: 92vw;
    height: 92vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.galerie-lightbox.active img {
    transform: scale(1);
}
.galerie-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
}
.galerie-lightbox-close:hover {
    background: rgba(255,255,255,0.30);
    transform: scale(1.08);
}
.galerie-lightbox-prev,
.galerie-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 70px;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 50px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s ease, transform 0.2s ease;
}
.galerie-lightbox-prev {
    left: 25px;
}
.galerie-lightbox-next {
    right: 25px;
}
.galerie-lightbox-prev:hover,
.galerie-lightbox-next:hover {
    background: rgba(255,255,255,0.32);
}
.galerie-lightbox-prev:hover {
    transform: translateY(-50%) scale(1.08);
}
.galerie-lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
}

/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*------------------------------------Menu admin PC---------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
.admin-container {
    display: flex;
    align-items: center;
    position: relative;
}

/* Hamburger admin visible sur PC */
.admin-container .hamburger {
    display: flex !important;
    color: var(--ink);
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0px 50px;
    position: relative;
    z-index: 1001;
}

/* Menu admin */
.admin-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #86897f;
    padding: 15px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

.admin-menu.active {
    display: flex !important;
}

/* Pseudo */

.admin-menu span {
    color: white;
    margin-bottom: 10px;
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Liens */
.admin-menu a {
    color: white;
    text-decoration: none;
    padding: 9px;
    border-radius: 6px;
    transition: 0.2s ease;
}

.admin-menu a:hover {
    background: #444;
    transform: translateX(3px);
}


/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------formulaire--------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/* ===================== CONTAINER GLOBAL ===================== */
.user-management {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
/* ===================== FORMULAIRE ===================== */
.user-management .form-container {
    width: 100%;
    max-width: 700px;
    margin: 20px auto 45px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    box-sizing: border-box;
}
/* Titre */
.user-management .form-container h2 {
    margin: 0 0 25px 0;
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}
/* ===================== INPUTS ===================== */
.user-management .form-container input,
.user-management .form-container select {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    outline: none;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
/* ===================== TEXTAREA ===================== */
.user-management .form-container textarea {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    outline: none;
    resize: vertical;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
/* ===================== FOCUS ===================== */
.user-management .form-container input:focus,
.user-management .form-container select:focus,
.user-management .form-container textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(0,155,26,0.10);
}
/* ===================== BOUTON ===================== */
.user-management .form-container button {
    width: 100%;
    padding: 13px 20px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
    color: white;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.user-management .form-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0,155,26,0.25);
}
/* ===================== TITRE TABLE ===================== */
.user-management .table-title-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 30px auto 15px auto;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.user-management .table-title {
    margin: 0;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
}
/* ===================== TABLE ===================== */
.user-management .table-wrapper {
    width: 100%;
    margin: 20px auto;
    max-width: 1400px;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 600px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    box-sizing: border-box;
}
.user-management table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
/* ===================== HEADER FIXE ===================== */
.user-management thead th {
    position: sticky;
    top: 0;
    background: var(--green-mid);
    color: white;
    z-index: 10;
    padding: 13px 10px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}
/* ===================== CELLULES ===================== */
.user-management th,
.user-management td {
    padding: 11px 10px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
}
/* ===================== ALTERNANCE DES LIGNES ===================== */
.user-management tbody tr:nth-child(even) {
    background: rgba(0,155,26,0.025);
}
/* ===================== HOVER LIGNE ===================== */
.user-management tbody tr {
    transition: background 0.2s ease;
}
.user-management tbody tr:hover {
    background: rgba(0,155,26,0.08);
}
/* ===================== INPUTS DANS TABLE ===================== */
.user-management td input,
.user-management td select {
    padding: 7px 9px;
    border-radius: 7px;
    border: 1px solid var(--line);
    background: white;
    color: var(--ink);
    text-align: center;
    font-family: inherit;
    outline: none;
}
.user-management td input:focus,
.user-management td select:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 2px rgba(0,155,26,0.10);
}
/* ===================== ACTIONS ===================== */
.actions-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
/* ===================== MODIFIER ===================== */
.btn-modifier {
    background: var(--green-mid);
    border: none;
    padding: 7px 13px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-modifier:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,155,26,0.20);
}
/* ===================== SUPPRIMER ===================== */
.btn-supprimer {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 7px 13px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-supprimer:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(192,57,43,0.20);
}


.motor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.motor-grid-1 .motor-card {
    grid-column: 1 / -1;
}

.motor-grid-3 .motor-card:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
}

/* Carte motorisation */
.motor-card {
    position: relative;
    /*min-height: 500px;*/
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    cursor: pointer;
}

.motor-card .btn {
    display: block;
    text-decoration: none;
}

/* Voile gris par-dessus l'image */
.motor-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 35, 35, 0.48);
    transition:
        background 0.35s ease;
    z-index: 1;
}

/* Contenu */
.motor-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 30px 28px 28px;
    color: #fff;
}

/* Titre */
.motor-card h3 {
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}

/* Texte */
.motor-card p {
    color: rgba(255, 255, 255, 0.94);
    font-size: 15px;
    margin: 0 0 16px;
    line-height: 1.55;
}

/* Liste */
.motor-card ul {
    margin: 0 0 18px 18px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14.5px;
}

.motor-card ul li {
    margin-bottom: 7px;
}

/* Puissance */
.motor-card .power-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green-deep);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 18px;
}

/* Bouton */
.motor-card .btn {
    display: block;
}

/* ---------- effet au survol ---------- */
.motor-card:hover {
    transform: scale(1.025);
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.18);
}

/* L'image est légèrement mise en valeur */
.motor-card:hover .motor-overlay {
    background: rgba(35, 35, 35, 0.38);
}


/* ---------- commande / paiement ---------- */
.order-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.order-step {
    grid-column: span 2;
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 16px;
}

/* 1 étape : pleine largeur */
.order-steps-1 .order-step {
    grid-column: 1 / -1;
}

/* 2 étapes : 50 % / 50 % */
.order-steps-2 .order-step {
    grid-column: span 3;
}

/* 3 étapes : 3 colonnes */
.order-steps-3 .order-step {
    grid-column: span 2;
}

/* 4 étapes : 3 en haut + 1 pleine largeur */
.order-steps-4 .order-step:nth-child(4) {
    grid-column: 1 / -1;
}

/* 5 étapes : 3 en haut + 2 en bas */
.order-steps-5 .order-step:nth-child(4),
.order-steps-5 .order-step:nth-child(5) {
    grid-column: span 3;
}

.order-step .num {
width: 36px; height: 36px;
border-radius: 50%;
background: var(--green-bright);
color: #14260a;
font-weight: 800;
font-size: 15px;
display: flex; align-items: center; justify-content: center;
margin-bottom: 14px;
}
.order-step h3 { font-size: 15.5px; font-family: 'Manrope', sans-serif; font-weight: 800; margin-bottom: 6px; }
.order-step p { color: var(--ink-soft); font-size: 13.5px; }
.loan-banner {
margin-top: 34px;
background: var(--green-deep);
border-radius: 18px;
padding: 30px 28px;
text-align: center;
}
.loan-banner p {
margin: 0;
font-family: 'Fraunces', serif;
font-weight: 700;
font-size: clamp(22px, 3vw, 32px);
color: #f2f8ec;
line-height: 1.25;
}
.pay-methods { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.pay-pill {
border: 2px solid var(--green-bright);
color: var(--green-deep);
border-radius: 40px;
padding: 9px 20px;
font-size: 14px;
font-weight: 800;
background: #fff;
}

/* ---------- CGV accordion ---------- */
.cgv-item { border-bottom: 1px solid var(--line); }
.cgv-item:first-child { border-top: 1px solid var(--line); }
.cgv-q {
display: flex; justify-content: space-between; align-items: center;
width: 100%; text-align: left; background: none; border: none;
padding: 20px 4px; cursor: pointer; font-family: 'Manrope', sans-serif;
font-weight: 800; font-size: 16px; color: var(--ink);
}
.cgv-q .plus {
font-family: 'Fraunces', serif; font-size: 22px; color: var(--green-mid);
flex-shrink: 0; margin-left: 16px; transition: transform 0.2s ease;
}
.cgv-item.open .plus { transform: rotate(45deg); }
.cgv-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.cgv-a p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 12px 4px; max-width: 70ch; }
.cgv-a p:last-child { margin-bottom: 22px; }


.connexion {
    display: flex;
    justify-content: center;
    opacity: 0;              /* invisible */
}

/* LOGIN */
.login-section {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
}

.login-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-section input {
    width: 80%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ccc; /* optionnel */
    outline: none; /* 🔴 enlève le trait noir */
}

.login-section button {
    width: 80%;
    padding: 12px;
    margin-top: 15px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-section button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 35, 0.4);
    background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
}

.login-section button:active {
    transform: scale(0.97);
}


/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*------------------------------------Pop UP Message--------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
.toast {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e74c3c;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
}

/*affichage messsage effemere*/
.flash-message {
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

.flash-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.flash-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.flash-message {
  transition: opacity 0.5s ease-out;
}


/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*-----------------------------Defilement Photo accueil-----------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
.photo-slider {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0px 0px;
    box-sizing: border-box;
    background: #ffffff;
}
.photo-slider-window {
    width: 100%;
    overflow: hidden;
}
.photo-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease, opacity 0.35s ease;
    will-change: transform;
}
.photo-slide {
    width: 280px;
    height: 190px;
    flex: 0 0 280px;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background: #f5f5f5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-slide:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}
.photo-slide img {
    width: 100%;
    height: 100%;
    display: block;
    /*object-fit: contain;*/
}
.photo-slider-btn {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    border: none;
    border-radius: 50%;
    background: var(--green-mid);
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease, background 0.2s ease;
}
.photo-slider-btn:hover {
    background: var(--green-bright);
    transform: scale(1.08);
}
.photo-lightbox {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999999;
}
.photo-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.photo-lightbox img {
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 92vh;
    min-width: 300px;
    min-height: 200px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.photo-lightbox.active img {
    transform: scale(1);
}
.photo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
}
.photo-lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.08);
}

/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*------------------------------------PAGE COMMENT ÇA MARCHE------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
.page-hero {
    padding: 20px 0;
    text-align: center;
}

.process-section {
    padding: 50px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 50px;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.process-step.reverse .process-image {
    order: 2;
}

.process-step.reverse .process-content {
    order: 1;
}

.process-image {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 4 / 3;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-content {
    max-width: 500px;
}

.process-number {
    display: inline-block;
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
}

.process-content h2 {
    font-size: 32px;
    margin: 0 0 20px;
}

.process-content p {
    line-height: 1.7;
    color: #596052;
}

.process-content ul {
    padding-left: 20px;
    line-height: 2;
    color: #596052;
}

.process-cta {
    padding: 50px 0;
    text-align: center;
}

.process-cta h2 {
    margin-bottom: 15px;
}

.process-cta p {
    margin-bottom: 30px;
}

/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------Moteur detail-----------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
.motor-detail {
    padding: 70px 0;
}

.motor-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Texte */
.motor-detail-content {
    max-width: 650px;
}

.motor-detail-content h2 {
    font-size: 34px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--green-deep);
    margin: 14px 0 16px;
}

.motor-detail-content p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.motor-detail-content h3 {
    font-size: 19px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--green-deep);
    margin-bottom: 12px;
}

.motor-detail-content ul {
    margin: 0 0 28px 20px;
    color: var(--ink-soft);
    font-size: 15px;
}

.motor-detail-content li {
    margin-bottom: 8px;
}

/* Photo */
.motor-detail-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 20px;
}

.motor-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}


/* Petit zoom au survol */
.motor-detail-image:hover img {
    transform: scale(1.04);
}



@media (max-width: 720px) {
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------Moteur detail-----------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
        .motor-detail {
        padding: 50px 0;
    }

    .motor-detail-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .motor-detail-content {
        max-width: none;
    }

    .motor-detail-image {
        height: 350px;
        order: 2;
    }

    .motor-detail-content h2 {
        font-size: 28px;
    }

/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*------------------------------------PAGE COMMENT ÇA MARCHE------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
    .process-section {
        padding: 30px 0;
    }

    .process-steps {
        gap: 55px;
        margin-top: 35px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-step.reverse .process-image {
        order: 1;
    }

    .process-step.reverse .process-content {
        order: 2;
    }

    .process-content {
        max-width: 100%;
    }

    .process-content h2 {
        font-size: 26px;
    }

    .process-image {
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }
    
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*-----------------------------------------Galerie----------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
    .galerie-page {
        padding: 40px 0;
    }
    .galerie-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .galerie-item {
        height: 280px;
    }
    .galerie-pagination {
        gap: 10px;
    }
    .galerie-pages {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    .galerie-lightbox {
        padding: 10px;
    }
    .galerie-lightbox img {
        width: 96vw;
        height: 88vh;
    }
    .galerie-lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 32px;
    }
    .galerie-lightbox-prev,
    .galerie-lightbox-next {
        width: 42px;
        height: 55px;
        font-size: 38px;
        border-radius: 8px;
    }
    .galerie-lightbox-prev {
        left: 8px;
    }
    .galerie-lightbox-next {
        right: 8px;
    }

/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*-----------------------------Defilement Photo accueil-----------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
    .photo-slider {
        padding: 15px 8px;
        gap: 8px;
    }
    .photo-slider-track {
        gap: 0;
    }
    .photo-slide {
        width: 100%;
        height: 240px;
        flex: 0 0 100%;
        border-radius: 12px;
    }
    .photo-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .photo-slider-btn {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 28px;
    }

/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*---------------------------------Formulaire mobile--------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
    .user-management {
        padding: 12px;
    }
    .user-management .form-container {
        max-width: 100%;
        margin: 10px auto 30px auto;
        padding: 22px 18px;
        border-radius: 15px;
    }
    .user-management .form-container h2 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    .user-management .form-container input,
    .user-management .form-container select,
    .user-management .form-container textarea {
        font-size: 14px;
        padding: 12px;
    }
    .user-management .table-title-wrapper {
        margin-top: 25px;
        padding: 11px 15px;
        border-radius: 10px;
    }
    .user-management .table-title {
        font-size: 1.1rem;
    }
    .user-management .table-wrapper {
        margin-top: 15px;
        border-radius: 10px;
    }
    .user-management th,
    .user-management td {
        padding: 9px 8px;
        font-size: 13px;
    }
    .actions-btns {
        flex-direction: column;
        gap: 5px;
    }
    .btn-modifier,
    .btn-supprimer {
        width: 100%;
        padding: 7px 10px;
    }


/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*------------------------------------Admin Menu Mobile-----------------------------------*/
/*----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------*/
    .mobile-admin {
        width: 100%;
        margin-top: 25px;
        padding-top: 20px;

        border-top: 1px solid rgba(255,255,255,0.3);

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Pseudo */

    .mobile-admin span {
        display: block;

        color: rgb(0, 0, 0);
        font-weight: bold;
        font-size: 1.1rem;

        margin-bottom: 12px;
    }

    /* Liens */

    .mobile-admin a {
        display: block;

        color: white;
        text-decoration: none;

        font-size: 1.3rem;

        margin: 5px 0;
        padding: 6px 15px;

        border-radius: 6px;

        transition: 0.2s ease;
    }

    .mobile-admin a:hover {
        background: rgba(255,255,255,0.12);
        transform: translateX(3px);
    }

    /*
     * On cache le petit bouton admin sur mobile.
     * L'accès se fait directement depuis le menu mobile.
     */

    .admin-container {
        display: none;
    }


    .login-section {
        max-width: 250px;
    }
    .wrap {
        padding: 0 20px;
    }

    section {
        padding: 48px 0;
    }

    .hero {
        padding: 10px 0 10px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero p.lead {
        font-size: 16px;
    }

    .hero .cta-row {
        flex-direction: column;
        /*align-items: stretch;*/
    }

    .hero .btn,
    .hero .btn-outline {
        text-align: center;
        width: 100%;
    }

    .benefits .wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }
    .benefit-card .icon {
       width: 40px;
       height: 40px;
    }
     .benefits{
        padding: 20px 0 20px 0;
    }
    .benefit-card {
        padding: 15px 5px;
    }

    .benefit-card .label {
        font-size: 13px;
    }

    .section-head {
        margin-bottom: 30px;
    }

    .section-head h2 {
        font-size: 27px;
    }

    .section-head p {
        font-size: 15px;
    }

    .section-head-page h2 {
        font-size: 27px;
    }

    .section-head-page p {
        font-size: 15px;
    }
    .steps,
    .why-grid,
    .arguments,
    .motor-grid,
    .battery-wrap,
    .order-steps,
    .repair-grid3 {
        grid-template-columns: 1fr;
    }

    .motor-grid-1 .motor-card,
    .motor-grid-2 .motor-card,
    .motor-grid-3 .motor-card {
        grid-column: 1 / -1;
        width: 100%;
    }

    .motor-grid-3 .motor-card:nth-child(3) {
        width: 100%;
    }
    .step-card,
    .arg-card,
    .order-step {
        padding: 22px 18px;
    }
    .motor-card {
        /*min-height: 520px;*/
        border-radius: 16px;
    }

    .motor-content {
        padding: 26px 22px 24px;
    }

    .motor-card h3 {
        font-size: 22px;
    }

    .motor-card p {
        font-size: 14.5px;
    }

    .motor-card ul {
        font-size: 14px;
    }
    .devis {
        padding: 55px 0;
    }

    .devis h2 {
        font-size: 28px;
    }

    footer .wrap {
        flex-direction: column;
        text-align: center;
    }

    footer .f-contact {
        text-align: center;
    }

    /* =========================================================
    HEADER / MENU
    ========================================================= */
    .site-header .wrap {
        display:block;
        padding: 0 16px;
    }
    .header-inner {
        min-height: 68px;
    }
    .hamburger {
        display: block;
        order: 2;
        margin-left: auto;
    }
    .brand {
        order: 1;
        font-size: 25px;
    }
    .top-nav {
        display: none;
    }


    /* -----------------------------------------------------
        Fond sombre derrière le menu
        ----------------------------------------------------- */

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;

        z-index: 2000;

        background: rgba(0, 0, 0, 0.45);

        display: flex;

        opacity: 0;
        visibility: hidden;

        transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
    }

    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }


    /* -----------------------------------------------------
        Menu
        ----------------------------------------------------- */

    .mobile-menu {
        width: 100%;
        height: 100%;

        background: var(--paper);

        padding: 22px 24px;

        transform: translateX(-100%);

        transition: transform 0.3s ease;

        overflow-y: auto;
    }

    .mobile-menu-overlay.open .mobile-menu {
        transform: translateX(0);
    }


    /* -----------------------------------------------------
        Header du menu
        ----------------------------------------------------- */

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-bottom: 24px;

        border-bottom: 1px solid var(--line);
    }

    .mobile-menu-title {
        font-family: 'Fraunces', serif;
        font-size: 28px;
        font-weight: 600;
        color: var(--green-deep);
    }


    /* Croix */

    .close-menu {
        width: 46px;
        height: 46px;

        border: none;
        background: var(--green-pale);

        border-radius: 50%;

        font-size: 34px;
        line-height: 1;

        color: var(--green-deep);

        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: 0.2s ease;
    }

    .close-menu:hover {
        background: var(--green-bright);
    }


    /* -----------------------------------------------------
        Liens
        ----------------------------------------------------- */

    .mobile-nav {
        display: flex;
        flex-direction: column;

        padding-top: 18px;
    }

    .mobile-nav a {
        text-decoration: none;

        color: var(--ink);

        font-size: 18px;
        font-weight: 700;

        padding: 18px 8px;

        border-bottom: 1px solid var(--line);

        transition:
        color 0.2s ease,
        padding-left 0.2s ease;
    }

    .mobile-nav a:hover {
        color: var(--green-dark);
        padding-left: 15px;
    }


    /* -----------------------------------------------------
        Bouton devis
        ----------------------------------------------------- */

    .mobile-nav .mobile-cta {
        margin-top: 28px;

        border: none;

        background: var(--green-bright);
        color: #14260a;

        text-align: center;

        border-radius: 40px;

        padding: 15px 20px;
    }

    .mobile-nav .mobile-cta:hover {
        background: var(--green-mid);
        color: white;
        padding-left: 20px;
    }
}