@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --bg: #f2f4f8;
  --bg-soft: #edf0f6;
  --ink: #171a21;
  --muted: #616775;
  --line: #d6dce8;
  --line-strong: #bcc4d3;
  --accent: #d7dde8;
  --card: #ffffff;
}

* { box-sizing: border-box; }

.status-bar {
  background: #fff;
  color: #000;
  border-bottom: 1px solid #000;
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 8vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccff00;
  flex-shrink: 0;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #fbfcfe 0%, var(--bg) 42%);
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.5vh 8vw 6vh;
}

.page-manual {
  position: relative;
  isolation: isolate;
  max-width: 1180px;
  padding: 5.5vh 7vw 9vh;
}

.page-manual::before,
.page-manual::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.page-manual::before {
  top: 8%;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 140, 0.2) 0%, rgba(255, 0, 140, 0.08) 35%, transparent 72%);
  filter: blur(28px);
}

.page-manual::after {
  bottom: 6%;
  left: -65px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 255, 104, 0.2) 0%, rgba(92, 255, 104, 0.08) 36%, transparent 75%);
  filter: blur(24px);
}

.page-faq {
  position: relative;
  isolation: isolate;
  max-width: 1080px;
  padding: 4.8vh 6.4vw 7vh;
}

.page-faq::before,
.page-faq::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.page-faq::before {
  top: 6%;
  right: -72px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(255, 44, 166, 0.17) 0%, rgba(255, 44, 166, 0.06) 36%, transparent 72%);
  filter: blur(24px);
}

.page-faq::after {
  bottom: 7%;
  left: -62px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(34, 215, 86, 0.16) 0%, rgba(34, 215, 86, 0.06) 36%, transparent 72%);
  filter: blur(20px);
}

.page-about {
  position: relative;
  isolation: isolate;
  max-width: 1120px;
  padding: 4.8vh 6.4vw 7.4vh;
}

.page-about::before,
.page-about::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.page-about::before,
.page-about::after {
  display: none;
}

.page-about .back {
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #000;
  padding: 3px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-about .back:hover {
  color: #999;
  border-color: #999;
  background: transparent;
  transform: none;
}

.page-faq .back {
  border: 1px solid #d8d8dc;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  color: #121314;
}

.page-faq .back:hover {
  border-color: #1f1f22;
  background: #ffffff;
}

.page-faq h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1.03;
  text-transform: uppercase;
  color: #111216;
}

.page-faq .lead {
  margin-top: 14px;
  max-width: 64ch;
  color: #313543;
  font-size: 1.04rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.info-nav {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}

.info-nav-link {
  position: relative;
  text-decoration: none;
  color: #121212;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 0;
}

.info-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: #ccff00;
  opacity: 0;
}

.info-nav-link.is-active::after,
.info-nav-link[aria-current="page"]::after {
  opacity: 1;
}

.page-about .panel {
  margin-top: 24px;
  border: 1px solid #111215;
  border-radius: 0;
  padding: 30px;
  box-shadow: none;
  background: #ffffff;
}

.about-compact {
  margin-top: 6px;
  border-radius: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
  border-color: #111215;
  background: #ffffff;
}

.about-compact-copy {
  display: grid;
  gap: 18px;
  max-width: 72ch;
  text-align: left;
}

.about-compact-copy h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5.1vw, 3.7rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
}

.about-photo {
  margin: 0;
  align-self: stretch;
  border: 1px solid #111215;
  border-radius: 0;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1) contrast(1.04);
}

.about-compact-copy p {
  margin: 0;
  color: #242833;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.004em;
}

.about-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.integrity-block {
  margin-top: 4px;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  display: grid;
  gap: 12px;
}

.integrity-block h2,
.vault-standard h2 {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}

.integrity-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.integrity-content p {
  color: #181c23;
  font-size: 1rem;
  line-height: 1.6;
}

.integrity-seal {
  border: 1px solid #000;
  border-radius: 0;
  min-height: 48px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #ccff00;
  flex-shrink: 0;
}

.integrity-seal svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ccff00;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integrity-seal span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ccff00;
}

.vault-standard {
  margin-top: 6px;
  display: grid;
  gap: 12px;
}

