/* =========================================================
   R&H AUDIT EXPERTISE — styles.css
   Palette : bleu marine + orange
   ========================================================= */

:root {
  --navy: #0f2a4a;
  --navy-dark: #0a1f38;
  --navy-light: #1c3f6e;
  --orange: #f47b20;
  --orange-dark: #d96812;
  --orange-light: #ff9a47;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --text: #2b3a4d;
  --text-light: #5d6f84;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(15, 42, 74, 0.10);
  --shadow-lg: 0 18px 50px rgba(15, 42, 74, 0.18);
  --topbar-h: 38px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.center { text-align: center; margin-top: 2.5rem; }
.accent { color: var(--orange); }

section[id] { scroll-margin-top: calc(var(--header-h) + var(--topbar-h)); }

/* ========== BOUTONS ========== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(244, 123, 32, 0.40);
}
.btn--primary:hover { box-shadow: 0 10px 26px rgba(244, 123, 32, 0.55); }

.btn--outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn--white { background: var(--white); color: var(--navy); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--ghost { border-color: var(--navy); color: var(--navy); background: var(--white); }

.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ========== TOPBAR ========== */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--topbar-h);
  background: var(--navy-dark);
  color: #c8d6e8;
  font-size: 0.85rem;
  display: flex; align-items: center;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar__phone { color: var(--orange-light); font-weight: 800; letter-spacing: 0.3px; }
.topbar__phone:hover { color: var(--white); }

/* ========== HEADER ========== */
.header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(15, 42, 74, 0.08);
  transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: 0 4px 24px rgba(15, 42, 74, 0.16); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; height: 100%; }

.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo__img {
  height: 58px; width: auto;
  border-radius: 10px;
  background: var(--white);
}
.logo__text { line-height: 1.2; }
.logo__text strong { display: block; color: var(--navy); font-size: 1.02rem; }
.logo__text small { color: var(--text-light); font-size: 0.7rem; letter-spacing: 0.6px; text-transform: uppercase; }

.nav { display: flex; gap: 1.4rem; margin-left: auto; }
.nav__link {
  font-weight: 600; font-size: 0.93rem; color: var(--navy);
  padding: 0.35rem 0; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2.5px; border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__mobile-extra { display: none; }

.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__phone { font-weight: 800; color: var(--navy); white-space: nowrap; }
.header__phone:hover { color: var(--orange); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.burger span {
  display: block; width: 26px; height: 3px; border-radius: 2px;
  background: var(--navy); margin: 5px 0; transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========== BANDEAU PHOTOS ========== */
.strip { background: var(--bg-alt); padding: 2.4rem 0; }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.strip figure { margin: 0; }
.strip img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.strip figcaption {
  text-align: center; margin-top: 0.55rem;
  font-size: 0.82rem; font-weight: 700;
  color: var(--navy); letter-spacing: 0.4px; text-transform: uppercase;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: calc(var(--topbar-h) + var(--header-h) + 3rem) 0 5rem;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(10, 31, 56, 0.94) 0%, rgba(15, 42, 74, 0.82) 55%, rgba(15, 42, 74, 0.55) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=70") center/cover no-repeat,
    var(--navy);
}
.hero__inner { max-width: 780px; }
.hero__kicker {
  display: inline-block;
  background: rgba(244, 123, 32, 0.16);
  border: 1px solid rgba(244, 123, 32, 0.5);
  color: var(--orange-light);
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.45rem 1.1rem; border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero__title { font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.12; font-weight: 800; margin-bottom: 1.2rem; }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: #d7e2ef; max-width: 620px; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__points { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; color: #c8d6e8; font-weight: 600; font-size: 0.95rem; }
.hero__scroll {
  position: absolute; bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75); font-size: 1.6rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ========== SECTIONS ========== */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(244, 123, 32, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-dark), var(--navy) 70%);
  color: #dbe5f1;
}

.section__kicker {
  color: var(--orange); font-weight: 800; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.6rem;
}
.section__kicker--light { color: var(--orange-light); }
.section__title {
  color: var(--navy); font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.2; font-weight: 800; margin-bottom: 2.6rem; max-width: 720px;
}
.section__title--light { color: var(--white); }
.section__intro { max-width: 640px; margin: -1.4rem 0 2.6rem; }
.section__slogan {
  margin-top: 3rem; text-align: center;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 800; color: var(--navy); font-style: italic;
}

/* ========== GRILLES / CARTES ========== */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #e6ecf4;
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  font-size: 1.6rem; border-radius: 14px;
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.14), rgba(15, 42, 74, 0.08));
  margin-bottom: 1rem;
}
.card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.93rem; color: var(--text-light); }

