/* === RESET & VARIABLES === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #e72775;
  --pink-d: #d61a65;
  --pink-dd: #b81555;
  --green: #008e25;
  --green-d: #006e1c;
  --text: #374151;
  --dark: #111827;
  --muted: #6b7280;
  --bg-card: rgba(255, 255, 255, 0.95);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.07);
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.1);
  --radius: 20px;
  --pill: 50px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(to bottom, rgba(0, 142, 37, 0.15), #ffffff 500px);
  min-height: 100vh;
  overflow-x: hidden;
}

/* NAV */
header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(231, 39, 117, 0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--pink);
  background: rgba(231, 39, 117, 0.06);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: none;
  box-shadow: var(--shadow-sm);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5.5px);
  background: var(--pink);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5.5px);
  background: var(--pink);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sw {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.band {
  background: rgba(248, 250, 252, 0.9);
}

.band .sw {
  max-width: 1200px;
}

/* HERO */
.hero {
  padding: 4rem 1.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1.1rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 span {
  color: var(--pink);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-warn {
  background: rgba(231, 39, 117, 0.07);
  border: 1px solid rgba(231, 39, 117, 0.2);
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-warn strong {
  color: var(--pink);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat {
  background: var(--bg-card);
  border: none;
  border-top: 3px solid var(--pink);
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  min-width: 125px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat .n {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}

.stat .l {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* SECTION TITLES */
.stag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stag::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.stitle {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.7rem;
}

.slead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2.3rem;
}

/* CARDS */
.cgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ac, var(--pink));
}

.cico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    rgba(231, 39, 117, 0.1),
    rgba(231, 39, 117, 0.04)
  );
  margin-bottom: 0.9rem;
}

.cico svg {
  width: 24px;
  height: 24px;
  color: var(--pink);
  stroke-width: 1.8;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.62;
}

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.step:last-child {
  border-bottom: none;
}

.snum {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid;
}

.ssub {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

.step p {
  font-size: 0.91rem;
  color: var(--text);
  line-height: 1.63;
}

.qbox {
  margin-top: 0.9rem;
  background: rgba(248, 250, 252, 0.9);
  border-left: 3px solid;
  border-radius: 0 8px 8px 0;
  padding: 0.85rem 1rem;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text);
}

.qsrc {
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

/* ORG */
.org {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.org-center {
  text-align: center;
  margin-bottom: 1.8rem;
}

.pill-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: white;
  font-weight: 700;
  padding: 0.55rem 1.7rem;
  border-radius: var(--pill);
  font-size: 0.92rem;
  box-shadow: 0 4px 15px rgba(231, 39, 117, 0.3);
}

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

.orole {
  background: rgba(248, 250, 252, 0.9);
  border-radius: 11px;
  padding: 0.9rem;
  border-top: 2px solid transparent;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.orole:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}

.orole .ri {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.orole h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.orole p {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.4;
}

.abox {
  margin-top: 1.4rem;
  border-radius: 12px;
  padding: 1.05rem 1.3rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.abox.orange {
  background: #fff8f0;
  border: 1px solid #e8c8a0;
  border-left: 4px solid #e07b39;
}

.abox.red {
  background: #fff0ee;
  border: 1px solid #f0baba;
  border-left: 4px solid var(--pink);
}

.abox p {
  font-size: 0.9rem;
  line-height: 1.62;
}

.abox.orange p {
  color: #5a3820;
}

.abox.orange strong {
  color: #e07b39;
}

.abox.red p {
  color: #7a2838;
}

.abox.red strong {
  color: var(--pink);
}

/* CALLOUT */
.cy {
  background: #fffbeb;
  border: 1px solid #e8d88a;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.4rem;
  max-width: 800px;
}

.cy .ct {
  font-size: 0.71rem;
  font-weight: 700;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.45rem;
}

.cy p {
  font-size: 0.9rem;
  color: #6b4e00;
  line-height: 1.68;
}

.cy a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #d8d0c0;
  display: inline-block;
  margin-top: 0.45rem;
}

.pf {
  background: #fff0ee;
  border: 1px solid #f0baba;
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  margin-top: 1.3rem;
}

.pf .pt {
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.pf p {
  font-size: 0.9rem;
  color: #7a2838;
  line-height: 1.62;
}

/* WORLD */
.wgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.3rem;
  margin-top: 2.3rem;
}

.wcard {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.wcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.whead {
  padding: 1.05rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.wflag {
  font-size: 1.5rem;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.whead h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
  line-height: 1.3;
  min-width: 130px;
}

.wtag {
  font-size: 0.67rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--pill);
  background: rgba(0, 0, 0, 0.05);
  color: var(--muted);
  border: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

.wbody {
  padding: 0 1.3rem 1.3rem;
}

.wbody p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.wstats {
  margin-top: 0.9rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.ws .n {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pink);
}

.ws .l {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.18rem;
  max-width: 125px;
  line-height: 1.3;
}

.wlink {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  transition:
    color 0.2s,
    border-color 0.2s;
}

.wlink:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.galert {
  margin-top: 2.3rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.galert h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.9rem;
}

.galert p {
  font-size: 0.91rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.68;
}

.galert a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
}

.galert a:hover {
  text-decoration: underline;
}

/* TABLE */
.cwrap {
  overflow: hidden; /* clip pour border-radius */
  overflow-x: auto; /* scroll horizontal sur mobile */
  margin-top: 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

th {
  padding: 0.95rem 1.1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

th:first-child {
  color: var(--muted);
  width: 25%;
  background: rgba(248, 250, 252, 0.9);
}

th:nth-child(2) {
  color: #2f3c7e;
  background: #eef0ff;
}

th:nth-child(3) {
  color: #8b0e35;
  background: #fdecea;
}

td {
  padding: 0.85rem 1.1rem;
  font-size: 0.89rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
  line-height: 1.52;
}

tr:last-child td {
  border-bottom: none;
}

td:first-child {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.8rem;
  background: rgba(248, 250, 252, 0.6);
}

td:nth-child(3) {
  color: #7a1a22;
  font-weight: 500;
}

tr:hover td {
  background: rgba(231, 39, 117, 0.025);
}

tr:hover td:first-child {
  background: rgba(231, 39, 117, 0.04);
}

/* PROTECT */
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.pcard {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.pcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(231, 39, 117, 0.2);
}

.pn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  box-shadow: 0 3px 10px rgba(231, 39, 117, 0.28);
}

.pn.g {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  box-shadow: 0 3px 10px rgba(0, 142, 37, 0.28);
}

.pn.b {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  box-shadow: 0 3px 10px rgba(21, 101, 192, 0.28);
}

.pn.p {
  background: linear-gradient(135deg, #6a1b9a, #4a148c);
  box-shadow: 0 3px 10px rgba(106, 27, 154, 0.28);
}

.pn.o {
  background: linear-gradient(135deg, #f57f17, #e65100);
  box-shadow: 0 3px 10px rgba(245, 127, 23, 0.28);
}

.pcard h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.32rem;
}

.pcard p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.53;
}

.cgridC {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.ccard {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s;
}

.ccard:hover {
  transform: translateY(-2px);
}

.ccard h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.28rem;
}

.ccard p {
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 600;
}

.ccard span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* FOOTER */
footer {
  background: #f3f4f6;
  color: var(--text);
  padding: 1.8rem 1.5rem;
  margin-top: 3rem;
}

.fi {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.fnav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.fnav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.fnav a:hover {
  color: var(--pink);
}

.fcopy {
  font-size: 0.8rem;
  color: var(--muted);
}

.fsrc {
  max-width: 1200px;
  margin: 1.3rem auto 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.1rem;
}

.fsrc h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.fsrc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.fsrc li {
  font-size: 0.75rem;
  color: var(--muted);
}

.fsrc a {
  color: var(--muted);
  text-decoration: none;
}

.fsrc a:hover {
  color: var(--pink);
}

/* ANIMS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

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

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

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

/* TABLET */
@media (max-width: 968px) {
  .hero {
    padding: 3rem 1.5rem;
  }

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

  .slead {
    max-width: 100%;
  }

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

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(310px, 85vw);
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 5.5rem 0 2rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.38s;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 1.4rem;
    border-radius: 0;
    font-size: 1rem;
    transition:
      color 0.2s,
      padding-left 0.2s,
      background 0.2s;
  }

  .nav-links a:hover {
    padding-left: 1.9rem;
    color: var(--pink);
    background: rgba(231, 39, 117, 0.04);
  }

  .sw {
    padding: 2.3rem 1rem;
  }

  .hero {
    padding: 1.8rem 1rem 1.4rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-stats {
    gap: 0.55rem;
  }

  .stat {
    min-width: 108px;
    padding: 0.7rem 0.9rem;
  }

  .stat .n {
    font-size: 1.35rem;
  }

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

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

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

  .step {
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
    padding: 1.4rem 0;
  }

  th:first-child,
  td:first-child {
    display: none;
  }

  .fi {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .fnav {
    gap: 0.9rem;
  }

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

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 1.4rem 0.9rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .stat {
    min-width: unset;
  }

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

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

  .whead h3 {
    font-size: 0.91rem;
  }

  .galert {
    padding: 1.3rem;
  }

  .galert h3 {
    font-size: 1.05rem;
  }
}

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