.vault-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vault-standard-item {
  border: 1px solid #000;
  border-radius: 0;
  padding: 16px;
  display: grid;
  gap: 8px;
  align-content: start;
  background: #fff;
}

.vault-standard-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #ccff00;
  stroke-width: 1.4;
}

.vault-standard-item h3 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}

.vault-standard-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666;
}

.vault-standard-item strong {
  color: #000;
}

.about-cta-wrap {
  margin-top: 8px;
  display: grid;
  gap: 12px;
}

.about-cta {
  margin-top: 0;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.01em;
  font-size: 1rem;
  line-height: 1.65;
  text-transform: none;
}

.about-cta-btn {
  min-height: 52px;
  border: 1px solid #000;
  border-radius: 0;
  background: #000;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
}

.about-cta-btn:hover {
  background: #ccff00;
  color: #000;
  border-color: #ccff00;
}

.page-contact {
  position: relative;
  isolation: isolate;
  max-width: 920px;
  padding: 4.6vh 6.2vw 6.8vh;
}

.page-contact::before,
.page-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.page-contact::before {
  top: 10%;
  right: -70px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 44, 166, 0.16) 0%, rgba(255, 44, 166, 0.05) 38%, transparent 72%);
  filter: blur(22px);
}

.page-contact::after {
  bottom: 6%;
  left: -56px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(34, 215, 86, 0.16) 0%, rgba(34, 215, 86, 0.05) 38%, transparent 72%);
  filter: blur(18px);
}

/* ── Shared back link (text-style, underline) ── */
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  border: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.page-back:hover { color: #999; border-color: #999; }

/* ── Page top nav (static pages without main nav) ── */
.page-topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  margin-bottom: 64px;
}

/* ── Shared info-nav (À propos / Aide / Comment ça marche) ── */
.page-infonav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.page-infonav a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

.page-infonav a:hover { color: #000; }

.page-infonav a.is-active {
  color: #000;
}

.page-infonav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: #ccff00;
}

@media (max-width: 640px) {
  .page-infonav { gap: 16px; }
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  padding: 8px 14px;
  background: #fff;
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  transition: background 0.12s ease, color 0.12s ease;
}

.page-manual .back {
  border: 1px solid #d8d8dc;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
  color: #131313;
}

.page-manual .back:hover {
  border-color: #1f1f1f;
  background: #ffffff;
}

.back:hover {
  border-color: var(--line-strong);
  background: #f2f6fc;
  transform: translateY(-1px);
}

.back svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.02em;
}

.lead {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.42;
  max-width: 62ch;
}

.page-manual h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #0f1012;
}

.page-manual .lead {
  margin-top: 14px;
  max-width: 72ch;
  color: #2e3137;
  font-size: 1.05rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.page-contact h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.03;
  text-transform: uppercase;
  color: #101216;
}

.page-contact .lead {
  margin-top: 12px;
  font-size: 1.02rem;
  line-height: 1.74;
  letter-spacing: 0.01em;
  color: #313543;
}

.page-contact .back {
  border: 1px solid #d8d8dc;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  color: #121314;
}

.page-contact .back:hover {
  border-color: #1f1f22;
  background: #ffffff;
}

.panel {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 0;
  padding: 16px;
  box-shadow: none;
}

.page-manual .panel {
  margin-top: 28px;
  border: 1px solid #d7d7db;
  border-radius: 0;
  padding: 30px;
  box-shadow: none;
  background: #ffffff;
}

.manual-panel {
  border-radius: 0;
  padding: 34px;
  border-color: #d7d7db;
  background-color: #ffffff;
}

.faq-panel {
  border-radius: 0;
  padding: 26px;
  border-color: #000;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.012) 0,
      rgba(0, 0, 0, 0.012) 1px,
      transparent 1px,
      transparent 3px
    );
  box-shadow: none;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.12s ease;
}

.faq-item:hover {
  border-color: #000;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 16px;
  font-size: 1rem;
  font-weight: 620;
  color: #141822;
  letter-spacing: 0.012em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.18s ease;
}

.faq-item summary:hover {
  color: #121212;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: #121212;
  line-height: 1;
  font-weight: 500;
  transform: translateY(-1px);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] {
  border-color: #d7d8dd;
  box-shadow: none;
}

