
:root {
  --bg: #07101f;
  --panel: #0d1930;
  --panel2: #111f3a;
  --text: #f5f7ff;
  --muted: #aab5ca;
  --pink: #e4007f;
  --blue: #1495db;
  --line: rgba(255, 255, 255, .09);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(
      circle at top right,
      rgba(20, 149, 219, .16),
      transparent 28%
    ),
    radial-gradient(
      circle at top left,
      rgba(228, 0, 127, .16),
      transparent 25%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ================================
   HEADER & NAVIGATION
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px max(20px, calc((100vw - var(--max)) / 2));

  background: rgba(7, 16, 31, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
}

.nav a:hover,
.nav a.active {
  background: rgba(228, 0, 127, .13);
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 24px;
}

/* ================================
   LAYOUT GENERAL
================================ */

.hero,
.section,
.page {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

/* ================================
   HERO
================================ */

.hero {
  min-height: 560px;

  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #69c6ff;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 14px 0;
}

.hero p,
.page-title p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-card,
.airdrop-card,
.filters,
.submit-form,
.warning,
.detail-card {
  background:
    linear-gradient(
      145deg,
      rgba(17, 31, 58, .96),
      rgba(10, 19, 37, .88)
    );

  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  border-radius: var(--radius);
}

.hero-card {
  padding: 36px;
  text-align: center;
}

.hero-card > img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(228, 0, 127, .25);
}

/* ================================
   MINI STATS
================================ */

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.mini-stats div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mini-stats b,
.mini-stats span {
  display: block;
}

.mini-stats b {
  font-size: 1.4rem;
}

.mini-stats span {
  font-size: .78rem;
  color: var(--muted);
}

/* ================================
   BUTTONS
================================ */

.btn {
  display: inline-block;
  padding: 13px 19px;
  border-radius: 13px;
  font-weight: 700;
  border: 1px solid transparent;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.primary {
  background: linear-gradient(100deg, var(--pink), #a900a8);
  color: white;
}

.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, .04);
}

/* ================================
   SECTIONS
================================ */

.section {
  padding: 45px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}

.section h2 {
  margin: 5px 0;
  font-size: 2rem;
}

.text-link {
  color: #69c6ff;
}

/* ================================
   AIRDROP CARDS
================================ */

.airdrop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.airdrop-card {
  padding: 20px;
  transition: .2s;
}

.airdrop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 149, 219, .5);
}

.card-top {
  display: flex;
  gap: 13px;
  align-items: center;
}

.project-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  background: #16233e;
}

.project-logo.placeholder {
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
}

.card-top h3 {
  margin: 0;
}

.muted {
  color: var(--muted);
  font-size: .9rem;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  font-size: .76rem;
}

.status-actif {
  background: rgba(45, 210, 139, .14);
  color: #69efae;
}

.status-à-venir {
  background: rgba(20, 149, 219, .14);
  color: #7ed1ff;
}

.status-terminé {
  background: rgba(255, 255, 255, .09);
  color: #c1c7d4;
}

.card-desc {
  color: var(--muted);
  min-height: 70px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.small-link {
  color: #8bd7ff;
  font-weight: 700;
}

/* ================================
   PAGES
================================ */

.page {
  padding: 55px 0 70px;
}

.page-title {
  max-width: 700px;
  margin-bottom: 28px;
}

.page-title h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 6px 0;
}

/* ================================
   FILTERS
================================ */

.filters {
  padding: 16px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 10px;
}

.filters input,
.filters select,
.submit-form input,
.submit-form textarea {
  width: 100%;
  padding: 13px;

  border-radius: 12px;
  border: 1px solid var(--line);

  background: #081426;
  color: white;
  outline: none;
}

.results-count {
  color: var(--muted);
  padding: 18px 0;
}

.empty-state {
  text-align: center;
  padding: 50px;

  border: 1px dashed var(--line);
  border-radius: 20px;

  color: var(--muted);
}

.hidden {
  display: none;
}

