/*
Theme Name: UISS42
Theme URI: https://uiss42.com
Author: PSV42
Description: Site officiel - Aider, Secourir, Former. Loi 1901.
Version: 2.0.0
Text Domain: psv42
*/

:root {
  --red: #cc0000;
  --red-dark: #990000;
  --navy: #0b1120;
  --navy2: #0f1a30;
  --navy3: #142040;
  --yellow: #f5d800;
  --white: #ffffff;
  --text: #e0e0e0;
  --gray: #888888;
  --nav-h: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* UTILS */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: .75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 580px;
}

.section-head {
  margin-bottom: 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  font-weight: 800;
}

.btn-yellow:hover {
  background: #ffe633;
  transform: translateY(-2px);
}

.btn-sm {
  padding: .5rem 1rem;
  font-size: .75rem;
  gap: .4rem;
}

/* FEEDBACK */
.feedback {
  padding: .875rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 600;
}

.feedback.ok {
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .3);
  color: #4ade80;
}

.feedback.err {
  background: rgba(204, 0, 0, .1);
  border: 1px solid rgba(204, 0, 0, .3);
  color: #f87171;
}

/* DEVISE BANNER */
.devise-banner {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: .5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .3em;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

/* NAVIGATION */
.site-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all .3s ease;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  top: 0;
  background: rgba(11, 17, 32, .97);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.nav-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .875rem;
  min-width: max-content;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
  transition: all .25s ease;
  background: transparent;
}

.site-logo:hover .logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(204, 0, 0, .4));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-acronym {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .08em;
}

.logo-num {
  color: var(--yellow);
}

.logo-sub {
  font-size: .5rem;
  color: var(--gray);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 1px;
}

.main-nav ul {
  display: flex;
  gap: .1rem;
}

.main-nav a {
  display: block;
  padding: .45rem .75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  transition: all .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  border-bottom-color: var(--red);
}

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

.badge-op {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .6rem;
  background: rgba(204, 0, 0, .15);
  border: 1px solid rgba(204, 0, 0, .3);
  border-radius: 100px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #ff6666;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all .25s ease;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 65% 50%, rgba(204, 0, 0, .1) 0%, transparent 60%), linear-gradient(135deg, #070d1a 0%, #0b1120 50%, #142040 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(204, 0, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(204, 0, 0, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 65% 60% at 65% 50%, black 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.tag-loc {
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
}

.tag-loi {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .25rem .6rem;
  border-radius: 4px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: .92;
  margin-bottom: 1rem;
}

.hero-title .t1 {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: #fff;
}

.hero-title .t2 {
  display: block;
  font-size: clamp(4rem, 9vw, 7.5rem);
  color: var(--red);
}

.hero-title .t3 {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--yellow);
  letter-spacing: .15em;
}

.hero-devise {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .25em;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  line-height: 1.1;
}

.stat-l {
  font-size: .7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInR .8s ease .3s both;
}

.hero-logo-img {
  width: 85%;
  max-width: 380px;
  border-radius: 50%;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .8)) drop-shadow(0 0 40px rgba(204, 0, 0, .15));
  animation: float 6s ease-in-out infinite;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}

.ring1 {
  inset: -20px;
  border-color: rgba(204, 0, 0, .15);
  animation: rpulse 3s ease-in-out infinite;
}

.ring2 {
  inset: -44px;
  border-color: rgba(245, 216, 0, .07);
  animation: rpulse 3s ease-in-out infinite 1s;
}