.faq-item[open] summary {
  color: #121212;
}

.faq-item[open] summary::after {
  color: #ccff00;
}

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: #363b48;
  font-size: 0.96rem;
  line-height: 1.74;
}

.faq-item p a {
  color: #151a25;
  font-weight: 620;
  text-decoration: none;
  border-bottom: 1px solid #ff8fd3;
}

.faq-item p a:hover {
  color: #111722;
  border-bottom-color: #ff2ca6;
}

.gateway-block {
  margin-top: 20px;
  border: 1px solid #111215;
  border-radius: 0;
  background: #111215;
  color: #ffffff;
  padding: 20px 22px;
}

.gateway-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gateway-block p {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

.manual-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111215;
}

.manual-head p {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.manual-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.manual-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid #d9d9dd;
  border-radius: 0;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.manual-step:nth-child(1) {
  grid-column: span 4;
}

.manual-step:nth-child(2) {
  grid-column: span 4;
}

.manual-step:nth-child(3) {
  grid-column: span 4;
}

.manual-step:hover {
  border-color: #111215;
}

.step-icon {
  height: 34px;
  width: 34px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d2d7;
  background: #ffffff;
}

.step-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #111215;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-content h3 {
  margin: 0;
  font-size: 12px;
  color: #111215;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.step-content p {
  margin: 6px 0 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.journey-panel,
.standards-panel {
  margin-top: 26px;
  border-radius: 0;
  padding: 34px;
  border-color: #d7d7db;
  background-color: #ffffff;
}

.journey-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.journey-panel::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, #d7d8dd 20%, #d7d8dd 80%, transparent 100%);
  transform: translateX(-0.5px);
}

.journey-block {
  border: 1px solid #dfdfe2;
  border-radius: 0;
  padding: 20px;
  background: #ffffff;
  transition: border-color 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.journey-block:hover {
  border-color: #111215;
}

.journey-block h2,
.standards-panel h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-weight: 850;
  text-transform: uppercase;
  color: #0f1012;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.journey-title-icon {
  width: 25px;
  height: 25px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3d3d8;
  background: #ffffff;
}

.journey-title-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #111215;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-list {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.journey-list li {
  position: relative;
  padding-left: 16px;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.journey-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 0;
  background: #111215;
}

.journey-list strong {
  color: #121212;
}

.term-accent {
  color: #111215;
  font-weight: 700;
}

.value-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 0;
  border: 1px solid #ccff00;
  background: #ccff00;
  color: #121212;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: baseline;
  margin-right: 6px;
}