/* ================================
   ARTICLES
================================ */

.warning {
  padding: 25px;
  margin-bottom: 60px;
}

.warning h2 {
  font-size: 1.3rem;
}

.article {
  max-width: 850px;
}

.article h2 {
  margin-top: 35px;
}

.article p,
.article li {
  color: var(--muted);
}

/* ================================
   FORMULAIRE
================================ */

.submit-form {
  max-width: 720px;
  padding: 25px;

  display: grid;
  gap: 16px;
}

.submit-form label {
  font-weight: 700;
}

.submit-form input,
.submit-form textarea {
  margin-top: 7px;
  font: inherit;
}

.back-link {
  color: #8bd7ff;
  font-weight: 700;
}

/* ================================
   FOOTER
================================ */

footer {
  border-top: 1px solid var(--line);
  padding: 25px 20px;

  text-align: center;

  color: var(--muted);
  font-size: .9rem;
}

/* =================================
   V2 : VISUELS ACCUEIL,
   TUTORIELS YOUTUBE ET RÉSEAUX
================================= */

.hero-visual {
  position: relative;
  min-height: 500px;

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(17, 31, 58, .8),
      rgba(10, 19, 37, .65)
    );

  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
}

.hero-image {
  position: absolute;
  display: block;

  border-radius: 24px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .14);

  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);

  transition: .25s;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(20, 149, 219, .6);
}

.hero-image-main {
  inset: 28px 90px 105px 28px;
  transform: rotate(-2deg);
}

.hero-image-small {
  width: 48%;
  height: 52%;
  right: 22px;
  bottom: 25px;
  transform: rotate(4deg);
}

.hero-visual-caption {
  position: absolute;

  left: 30px;
  bottom: 22px;

  display: flex;
  flex-direction: column;

  z-index: 3;

  text-shadow: 0 2px 15px #000;
}

.hero-visual-caption strong {
  font-size: 1.35rem;
}

.hero-visual-caption span {
  color: var(--muted);
  font-size: .85rem;
}

/* ================================
   YOUTUBE
================================ */

.youtube-intro {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
  align-items: center;

  padding: 30px;
  margin: 20px 0 10px;

  background:
    linear-gradient(
      145deg,
      rgba(17, 31, 58, .96),
      rgba(10, 19, 37, .88)
    );

  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.youtube-intro h2 {
  font-size: 2rem;
  margin: 8px 0;
}

.youtube-intro p {
  color: var(--muted);
  max-width: 700px;
}

.youtube-channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  min-height: 190px;

  border: 1px solid var(--line);
  border-radius: 20px;

  background: rgba(255, 255, 255, .035);

  text-align: center;
}

.youtube-channel-card span {
  font-size: .82rem;
  color: var(--muted);
}

.youtube-icon {
  width: 64px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background: #ff0033;
  color: white;

  font-size: 1.4rem;

  margin-bottom: 5px;
}

/* ================================
   TUTORIELS
================================ */

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tutorial-card {
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(17, 31, 58, .96),
      rgba(10, 19, 37, .88)
    );

  border: 1px solid var(--line);
  border-radius: var(--radius);

  transition: .2s;
}

.tutorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 0, 127, .45);
}

.tutorial-thumb {
  height: 150px;

  display: grid;
  place-items: center;

  background:
    radial-gradient(
      circle at center,
      rgba(228, 0, 127, .25),
      rgba(20, 149, 219, .08)
    );

  font-size: 2.2rem;
}

.tutorial-content {
  padding: 20px;
}

.tutorial-content h3 {
  margin: 12px 0 8px;
}

.tutorial-content p {
  color: var(--muted);
  min-height: 68px;
}

/* ================================
   FOOTER V2
================================ */

footer {
  padding: 30px 20px;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;

  text-align: left;
}

.footer-inner strong {
  font-size: 1.05rem;
}

.footer-inner p {
  margin: 5px 0 0;

  color: var(--muted);
  font-size: .85rem;
}