.card--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.card--dark h3 { color: var(--white); }
.card--dark p { color: #b7c6d8; }
.card--dark .card__icon { background: rgba(244, 123, 32, 0.18); }

.card--center { text-align: center; }
.card--center .card__icon { margin-inline: auto; }

/* Carte avec image en en-tête (Registre Premium) */
.card--media { padding: 0; overflow: hidden; }
.card--media .card__img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.card--media h3 { margin: 1.3rem 1.6rem 0.5rem; }
.card--media p { margin: 0 1.6rem 1.6rem; }

/* ========== SPLIT (à propos / contact) ========== */
.split {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem; align-items: center;
}
/* Empêche les enfants de grille/flex de dépasser à cause de leur contenu (selects, images…) */
.split > *, .service > * { min-width: 0; }
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%;
}
.split__media-badge {
  position: absolute; right: -16px; bottom: 26px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); text-align: center;
  border-radius: var(--radius);
  padding: 0.9rem 1.3rem;
  box-shadow: 0 10px 28px rgba(244, 123, 32, 0.45);
}
.split__media-badge strong { display: block; font-size: 1.6rem; line-height: 1.1; }
.split__media-badge span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; }
.split__content > p { margin-bottom: 1.4rem; }

.checklist li {
  position: relative; padding-left: 1.9rem; margin-bottom: 0.65rem;
}
.checklist li::before {
  content: "✔"; position: absolute; left: 0; top: 0;
  color: var(--orange); font-weight: 800;
}
.checklist { margin-bottom: 1.6rem; }
.checklist--compact { margin-bottom: 1.4rem; }
.checklist--compact li { font-size: 0.95rem; margin-bottom: 0.45rem; }