.carrier-logos {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carrier-logo {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #cfcfd4;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #44484f;
  background: #f5f5f6;
}

.page-manual .panel,
.page-faq .panel,
.page-about .panel,
.page-contact .panel,
.manual-step,
.faq-item,
.journey-block,
.value-badge,
.back,
.btn,
.btn-icon,
input,
textarea {
  border-radius: 0;
}

input,
textarea {
  background: transparent;
  border: 1px solid #e5e5e5;
}

input:focus,
textarea:focus {
  border-color: #ccff00;
  box-shadow: none;
  background: transparent;
}

.panel-contact {
  margin-top: 22px;
  border-radius: 0;
  padding: 26px;
  border-color: #dddde0;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.012) 0,
      rgba(0, 0, 0, 0.012) 1px,
      transparent 1px,
      transparent 3px
    );
  box-shadow: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

h2 { margin: 0 0 10px; }

p { margin: 0 0 8px; color: #3f3f3f; }

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 0;
  color: #121212;
  font-weight: 620;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

input, textarea {
  border: 1px solid #d9dbe1;
  border-radius: 0;
  padding: 13px 14px;
  font-size: 1rem;
  letter-spacing: 0;
  font-family: inherit;
  background: #fbfbfc;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #656b79;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ccff00;
  background: #ffffff;
  box-shadow: none;
}

textarea { min-height: 172px; resize: vertical; }

.btn {
  border: 1px solid #000;
  border-radius: 0;
  padding: 10px 18px;
  background: #ffffff;
  cursor: pointer;
  color: #000;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.btn-icon {
  width: 100%;
  min-height: 52px;
  height: auto;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: auto;
  border-radius: 0;
  margin-top: 0;
  border: 1.5px solid #000;
  background: transparent;
  color: #000;
  box-shadow: none;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: none;
}

.btn-icon span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.btn-icon:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.form-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 6px;
}

.contact-status {
  margin: 0;
  display: none;
  width: fit-content;
  max-width: 100%;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  border-radius: 0;
  padding: 6px 11px;
  border: 1px solid transparent;
  line-height: 1.25;
}

.contact-status.is-success {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2f5b3d;
  background: #eef7f1;
  border-color: #c7e1d0;
}

.contact-status.is-error {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7a2f2f;
  background: #fbefef;
  border-color: #eccbcb;
}

.contact-status.is-success::before {
  content: "✓";
  font-size: 0.78rem;
  line-height: 1;
}


@media (max-width: 780px) {
  .page-manual { padding: 3.5vh 5vw 5.6vh; }
  .page-about { padding: 3.5vh 5vw 5.6vh; }
  .page-faq { padding: 3.5vh 5vw 5.6vh; }
  .page-contact { padding: 3.5vh 5vw 5.6vh; }
  .lead { font-size: 0.98rem; }
  .info-nav {
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 7px;
  }
  .journey-panel { grid-template-columns: 1fr; }
  .journey-panel::before { display: none; }
  .manual-panel,
  .journey-panel,
  .standards-panel {
    padding: 22px;
  }
  .manual-steps { grid-template-columns: 1fr; }
  .manual-step:nth-child(1),
  .manual-step:nth-child(2),
  .manual-step:nth-child(3) { grid-column: auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { align-items: flex-start; flex-direction: column-reverse; }
  .manual-step { grid-template-columns: 1fr; }
  .step-icon { width: 40px; }
  .faq-panel { padding: 18px; }
  .faq-item summary {
    padding: 13px 14px;
    font-size: 0.95rem;
  }
  .faq-item p {
    padding: 0 14px 14px;
    font-size: 0.92rem;
    line-height: 1.66;
  }
  .panel-contact {
    padding: 18px;
    margin-top: 16px;
  }
  .btn-icon {
    min-height: 48px;
  }
  .about-compact {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }
  .about-photo { order: 0; }
  .about-photo img { min-height: 260px; }
  .about-compact-copy h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.05;
  }
  .about-compact-copy p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .about-intro {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .integrity-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .vault-standard-grid {
    grid-template-columns: 1fr;
  }
  .about-compact-copy { max-width: 100%; }
}

@media (min-width: 781px) and (max-width: 1060px) {
  .about-compact {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    min-height: 360px;
  }
}

/* ── Site nav for static pages ── */
.lv-page-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  height: 52px;
  border-bottom: 1px solid #000;
  background: #fff;
  overflow: visible;
}

.lv-page-nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  justify-self: start;
}

.lv-page-nav-lang {
  justify-self: center;
  display: flex;
  align-items: center;
}

.lv-page-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.lv-page-nav-signin {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 9px 18px;
  border: 1.5px solid #000;
  background: transparent;
  white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease;
}

.lv-page-nav-signin:hover { background: #000; color: #fff; }

.lv-page-nav-cta {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 9px 22px;
  background: #000;
  border: 1.5px solid #000;
  white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
}

.lv-page-nav-cta:hover { background: #ccff00; color: #000; border-color: #ccff00; }

/* ── Page footer ── */
.lv-page-footer {
  border-top: 1px solid #000;
  padding: 28px 48px;
  background: #fff;
  margin-top: 0;
}

.lv-page-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lv-page-footer-legal {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.04em;
  margin: 0;
}

.lv-page-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lv-page-footer-links a {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
}

.lv-page-footer-links a:hover { color: #000; }

.lv-page-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.lv-page-footer-social a {
  display: flex;
  color: #1A1A18;
  transition: color 0.15s;
  line-height: 0;
}
.lv-page-footer-social a:hover { color: #C8F135; }

@media (max-width: 640px) {
  .lv-page-nav { padding: 0 16px; }
  .lv-page-nav-cta { display: none; }
  .lv-page-footer { padding: 24px; }
  .lv-page-footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