.social-links {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-links a {
  padding: 8px 11px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: rgba(255, 255, 255, .035);

  color: #c9d4e8;
  font-size: .84rem;
}

.social-links a:hover {
  color: white;
  border-color: rgba(20, 149, 219, .5);
}

.footer-copy {
  text-align: center;
  margin: 25px 0 0;

  color: var(--muted);
  font-size: .82rem;
}

/* ================================
   CRYPTO ARTICLES + EXCHANGE
================================ */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  margin-top: 28px;
  flex-wrap: wrap;
}

.pagination button {
  padding: 9px 13px;

  border-radius: 10px;
  border: 1px solid var(--line);

  background: rgba(255, 255, 255, .04);
  color: white;

  cursor: pointer;
}

.pagination button.active,
.pagination button:hover {
  background: rgba(228, 0, 127, .16);
  border-color: rgba(228, 0, 127, .35);
}

/* =================================
   GRILLE ARTICLES CRYPTO
   Présentation type magazine
================================= */

.crypto-articles-page .page-title {
  max-width: 760px;
}

.crypto-articles-page .article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.crypto-articles-page .article-card {
  display: block;
  overflow: hidden;

  background: #fff;
  color: #222;

  border: 1px solid #9a9a9a;
  border-radius: 13px;

  box-shadow: none;
  padding: 0;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.crypto-articles-page .article-card:hover {
  transform: translateY(-3px);

  border-color: #777;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.crypto-articles-page .article-cover {
  display: block;

  width: 100%;
  height: 194px;

  object-fit: cover;

  border: 0;
  border-radius: 0;

  background: #eee;
}

.crypto-articles-page .article-card-content {
  padding: 20px 21px 22px;

  min-height: 184px;

  display: flex;
  flex-direction: column;
}

.crypto-articles-page .article-card h2 {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.45;

  margin: 0 0 10px;

  color: #111;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
}

.crypto-articles-page .article-excerpt {
  font-size: .92rem;
  line-height: 1.55;

  color: #555;

  margin: 0;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
}

.crypto-articles-page .article-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;

  color: #333;
  font-size: .78rem;
  line-height: 1.4;

  margin-top: auto;
  padding-top: 17px;
}

.crypto-articles-page .article-meta span[aria-hidden="true"] {
  color: #777;
}

/* ================================
   READING CARD
================================ */

.reading-card {
  max-width: 850px;
}

.reading-card .article-cover {
  height: auto;
  max-height: 430px;
}

/* ================================
   EXCHANGE
================================ */

.exchange-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.exchange-card {
  background:
    linear-gradient(
      145deg,
      rgba(17, 31, 58, .96),
      rgba(10, 19, 37, .88)
    );

  border: 1px solid var(--line);
  border-radius: var(--radius);

  padding: 22px;
  text-align: center;

  transition: .2s;
}

.exchange-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 149, 219, .5);
}

.exchange-logo {
  width: 64px;
  height: 64px;

  object-fit: contain;
  border-radius: 16px;

  margin: auto;

  background: #fff;
  padding: 7px;
}

.exchange-card h2 {
  margin: 14px 0 6px;
}

