.gosec-hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 70px 0 60px;
}

.gosec-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.gosec-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(33, 193, 255, 0.24);
  background: rgba(33, 193, 255, 0.08);
  color: #9feaff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.gosec-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -2px;
}

.gosec-hero h1 span {
  display: block;
  margin-top: 8px;

  background: linear-gradient(135deg, #ffffff 5%, #82e7ff 45%, #6378ff 100%);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gosec-acronym {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  color: #21c1ff;
}

.gosec-lead {
  margin: 24px 0 12px;
  max-width: 620px;
  font-size: 1.35rem;
  color: #ecf4ff;
}

.gosec-capabilities-line {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.gosec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.gosec-hero-visual {
  position: relative;
}

.gosec-hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(
    circle,
    rgba(33, 193, 255, 0.22),
    rgba(52, 93, 255, 0.1),
    transparent 70%
  );
  filter: blur(30px);
}

.gosec-screen-frame {
  position: relative;
  z-index: 1;
  padding: 10px;
  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(127, 231, 255, 0.16);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(33, 193, 255, 0.08);
}

.gosec-screen-frame img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

@media (max-width: 1024px) {
  .gosec-hero-grid {
    grid-template-columns: 1fr;
  }

  .gosec-hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .gosec-hero {
    padding-top: 44px;
  }

  .gosec-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .gosec-lead {
    font-size: 1.12rem;
  }
}

.gosec-capabilities {
  padding: 80px 0;
}

.gosec-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.gosec-cap-card {
  position: relative;
  padding: 26px;
  border-radius: 22px;

  background: linear-gradient(
    180deg,
    rgba(15, 29, 49, 0.84),
    rgba(9, 19, 34, 0.92)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.gosec-cap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 231, 255, 0.24);
}

.gosec-cap-card span {
  display: block;
  margin-bottom: 16px;
  color: #21c1ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gosec-cap-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.gosec-cap-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .gosec-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .gosec-cap-grid {
    grid-template-columns: 1fr;
  }
}

.gosec-hero-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
}

.gosec-screen-frame {
  position: relative;
  z-index: 2;
  padding: 7px;
  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(33, 193, 255, 0.2),
    rgba(52, 93, 255, 0.05)
  );

  border: 1px solid rgba(127, 231, 255, 0.18);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(33, 193, 255, 0.1);
}

.gosec-screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.gosec-screen-caption {
  margin-top: 13px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;

  color: #8fa9c7;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34e98b;

  box-shadow:
    0 0 0 4px rgba(52, 233, 139, 0.08),
    0 0 12px rgba(52, 233, 139, 0.65);
}

.nosf-framework {
  padding: 90px 0;
}

.nosf-framework-screen {
  margin-top: 38px;
  padding: 10px;

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(127, 231, 255, 0.14);

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}

.nosf-framework-screen img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* =========================================================
   NOVENTIA BRAND
   Mise en valeur IA
   ========================================================= */

.brand-nosf {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  text-decoration: none;
  flex-shrink: 0;
}

/* Isotipo original Noventia */
.brand-nosf-symbol {
  width: 46px;
  height: 46px;

  object-fit: contain;
  display: block;

  filter: drop-shadow(0 0 8px rgba(33, 193, 255, 0.22))
    drop-shadow(0 0 14px rgba(113, 74, 255, 0.1));
}

/* Bloque textual */
.brand-nosf-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  line-height: 1;
}

/* NOVENTIA */
.brand-nosf-name {
  display: flex;
  align-items: baseline;

  margin: 0;

  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;

  letter-spacing: 0.015em;
  white-space: nowrap;
}

/* NOVENT */
.brand-nosf-main {
  color: #f4f8ff;
}