.quote {
  border-left: 4px solid var(--orange);
  background: rgba(244, 123, 32, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.3rem;
  font-weight: 700; color: var(--navy);
  margin-bottom: 1.8rem;
}

/* ========== SERVICES ========== */
.service {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 3rem; align-items: center;
  padding: 2.4rem 0;
}
.service + .service { border-top: 1px solid #e6ecf4; }
.service--reverse .service__photo { order: 2; }
.service__photo img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11; object-fit: cover; width: 100%;
}
.service__num {
  font-size: 0.85rem; font-weight: 800; letter-spacing: 2px;
  color: var(--orange);
}
.service__body h3 { color: var(--navy); font-size: 1.45rem; margin: 0.3rem 0 0.8rem; }
.service__body > p { margin-bottom: 1.2rem; }
.service__slogan { font-weight: 800; color: var(--navy); font-style: italic; }

/* ========== CHIPS ========== */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.chips--center { justify-content: center; margin-bottom: 0; }
.chip {
  background: var(--bg-alt);
  border: 1px solid #dde6f0;
  color: var(--navy);
  font-weight: 700; font-size: 0.86rem;
  font-family: inherit;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.chip:hover { background: #fff; border-color: var(--orange); transform: translateY(-2px); }
.chip:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.chip--dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: #e3ebf5;
}

.registre-gallery {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem; margin-bottom: 2.6rem;
}
.registre-gallery figure { margin: 0; }
.registre-gallery img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.registre-gallery figcaption {
  text-align: center; margin-top: 0.55rem;
  font-size: 0.8rem; font-weight: 700; color: #c8d6e8;
  letter-spacing: 0.4px; text-transform: uppercase;
}

.equip__title {
  text-align: center; color: var(--white);
  font-size: 1.25rem; margin: 3.2rem 0 1.4rem;
}

/* ========== MÉTHODOLOGIE ========== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid #e6ecf4;
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step__num {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 16px rgba(244, 123, 32, 0.4);
}
.step h3 { color: var(--navy); margin-bottom: 0.25rem; }
.step p { color: var(--text-light); font-size: 0.92rem; }

.deliverables { margin-top: 3.4rem; text-align: center; }
.deliverables h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 1.2rem; }

/* ========== BANDEAU CTA ========== */
.cta-band {
  background:
    radial-gradient(800px 300px at 15% 120%, rgba(255, 255, 255, 0.16), transparent 60%),
    linear-gradient(120deg, var(--orange-dark), var(--orange));
  color: var(--white);
  padding: 3.2rem 0;
}
.cta-band__inner {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
}
.cta-band h2 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin-bottom: 0.3rem; }
.cta-band p { color: rgba(255, 255, 255, 0.9); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ========== CONTACT / FORM ========== */
.split--contact { align-items: start; }
.contact-list { margin-bottom: 1.6rem; }
.contact-list li { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; font-size: 1.02rem; }
.contact-list a:hover { color: var(--orange); }

.form {
  background: var(--white);
  border: 1px solid #e6ecf4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.2rem;
}
.form h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1.1rem; display: flex; flex-direction: column; min-width: 0; }
.form__group label { font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.35rem; }
.form__group input,
.form__group select,
.form__group textarea {
  font: inherit; color: var(--text);
  width: 100%; max-width: 100%; min-width: 0;
  border: 1.5px solid #d8e1ec; border-radius: 10px;
  padding: 0.7rem 0.9rem;
  background: #fbfcfe;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.18);
}
.form__group textarea { resize: vertical; }
.form__status { margin-top: 0.9rem; font-weight: 700; text-align: center; min-height: 1.4em; }
.form__status.is-ok { color: #1d8a4e; }
.form__status.is-error { color: #c43c3c; }
/* Champ piège anti-spam : hors écran, invisible pour les humains */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ========== FOOTER ========== */
.footer { background: var(--navy-dark); color: #b7c6d8; font-size: 0.93rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.4rem; padding: 3.8rem 0 2.6rem;
}
.footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer ul li { margin-bottom: 0.55rem; }
.footer a:hover { color: var(--orange-light); }
.footer .btn { margin-top: 1rem; }
.logo--footer .logo__text strong { color: var(--white); }
.logo--footer .logo__img { height: 64px; padding: 5px 9px; }
.footer__slogan { margin-top: 1rem; font-weight: 700; color: #dbe5f1; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0; text-align: center; font-size: 0.85rem;
}

/* ========== CTA FLOTTANT MOBILE ========== */
.floatbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; gap: 0.7rem;
  padding: 0.7rem 4%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -4px 20px rgba(15, 42, 74, 0.15);
}
.floatbar .btn { flex: 1; padding: 0.75rem 0.5rem; font-size: 0.9rem; }

/* ========== ANIMATIONS AU SCROLL ========== */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .header__phone { display: none; }
}

@media (max-width: 880px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .registre-gallery { grid-template-columns: repeat(3, 1fr); }

  .split, .service { grid-template-columns: 1fr; gap: 2rem; }
  .service--reverse .service__photo { order: 0; }
  .split__media img { aspect-ratio: 16 / 10; }

  /* menu mobile */
  .burger { display: block; }
  .header__actions { display: none; }
  .nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 6% 1.4rem;
    box-shadow: 0 14px 30px rgba(15, 42, 74, 0.18);
    transform: translateY(-130%);
    transition: transform .3s ease;
    margin-left: 0;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 0.7rem 0; font-size: 1.05rem; border-bottom: 1px solid #eef2f7; }
  .nav__mobile-extra { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1rem; }

  .floatbar { display: flex; }
  body { padding-bottom: 64px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .grid--3, .grid--4, .steps { grid-template-columns: 1fr; }
  .registre-gallery { grid-template-columns: repeat(2, 1fr); }
  .logo__img { height: 48px; }
  .form__row { grid-template-columns: 1fr; }
  .form { padding: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__zone { display: none; }
  .topbar__inner { justify-content: center; }
  .hero { min-height: auto; }
  .split__media-badge { right: 10px; }
  .logo__text small { display: none; }
}

/* ========== MODAL DÉTAIL CHIP ========== */
.chip-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 31, 56, 0.55);
}
.chip-modal.open { display: flex; }
.chip-modal__box {
  position: relative;
  background: var(--white);
  width: min(520px, 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.2rem 2rem 2rem;
  animation: chipModalIn .2s ease;
}
@keyframes chipModalIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chip-modal__close {
  position: absolute; top: 0.8rem; right: 1rem;
  background: none; border: none;
  font-size: 1.8rem; line-height: 1; color: var(--text-light);
  cursor: pointer;
}
.chip-modal__close:hover { color: var(--navy); }
.chip-modal__title { color: var(--navy); font-size: 1.3rem; margin-bottom: 0.8rem; }
.chip-modal__desc { color: var(--text); margin-bottom: 1.6rem; }
.chip-modal__desc h4 {
  color: var(--navy); font-size: 1rem; margin: 1.1rem 0 0.4rem;
}
.chip-modal__desc h4:first-child { margin-top: 0; }
.chip-modal__desc p { margin-bottom: 0.7rem; }
.chip-modal__list { margin: 0.4rem 0 0; }
.chip-modal__list li {
  position: relative; padding-left: 1.6rem; margin-bottom: 0.4rem;
}
.chip-modal__list li::before {
  content: "✔️"; position: absolute; left: 0; top: 0;
}