.exchange-card p {
  color: var(--muted);
  min-height: 48px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .crypto-articles-page .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .exchange-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .crypto-articles-page .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {

  /* Header */
  .site-header {
    padding: 10px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;

    position: absolute;
    left: 0;
    right: 0;
    top: 64px;

    padding: 14px;

    background: #091426;
    border-bottom: 1px solid var(--line);

    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 0;
  }

  .hero-card {
    padding: 25px;
  }

  /* Airdrops */
  .airdrop-grid {
    grid-template-columns: 1fr;
  }

  /* Filters */
  .filters {
    grid-template-columns: 1fr;
  }

  /* Section */
  .section-head {
    align-items: start;
    gap: 15px;
  }

  .brand span {
    font-size: .9rem;
  }

  /* Hero visual */
  .hero-visual {
    min-height: 390px;
  }

  .hero-image-main {
    inset: 20px 45px 85px 20px;
  }

  .hero-image-small {
    width: 52%;
    height: 48%;
    right: 12px;
    bottom: 15px;
  }

  .hero-visual-caption {
    left: 20px;
    bottom: 15px;
  }

  /* YouTube */
  .youtube-intro {
    grid-template-columns: 1fr;
  }

  /* Tutorials */
  .tutorial-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Exchange + Articles */
  .exchange-grid,
  .crypto-articles-page .article-grid {
    grid-template-columns: 1fr;
  }
  
  css
/* =========================================================
   CRYPTO FELICITÉ — PAGE À PROPOS
   DESIGN PC + TABLETTE + MOBILE
   ========================================================= */


/* ---------------------------------------------------------
   CONTENEUR PRINCIPAL
   --------------------------------------------------------- */

.about-page {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 55px 0 80px;
    box-sizing: border-box;
}

.about-page p {
    color: inherit;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 55px;
    align-items: center;
    margin-bottom: 90px;
}

.about-hero-content {
    max-width: 650px;
}

.about-hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-hero-content h1 {
    margin: 0 0 25px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.about-hero-content p {
    max-width: 620px;
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 1.8;
}


/* IMAGE HERO */

.about-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 430px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.about-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        transparent 55%
    );
}

.about-hero-image img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-hero-image:hover img {
    transform: scale(1.04);
}


/* ---------------------------------------------------------
   SECTIONS
   --------------------------------------------------------- */

.about-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    opacity: 0.75;
}

.about-section h2 {
    margin: 0 0 22px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-section p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   CARTES
   --------------------------------------------------------- */

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0 auto 90px;
}

.about-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 22px;
    border: 1px solid rgba(128, 128, 128, 0.18);
    background: rgba(128, 128, 128, 0.035);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.055);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.11);
    border-color: rgba(128, 128, 128, 0.35);
}

.about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 18px;
    font-size: 30px;
    background: rgba(128, 128, 128, 0.10);
}

.about-card h2 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 1.25;
}

.about-card p {
    min-height: 105px;
    margin: 0 0 22px;
    font-size: 15.5px;
    line-height: 1.75;
}

.about-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.about-card a:hover {
    opacity: 0.7;
}


/* ---------------------------------------------------------
   SECTION FEATURE
   --------------------------------------------------------- */

.about-feature {
    display: grid;
    grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.1fr);
    gap: 55px;
    align-items: center;
    margin-bottom: 90px;
}

.about-feature-image {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.about-feature-image img {
    width: 100%;
    height: 390px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-feature-image:hover img {
    transform: scale(1.035);
}

.about-feature-content h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
}

.about-feature-content p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   SÉCURITÉ
   --------------------------------------------------------- */

.security-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    gap: 55px;
    align-items: center;
    margin-bottom: 90px;
    padding: 45px;
    border-radius: 28px;
    border: 1px solid rgba(128, 128, 128, 0.18);
    background: rgba(128, 128, 128, 0.045);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.security-content h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
}

.security-content p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.8;
}

.security-content ul {
    margin: 0;
    padding-left: 22px;
}

.security-content li {
    margin-bottom: 12px;
    padding-left: 4px;
    font-size: 16px;
    line-height: 1.6;
}

.security-image {
    overflow: hidden;
    border-radius: 22px;
}

.security-image img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.security-image:hover img {
    transform: scale(1.04);
}


/* ---------------------------------------------------------
   DISCLAIMER
   --------------------------------------------------------- */

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto 85px;
    padding: 38px 42px;
    border-radius: 24px;
    border: 1px solid rgba(128, 128, 128, 0.20);
    border-left: 5px solid currentColor;
    background: rgba(128, 128, 128, 0.07);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.055);
}

.disclaimer-box h2 {
    margin: 0 0 18px;
    font-size: 28px;
}

.disclaimer-box p {
    margin: 0 0 14px;
    font-size: 15.5px;
    line-height: 1.8;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px 0 20px;
    text-align: center;
}