/* IA */
.brand-nosf-ai {
  margin-left: 1px;

  background: linear-gradient(135deg, #7fe7ff 0%, #21c1ff 45%, #6177ff 100%);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  text-shadow: 0 0 14px rgba(33, 193, 255, 0.14);
}

/* SÉCURITÉ PRO */
.brand-nosf-subtitle {
  margin-top: 6px;

  color: #d8e4f4;

  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.045em;
  white-space: nowrap;
}

/* ---------------------------------------------------------
   Hover très discret
   --------------------------------------------------------- */

.brand-nosf:hover .brand-nosf-ai {
  filter: brightness(1.15);

  text-shadow:
    0 0 10px rgba(33, 193, 255, 0.3),
    0 0 20px rgba(52, 93, 255, 0.15);
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 760px) {
  .brand-nosf {
    gap: 8px;
  }

  .brand-nosf-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-nosf-name {
    font-size: 0.94rem;
  }

  .brand-nosf-subtitle {
    margin-top: 5px;
    font-size: 0.61rem;
  }
}

.brand-nosf-ai {
  background: linear-gradient(90deg, #21c1ff, #7fe7ff);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =========================================================
   NOSF SHOWCASE
   ========================================================= */

.nosf-showcase {
  padding: 96px 0 100px;
  position: relative;
}

.nosf-showcase-heading {
  margin-bottom: 42px;
}

.nosf-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */

.nosf-showcase-card {
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(13, 29, 49, 0.92),
    rgba(7, 18, 32, 0.98)
  );

  border: 1px solid rgba(127, 231, 255, 0.1);

  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.nosf-showcase-card:hover {
  transform: translateY(-6px);

  border-color: rgba(33, 193, 255, 0.35);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.42),
    0 0 35px rgba(33, 193, 255, 0.05);
}

/* IMAGE */

.nosf-showcase-image {
  position: relative;

  aspect-ratio: 16 / 8.3;

  overflow: hidden;

  background: #020914;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nosf-showcase-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, transparent 65%, rgba(4, 12, 22, 0.22));

  pointer-events: none;
}

.nosf-showcase-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.nosf-showcase-card:hover .nosf-showcase-image img {
  transform: scale(1.025);

  filter: brightness(1.05);
}

/* CONTENT */

.nosf-showcase-content {
  padding: 22px 24px 26px;
}

.nosf-module {
  margin-bottom: 8px;

  color: #21c1ff;

  font-size: 0.69rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.nosf-showcase-content h3 {
  margin: 0 0 9px;

  color: #f4f8ff;

  font-size: 1.35rem;

  letter-spacing: -0.02em;
}

.nosf-showcase-content p {
  margin: 0;

  max-width: 620px;

  color: #9fb1ca;

  font-size: 0.94rem;

  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
  .nosf-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nosf-showcase {
    padding: 68px 0;
  }

  .nosf-showcase-grid {
    gap: 18px;
  }

  .nosf-showcase-card {
    border-radius: 19px;
  }

  .nosf-showcase-content {
    padding: 18px 18px 21px;
  }

  .nosf-showcase-content h3 {
    font-size: 1.18rem;
  }

  .nosf-showcase-content p {
    font-size: 0.9rem;
  }
}

.nosf-showcase-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: #020914;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nosf-showcase-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gosec-screen-frame img,
.nosf-framework-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================================================
   NOSF SHOWCASE · 6 CARTES
   ========================================================= */

.nosf-showcase {
  padding: 96px 0 100px;
  position: relative;
}

.nosf-showcase-heading {
  margin-bottom: 42px;
}

.nosf-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */

.nosf-showcase-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(13, 29, 49, 0.92),
    rgba(7, 18, 32, 0.98)
  );

  border: 1px solid rgba(127, 231, 255, 0.1);

  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.nosf-showcase-card:hover {
  transform: translateY(-6px);

  border-color: rgba(33, 193, 255, 0.35);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.42),
    0 0 35px rgba(33, 193, 255, 0.05);
}

/* IMAGE */

.nosf-showcase-image {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 8.3;

  overflow: hidden;

  background: #020914;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nosf-showcase-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, transparent 65%, rgba(4, 12, 22, 0.22));

  pointer-events: none;
}

.nosf-showcase-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.nosf-showcase-card:hover .nosf-showcase-image img {
  transform: scale(1.025);
  filter: brightness(1.05);
}

/* CONTENT */

.nosf-showcase-content {
  padding: 22px 24px 26px;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.nosf-module {
  margin-bottom: 8px;

  color: #21c1ff;

  font-size: 0.69rem;
  font-weight: 800;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nosf-showcase-content h3 {
  margin: 0 0 9px;

  color: #f4f8ff;

  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.nosf-showcase-content p {
  margin: 0;

  max-width: 620px;

  color: #9fb1ca;

  font-size: 0.94rem;
  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
  .nosf-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nosf-showcase {
    padding: 68px 0;
  }

  .nosf-showcase-grid {
    gap: 18px;
  }

  .nosf-showcase-card {
    border-radius: 19px;
  }

  .nosf-showcase-content {
    padding: 18px 18px 21px;
  }

  .nosf-showcase-content h3 {
    font-size: 1.18rem;
  }

  .nosf-showcase-content p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   NOSF · CHAÎNE OPÉRATIONNELLE
   ========================================================= */

.nosf-chain {
  position: relative;
  padding: 105px 0 110px;
  overflow: hidden;
}

.nosf-chain::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 500px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse,
    rgba(0, 194, 255, 0.075) 0%,
    rgba(0, 194, 255, 0.025) 38%,
    transparent 72%
  );
  pointer-events: none;
}

/* =========================================================
   HEADING
   ========================================================= */

.nosf-chain-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}

.nosf-chain-eyebrow {
  display: block;
  margin-bottom: 14px;

  color: #24caff;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nosf-chain-heading h2 {
  margin: 0 0 16px;

  color: #f4f8ff;

  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.nosf-chain-heading p {
  max-width: 720px;
  margin: 0 auto;

  color: #94a8c2;

  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================================
   FLOW
   ========================================================= */

.nosf-chain-flow {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  width: 100%;
}

/* =========================================================
   STEP
   ========================================================= */

.nosf-chain-step {
  position: relative;

  width: 142px;
  min-width: 0;

  text-align: center;
}

/* NUMBER */

.nosf-chain-number {
  position: absolute;
  z-index: 4;

  top: -8px;
  right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;

  border-radius: 50%;

  color: #24d8ff;
  background: #061522;

  border: 1px solid rgba(36, 216, 255, 0.75);

  font-size: 0.57rem;
  font-weight: 800;

  box-shadow: 0 0 14px rgba(0, 210, 255, 0.18);
}

/* ICON */

.nosf-chain-icon {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 74px;
  height: 74px;

  margin: 0 auto 21px;

  border-radius: 22px;

  color: #24d8ff;

  background: linear-gradient(
    145deg,
    rgba(12, 43, 65, 0.95),
    rgba(5, 22, 38, 0.98)
  );

  border: 1px solid rgba(36, 216, 255, 0.3);

  box-shadow:
    inset 0 0 22px rgba(0, 200, 255, 0.035),
    0 12px 30px rgba(0, 0, 0, 0.24);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nosf-chain-icon::before {
  content: "";

  position: absolute;

  width: 45px;
  height: 45px;

  border-radius: 50%;

  border: 1px solid rgba(36, 216, 255, 0.13);
}

.nosf-chain-icon span {
  position: relative;
  z-index: 2;

  font-size: 1.15rem;
  font-weight: 900;
}

.nosf-chain-icon-ai span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.nosf-chain-step:hover .nosf-chain-icon {
  transform: translateY(-5px);

  border-color: rgba(36, 216, 255, 0.72);

  box-shadow:
    inset 0 0 25px rgba(0, 200, 255, 0.08),
    0 0 25px rgba(0, 200, 255, 0.12),
    0 15px 35px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   INFORMATION
   ========================================================= */

.nosf-chain-domain {
  display: block;
  margin-bottom: 6px;

  color: #22cfff;

  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nosf-chain-info h3 {
  margin: 0 0 6px;

  color: #edf6ff;

  font-size: 0.9rem;
  font-weight: 750;
}

.nosf-chain-info p {
  margin: 0;

  color: #70869f;

  font-size: 0.72rem;
  font-weight: 600;
}

/* =========================================================
   CONNECTION
   ========================================================= */

.nosf-chain-link {
  position: relative;

  flex: 1 1 55px;
  min-width: 25px;
  max-width: 75px;

  height: 74px;
}

.nosf-chain-link::before {
  content: "";

  position: absolute;

  top: 37px;
  left: 0;
  right: 0;

  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(24, 188, 235, 0.18),
    rgba(34, 219, 255, 0.85),
    rgba(24, 188, 235, 0.18)
  );
}

.nosf-chain-link::after {
  content: "";

  position: absolute;

  top: 34px;
  right: -1px;

  width: 6px;
  height: 6px;

  border-top: 1px solid #25d8ff;
  border-right: 1px solid #25d8ff;

  transform: rotate(45deg);
}

/* moving signal */

.nosf-chain-link span {
  position: absolute;
  z-index: 3;

  top: 34px;
  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #27ddff;

  box-shadow:
    0 0 8px #27ddff,
    0 0 15px rgba(39, 221, 255, 0.65);

  animation: nosfSignal 2.4s linear infinite;
}

@keyframes nosfSignal {
  0% {
    left: 0;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 7px);
    opacity: 0;
  }
}

/* different timing */

.nosf-chain-link:nth-of-type(4n) span {
  animation-delay: 0.45s;
}

.nosf-chain-link:nth-of-type(6n) span {
  animation-delay: 0.85s;
}

/* =========================================================
   FINAL STEP
   ========================================================= */

.nosf-chain-step-final .nosf-chain-icon {
  border-color: rgba(55, 231, 162, 0.4);
  color: #37e7a2;

  box-shadow:
    inset 0 0 25px rgba(55, 231, 162, 0.045),
    0 0 25px rgba(55, 231, 162, 0.05);
}

.nosf-chain-step-final .nosf-chain-number {
  color: #37e7a2;
  border-color: rgba(55, 231, 162, 0.7);
}

.nosf-chain-step-final .nosf-chain-domain {
  color: #37e7a2;
}

/* =========================================================
   SUMMARY
   ========================================================= */

.nosf-chain-summary {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;

  max-width: 1080px;

  margin: 60px auto 0;
  padding: 18px 22px;

  border-radius: 17px;

  background: linear-gradient(
    90deg,
    rgba(6, 25, 42, 0.92),
    rgba(8, 30, 48, 0.72),
    rgba(6, 25, 42, 0.92)
  );

  border: 1px solid rgba(38, 207, 255, 0.15);
}

.nosf-chain-summary-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 62px;
  height: 42px;

  border-radius: 11px;

  color: #22d7ff;

  background: rgba(0, 190, 255, 0.07);

  border: 1px solid rgba(34, 215, 255, 0.22);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.nosf-chain-summary-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nosf-chain-summary-text span {
  color: #25cfff;

  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nosf-chain-summary-text strong {
  color: #dce9f6;

  font-size: 0.85rem;
  font-weight: 650;
}

.nosf-chain-status {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #40e8a4;

  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nosf-chain-status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #40e8a4;

  box-shadow: 0 0 8px rgba(64, 232, 164, 0.9);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .nosf-chain-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .nosf-chain-step {
    width: 100%;
  }

  .nosf-chain-link {
    display: none;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .nosf-chain {
    padding: 72px 0;
  }

  .nosf-chain-heading {
    margin-bottom: 42px;
  }

  .nosf-chain-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nosf-chain-step {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;

    min-height: 110px;

    text-align: left;
  }

  .nosf-chain-icon {
    grid-column: 1;
    margin: 0;
  }

  .nosf-chain-number {
    top: 8px;
    left: 55px;
    right: auto;
  }

  .nosf-chain-info {
    grid-column: 2;
  }

  .nosf-chain-step:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 36px;
    top: 84px;
    bottom: 0;

    width: 1px;

    background: linear-gradient(
      180deg,
      rgba(36, 216, 255, 0.65),
      rgba(36, 216, 255, 0.1)
    );
  }

  .nosf-chain-summary {
    grid-template-columns: auto 1fr;
    margin-top: 35px;
  }

  .nosf-chain-status {
    grid-column: 2;
  }
}

/* =========================================================
   NOSF · RAPPORTS & TRAÇABILITÉ
   ========================================================= */

.nosf-reports {
  position: relative;
  padding: 95px 0 110px;
}

.nosf-reports-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.nosf-reports-eyebrow {
  display: block;
  margin-bottom: 13px;

  color: #37e7a2;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.nosf-reports-heading h2 {
  margin: 0 0 15px;

  color: #f4f8ff;

  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.nosf-reports-heading p {
  max-width: 680px;
  margin: 0 auto;

  color: #94a8c2;

  font-size: 0.98rem;
  line-height: 1.7;
}

/* GRID */

.nosf-reports-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */

.nosf-report-card {
  overflow: hidden;

  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(13, 29, 49, 0.92),
    rgba(7, 18, 32, 0.98)
  );

  border: 1px solid rgba(55, 231, 162, 0.12);

  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.nosf-report-card:hover {
  transform: translateY(-6px);

  border-color: rgba(55, 231, 162, 0.38);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.42),
    0 0 35px rgba(55, 231, 162, 0.05);
}

/* IMAGE */

.nosf-report-image {
  width: 100%;
  aspect-ratio: 16 / 8.3;

  overflow: hidden;

  background: #020914;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nosf-report-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.nosf-report-card:hover .nosf-report-image img {
  transform: scale(1.025);
  filter: brightness(1.05);
}

/* CONTENT */

.nosf-report-content {
  padding: 22px 24px 27px;
}

.nosf-report-content > span {
  display: block;
  margin-bottom: 8px;

  color: #37e7a2;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.nosf-report-content h3 {
  margin: 0 0 9px;

  color: #f4f8ff;

  font-size: 1.3rem;
}

.nosf-report-content p {
  margin: 0;

  color: #9fb1ca;

  font-size: 0.93rem;
  line-height: 1.65;
}

/* RESPONSIVE */

@media (max-width: 850px) {
  .nosf-reports-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nosf-reports {
    padding: 70px 0;
  }

  .nosf-report-card {
    border-radius: 19px;
  }

  .nosf-report-content {
    padding: 18px 18px 22px;
  }
}

/* =========================================================
   NOSF · ENVIRONNEMENTS D'UTILISATION
   ========================================================= */

.nosf-markets {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
}

.nosf-markets::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -300px;
  top: 100px;

  background: radial-gradient(
    circle,
    rgba(0, 194, 255, 0.055),
    transparent 68%
  );

  pointer-events: none;
}

/* HEADING */

.nosf-markets-heading {
  position: relative;
  z-index: 2;

  max-width: 820px;
  margin: 0 auto 52px;

  text-align: center;
}

.nosf-markets-eyebrow {
  display: block;
  margin-bottom: 14px;

  color: #26d5ff;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nosf-markets-heading h2 {
  margin: 0 0 17px;

  color: #f3f7ff;

  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.nosf-markets-heading p {
  max-width: 720px;
  margin: 0 auto;

  color: #93a7c0;

  font-size: 0.98rem;
  line-height: 1.72;
}

/* GRID */

.nosf-markets-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;

  max-width: 1120px;
  margin: 0 auto;
}

/* CARD */

.nosf-market-card {
  position: relative;
  overflow: hidden;

  min-height: 225px;
  padding: 28px;

  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(11, 31, 50, 0.92),
    rgba(5, 18, 32, 0.97)
  );

  border: 1px solid rgba(55, 207, 255, 0.12);

  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.nosf-market-card::after {
  content: "";

  position: absolute;
  width: 160px;
  height: 160px;

  right: -80px;
  bottom: -90px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(25, 203, 255, 0.1), transparent 70%);

  pointer-events: none;
}

.nosf-market-card:hover {
  transform: translateY(-5px);

  border-color: rgba(38, 213, 255, 0.35);

  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.32),
    0 0 35px rgba(0, 194, 255, 0.04);
}

/* TOP */

.nosf-market-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 25px;
}

.nosf-market-number {
  color: #536c85;

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* ICON */

.nosf-market-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border-radius: 14px;

  color: #27d6ff;

  background: rgba(22, 196, 255, 0.055);

  border: 1px solid rgba(39, 214, 255, 0.17);
}

.nosf-market-icon svg {
  width: 23px;
  height: 23px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TEXT */

.nosf-market-card h3 {
  margin: 0 0 11px;

  color: #eef5ff;

  font-size: 1.25rem;
  font-weight: 750;
}

.nosf-market-card p {
  max-width: 470px;
  margin: 0;

  color: #91a6bf;

  font-size: 0.9rem;
  line-height: 1.68;
}

/* CAPABILITIES */

.nosf-market-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-top: 18px;
}

.nosf-market-capabilities span {
  padding: 6px 10px;

  border-radius: 999px;

  color: #8fcce0;

  background: rgba(19, 179, 226, 0.055);

  border: 1px solid rgba(38, 204, 246, 0.12);

  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

/* =========================================================
   MULTI-SITES · FEATURED
   ========================================================= */

.nosf-market-card-wide {
  grid-column: 1 / -1;

  min-height: auto;

  background: linear-gradient(
    105deg,
    rgba(10, 34, 54, 0.96),
    rgba(6, 21, 36, 0.96)
  );
}

.nosf-market-card-wide::before {
  content: "";

  position: absolute;

  left: 0;
  top: 25%;
  bottom: 25%;

  width: 2px;

  background: linear-gradient(180deg, transparent, #25d6ff, transparent);
}

.nosf-market-wide-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: 35px;
}

.nosf-market-wide-content .nosf-market-capabilities {
  justify-content: flex-end;
  margin-top: 0;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {
  .nosf-markets-grid {
    grid-template-columns: 1fr;
  }

  .nosf-market-card-wide {
    grid-column: auto;
  }

  .nosf-market-wide-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nosf-market-wide-content .nosf-market-capabilities {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {
  .nosf-markets {
    padding: 75px 0 80px;
  }

  .nosf-markets-heading {
    margin-bottom: 38px;
  }

  .nosf-market-card {
    min-height: auto;
    padding: 23px;

    border-radius: 18px;
  }

  .nosf-market-top {
    margin-bottom: 20px;
  }
}

/* =========================================================
   NOSF · POURQUOI NOVENTIA
   ========================================================= */

.nosf-value {
  position: relative;
  padding: 110px 0 115px;
  overflow: hidden;
}

.nosf-value::before {
  content: "";
  position: absolute;

  width: 800px;
  height: 500px;

  left: 50%;
  top: 55%;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    ellipse,
    rgba(24, 195, 255, 0.055),
    transparent 68%
  );

  pointer-events: none;
}

/* =========================================================
   HEADING
   ========================================================= */

.nosf-value-heading {
  position: relative;
  z-index: 2;

  max-width: 820px;
  margin: 0 auto 52px;

  text-align: center;
}

.nosf-value-eyebrow {
  display: block;
  margin-bottom: 14px;

  color: #27d7ff;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nosf-value-heading h2 {
  max-width: 720px;
  margin: 0 auto 17px;

  color: #f3f7ff;

  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;

  line-height: 1.12;
  letter-spacing: -0.035em;
}

.nosf-value-heading p {
  max-width: 720px;
  margin: 0 auto;

  color: #93a7c0;

  font-size: 0.98rem;
  line-height: 1.72;
}

/* =========================================================
   GRID
   ========================================================= */

.nosf-value-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 16px;

  max-width: 1180px;
  margin: 0 auto;
}

/* =========================================================
   CARD
   ========================================================= */

.nosf-value-card {
  position: relative;
  overflow: hidden;

  min-height: 285px;
  padding: 25px 23px;

  border-radius: 20px;

  background: linear-gradient(
    155deg,
    rgba(10, 32, 51, 0.94),
    rgba(5, 18, 31, 0.98)
  );

  border: 1px solid rgba(40, 207, 255, 0.12);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.nosf-value-card::after {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  right: -65px;
  bottom: -65px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(37, 212, 255, 0.08),
    transparent 70%
  );

  pointer-events: none;
}

.nosf-value-card:hover {
  transform: translateY(-5px);

  border-color: rgba(39, 214, 255, 0.35);

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(0, 194, 255, 0.04);
}

/* =========================================================
   TOP / ICON
   ========================================================= */

.nosf-value-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 25px;
}

.nosf-value-number {
  color: #536d87;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.nosf-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 13px;

  color: #27d7ff;

  background: rgba(24, 195, 255, 0.055);

  border: 1px solid rgba(39, 215, 255, 0.17);
}

.nosf-value-icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   CONTENT
   ========================================================= */

.nosf-value-label {
  display: block;
  margin-bottom: 9px;

  color: #27d7ff;

  font-size: 0.61rem;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.nosf-value-card h3 {
  margin: 0 0 12px;

  color: #eef5ff;

  font-size: 1.1rem;
  font-weight: 750;

  line-height: 1.3;
}

.nosf-value-card p {
  margin: 0;

  color: #8fa5be;

  font-size: 0.84rem;
  line-height: 1.68;
}

/* =========================================================
   SUMMARY
   ========================================================= */

.nosf-value-summary {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  gap: 20px;

  max-width: 1180px;

  margin: 24px auto 0;
  padding: 18px 20px;

  border-radius: 17px;

  background: linear-gradient(
    90deg,
    rgba(7, 27, 44, 0.96),
    rgba(8, 34, 53, 0.84),
    rgba(7, 27, 44, 0.96)
  );

  border: 1px solid rgba(40, 210, 255, 0.14);
}

.nosf-value-summary-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 42px;

  border-radius: 11px;

  color: #28d8ff;

  background: rgba(26, 198, 255, 0.06);

  border: 1px solid rgba(40, 216, 255, 0.2);

  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.nosf-value-summary-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nosf-value-summary-content span {
  color: #27d7ff;

  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nosf-value-summary-content strong {
  color: #e2edf8;

  font-size: 0.86rem;
  font-weight: 650;
}

/* CTA */

.nosf-value-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 11px 16px;

  border-radius: 999px;

  color: #dff7ff;
  text-decoration: none;

  background: rgba(32, 195, 255, 0.07);

  border: 1px solid rgba(39, 211, 255, 0.22);

  font-size: 0.7rem;
  font-weight: 750;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.nosf-value-cta span {
  color: #2bdcff;
  font-size: 1rem;
}

.nosf-value-cta:hover {
  transform: translateX(3px);

  background: rgba(32, 195, 255, 0.12);
  border-color: rgba(39, 211, 255, 0.42);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .nosf-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {
  .nosf-value {
    padding: 75px 0 80px;
  }

  .nosf-value-grid {
    grid-template-columns: 1fr;
  }

  .nosf-value-card {
    min-height: auto;
  }

  .nosf-value-summary {
    grid-template-columns: auto 1fr;
  }

  .nosf-value-cta {
    grid-column: 1 / -1;

    justify-content: center;

    margin-top: 4px;
  }
}

/* =========================================================
   NOSF · DEMONSTRATION
   ========================================================= */

.nosf-demo {
  position: relative;
  padding: 115px 0 100px;
  overflow: hidden;
}

.nosf-demo::before {
  content: "";
  position: absolute;

  width: 850px;
  height: 650px;

  right: -300px;
  top: 50%;

  transform: translateY(-50%);

  background: radial-gradient(
    circle,
    rgba(28, 184, 255, 0.08),
    transparent 68%
  );

  pointer-events: none;
}

/* =========================================================
   MAIN SHELL
   ========================================================= */

.nosf-demo-shell {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.92fr 1.08fr;

  max-width: 1180px;
  margin: 0 auto;

  overflow: hidden;

  border-radius: 28px;

  background: linear-gradient(
    125deg,
    rgba(7, 27, 45, 0.97),
    rgba(5, 18, 32, 0.98)
  );

  border: 1px solid rgba(39, 207, 255, 0.15);

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   LEFT
   ========================================================= */

.nosf-demo-intro {
  position: relative;

  padding: 54px 48px;

  border-right: 1px solid rgba(39, 207, 255, 0.11);
}

.nosf-demo-intro::after {
  content: "";

  position: absolute;

  left: 0;
  top: 15%;
  bottom: 15%;

  width: 2px;

  background: linear-gradient(180deg, transparent, #28d7ff, transparent);
}

.nosf-demo-eyebrow {
  display: block;

  margin-bottom: 15px;

  color: #29d8ff;

  font-size: 0.67rem;
  font-weight: 800;

  letter-spacing: 0.17em;
}

.nosf-demo-intro h2 {
  max-width: 450px;

  margin: 0 0 18px;

  color: #f4f8ff;

  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
  font-weight: 800;

  line-height: 1.05;
  letter-spacing: -0.045em;
}

.nosf-demo-lead {
  max-width: 460px;

  margin: 0;

  color: #96aac2;

  font-size: 0.96rem;
  line-height: 1.72;
}

/* =========================================================
   POINTS
   ========================================================= */

.nosf-demo-points {
  display: grid;
  gap: 0;

  margin-top: 38px;
}

.nosf-demo-point {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;

  gap: 12px;

  padding: 14px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.nosf-demo-point:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.nosf-demo-point > span {
  color: #29d8ff;

  font-size: 0.62rem;
  font-weight: 800;

  letter-spacing: 0.1em;
}

.nosf-demo-point p {
  margin: 0;

  color: #c0cfdf;

  font-size: 0.82rem;
  line-height: 1.5;
}

/* =========================================================
   FOUNDER
   ========================================================= */

.nosf-demo-founder {
  display: flex;
  align-items: center;

  gap: 13px;

  margin-top: 34px;
}

.nosf-demo-founder-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 43px;
  height: 43px;

  border-radius: 12px;

  color: #29d8ff;

  background: rgba(30, 199, 255, 0.06);

  border: 1px solid rgba(39, 211, 255, 0.2);

  font-size: 0.68rem;
  font-weight: 900;
}

.nosf-demo-founder > div:last-child {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.nosf-demo-founder strong {
  color: #e7f0fa;

  font-size: 0.82rem;
}

.nosf-demo-founder span {
  color: #71879f;

  font-size: 0.7rem;
}

/* =========================================================
   RIGHT
   ========================================================= */

.nosf-demo-form-wrap {
  padding: 49px 48px;
}

.nosf-demo-form-heading {
  margin-bottom: 27px;
}

.nosf-demo-form-heading > span {
  display: block;

  margin-bottom: 8px;

  color: #29d8ff;

  font-size: 0.61rem;
  font-weight: 800;

  letter-spacing: 0.15em;
}

.nosf-demo-form-heading h3 {
  margin: 0 0 7px;

  color: #f1f6fd;

  font-size: 1.45rem;
}

.nosf-demo-form-heading p {
  margin: 0;

  color: #8499b1;

  font-size: 0.82rem;
  line-height: 1.55;
}

/* =========================================================
   FORM
   ========================================================= */

.nosf-demo-form {
  display: grid;
  gap: 16px;
}

.nosf-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.nosf-form-field {
  display: flex;
  flex-direction: column;

  gap: 7px;
}

.nosf-form-field label {
  color: #9fb2c7;

  font-size: 0.66rem;
  font-weight: 700;

  letter-spacing: 0.04em;
}

.nosf-form-field input,
.nosf-form-field textarea {
  width: 100%;

  padding: 12px 13px;

  color: #eaf4ff;

  background: rgba(2, 13, 24, 0.65);

  border: 1px solid rgba(104, 151, 183, 0.2);

  border-radius: 11px;

  outline: none;

  font-family: inherit;
  font-size: 0.82rem;

  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.nosf-form-field textarea {
  resize: vertical;
  min-height: 95px;
}

.nosf-form-field input:focus,
.nosf-form-field textarea:focus {
  background: rgba(3, 18, 31, 0.9);

  border-color: rgba(40, 215, 255, 0.55);

  box-shadow: 0 0 0 3px rgba(40, 215, 255, 0.055);
}

.nosf-form-field textarea::placeholder {
  color: #50657b;
}

/* Honeypot */

.nosf-form-hp {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;

  clip: rect(0 0 0 0) !important;

  white-space: nowrap !important;
}

/* =========================================================
   SUBMIT
   ========================================================= */

.nosf-demo-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  margin-top: 2px;
  padding: 14px 17px;

  border: 0;
  border-radius: 12px;

  color: #ffffff;

  background: linear-gradient(90deg, #18baf7, #3477ff);

  cursor: pointer;

  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;

  box-shadow: 0 12px 30px rgba(27, 146, 255, 0.17);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.nosf-demo-submit:hover {
  transform: translateY(-2px);

  box-shadow: 0 16px 35px rgba(27, 146, 255, 0.25);
}

.nosf-demo-submit-arrow {
  font-size: 1rem;
}

/* =========================================================
   PRIVACY / DIRECT CONTACT
   ========================================================= */

.nosf-demo-privacy {
  margin: -5px 0 0;

  color: #586f87;

  font-size: 0.6rem;
  line-height: 1.5;
}

.nosf-demo-direct {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 22px;
  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.nosf-demo-direct > span:first-child {
  width: 100%;

  color: #637b93;

  font-size: 0.57rem;
  font-weight: 800;

  letter-spacing: 0.13em;
}

.nosf-demo-direct a {
  color: #b9cadd;

  text-decoration: none;

  font-size: 0.72rem;

  transition: color 0.2s ease;
}

.nosf-demo-direct a:hover {
  color: #2bd9ff;
}

.nosf-demo-separator {
  color: #2bd9ff;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .nosf-demo-shell {
    grid-template-columns: 1fr;
  }

  .nosf-demo-intro {
    border-right: 0;

    border-bottom: 1px solid rgba(39, 207, 255, 0.11);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {
  .nosf-demo {
    padding: 75px 0 70px;
  }

  .nosf-demo-shell {
    border-radius: 21px;
  }

  .nosf-demo-intro,
  .nosf-demo-form-wrap {
    padding: 32px 24px;
  }

  .nosf-form-row {
    grid-template-columns: 1fr;
  }

  .nosf-demo-intro h2 {
    font-size: 2.25rem;
  }
}

/* =========================================================
   NOSF · DEMO FORM ALERTS
   ========================================================= */

.nosf-demo-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;

  gap: 12px;

  margin-bottom: 22px;
  padding: 14px 16px;

  border-radius: 12px;

  font-size: 0.78rem;
}

/* ICON */

.nosf-demo-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  font-size: 0.75rem;
  font-weight: 900;
}

/* TEXT */

.nosf-demo-alert strong {
  display: block;

  margin-bottom: 3px;

  color: #eef8ff;

  font-size: 0.78rem;
}

.nosf-demo-alert p {
  margin: 0;

  color: #98abc0;

  font-size: 0.7rem;
  line-height: 1.5;
}

/* SUCCESS */

.nosf-demo-alert-success {
  background: rgba(45, 219, 145, 0.07);

  border: 1px solid rgba(45, 219, 145, 0.2);
}

.nosf-demo-alert-success .nosf-demo-alert-icon {
  color: #42e8a0;

  background: rgba(45, 219, 145, 0.1);

  border: 1px solid rgba(45, 219, 145, 0.28);
}

/* WARNING */

.nosf-demo-alert-warning {
  background: rgba(255, 184, 62, 0.06);

  border: 1px solid rgba(255, 184, 62, 0.2);
}

.nosf-demo-alert-warning .nosf-demo-alert-icon {
  color: #ffbf55;

  background: rgba(255, 184, 62, 0.1);

  border: 1px solid rgba(255, 184, 62, 0.28);
}

/* ERROR */

.nosf-demo-alert-error {
  background: rgba(255, 75, 95, 0.06);

  border: 1px solid rgba(255, 75, 95, 0.2);
}

.nosf-demo-alert-error .nosf-demo-alert-icon {
  color: #ff6373;

  background: rgba(255, 75, 95, 0.1);

  border: 1px solid rgba(255, 75, 95, 0.28);
}

/* =========================================================
   SUCCESS · NOSF CYAN
   ========================================================= */

.nosf-demo-alert-success {
  position: relative;
  overflow: hidden;

  padding: 16px 18px;

  background: linear-gradient(
    105deg,
    rgba(0, 210, 255, 0.13),
    rgba(0, 136, 255, 0.055)
  );

  border: 1px solid rgba(35, 220, 255, 0.48);

  box-shadow:
    0 0 0 1px rgba(35, 220, 255, 0.035),
    0 8px 30px rgba(0, 190, 255, 0.08),
    inset 0 0 25px rgba(0, 210, 255, 0.025);
}

/* Ligne lumineuse à gauche */

.nosf-demo-alert-success::before {
  content: "";

  position: absolute;

  left: 0;
  top: 15%;
  bottom: 15%;

  width: 3px;

  border-radius: 10px;

  background: #25dcff;

  box-shadow: 0 0 12px rgba(37, 220, 255, 0.85);
}

/* Halo discret */

.nosf-demo-alert-success::after {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -55px;
  top: -65px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(36, 218, 255, 0.13),
    transparent 70%
  );

  pointer-events: none;
}

/* CHECK */

.nosf-demo-alert-success .nosf-demo-alert-icon {
  position: relative;
  z-index: 2;

  width: 32px;
  height: 32px;

  color: #061521;

  background: linear-gradient(135deg, #39e5ff, #13bff5);

  border: 1px solid rgba(100, 235, 255, 0.85);

  box-shadow: 0 0 18px rgba(29, 213, 255, 0.25);

  font-size: 0.82rem;
}

/* TITRE */

.nosf-demo-alert-success strong {
  position: relative;
  z-index: 2;

  color: #36ddff;

  font-size: 0.82rem;
  font-weight: 800;
}

/* MESSAGE */

.nosf-demo-alert-success p {
  position: relative;
  z-index: 2;

  margin-top: 4px;

  color: #b8d8e7;

  font-size: 0.72rem;
  line-height: 1.55;
}

/* =========================================================
   NOSF26 · RESPONSIVE FINAL MOBILE
   ========================================================= */

@media (max-width: 768px) {
  /* -----------------------------------------------------
       GENERAL
       ----------------------------------------------------- */

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 100%);
    margin-inline: auto;
  }

  section {
    scroll-margin-top: 82px;
  }

  /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

  .topbar {
    min-height: 68px;
  }

  .topbar .nav {
    min-height: 68px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;

    gap: 10px;

    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    min-width: 0;
  }

  .logo-full {
    width: 190px;
    max-width: 100%;
    height: auto;
  }

  .lang-switch {
    transform: scale(0.88);
    transform-origin: right center;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-left: auto;

    border-radius: 11px;

    color: #dff7ff;

    background: rgba(20, 51, 77, 0.75);

    border: 1px solid rgba(39, 211, 255, 0.18);
  }

  .menu {
    position: absolute;

    top: 68px;
    left: 16px;
    right: 16px;

    z-index: 999;

    display: none;

    padding: 15px;

    border-radius: 16px;

    background: rgba(4, 17, 30, 0.98);

    border: 1px solid rgba(39, 211, 255, 0.17);

    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  }

  .menu.show {
    display: grid;
    gap: 8px;
  }

  .menu a {
    width: 100%;
    padding: 12px 14px;

    border-radius: 10px;
  }

  .menu .btn {
    justify-content: center;
    text-align: center;

    margin-top: 5px;
  }

  /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

  .gosec-hero,
  .nosf-hero {
    min-height: auto;

    padding: 58px 0 70px;
  }

  .gosec-hero-grid,
  .nosf-hero-grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .gosec-hero-copy,
  .nosf-hero-copy {
    text-align: left;
  }

  .gosec-hero h1,
  .nosf-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);

    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .gosec-badge,
  .nosf-badge {
    font-size: 0.65rem;
  }

  .gosec-lead,
  .nosf-lead {
    font-size: 1.05rem;
  }

  .gosec-capabilities-line {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .gosec-actions,
  .nosf-actions {
    display: grid;
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .gosec-actions .btn,
  .nosf-actions .btn {
    width: 100%;

    justify-content: center;
    text-align: center;
  }

  .gosec-hero-visual,
  .nosf-hero-visual {
    width: 100%;
  }

  .gosec-screen-frame {
    padding: 5px;

    border-radius: 17px;
  }

  .gosec-screen-frame img {
    width: 100%;
    height: auto;

    object-fit: contain;
  }

  .gosec-screen-caption {
    justify-content: center;

    font-size: 0.6rem;
  }

  /* -----------------------------------------------------
       SECTION HEADINGS
       ----------------------------------------------------- */

  .section-title,
  .nosf-chain-heading,
  .nosf-markets-heading,
  .nosf-value-heading,
  .nosf-reports-heading {
    text-align: center;

    margin-bottom: 36px;
  }

  .section-title h2,
  .nosf-chain-heading h2,
  .nosf-markets-heading h2,
  .nosf-value-heading h2,
  .nosf-reports-heading h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.65rem);

    line-height: 1.08;
  }

  .section-title p,
  .nosf-chain-heading p,
  .nosf-markets-heading p,
  .nosf-value-heading p,
  .nosf-reports-heading p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* -----------------------------------------------------
       FRAMEWORK
       ----------------------------------------------------- */

  .nosf-framework {
    padding: 70px 0;
  }

  .nosf-framework-screen {
    margin-top: 28px;

    padding: 5px;

    border-radius: 18px;

    overflow: hidden;
  }

  .nosf-framework-screen img {
    width: 100%;
    height: auto;

    object-fit: contain;

    border-radius: 14px;
  }

  /* -----------------------------------------------------
       6 CARTES NOSF EN ACTION
       ----------------------------------------------------- */

  .nosf-showcase {
    padding: 72px 0;
  }

  .nosf-showcase-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .nosf-showcase-card {
    border-radius: 18px;
  }

  .nosf-showcase-image {
    aspect-ratio: 16 / 9;
  }

  .nosf-showcase-content {
    padding: 18px;
  }

  .nosf-showcase-content h3 {
    font-size: 1.15rem;
  }

  .nosf-module {
    font-size: 0.58rem;
  }

  .nosf-showcase-content p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  /* -----------------------------------------------------
       CHAINE OPERATIONNELLE
       ----------------------------------------------------- */

  .nosf-chain {
    padding: 72px 0;
  }

  .nosf-chain-flow {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0;

    max-width: 420px;

    margin: 0 auto;
  }

  .nosf-chain-step {
    position: relative;

    display: grid;

    grid-template-columns:
      78px
      1fr;

    align-items: center;

    width: 100%;
    min-height: 105px;

    text-align: left;
  }

  .nosf-chain-icon {
    width: 62px;
    height: 62px;

    margin: 0;
  }

  .nosf-chain-icon::before {
    width: 39px;
    height: 39px;
  }

  .nosf-chain-number {
    top: 4px;
    left: 45px;
    right: auto;

    width: 23px;
    height: 23px;
  }

  .nosf-chain-info {
    padding-left: 8px;
  }

  .nosf-chain-info h3 {
    font-size: 0.92rem;
  }

  .nosf-chain-info p {
    font-size: 0.7rem;
  }

  .nosf-chain-link {
    display: none;
  }

  .nosf-chain-step:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 31px;
    top: 74px;
    bottom: 0;

    width: 1px;

    background: linear-gradient(
      180deg,
      rgba(36, 216, 255, 0.7),
      rgba(36, 216, 255, 0.08)
    );
  }

  .nosf-chain-summary {
    grid-template-columns:
      auto
      1fr;

    gap: 13px;

    margin-top: 30px;
    padding: 15px;
  }

  .nosf-chain-status {
    grid-column: 2;
  }

  /* -----------------------------------------------------
       RAPPORTS
       ----------------------------------------------------- */

  .nosf-reports {
    padding: 72px 0;
  }

  .nosf-reports-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .nosf-report-card {
    border-radius: 18px;
  }

  .nosf-report-image {
    aspect-ratio: 16 / 9;
  }

  .nosf-report-content {
    padding: 18px;
  }

  /* -----------------------------------------------------
       ENVIRONNEMENTS / MARKETS
       ----------------------------------------------------- */

  .nosf-markets {
    padding: 72px 0;
  }

  .nosf-markets-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .nosf-market-card,
  .nosf-market-card-wide {
    grid-column: auto;

    min-height: auto;

    padding: 21px;

    border-radius: 18px;
  }

  .nosf-market-wide-content {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .nosf-market-wide-content .nosf-market-capabilities {
    justify-content: flex-start;

    margin-top: 18px;
  }

  .nosf-market-top {
    margin-bottom: 18px;
  }

  /* -----------------------------------------------------
       POURQUOI NOVENTIA
       ----------------------------------------------------- */

  .nosf-value {
    padding: 72px 0;
  }

  .nosf-value-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .nosf-value-card {
    min-height: auto;

    padding: 21px;

    border-radius: 18px;
  }

  .nosf-value-summary {
    grid-template-columns:
      auto
      1fr;

    gap: 13px;

    padding: 15px;

    margin-top: 18px;
  }

  .nosf-value-cta {
    grid-column: 1 / -1;

    width: 100%;

    justify-content: space-between;

    margin-top: 4px;
  }

  /* -----------------------------------------------------
       DEMONSTRATION
       ----------------------------------------------------- */

  .nosf-demo {
    padding: 72px 0 60px;
  }

  .nosf-demo-shell {
    grid-template-columns: 1fr;

    border-radius: 20px;
  }

  .nosf-demo-intro {
    padding: 32px 24px;

    border-right: 0;

    border-bottom: 1px solid rgba(39, 207, 255, 0.11);
  }

  .nosf-demo-form-wrap {
    padding: 30px 24px;
  }

  .nosf-demo-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .nosf-demo-lead {
    font-size: 0.9rem;
  }

  .nosf-form-row {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .nosf-form-field input,
  .nosf-form-field textarea {
    font-size: 16px;
  }

  /*
       Importante en iPhone:
       16px evita zoom automático
       al tocar inputs.
    */

  .nosf-demo-submit {
    min-height: 52px;
  }

  .nosf-demo-direct {
    align-items: flex-start;

    flex-direction: column;

    gap: 7px;
  }

  .nosf-demo-separator {
    display: none;
  }

  /* -----------------------------------------------------
       ALERT SUCCESS
       ----------------------------------------------------- */

  .nosf-demo-alert {
    grid-template-columns:
      auto
      1fr;

    padding: 13px 14px;
  }

  .nosf-demo-alert-success strong {
    font-size: 0.78rem;
  }

  .nosf-demo-alert-success p {
    font-size: 0.68rem;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {
  .container {
    width: calc(100% - 24px);
  }

  .logo-full {
    width: 165px;
  }

  .lang-switch {
    transform: scale(0.8);
  }

  .gosec-hero h1,
  .nosf-hero h1 {
    font-size: 2.55rem;
  }

  .nosf-chain-summary-mark,
  .nosf-value-summary-mark {
    width: 52px;
  }

  .nosf-demo-intro,
  .nosf-demo-form-wrap {
    padding-left: 19px;
    padding-right: 19px;
  }

  .nosf-market-capabilities span {
    font-size: 0.58rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
}

/* =========================================================
   NOSF26 · HEADER STICKY
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 9999;

  background: rgba(4, 16, 29, 0.96);

  border-bottom: 1px solid rgba(38, 203, 255, 0.1);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 9999;

    background: rgba(4, 16, 29, 0.97);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .topbar .nav {
    min-height: 64px;
  }
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 85px;
}

/* =========================================================
   NOSF26 · FOOTER
   ========================================================= */

.nosf-footer {
  position: relative;

  padding: 42px 0 22px;

  background: linear-gradient(
    180deg,
    rgba(4, 15, 27, 1) 0%,
    rgba(2, 10, 19, 1) 100%
  );

  border-top: 1px solid rgba(39, 211, 255, 0.12);
}

/* MAIN */

.nosf-footer-main {
  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1fr;

  align-items: start;

  gap: 45px;

  padding-bottom: 30px;
}

/* BRAND */

.nosf-footer-brand {
  max-width: 420px;
}

.nosf-footer-logo {
  display: inline-flex;

  flex-direction: column;

  text-decoration: none;

  line-height: 1;
}

.nosf-footer-logo span {
  color: #f3fbff;

  font-size: 1.15rem;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.nosf-footer-logo small {
  margin-top: 5px;

  color: #29d7ff;

  font-size: 0.55rem;
  font-weight: 700;

  letter-spacing: 0.25em;
}

.nosf-footer-brand p {
  margin: 18px 0 0;

  color: rgba(211, 229, 239, 0.56);

  font-size: 0.67rem;

  line-height: 1.7;

  letter-spacing: 0.08em;
}

.nosf-footer-brand strong {
  color: rgba(41, 215, 255, 0.88);

  font-weight: 700;
}

/* NAV */

.nosf-footer-nav {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 10px;
}

.nosf-footer-nav a,
.nosf-footer-contact a {
  color: rgba(220, 236, 245, 0.67);

  font-size: 0.72rem;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nosf-footer-nav a:hover,
.nosf-footer-contact a:hover {
  color: #29d7ff;

  transform: translateX(3px);
}

/* CONTACT */

.nosf-footer-contact {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 10px;
}

/* BOTTOM */

.nosf-footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 19px;

  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.nosf-footer-bottom p {
  margin: 0;

  color: rgba(199, 220, 232, 0.42);

  font-size: 0.62rem;

  letter-spacing: 0.06em;
}

.nosf-footer-top {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: rgba(214, 234, 244, 0.65);

  font-size: 0.65rem;

  text-decoration: none;

  transition: color 0.2s ease;
}

.nosf-footer-top span {
  color: #29d7ff;

  font-size: 0.9rem;
}

.nosf-footer-top:hover {
  color: #29d7ff;
}

/* =========================================================
   FOOTER · MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .nosf-footer {
    padding: 36px 0 20px;
  }

  .nosf-footer-main {
    grid-template-columns: 1fr;

    gap: 27px;

    padding-bottom: 27px;
  }

  .nosf-footer-brand {
    max-width: 100%;
  }

  .nosf-footer-nav {
    flex-direction: row;

    flex-wrap: wrap;

    gap: 9px 20px;
  }

  .nosf-footer-contact {
    gap: 8px;
  }

  .nosf-footer-bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 13px;
  }
}
