/* PAT public landing — body inspired by product mock, footer PAT existant */

.pat-landing {
  --bg: #f4f6f8;
  --bg-soft: #ffffff;
  --card: #ffffff;
  --border: rgba(11, 31, 51, 0.1);
  --text: #0b1f33;
  --muted: #5b6b7c;
  --blue: #0b1f33;
  --blue-light: #1a334d;
  --green: #1f8a4c;
  --gold: #c9a227;
  --pat-navy: #0b1f3a;
  --pat-blue: #0b1f3a;
  --pat-gold: #e8b923;
  --pat-gold-deep: #c99212;
  --pat-green: #1f8a4c;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(11, 31, 51, 0.08);

  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.lang-switch {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
}
.lang-switch button.is-on {
  background: linear-gradient(135deg, #e8b923, #c99212);
  color: #1a1404;
}

/* —— Zigzag slider —— */
.lp-slider {
  position: relative;
  margin-top: 88px;
  min-height: min(88vh, 760px);
  height: min(88vh, 760px);
  overflow: hidden;
  background: #040712;
}
.lp-slides { position: absolute; inset: 0; }
.lp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 0.9s ease;
  pointer-events: none;
}
.lp-slide.is-on {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.lp-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: lp-slide-ken 14s ease-in-out infinite alternate;
  filter: saturate(1.08);
}
.lp-slide.is-on .lp-slide-bg { animation-play-state: running; }
.lp-slide:not(.is-on) .lp-slide-bg { animation: none; }
@keyframes lp-slide-ken {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}
.lp-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(1, 40, 22, 0.88) 0%, rgba(1, 50, 28, 0.55) 42%, rgba(5, 8, 22, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 8, 22, 0.25) 0%, rgba(5, 8, 22, 0.55) 55%, rgba(4, 7, 18, 0.92) 100%);
}
.lp-slide-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 5.5rem 0 7.5rem;
  max-width: 780px;
}
.lp-slide-brand {
  margin: 0 0 0.85rem;
  color: #fdb102;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-slide-kicker {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.lp-slide-copy h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.lp-slide-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  max-width: 36rem;
  font-weight: 600;
}
.lp-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.lp-slide-actions .btn {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  font-weight: 800;
}
.lp-slide-actions .btn-primary {
  background: linear-gradient(135deg, #fdb102, #e8b923) !important;
  color: #013821 !important;
  box-shadow: 0 14px 32px rgba(253, 177, 2, 0.35) !important;
  border: 0;
}
.lp-slide-actions .btn-outline {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}
.lp-slider-nav {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.lp-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(1, 82, 46, 0.55);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.lp-slider-btn:hover {
  background: rgba(253, 177, 2, 0.9);
  color: #013821;
  border-color: transparent;
}
.lp-slider-dots { display: flex; gap: 0.45rem; }
.lp-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}
.lp-slider-dots button.is-on {
  width: 28px;
  background: linear-gradient(90deg, #fdb102, #4caf17);
}
.lp-zigzag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  z-index: 4;
  display: block;
}
@media (max-width: 720px) {
  .lp-slider {
    min-height: min(78vh, 620px);
    height: min(78vh, 620px);
  }
  .lp-slide-copy {
    padding: 4.2rem 0 6.5rem;
  }
  .lp-slider-nav { bottom: 4.4rem; }
}

.pat-landing a { color: inherit; text-decoration: none; }
.site-body { min-height: 100vh; }

/* —— Nav —— */
.pat-nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 8, 22, 0.78);
  backdrop-filter: blur(22px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 88px;
  padding: 0.45rem 0;
}
.pat-landing .brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}
.pat-landing .brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}
.pat-landing .brand span {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
  margin-right: 0.15rem;
}
.brand-logo {
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.brand-logo-full {
  height: 68px;
  width: auto;
  max-width: min(310px, 36vw);
  padding: 0.35rem 0.75rem;
}
.brand-logo-mark {
  display: none;
  height: 50px;
  width: 50px;
  padding: 0.22rem;
  border-radius: 14px;
}
.pat-footer-brand .brand-logo-full {
  height: 62px;
  max-width: 280px;
  padding: 0.35rem 0.7rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
@media (max-width: 720px) {
  .pat-nav .brand-logo-full { display: none; }
  .pat-nav .brand-logo-mark { display: block; }
  .site-nav-inner {
    min-height: 72px;
    justify-content: space-between;
    gap: 0.55rem;
  }
  .pat-nav .brand-logo-link {
    flex: 1;
    min-width: 0;
    gap: 0.65rem;
    margin-right: 0;
  }
  .pat-nav .brand-name-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    color: #fff;
    line-height: 1.15;
  }
  .pat-nav .brand-name-text strong {
    font-family: var(--font-display, "Manrope", sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pat-nav .brand-name-text span {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(253, 177, 2, 0.92);
    letter-spacing: 0.02em;
  }
  .pat-nav .site-nav-cta { display: none; }
  .pat-nav .nav-hamb {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
  }
}

.brand-name-text { display: none !important; }

@media (max-width: 720px) {
  html.aftont-mobile .pat-nav .brand-name-text,
  .pat-nav .brand-name-text {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    color: #fff;
    line-height: 1.15;
  }
}

.brand-mark-pat {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 10px 35px rgba(40, 120, 255, 0.3);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.brand-mark-pat > strong {
  position: relative;
  z-index: 2;
  font-size: 1rem !important;
  color: #fff !important;
  letter-spacing: 0 !important;
}
.brand-mark-pat .coin {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe08a, #c99212);
  z-index: 1;
}
.brand-mark-pat .coin-1 { right: 6px; top: 8px; }
.brand-mark-pat .coin-2 { right: 3px; top: 14px; width: 10px; height: 10px; }
.brand-mark-pat .coin-3 { right: 7px; top: 21px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-menu {
  display: none;
  flex: 0 1 auto;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  margin-inline: auto;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.site-menu a {
  color: rgba(234, 240, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.site-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.site-menu a:focus-visible {
  outline: 2px solid rgba(232, 185, 35, 0.65);
  outline-offset: 2px;
}
.site-nav-cta {
  display: none;
  gap: 0.55rem;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.15rem;
}
.site-nav-cta .btn {
  padding: 0.62rem 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-hamb {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-hamb span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.nav-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 340px);
  background: linear-gradient(165deg, #071422 0%, #0b1f33 55%, #062816 100%);
  color: #fff;
  z-index: 1100;
  padding: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.nav-drawer[hidden],
.nav-overlay[hidden] { display: none !important; }
.nav-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.15rem 1.1rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(1, 82, 46, 0.22);
}
.nav-drawer-head strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.nav-drawer-head button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
#drawerMenu {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.75rem 1.35rem;
  gap: 0.15rem;
}
#drawerMenu a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
}
#drawerMenu a:hover,
#drawerMenu a:focus-visible,
#drawerMenu a.is-active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}
#drawerMenu .drawer-cta {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.55rem;
}
#drawerMenu .drawer-cta .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}
#drawerMenu .drawer-cta .btn-primary {
  background: linear-gradient(135deg, #01522E, #1f7a45);
  border: 0;
  color: #fff;
}
#drawerMenu .drawer-cta .btn-outline {
  border: 1px solid rgba(253, 177, 2, 0.55);
  color: #FDB102;
  background: rgba(253, 177, 2, 0.08);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1050;
}

/* Auth / connexion — mobile */
@media (max-width: 900px) {
  .pat-app-page .auth-page {
    padding: 5.5rem 0 2rem;
  }
  .pat-app-page .auth-page-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pat-app-page .auth-mosaic {
    min-height: 210px;
    border-radius: 22px;
    overflow: hidden;
  }
  .pat-app-page .auth-mosaic-copy {
    padding: 1.15rem 1.1rem;
  }
  .pat-app-page .auth-mosaic-copy h1 {
    font-size: 1.35rem;
    line-height: 1.25;
  }
  .pat-app-page .auth-card {
    border-radius: 22px;
    padding: 1.15rem 1rem 1.35rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  }
  .pat-app-page .auth-card-head h2 {
    font-size: 1.45rem;
  }
  .pat-app-page .auth-mode-tabs,
  .pat-app-page .auth-method-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .pat-app-page .auth-mode-tabs .auth-mode:nth-child(3),
  .pat-app-page #tabJoin {
    grid-column: 1 / -1;
  }
  .pat-app-page .auth-card .btn-primary,
  .pat-app-page #btnAuthSubmit {
    width: 100%;
    min-height: 3rem;
    border-radius: 14px;
    font-weight: 800;
  }
  .pat-app-page .field input,
  .pat-app-page .field select {
    min-height: 2.9rem;
    border-radius: 12px;
    font-size: 1rem;
  }
}

/* Buttons */
.pat-landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  padding: 13px 20px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.pat-landing .btn:hover { transform: translateY(-2px); }
.pat-landing .btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.pat-landing .btn-primary {
  background: linear-gradient(135deg, #1f6fff, #26a9ff);
  box-shadow: 0 15px 35px rgba(31, 111, 255, 0.25);
  color: #fff;
}
.pat-landing .btn-gold {
  background: linear-gradient(135deg, #f0c84a, #c99212);
  color: #1a1404;
  box-shadow: 0 12px 28px rgba(201, 146, 18, 0.35);
}

/* —— Hero —— */
.lp-hero {
  padding: 70px 0 80px;
  position: relative;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(40, 120, 255, 0.1);
  border: 1px solid rgba(40, 120, 255, 0.25);
  color: #72bbff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.lp-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}
.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin: 0 0 1.4rem;
  font-weight: 800;
}
.lp-gradient {
  background: linear-gradient(90deg, #ffffff, #5abaff, #27d887);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero-desc {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.8rem;
}
.lp-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.lp-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
  color: #7f8da4;
  font-size: 0.78rem;
  font-weight: 600;
}
.lp-avatars { display: flex; }
.lp-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -7px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  color: #fff;
}
.lp-avatars span:first-child { margin-left: 0; }

/* Dashboard mock */
.lp-dash-wrap { position: relative; }
.lp-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(40, 120, 255, 0.2);
  filter: blur(100px);
  border-radius: 50%;
  right: 0;
  top: 0;
  z-index: -1;
}
.lp-dash {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border-radius: 26px;
  padding: 1.05rem;
  box-shadow: var(--shadow);
}
.lp-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.2rem 1rem;
}
.lp-dash-title { font-weight: 700; font-size: 0.9rem; }
.lp-dash-top small { color: #718097; font-size: 0.75rem; }
.lp-status {
  background: rgba(25, 212, 124, 0.1);
  color: #3be492;
  border: 1px solid rgba(25, 212, 124, 0.18);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.lp-balance {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #1554d1, #12317e);
  border-radius: 19px;
  padding: 1.3rem;
  margin-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
}
.lp-balance::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  right: -50px;
  top: -50px;
}
.lp-balance-label { font-size: 0.72rem; color: rgba(255, 255, 255, 0.7); }
.lp-balance-value {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0.35rem 0;
}
.lp-balance-growth { color: #54e69a; font-size: 0.75rem; font-weight: 700; }
.lp-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.lp-stats-mini > div {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.9rem;
  border-radius: 16px;
}
.lp-stats-mini small {
  display: block;
  color: #7d8aa1;
  font-size: 0.65rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.lp-stats-mini strong { font-size: 1rem; }
.lp-stats-mini .ok,
.ok { color: #38df91; }
.lp-stats-mini .warn,
.warn { color: #f6c344; }
.lp-beneficiary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  gap: 0.75rem;
}
.lp-person { display: flex; align-items: center; gap: 0.7rem; }
.lp-person-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.75rem;
}
.lp-person small {
  display: block;
  color: #77859b;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}
.lp-amount {
  text-align: right;
  font-size: 1.05rem;
  font-weight: 800;
}
.lp-amount small {
  display: block;
  color: #758399;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

/* Numbers */
.lp-numbers { padding: 1.5rem 0 4.5rem; }
.lp-numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 22px;
  overflow: hidden;
}
.lp-number {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-number:nth-child(2n) { border-right: 0; }
.lp-number:nth-child(n + 3) { border-bottom: 0; }
.lp-number strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  font-weight: 800;
}
.lp-number span { color: #7e8ca3; font-size: 0.8rem; }

/* Sections */
.lp-section { padding: 5rem 0; }
.lp-section-head { max-width: 700px; margin-bottom: 2.8rem; }
.lp-eyebrow {
  color: #50a9ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
}
.lp-section h2,
.lp-roles h2,
.lp-app h2,
.lp-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  font-weight: 800;
}
.lp-section-head p,
.lp-muted {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.lp-features {
  background: linear-gradient(180deg, transparent, rgba(40, 120, 255, 0.035), transparent);
}
.lp-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.lp-feature {
  padding: 1.6rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 22px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.lp-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(40, 120, 255, 0.25);
}
.lp-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #72bbff;
  background: rgba(40, 120, 255, 0.12);
  border: 1px solid rgba(40, 120, 255, 0.18);
}
.lp-feature h3 { font-size: 1.05rem; margin: 0 0 0.55rem; }
.lp-feature p { color: #8491a7; font-size: 0.88rem; line-height: 1.7; margin: 0; }

.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.lp-step {
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
}
.lp-step-n {
  font-size: 0.75rem;
  font-weight: 800;
  color: #55b5ff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.lp-step h3 { font-size: 1.05rem; margin: 0 0 0.55rem; }
.lp-step p { color: #8290a6; font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* Roles */
.lp-roles { background: #071022; }
.lp-roles-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.lp-roles .lp-muted { margin-bottom: 1.6rem; }
.lp-role-list { display: grid; gap: 0.7rem; }
.lp-role {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  cursor: pointer;
  transition: 0.25s;
  text-align: left;
  width: 100%;
  color: inherit;
  font: inherit;
}
.lp-role:hover,
.lp-role.is-on {
  background: rgba(40, 120, 255, 0.09);
  border-color: rgba(40, 120, 255, 0.28);
}
.lp-role-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  font-size: 0.75rem;
  color: #72bbff;
  flex: 0 0 auto;
}
.lp-role-info strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.lp-role-info span { font-size: 0.72rem; color: #77859b; }
.lp-role-preview {
  min-height: 360px;
  border-radius: 25px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 80% 0%, rgba(40, 120, 255, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.035);
}
.lp-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  align-items: start;
}
.lp-preview-head h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.lp-preview-head span { color: #6f7d93; font-size: 0.75rem; }
.lp-perm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.lp-perm {
  padding: 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-perm strong { display: block; font-size: 0.85rem; margin-bottom: 0.35rem; }
.lp-perm span { font-size: 0.75rem; color: #7c8aa0; }

/* App screenshots */
.lp-app-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-app-shots {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 1.5rem 0 0.5rem;
}
.lp-app-shot {
  margin: 0;
  width: min(240px, 58vw);
  border-radius: 28px;
  overflow: hidden;
  background: #0b1f33;
  border: 3px solid rgba(255,255,255,.55);
  box-shadow:
    0 30px 70px rgba(1, 82, 46, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform .35s ease, z-index 0s;
}
.lp-app-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-app-shot-back {
  position: absolute;
  transform: translate(-18%, 4%) rotate(-8deg);
  opacity: 0.92;
  z-index: 1;
}
.lp-app-shot-front {
  position: relative;
  z-index: 2;
  transform: translate(14%, -2%) rotate(4deg);
}
.lp-app-shot-front:hover,
.lp-app-shot-back:hover {
  transform: translate(0, 0) rotate(0deg) scale(1.02);
  z-index: 3;
}
.lp-app-points { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.lp-app-point { display: flex; gap: 0.9rem; }
.lp-check {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(25, 212, 124, 0.1);
  color: #31dc8c;
  font-weight: 800;
}
.lp-app-point h3 { font-size: 0.95rem; margin: 0 0 0.3rem; }
.lp-app-point p { color: #7d8ba1; font-size: 0.82rem; line-height: 1.6; margin: 0; }
@media (min-width: 960px) {
  .lp-app-shots { min-height: 540px; }
  .lp-app-shot { width: min(270px, 100%); }
}

/* CTA */
.lp-cta { padding-bottom: 5.5rem; }
.lp-cta-box {
  padding: 3.5rem 1.5rem;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(25, 212, 124, 0.22), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(40, 120, 255, 0.25), transparent 35%),
    linear-gradient(135deg, #0b1b3c, #071025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.lp-cta-box h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.lp-cta-box > p {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: #91a0b6;
  line-height: 1.7;
}

/* CMS blocks on dark landing */
#sectionsRoot .shell { padding-top: 2rem; padding-bottom: 2rem; }
#sectionsRoot .site-block { padding: 2rem 0 1rem; max-width: 720px; }
#sectionsRoot .eyebrow {
  color: #50a9ff;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 0.7rem;
}
#sectionsRoot h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
}
#sectionsRoot .lead { color: var(--muted); line-height: 1.65; }
#sectionsRoot .feature-grid {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 2rem;
}
#sectionsRoot .feature-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s;
  color: #fff;
}
#sectionsRoot .feature-card:hover { transform: translateY(-4px); }
#sectionsRoot .feature-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
}
#sectionsRoot .feature-card .body { padding: 1.15rem 1.25rem 1.35rem; }
#sectionsRoot .feature-card .num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(40, 120, 255, 0.15);
  color: #72bbff;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
#sectionsRoot .feature-card h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
#sectionsRoot .feature-card p { margin: 0; color: #8491a7; line-height: 1.55; }
#sectionsRoot .split-pro {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 3rem;
  align-items: center;
}
#sectionsRoot .split-pro img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  filter: brightness(0.88);
}
#sectionsRoot .flow-list { display: grid; gap: 0.7rem; }
#sectionsRoot .flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: #fff;
}
#sectionsRoot .flow-item .n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  background: linear-gradient(135deg, #1f6fff, #12317e);
}
#sectionsRoot .flow-item h4 { margin: 0 0 0.2rem; }
#sectionsRoot .flow-item p { margin: 0; color: #8290a6; font-size: 0.9rem; }

/* —— Footer (existant, inchangé) —— */
.pat-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pillar {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.pillar-blue {
  color: #9ec0ff;
  background: rgba(40, 120, 255, 0.15);
  border: 1px solid rgba(40, 120, 255, 0.3);
}
.pillar-green {
  color: #6ee7a8;
  background: rgba(25, 212, 124, 0.12);
  border: 1px solid rgba(25, 212, 124, 0.28);
}
.pillar-gold {
  color: #ffe08a;
  background: rgba(232, 185, 35, 0.14);
  border: 1px solid rgba(232, 185, 35, 0.35);
}
.pat-pillars-footer { margin-top: 1rem; }

.pat-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 1.5rem;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(232, 185, 35, 0.16), transparent 55%),
    radial-gradient(800px 380px at 100% 100%, rgba(26, 79, 156, 0.45), transparent 50%),
    linear-gradient(180deg, #0b1f3a 0%, #071426 100%) !important;
  border-top: 1px solid rgba(232, 185, 35, 0.35) !important;
}
.pat-footer-glow {
  position: absolute;
  inset: auto 10% -40% 10%;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(232, 185, 35, 0.18), transparent 70%);
  pointer-events: none;
}
.pat-footer-top {
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.pat-footer-brand .brand { margin-bottom: 1rem; }
.pat-footer-brand p {
  margin: 0 0 1.1rem;
  max-width: 28rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}
.pat-footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}
.pat-footer-cols h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pat-footer-cols a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.28rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}
.pat-footer-cols a:hover {
  color: var(--pat-gold);
  transform: translateX(3px);
}
.pat-footer-mail {
  display: inline-block !important;
  color: var(--pat-gold) !important;
  font-weight: 800 !important;
  margin-bottom: 0.55rem;
}
.pat-footer-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1rem !important;
  font-style: italic;
}
.pat-footer-strip {
  position: relative;
  z-index: 1;
  margin: 2.5rem 0 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 185, 35, 0.25);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(26, 79, 156, 0.45), rgba(232, 185, 35, 0.18), rgba(31, 138, 76, 0.25)) !important;
}
.pat-footer-strip-inner { padding: 1rem 1.25rem; text-align: center; }
.pat-footer-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}
.pat-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}
.pat-footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
}
.pat-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pat-footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  font-weight: 600;
}
.pat-footer-legal a:hover { color: var(--pat-gold); }

/* Reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 860px) {
  .site-menu,
  .site-nav-cta { display: flex; }
  .nav-hamb { display: none; }
}
@media (min-width: 860px) and (max-width: 1180px) {
  .site-menu a { padding: 0.5rem 0.62rem; font-size: 0.74rem; }
  .site-nav-cta .btn { padding: 0.55rem 0.8rem; font-size: 0.74rem; }
  .brand-logo-full { height: 60px; max-width: min(250px, 28vw); }
}
@media (min-width: 860px) {
  .lp-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .lp-dash {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  }
  .lp-numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .lp-number {
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
  .lp-number:last-child { border-right: 0; }
  .lp-features-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-steps { grid-template-columns: repeat(4, 1fr); }
  .lp-roles-layout { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
  .lp-perm-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-app-layout { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .lp-cta-box { padding: 4.2rem; }
  #sectionsRoot .feature-grid { grid-template-columns: repeat(3, 1fr); }
  #sectionsRoot .split-pro { grid-template-columns: 1.05fr 0.95fr; }
  .pat-footer-top {
    grid-template-columns: 0.95fr 1.35fr;
    gap: 3rem;
    align-items: start;
  }
  .pat-footer-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .lp-hero { padding: 70px 0 50px; }
  .lp-hero h1 { letter-spacing: -0.04em; }
  .lp-dash { transform: none; }
}

/* —— Light body (header + footer stay dark) —— */
.pat-landing main {
  background: #f4f6f8;
  color: #0b1f33;
}
.pat-landing .lp-hero {
  background: #f4f6f8;
  padding-top: 70px;
}
.pat-landing .lp-hero h1 { color: #0b1f33; }
.pat-landing .lp-gradient {
  background: linear-gradient(90deg, #0b1f33, #c9a227, #1f8a4c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pat-landing .lp-hero-desc,
.pat-landing .lp-trust { color: #5b6b7c; }
.pat-landing .lp-badge {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
  color: #8a6d12;
}
.pat-landing .lp-badge-dot { background: #1f8a4c; box-shadow: 0 0 12px rgba(31,138,76,.45); }

.pat-landing .btn-primary {
  background: linear-gradient(135deg, #0b1f3a, #16324f) !important;
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.22) !important;
}
/* Slider hero CTA — jaune or (priorité sur le btn-primary sombre) */
.pat-landing .lp-slide-actions .btn-primary,
.pat-landing .lp-slide-actions .btn-gold {
  background: linear-gradient(135deg, #ffd24a, #f0b400 55%, #d99a00) !important;
  color: #13200f !important;
  border: 0 !important;
  box-shadow: 0 16px 36px rgba(240, 180, 0, 0.42) !important;
  font-weight: 800 !important;
}
.pat-landing .lp-slide-actions .btn-primary:hover,
.pat-landing .lp-slide-actions .btn-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.pat-landing .lp-slide-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
}
.pat-landing main .btn-outline {
  background: #fff;
  border: 1px solid rgba(11, 31, 51, 0.14);
  color: #0b1f33;
}
.pat-landing main .btn-outline:hover {
  border-color: rgba(201, 162, 39, 0.45);
}

.pat-landing .lp-dash {
  background: linear-gradient(145deg, #0f1c2e, #0b1524);
  border-color: rgba(255,255,255,.1);
  color: #fff;
}
.pat-landing .lp-numbers {
  background: transparent;
}
.pat-landing .lp-numbers-grid {
  background: #fff;
  border: 1px solid rgba(11, 31, 51, 0.1);
  box-shadow: var(--shadow);
}
.pat-landing .lp-number {
  border-color: rgba(11, 31, 51, 0.08);
}
.pat-landing .lp-number strong { color: #0b1f33; }
.pat-landing .lp-number span { color: #5b6b7c; }

.pat-landing .lp-section { background: transparent; }
.pat-landing .lp-features {
  background: linear-gradient(180deg, transparent, rgba(201,162,39,.06), transparent);
}
.pat-landing .lp-eyebrow {
  color: #a88414;
}
.pat-landing .lp-section h2,
.pat-landing .lp-roles h2,
.pat-landing .lp-app h2 {
  color: #0b1f33;
}
.pat-landing .lp-section-head p,
.pat-landing .lp-muted {
  color: #5b6b7c;
}
.pat-landing .lp-feature,
.pat-landing .lp-step {
  background: #fff;
  border: 1px solid rgba(11, 31, 51, 0.1);
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.04);
}
.pat-landing .lp-feature:hover {
  border-color: rgba(201, 162, 39, 0.4);
  background: #fff;
}
.pat-landing .lp-feature-icon {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.28);
  color: #a88414;
}
.pat-landing .lp-feature p,
.pat-landing .lp-step p { color: #5b6b7c; }
.pat-landing .lp-step-n { color: #a88414; }

.pat-landing .lp-roles {
  background: #eef1f4;
}
.pat-landing .lp-role {
  background: #fff;
  border-color: rgba(11, 31, 51, 0.1);
  color: #0b1f33;
}
.pat-landing .lp-role:hover,
.pat-landing .lp-role.is-on {
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.4);
}
.pat-landing .lp-role-icon {
  background: rgba(11, 31, 58, 0.08);
  color: #0b1f3a;
}
.pat-landing .lp-role-info span { color: #5b6b7c; }
.pat-landing .lp-role-preview {
  background:
    radial-gradient(circle at 80% 0%, rgba(201,162,39,.12), transparent 30%),
    #fff;
  border-color: rgba(11, 31, 51, 0.1);
  color: #0b1f33;
}
.pat-landing .lp-preview-head span { color: #5b6b7c; }
.pat-landing .lp-perm {
  background: #f7f8fa;
  border-color: rgba(11, 31, 51, 0.08);
}
.pat-landing .lp-perm span { color: #5b6b7c; }
.pat-landing .lp-status {
  background: rgba(31, 138, 76, 0.1);
  color: #1f8a4c;
  border-color: rgba(31, 138, 76, 0.22);
}

.pat-landing .lp-app-point p { color: #5b6b7c; }
.pat-landing .lp-check {
  background: rgba(31, 138, 76, 0.1);
  color: #1f8a4c;
}

.pat-landing .lp-cta-box {
  background:
    radial-gradient(circle at 80% 20%, rgba(201,162,39,.18), transparent 30%),
    linear-gradient(135deg, #0b1f3a, #071426);
  border-color: rgba(201, 162, 39, 0.25);
  color: #fff;
}
.pat-landing .lp-cta-box h2 { color: #fff; }
.pat-landing .lp-cta-box > p { color: rgba(255,255,255,.72); }
.pat-landing .lp-cta-box .lp-eyebrow { color: #e8b923; }
.pat-landing .lp-cta-box .btn-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

#sectionsRoot .site-block h2,
#sectionsRoot h2 { color: #0b1f33; }
#sectionsRoot .lead { color: #5b6b7c; }
#sectionsRoot .eyebrow { color: #a88414 !important; }
#sectionsRoot .feature-card,
#sectionsRoot .flow-item {
  background: #fff !important;
  border-color: rgba(11, 31, 51, 0.1) !important;
  color: #0b1f33 !important;
}
#sectionsRoot .feature-card p,
#sectionsRoot .flow-item p { color: #5b6b7c !important; }
#sectionsRoot .feature-card .num,
#sectionsRoot .flow-item .n {
  background: linear-gradient(135deg, #c9a227, #0b1f3a) !important;
  color: #fff !important;
}

/* Social footer — centered */
.pat-social-block { display: none; }
.pat-footer-social-bar {
  margin: 2rem auto 1.25rem;
  max-width: 520px;
  padding: 1.45rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pat-social-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
}
.pat-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto;
}
.pat-social {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  transition: transform .2s, background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.pat-social svg { width: 17px; height: 17px; display: block; }
.pat-social:hover {
  transform: translateY(-2px);
  background: rgba(232,185,35,.18);
  border-color: rgba(232,185,35,.5);
  color: #e8b923;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.pat-designby {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 0.84rem;
}
.pat-designby strong {
  color: #e8b923;
  font-weight: 800;
}
.pat-footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}
@media (min-width: 860px) {
  .pat-footer-bottom {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }
  .pat-footer-bottom .pat-designby { text-align: center; }
  .pat-footer-bottom .pat-footer-legal {
    justify-self: end;
  }
}

/* Partners — 3 visibles, puis défilement */
.lp-partners {
  overflow: hidden;
  padding-bottom: 3.5rem;
}
.lp-partners .lp-section-head { max-width: 40rem; }
.partners-rail {
  margin-top: 1.75rem;
  position: relative;
}
.partners-rail[data-count="0"] {
  display: grid;
  place-items: center;
  min-height: 4rem;
}
.partners-static {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 820px) {
  .partners-static {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
.partners-marquee {
  --partner-gap: 1.1rem;
  --partner-visible: 3;
  --partner-frame: min(1040px, calc(100vw - 2.5rem));
  --partner-card: calc((var(--partner-frame) - (var(--partner-gap) * (var(--partner-visible) - 1))) / var(--partner-visible));
  position: relative;
  width: var(--partner-frame);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.partners-track {
  display: flex;
  gap: var(--partner-gap);
  width: max-content;
  padding: 0.45rem 0 0.9rem;
  animation: partners-scroll 28s linear infinite;
  will-change: transform;
}
.partners-set {
  display: flex;
  gap: var(--partner-gap);
  flex: 0 0 auto;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - (var(--partner-gap) / 2))); }
}
@media (max-width: 820px) {
  .partners-marquee {
    --partner-visible: 1.15;
    --partner-frame: min(420px, calc(100vw - 2rem));
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
}
@media (min-width: 821px) and (max-width: 1020px) {
  .partners-marquee { --partner-visible: 2.2; }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
  .partners-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.partner-card {
  background: #fff;
  border: 1px solid rgba(11,31,51,.1);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  box-shadow: 0 12px 30px rgba(11,31,51,.05);
  transition: transform .2s, box-shadow .2s;
  min-width: 0;
}
.partners-marquee .partner-card {
  flex: 0 0 var(--partner-card);
  width: var(--partner-card);
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(11,31,51,.1);
}
.partner-top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: center;
}
.partner-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.partner-logo,
.partner-logo-fallback {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex: 0 0 auto;
  object-fit: cover;
  background: #f4f7f2;
  border: 1px solid rgba(0, 104, 55, 0.12);
}
.partner-logo-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #006837;
  background: linear-gradient(145deg, #eef8e8, #fff7e0);
}
.partner-brand strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.25;
  color: #0b1f33;
}
.partner-card p {
  margin: .55rem 0 0;
  color: #5b6b7c;
  font-size: .9rem;
}
.partner-meta {
  margin-top: .85rem;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .82rem;
  font-weight: 700;
  color: #0b1f33;
}
.partner-actions {
  margin-top: 1rem;
  display: flex;
}
.partner-actions .partner-join,
.pat-landing .partner-actions .partner-join {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 0 !important;
  cursor: pointer;
  padding: 0.75rem 0.95rem !important;
  font-size: 0.9rem !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #fdb102, #e8b923) !important;
  color: #013821 !important;
  box-shadow: 0 10px 22px rgba(253, 177, 2, 0.32) !important;
  text-decoration: none;
  visibility: visible !important;
  opacity: 1 !important;
}
.partner-actions .partner-join:hover,
.pat-landing .partner-actions .partner-join:hover {
  filter: brightness(1.06);
  color: #012616 !important;
}
.partners-marquee:has(.partner-join:hover) .partners-track,
.partners-marquee:has(.partner-join:focus) .partners-track,
body.join-modal-open .partners-track {
  animation-play-state: paused;
}
.hub-pill {
  font-size: .7rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; padding: .3rem .55rem; border-radius: 999px;
  background: rgba(201,162,39,.15); color: #8a6d12; white-space: nowrap;
}
.pat-footer-strip { display: none !important; }

/* Pricing */
.lp-pricing {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 185, 35, 0.12), transparent 60%),
    linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: 22px;
  padding: 1.55rem 1.4rem 1.4rem;
  box-shadow: 0 16px 40px rgba(11, 31, 51, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(11, 31, 51, 0.1);
}
.price-card-featured {
  background: linear-gradient(165deg, #0b1f33 0%, #14324f 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 24px 55px rgba(11, 31, 51, 0.28);
  transform: translateY(-8px);
}
.price-card-featured:hover {
  transform: translateY(-12px);
}
.price-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e8b923, #c99212);
  color: #1a1404;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-tier {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6d12;
}
.price-card-featured .price-tier { color: #e8b923; }
.price-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 1rem;
}
.price-amount strong {
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0b1f33;
}
.price-card-featured .price-amount strong { color: #fff; }
.price-amount span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #5b6b7c;
}
.price-card-featured .price-amount span { color: rgba(255,255,255,.7); }
.price-note {
  margin: 0.75rem 0 0;
  color: #5b6b7c;
  font-size: 0.92rem;
  line-height: 1.45;
}
.price-card-featured .price-note { color: rgba(255,255,255,.72); }
.price-features {
  list-style: none;
  margin: 1.25rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.35;
}
.price-card-featured .price-features li { color: rgba(255,255,255,.88); }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 28%, transparent 30%),
    linear-gradient(135deg, #1f8a4c, #006837);
  box-shadow: 0 0 0 3px rgba(31, 138, 76, 0.12);
}
.price-card-featured .price-features li::before {
  background:
    radial-gradient(circle at 35% 35%, #0b1f33 0 28%, transparent 30%),
    linear-gradient(135deg, #e8b923, #c99212);
  box-shadow: 0 0 0 3px rgba(232, 185, 35, 0.18);
}
.price-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.price-card-featured .btn-primary {
  background: linear-gradient(135deg, #e8b923, #c99212) !important;
  color: #1a1404 !important;
  border: 0;
  box-shadow: 0 12px 28px rgba(201, 146, 18, 0.35);
}
.price-card .btn-outline {
  border: 1px solid rgba(11, 31, 51, 0.16);
  color: #0b1f33;
  background: #fff;
}
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
}

/* Join modal */
body.join-modal-open { overflow: hidden; }
.join-modal[hidden] { display: none !important; }
.join-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.join-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 18, 0.62);
  backdrop-filter: blur(6px);
}
.join-modal-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: join-modal-in .22s ease;
}
@keyframes join-modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.join-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0b1f33;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.join-modal-head {
  padding-right: 2rem;
  margin-bottom: 1rem;
}
.join-modal-head h2 {
  margin: 0.2rem 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.join-modal-head p:last-child {
  margin: 0.45rem 0 0;
  color: #5b6b7c;
  font-size: 0.92rem;
  line-height: 1.45;
}
.join-modal-form {
  display: grid;
  gap: 0.85rem;
}
.join-modal-form .field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.3rem;
}
.join-modal-form input,
.join-modal-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 31, 51, 0.14);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #f8fafc;
  color: #0b1f33;
}
.join-modal-form input[readonly] {
  background: #eef6ec;
  border-color: rgba(31, 138, 76, 0.28);
  color: #006837;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.join-modal-form .btn-primary {
  margin-top: 0.2rem;
  background: linear-gradient(135deg, #e8b923, #c99212);
  color: #1a1404;
  border: 0;
  font-weight: 800;
}

.pat-landing .brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.pat-landing .brand span {
  margin-top: 0.15rem;
  color: #e8b923;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pat-footer-brand .brand span {
  color: #e8b923;
}

.pat-nav .btn-primary {
  background: linear-gradient(135deg, #e8b923, #c99212) !important;
  color: #1a1404 !important;
  box-shadow: 0 10px 24px rgba(201, 146, 18, 0.3) !important;
}
.pat-nav .btn-outline {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
}
.pat-nav .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
}


/* Active menu link */
.site-menu a.is-active {
  color: #1a1404;
  background: linear-gradient(135deg, #e8b923, #c99212);
  box-shadow: 0 8px 18px rgba(201, 146, 18, 0.28);
}

.partner-tagline {
  margin: 0.55rem 0 0;
  color: #006837;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Premium inner pages */
.pat-page .page-hero {
  position: relative;
  margin-top: 88px;
  padding: 5.4rem 0 3.8rem;
  min-height: min(52vh, 420px);
  overflow: hidden;
  color: #fff;
  background: #070b18;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 40, 22, 0.55) 0%, rgba(1, 50, 28, 0.72) 48%, rgba(4, 7, 18, 0.9) 100%),
    linear-gradient(90deg, rgba(1, 50, 28, 0.45), transparent 60%);
}
.pat-page[data-page="/contact"] .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80');
}
.pat-page[data-page="/partenaires"] .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1800&q=80');
}
.pat-page[data-page="/fonctionnalites"] .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1553729459-efe14ef6055d?auto=format&fit=crop&w=1800&q=80');
}
.pat-page[data-page="/comment-ca-marche"] .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80');
}
.pat-page[data-page="/roles"] .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1800&q=80');
}
.pat-page[data-page="/tarifs"] .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?auto=format&fit=crop&w=1800&q=80');
}
.pat-page[data-page="/application"] .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=1800&q=80');
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.page-hero .lp-eyebrow {
  display: inline-block;
  color: #fdb102;
}
.page-hero h1 {
  margin: 0.45rem auto 0;
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.page-hero-lead {
  margin: 1rem auto 0;
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 40rem;
  font-weight: 600;
}
.page-hero-slogan {
  margin: 0.85rem auto 0;
  color: #fdb102;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.page-crumbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.page-crumbs a { color: #e8b923; }
.page-section { padding: 3.5rem 0 4.5rem; }
.page-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.page-intro h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
}
.page-intro p:last-child {
  margin: 0.7rem 0 0;
  color: #5b6b7c;
  line-height: 1.55;
}
.page-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.page-split.reverse { direction: rtl; }
.page-split.reverse > * { direction: ltr; }
.page-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(11, 31, 51, 0.14);
  min-height: 280px;
  background: #0b1f33;
}
.page-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.page-copy h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
}
.page-copy > p {
  margin: 0.75rem 0 0;
  color: #5b6b7c;
  line-height: 1.55;
}
.page-note-band {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #0b1f33;
  color: #fff;
  box-shadow: 0 24px 55px rgba(11, 31, 51, 0.2);
}
.page-note-band img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 360px;
  object-fit: cover;
  display: block;
  background: #12304a;
}
.page-note-band > div {
  padding: 1.8rem 1.6rem;
  display: grid;
  align-content: center;
  gap: 0.75rem;
}
.page-note-band h3 { margin: 0; font-size: 1.35rem; }
.page-note-band p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.5; }

/* Story / vision blocks */
.page-story {
  margin: 2.4rem 0 0.5rem;
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(238,248,232,.9), rgba(255,247,224,.75)),
    #fff;
  border: 1px solid rgba(11,31,51,.08);
  box-shadow: 0 16px 40px rgba(11,31,51,.05);
}
.page-story h2 {
  margin: 0.2rem 0 0.65rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  color: #0b1f33;
}
.page-story p {
  margin: 0 0 0.75rem;
  color: #3d4f61;
  line-height: 1.6;
  max-width: 62ch;
}
.page-story p:last-child { margin-bottom: 0; }
.page-story-lead {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0b1f33 !important;
}
.page-story-compact {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.3rem;
}
.page-story-problem { margin-bottom: 2rem; }