.contact-section h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.25;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto 12px;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1000px) {

    .about-page {
        width: min(92%, 900px);
        padding-top: 45px;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 70px;
    }

    .about-hero-content {
        max-width: 800px;
    }

    .about-hero-image {
        min-height: 360px;
    }

    .about-hero-image img {
        height: 360px;
    }

    .about-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 70px;
    }

    .about-feature {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 70px;
    }

    .about-feature-image img {
        height: 350px;
    }

    .security-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
        margin-bottom: 70px;
    }

    .security-image img {
        height: 330px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .about-page {
        width: calc(100% - 28px);
        padding: 30px 0 55px;
    }

    /* HERO */

    .about-hero {
        gap: 25px;
        margin-bottom: 55px;
    }

    .about-hero-content h1 {
        margin-bottom: 18px;
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .about-hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-hero-image {
        min-height: 260px;
        border-radius: 20px;
    }

    .about-hero-image img {
        height: 260px;
    }


    /* SECTIONS */

    .about-section {
        margin-bottom: 55px;
    }

    .about-section h2 {
        margin-bottom: 17px;
        font-size: 27px;
    }

    .about-section p {
        font-size: 16px;
        line-height: 1.75;
    }


    /* CARTES */

    .about-cards {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-bottom: 60px;
    }

    .about-card {
        padding: 25px 22px;
        border-radius: 18px;
    }

    .about-card:hover {
        transform: none;
    }

    .about-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 17px;
        border-radius: 15px;
        font-size: 27px;
    }

    .about-card h2 {
        font-size: 21px;
    }

    .about-card p {
        min-height: auto;
        font-size: 15px;
        line-height: 1.7;
    }


    /* FEATURE */

    .about-feature {
        gap: 25px;
        margin-bottom: 60px;
    }

    .about-feature-image {
        border-radius: 20px;
    }

    .about-feature-image img {
        height: 260px;
    }

    .about-feature-content h2 {
        font-size: 27px;
    }

    .about-feature-content p {
        font-size: 16px;
        line-height: 1.75;
    }


    /* SÉCURITÉ */

    .security-section {
        gap: 25px;
        padding: 25px 20px;
        margin-bottom: 60px;
        border-radius: 20px;
    }

    .security-content h2 {
        font-size: 27px;
    }

    .security-content p {
        font-size: 16px;
        line-height: 1.75;
    }

    .security-content li {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 10px;
    }

    .security-image {
        border-radius: 18px;
    }

    .security-image img {
        height: 250px;
    }


    /* DISCLAIMER */

    .disclaimer-box {
        margin-bottom: 60px;
        padding: 25px 20px;
        border-radius: 18px;
    }

    .disclaimer-box h2 {
        font-size: 25px;
    }

    .disclaimer-box p {
        font-size: 14.5px;
        line-height: 1.75;
    }


    /* CONTACT */

    .contact-section {
        padding: 5px 0 15px;
    }

    .contact-section h2 {
        font-size: 27px;
    }

    .contact-section p {
        font-size: 16px;
        line-height: 1.7;
    }

}


/* =========================================================
   TRÈS PETITS ÉCRANS
   ========================================================= */

@media (max-width: 420px) {

    .about-page {
        width: calc(100% - 22px);
        padding-top: 25px;
    }

    .about-hero-content h1 {
        font-size: 30px;
    }

    .about-hero-content p {
        font-size: 15.5px;
    }

    .about-hero-image {
        min-height: 220px;
    }

    .about-hero-image img {
        height: 220px;
    }

    .about-section h2,
    .about-feature-content h2,
    .security-content h2,
    .contact-section h2 {
        font-size: 25px;
    }

    .about-card {
        padding: 22px 18px;
    }

    .security-section {
        padding: 22px 17px;
    }

    .disclaimer-box {
        padding: 22px 17px;
    }

}


/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-card,
    .about-hero-image img,
    .about-feature-image img,
    .security-image img {
        transition: none;
    }

}


}