@keyframes rpulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .8;
  }

  50% {
    transform: scale(1.04);
    opacity: .25;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeInR {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.float-card {
  position: absolute;
  background: rgba(15, 26, 48, .92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(204, 0, 0, .2);
  border-radius: 10px;
  padding: .875rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.fc1 {
  bottom: 12%;
  left: -8%;
  animation: float 4s ease-in-out infinite;
}

.fc2 {
  top: 14%;
  right: -4%;
  animation: float 4s ease-in-out infinite 1s;
}

.fc-icon {
  width: 36px;
  height: 36px;
  background: rgba(204, 0, 0, .2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
}

.fc-t {
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.fc-s {
  font-size: .65rem;
  color: var(--gray);
}

/* BAND */
.band {
  background: var(--red);
  padding: .875rem 0;
  overflow: hidden;
}

.band-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.band-item {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.band-item i {
  font-size: .6rem;
  opacity: .6;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* MISSIONS */
.missions {
  background: var(--navy);
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.mission-card {
  position: relative;
  background: var(--navy2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  padding: 1.75rem;
  overflow: hidden;
  transition: all .3s ease;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.mission-card:hover {
  border-color: rgba(204, 0, 0, .25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mc-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(204, 0, 0, .07);
  line-height: 1;
}

.mc-icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 0, 0, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: all .3s ease;
}

.mission-card:hover .mc-icon {
  background: var(--red);
  color: #fff;
}

.mc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: .5rem;
}

.mc-desc {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.65;
}

/* SERVICES */
.services {
  background: var(--navy2);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.srv-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 6px;
  transition: all .25s ease;
}

.srv-item:hover {
  background: rgba(204, 0, 0, .07);
  border-color: rgba(204, 0, 0, .2);
}

.srv-icon {
  width: 42px;
  height: 42px;
  background: rgba(204, 0, 0, .12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all .25s ease;
}

.srv-item:hover .srv-icon {
  background: var(--red);
  color: #fff;
}

.srv-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: .2rem;
}

.srv-desc {
  font-size: .8rem;
  color: var(--gray);
}

.services-panel {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.services-panel::after {
  content: 'SOS';
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
}

.services-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  color: #fff;
  line-height: 1.05;
  margin-bottom: .875rem;
  position: relative;
  z-index: 1;
}

.services-panel p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.panel-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.panel-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, .9);
}

.panel-features li i {
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
}

/* JOIN */
.join {
  background: var(--navy);
}

.join-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-n {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.step-t {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: .2rem;
}

.step-d {
  font-size: .85rem;
  color: var(--gray);
}

.join-form {
  background: var(--navy2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 2.25rem;
}

.join-form h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: .5rem;
}

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

.form-g {
  margin-bottom: 1.1rem;
}

.form-g label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .4rem;
}

.form-g input,
.form-g select,
.form-g textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 4px;
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: all .25s ease;
}

.form-g input:focus,
.form-g select:focus,
.form-g textarea:focus {
  border-color: var(--red);
  background: rgba(204, 0, 0, .05);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, .1);
}

.form-g select option {
  background: var(--navy2);
}

.form-g textarea {
  resize: vertical;
}

/* CONTACT */
.contact {
  background: var(--navy3);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

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

.ci-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(204, 0, 0, .12);
  border: 1px solid rgba(204, 0, 0, .2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .2rem;
}

.ci-card p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-form {
  background: var(--navy2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 2.25rem;
}

/* FOOTER */
.site-footer {
  background: #070d1a;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-devise {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .2em;
  color: var(--yellow) !important;
  font-size: .95rem;
  margin-top: .75rem !important;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col a {
  font-size: .875rem;
  color: var(--gray);
  transition: all .2s ease;
}

.footer-col a:hover {
  color: #ff4444;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: unset;
    padding-top: calc(var(--nav-h) + 6rem);
  }

  .hero-logo-wrap {
    display: none;
  }

  .hero-desc,
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    max-width: 400px;
  }

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

  .services-layout,
  .join-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: calc(32px + var(--nav-h));
    left: 0;
    right: 0;
    background: rgba(7, 13, 26, .98);
    padding: 1rem;
    border-top: 1px solid rgba(204, 0, 0, .2);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav a {
    padding: .875rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .badge-op {
    display: none;
  }

  .missions-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }
}

/* ========================================
   CAGNOTTE / SOUTENIR
======================================== */
.cagnotte {
  background: var(--navy2);
}

.cagnotte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cagnotte-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all .3s ease;
}

.cagnotte-card:hover {
  border-color: rgba(245, 216, 0, .3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.cagnotte-featured {
  border-color: rgba(245, 216, 0, .2);
  background: linear-gradient(135deg, var(--navy), rgba(245, 216, 0, .04));
}

.cagnotte-icon {
  width: 64px;
  height: 64px;
  background: rgba(245, 216, 0, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--yellow);
}

.cagnotte-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: .1em;
}

.cagnotte-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 280px;
}

.qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, .04);
  border-radius: 10px;
  border: 1px dashed rgba(245, 216, 0, .2);
}

.qr-code {
  width: 130px;
  height: 130px;
  border-radius: 8px;
  border: 3px solid var(--yellow);
}

.qr-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
}

@media (max-width: 640px) {
  .cagnotte-grid {
    grid-template-columns: 1fr;
  }
}