.founders-block { margin-bottom: 2rem; }
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.35rem;
}
.founder-card {
  background: #fff;
  border: 1px solid rgba(11,31,51,.1);
  border-radius: 18px;
  padding: 1.15rem 1.1rem 1.25rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(11,31,51,.05);
}
.founder-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0b5cab, #0a7a45);
  color: #fff;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(11,92,171,.28);
}
.founder-photo-alt {
  background: linear-gradient(145deg, #0a7a45, #c9a227);
  box-shadow: 0 10px 24px rgba(10,122,69,.25);
}
.founder-card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: #0b1f33;
}
.founder-card p {
  margin: 0.2rem 0 0.55rem;
  color: #5b6b7c;
  font-size: 0.9rem;
}
.founder-card a {
  color: #0b5cab;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}
.founder-card a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 1rem;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(11,31,51,.1);
  border-radius: 20px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 14px 34px rgba(11,31,51,.06);
}
.contact-ico {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eef8e8, #fff7e0);
  margin-bottom: 0.55rem;
}
.contact-card h3 { margin: 0; font-size: 1.05rem; }
.contact-card a {
  display: inline-block;
  margin-top: 0.35rem;
  color: #0b1f33;
  font-weight: 800;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-top: 0.35rem;
}
.contact-links a {
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.35;
  word-break: break-word;
}
.contact-links a:hover { text-decoration: underline; }
.contact-card p {
  margin: 0.35rem 0 0;
  color: #5b6b7c;
  font-size: 0.92rem;
}
.contact-form {
  background: #fff;
  border: 1px solid rgba(11,31,51,.1);
  border-radius: 22px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 18px 42px rgba(11,31,51,.07);
  display: grid;
  gap: 0.85rem;
}
.contact-form h3 { margin: 0 0 0.2rem; }
.contact-form .field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #334155;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11,31,51,.14);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #f8fafc;
}
.contact-map-wrap {
  margin-top: 2.75rem;
  text-align: center;
}
.contact-map-head {
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}
.contact-map-head h2 {
  margin: 0.3rem 0 0;
  letter-spacing: -0.03em;
}
.contact-map-head p:last-child {
  margin: 0.55rem 0 0;
  color: #5b6b7c;
}
.contact-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11,31,51,.1);
  box-shadow: 0 20px 50px rgba(11,31,51,.1);
  min-height: 360px;
  background: #e8eef5;
}
.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.contact-map-link {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  font-weight: 700;
}
.contact-map-link a { color: #0b1f33; }
.page-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.page-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.page-card, .page-role-card {
  background: #fff;
  border: 1px solid rgba(11,31,51,.1);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 16px 40px rgba(11,31,51,.06);
}
.page-card-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #8a6d12;
  margin-bottom: 0.65rem;
}
.page-card h3, .page-role-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.page-card p, .page-role-card p {
  margin: 0.55rem 0 0;
  color: #5b6b7c;
  line-height: 1.5;
}
.page-role-card ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.page-role-card li {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b1f33;
  padding-left: 1rem;
  position: relative;
}
.page-role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8b923, #1f8a4c);
}
.page-steps {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin-inline: auto;
}
.page-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(11,31,51,.1);
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 14px 34px rgba(11,31,51,.05);
}
.page-step-index {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1a1404;
  background: linear-gradient(135deg, #e8b923, #c99212);
}
.page-step h3 { margin: 0; font-size: 1.1rem; }
.page-step p { margin: 0.35rem 0 0; color: #5b6b7c; }
.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.2rem;
}
.page-cta-row.left { justify-content: flex-start; }

.app-open-panel {
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(1,82,46,.1), rgba(253,177,2,.12));
  border: 1px solid rgba(1,82,46,.18);
  display: grid;
  gap: .65rem;
}
.app-open-title { margin: 0; font-weight: 800; color: #01522E; }
.app-open-lead { margin: 0; color: #5b6b7c; line-height: 1.45; font-size: .95rem; }
.app-open-actions { display: flex; flex-wrap: wrap; gap: .55rem; }

.aftont-mobile-gate {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: .75rem;
  background: rgba(5, 8, 22, 0.92);
  backdrop-filter: blur(10px);
}
.aftont-mobile-gate-card {
  max-width: 520px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  display: grid;
  gap: .45rem;
}
.aftont-mobile-gate-card p { margin: 0; opacity: .85; font-size: .9rem; }
.aftont-mobile-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-top: .35rem;
}
.aftont-mobile-gate .btn-outline {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline.dark {
  border: 1px solid rgba(11,31,51,.16);
  color: #0b1f33;
  background: #fff;
}
.page-pricing { background: transparent; padding-top: 0; }
.partners-static-page {
  max-width: 1100px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-app-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.page-app-shots {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}
.page-media-app {
  max-width: 320px;
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(1,82,46,.15);
  box-shadow: 0 24px 50px rgba(1,82,46,.18);
}
.page-media-app img { width: 100%; display: block; }
.page-check-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.page-check-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 700;
  color: #0b1f33;
}
.page-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1f8a4c;
  font-weight: 900;
}
.page-app-panel {
  position: relative;
  background: linear-gradient(160deg, #0b1f33, #14324f);
  color: #fff;
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,31,51,.28);
}
.page-app-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,185,35,.35), transparent 70%);
}
.page-app-kicker {
  position: relative;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8b923;
}
.page-app-panel > strong {
  position: relative;
  display: block;
  margin-top: 0.45rem;
  font-size: 1.35rem;
}
.page-app-panel > p {
  position: relative;
  margin: 0.55rem 0 0;
  color: rgba(255,255,255,.7);
}
.page-app-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.page-app-stats div {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 0.75rem;
}
.page-app-stats span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-app-stats strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.25rem;
}
@media (max-width: 960px) {
  .page-grid-3, .page-grid-2, .page-app-layout, .partners-static-page,
  .page-split, .page-note-band, .contact-layout {
    grid-template-columns: 1fr;
  }
  .page-split.reverse { direction: ltr; }
  .partners-static-page { max-width: 420px; margin-inline: auto; }
  .page-steps { max-width: 560px; margin-inline: auto; }
}
