/* ============================================
   NEXT DIGITAL — Tech Modern Style
   ============================================ */

:root {
  --black: #0a0a0a;
  --ink: #18181b;
  --graphite: #52525b;
  --grey: #a1a1aa;
  --line: #e4e4e7;
  --line-soft: #f4f4f5;
  --paper: #fafafa;
  --white: #ffffff;
  --accent: #18181b;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; border-radius: 4px; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--black);
  font-weight: 600;
}

.logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--graphite);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav a:hover {
  color: var(--black);
  background: var(--line-soft);
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px !important;
}

.nav-cta:hover {
  background: var(--ink) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 60%);
  transform: translate(-50%, -55%);
  z-index: -1;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--graphite);
  font-weight: 500;
  margin-bottom: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 1.75rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #71717a 0%, #18181b 60%, #71717a 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease infinite;
  display: inline-block;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--graphite);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: var(--white);
  color: var(--black);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

/* Stack bar */
.stack-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line-soft);
  max-width: 800px;
  margin: 0 auto;
}

.stack-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stack-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stack-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--graphite);
  padding: 0.35rem 0.85rem;
  background: var(--line-soft);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.stack-item:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--graphite);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--line-soft);
  border-radius: 999px;
}

.eyebrow-light {
  background: rgba(255,255,255,0.08);
  color: var(--grey);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--graphite);
  line-height: 1.55;
}

.section-lead-light {
  color: var(--grey);
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-card-featured {
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
  border-color: var(--ink);
}

.service-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--white);
  background: var(--black);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--line-soft);
  border-radius: 12px;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.service-card p {
  color: var(--graphite);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}

.service-tags li {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
}

/* ============================================
   APPROCHE (dark section)
   ============================================ */
.section-dark {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(255,255,255,0.04), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}

.section-dark .section-title {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.step {
  position: relative;
  padding: 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.step-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ============================================
   À PROPOS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-content .eyebrow {
  margin-bottom: 1.25rem;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.about-content p {
  color: var(--graphite);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 60ch;
}

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

.stat {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--graphite);
  font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
  background: var(--paper);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.contact-card .eyebrow {
  margin-bottom: 1.25rem;
}

.contact-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.contact-sub {
  font-size: 1.05rem;
  color: var(--graphite);
  max-width: 520px;
  margin: 0 auto 3rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
}

.contact-method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: left;
  transition: all 0.25s ease;
}

.contact-method:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--line-soft);
  border-radius: 10px;
  color: var(--black);
  transition: all 0.25s ease;
}

.contact-method:hover .contact-method-icon {
  background: var(--black);
  color: var(--white);
}

.contact-method-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-method-label {
  font-size: 0.78rem;
  color: var(--graphite);
  font-weight: 500;
}

.contact-method-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.contact-method-arrow {
  font-size: 1.1rem;
  color: var(--graphite);
  transition: transform 0.25s ease;
}

.contact-method:hover .contact-method-arrow {
  transform: translateX(3px);
  color: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}

.footer-brand .logo-mark {
  width: 28px;
  height: 28px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--graphite);
  flex-wrap: wrap;
}

.footer-sep { color: var(--line); }

.footer a:hover { color: var(--black); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-content .section-title { text-align: center; }
  .about-content { text-align: center; }
  .about-content p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--gutter) 1.25rem;
  }

  .nav.is-open a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1rem;
    border-radius: 0;
  }

  .nav.is-open .nav-cta {
    border-radius: 999px !important;
    text-align: center;
    margin-top: 0.75rem;
    border-bottom: none !important;
  }

  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   FOUNDER LINK
   ============================================ */
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  transition: all 0.25s ease;
}

.founder-link:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.founder-link svg {
  transition: transform 0.25s ease;
}

.founder-link:hover svg {
  transform: translateX(3px);
}

/* ============================================
   MASE SECTION
   ============================================ */
.section-mase {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.mase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.mase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.mase-content .section-title {
  text-align: left;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.mase-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--graphite);
  margin-bottom: 2rem;
}

.mase-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.mase-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.mase-check {
  width: 28px;
  height: 28px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.mase-features li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mase-features strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--black);
}

.mase-features span {
  font-size: 0.92rem;
  color: var(--graphite);
  line-height: 1.5;
}

/* MASE mockup visual */
.mase-visual {
  position: relative;
}

.mase-mockup {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.mase-mockup:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--line-soft);
  border-bottom: 1px solid var(--line);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.mockup-dot:nth-child(1) { background: #ff5f56; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-title {
  margin-left: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--graphite);
}

.mockup-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.mockup-field:last-of-type {
  border-bottom: none;
}

.mockup-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--graphite);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mockup-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.mockup-value.mockup-ok {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #15803d;
  width: fit-content;
}

.mockup-textarea {
  font-weight: 400;
  color: var(--graphite);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mockup-signature {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.mockup-sig-svg {
  width: 100%;
  max-width: 200px;
  height: 40px;
  color: var(--black);
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--line-soft);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--graphite);
  font-weight: 500;
}

.mockup-status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 2.5s ease infinite;
}

@media (max-width: 960px) {
  .mase-layout {
    grid-template-columns: 1fr;
  }
  .mase-content .section-title {
    text-align: center;
  }
  .mase-badge, .mase-content .btn {
    margin-left: auto;
    margin-right: auto;
  }
  .mase-content {
    text-align: center;
  }
  .mase-features {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
  }
  .mase-mockup {
    transform: none;
    max-width: 480px;
    margin: 0 auto;
  }
}

.stat-sub {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--graphite);
  margin-left: 0.1em;
}

.logo-tld {
  color: var(--graphite);
  font-weight: 400;
  margin-left: 1px;
}

/* ============================================
   PORTAIL CLIENT BUTTON (nav)
   ============================================ */
.nav-portail {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem !important;
  background: #f0fdf4 !important;
  color: #15803d !important;
  border: 1px solid #bbf7d0;
  border-radius: 999px !important;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: all 0.2s ease;
}

.nav-portail:hover {
  background: #15803d !important;
  color: var(--white) !important;
  border-color: #15803d;
  transform: translateY(-1px);
}

.nav-portail::after {
  display: none !important;
}

@media (max-width: 720px) {
  .nav.is-open .nav-portail {
    background: #f0fdf4 !important;
    color: #15803d !important;
    border: 1px solid #bbf7d0 !important;
    text-align: center;
    margin-top: 0.5rem;
    margin-left: 0;
    justify-content: center;
  }
}
