/* ============================================================
   EVORIS — LANDING PAGE
   Blocs propres à l'accueil : héros, garanties, services, IA,
   méthode, réalisations, engagements, cas de figure, tarifs,
   FAQ et formulaire de devis. Dépend de tokens.css + site.css.
   ============================================================ */

/* ---- Héros ----------------------------------------------------- */
.hero {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(44px, 6vw, 88px) var(--pad-x) clamp(32px, 3vw, 52px);
  min-height: min(86svh, 900px);
  display: flex;
  flex-direction: column;
}

.hero__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-kicker);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: clamp(24px, 3vw, 40px);
  animation: evRise 0.7s var(--ease) both;
}

.hero__eyebrow span {
  width: 28px;
  height: 1px;
  flex: none;
  background: var(--vermilion);
  animation: evRule 0.8s 0.32s var(--ease) both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 17ch;
  animation: evMask 1.05s 0.08s var(--ease) both;
}

.hero__title .is-accent {
  color: var(--vermilion);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(24px, 3vw, 56px);
  align-items: end;
  margin-top: clamp(32px, 4vw, 56px);
}

.hero__lede {
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--muted);
  max-width: 46ch;
  animation: evRise 0.85s 0.26s var(--ease) both;
}

/* Les deux faits vérifiables de l'accroche ressortent sans crier. */
.hero__lede strong {
  color: var(--fg);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: evRise 0.85s 0.36s var(--ease) both;
}

.hero__foot {
  margin-top: clamp(40px, 5vw, 72px);
  animation: evRise 0.9s 0.46s var(--ease) both;
}

.hero__cue {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--faint);
  padding-bottom: 16px;
}

.hero__cue span {
  display: block;
  width: 1px;
  height: 24px;
  background: linear-gradient(var(--vermilion), transparent);
  animation: evScrollCue 2s ease-in-out infinite;
}

.jump-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}

.jump-list li {
  background: var(--bg);
}

.jump {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  min-height: var(--hit);
  transition:
    color 0.2s ease,
    transform var(--dur) var(--ease);
}

.jump-list li:first-child .jump {
  padding-left: 0;
}

.jump:hover {
  color: var(--vermilion);
  transform: translateX(6px);
}

.jump__num {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--vermilion);
}

.jump__label {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.5rem);
  line-height: 1.1;
}

/* ---- Bandeau des garanties -------------------------------------- */
.guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.guarantees li {
  padding: 26px clamp(0px, 2vw, 28px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 1px solid var(--rule);
}

.guarantees li:first-child {
  padding-left: 0;
  border-left: none;
}

.guarantees li:last-child {
  padding-right: 0;
}

.guarantees__num {
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent);
  padding-top: 3px;
}

.guarantees__text {
  font-size: var(--fs-sm);
  line-height: 1.4;
}

/* ---- Grilles à filets ------------------------------------------- */
.hairline {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.hairline--services,
.hairline--cases {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.hairline--ia {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  margin-top: clamp(44px, 5vw, 72px);
}

/* ---- Services --------------------------------------------------- */
.service {
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3-lg);
  line-height: 1.02;
}

.service--lead .service__title {
  font-size: var(--fs-h3-xl);
}

.service__text {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid var(--rule);
}

.feature-list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
}

/* Le « / » est purement décoratif : alternative textuelle vide. */
.feature-list li::before {
  content: "/" / "";
  color: var(--accent);
  flex: none;
}

.service__foot {
  margin-top: auto;
  padding-top: 22px;
}

.service__foot .btn {
  margin-top: 20px;
}

.price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.price--sm {
  font-size: 2.1rem;
}

.price small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: 2px;
  color: var(--muted);
}

/* « À partir de » : mention de seuil, au-dessus du chiffre et sans le concurrencer. */
.price__from {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ---- L'IA chez Evoris ------------------------------------------- */
.ia__title {
  font-size: var(--fs-h2-wide);
  line-height: 0.96;
  max-width: 24ch;
}

.ia__lede {
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.35rem);
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 28px;
}

.ia__col {
  padding: clamp(28px, 2.8vw, 44px);
}

.ia__col > h3 {
  font-size: var(--fs-kicker);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

.ia__list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.ia__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ia__item-title {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  line-height: 1.1;
}

.ia__item-text {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--muted);
  margin-top: 8px;
}

/* ---- Méthode ----------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}

.step {
  background: var(--bg);
  padding: clamp(26px, 2.4vw, 36px) clamp(20px, 1.8vw, 28px);
}

.step__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.step__num {
  font-family: var(--font-display);
  font-size: var(--fs-step);
  line-height: 0.9;
  color: var(--accent);
}

.step__when {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.step__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 0.7vw, 1.8rem);
  line-height: 1.1;
  margin: 20px 0 10px;
}

.step__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---- Réalisations ------------------------------------------------ */
.work {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--gap-grid);
}

.work-card {
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.work-card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-3px);
}

.work-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--ink-2);
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.55s var(--ease);
}

.work-card:hover .work-card__media img {
  transform: scale(1.045);
}

.work-card__body {
  padding: clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.work-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--faint);
}

.work-card__status {
  color: var(--fg);
}

.work-card__status--live {
  color: var(--vermilion);
}

.work-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.1rem);
  line-height: 1.05;
}

.work-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag-list li {
  font-size: var(--fs-label);
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--rule-strong);
  padding: 5px 9px;
}

.work-card__link {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

.work-card__link--live {
  color: var(--vermilion);
}

/* ---- Engagements -------------------------------------------------- */
.promises {
  border-top: 1px solid var(--rule);
}

.promises li {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(8px, 2vw, 48px);
  padding: clamp(22px, 2.4vw, 32px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.promises__head {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.promises__num {
  font-size: var(--fs-kicker);
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent);
}

.promises__label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 0.9vw, 2rem);
  line-height: 1.08;
}

.promises__text {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}

/* Renvoi vers la clause contractuelle qui rend l'engagement vérifiable. */
.promises__source {
  display: inline-block;
  margin-top: 6px;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
}

/* ---- Cas de figure ------------------------------------------------ */
.case {
  background: var(--bg);
  padding: clamp(26px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case__kicker {
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.case__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: 1.08;
}

.case__block {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

.case__label {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--faint);
  margin-bottom: 8px;
}

.case__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.disclaimer {
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid var(--vermilion);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg);
}

.disclaimer strong {
  font-weight: 600;
}

/* ---- Tarifs -------------------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(24px, 2.5vw, 40px);
  align-items: start;
}

.pricing__main {
  padding: var(--card-pad);
}

.pricing__kicker {
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing__price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 4.6rem);
  line-height: 0.9;
}

.pricing__price small {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: 4px;
  color: var(--muted);
}

.pricing__main .table {
  margin-top: 28px;
}

.pricing__main .btn {
  margin-top: 28px;
}

.pricing__side {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 40px);
}

.pricing__box {
  border: 1px solid var(--rule-strong);
  padding: clamp(24px, 2.2vw, 34px);
}

.pricing__box--tint {
  background: var(--tint);
  border-color: var(--rule);
}

.pricing__box h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: 1.08;
}

.pricing__box .label {
  color: var(--muted);
  margin-bottom: 6px;
}

.pricing__box p {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--muted);
  margin-top: 14px;
}

.pricing__box .btn {
  margin-top: 22px;
}

.pricing__fine {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 16px;
}

/* Tableaux de tarifs : un filet en haut de chaque ligne. */
.table--rows th,
.table--rows td {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  vertical-align: top;
}

.table--rows td {
  text-align: right;
  color: var(--muted);
}

/* Onze options sans colonne de droite formeraient un mur de lignes de
   poids egal. On reprend donc l'autre procede du cadre des inclusions,
   son intertitre en petites capitales, repete par groupe : quatre points
   d'ancrage remplacent le rail droit disparu. Filet et rythme vertical
   restent ceux du tableau d'en face. */
.options {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.options__label {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

/* Le filet se pose au-dessus de chaque option ; un filet de fermeture
   sous chaque groupe evite que la derniere ligne reste a ciel ouvert —
   invisible dans une liste de sept, criant dans un groupe de deux. */
.options ul {
  border-bottom: 1px solid var(--rule);
}

.options li {
  padding: 11px 0;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-sm);
  line-height: 1.45;
}

/* ---- FAQ ------------------------------------------------------------ */
.faq {
  max-width: 920px;
  border-top: 1px solid var(--rule);
}

.faq__item {
  border-bottom: 1px solid var(--rule);
}

.faq__summary {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  min-height: var(--hit);
  cursor: pointer;
  list-style: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__num {
  font-size: var(--fs-kicker);
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent);
  padding-top: 7px;
  flex: none;
}

.faq__label {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.65rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.015em;
  flex: 1;
  margin: 0;
}

.faq__sign {
  flex: none;
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
  padding-top: 2px;
}

.faq__sign::before {
  content: "+";
}

.faq__item[open] .faq__sign::before {
  content: "−";
}

.faq__panel {
  padding: 0 0 26px 42px;
  animation: evAcc 0.24s var(--ease) both;
}

.faq__panel p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 68ch;
}

/* ---- Blog (teaser) -------------------------------------------------- */
.blog-teaser__head {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(36px, 4vw, 56px);
}

/* ---- Devis ----------------------------------------------------------- */
.devis__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 4vw, 64px);
}

.devis__title {
  font-size: var(--fs-h2-devis);
  line-height: 0.96;
}

.devis__intro {
  font-size: var(--fs-intro);
  line-height: 1.55;
  color: var(--muted);
  max-width: 42ch;
}

.devis__mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2.1rem);
  border-bottom: 1px solid var(--vermilion);
  padding-bottom: 3px;
}

/* Inversion du risque, juste avant le formulaire. */
.guarantee {
  border-left: 2px solid var(--vermilion);
  padding: 4px 0 4px 22px;
  margin-bottom: clamp(28px, 3vw, 40px);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--muted);
  max-width: 74ch;
}

.guarantee strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 8px;
}

.guarantee a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  white-space: nowrap;
}

.devis__card {
  padding: clamp(26px, 3vw, 52px);
}

.devis__reassurance {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 16px;
  max-width: 68ch;
}

.devis__success {
  max-width: 60ch;
}

.devis__success-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: 1.1;
  color: var(--fg);
}

.devis__success p + p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 14px;
}

.devis__success a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
}

.devis__fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.devis__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.devis__status {
  margin-top: 18px;
  min-height: 1.4em;
}

.devis__status .is-ok {
  display: inline-block;
  background: var(--invert-bg);
  color: var(--invert-fg);
  padding: 14px 18px;
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.devis__status .is-error {
  display: inline-block;
  font-size: var(--fs-sm);
  color: var(--erreur);
}

/* ---- Champs de formulaire -------------------------------------------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.field__req {
  color: var(--erreur);
}

.field__opt {
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.field__input,
.field__select {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--rule-strong);
  border-radius: 0;
  padding: 12px 0;
  font-size: 16.5px;
  min-height: var(--hit);
}

.field__select {
  cursor: pointer;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--vermilion);
}

.field__textarea {
  background: var(--field-bg);
  border: 1.5px solid var(--rule-strong);
  border-radius: 0;
  padding: 14px 16px;
  font-size: 16.5px;
  line-height: 1.55;
  resize: vertical;
  width: 100%;
}

.field__error {
  font-size: var(--fs-xs);
  color: var(--erreur);
  min-height: 1.2em;
}

.field__spacer {
  min-height: 1.2em;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.consent-row label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: var(--fs-sm);
  line-height: 1.5;
  max-width: 76ch;
}

.consent-row .is-fine {
  color: var(--muted);
}

.consent-row a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(236, 233, 226, 0.4);
  border-top-color: var(--paper);
  border-radius: 50%;
  animation: evSpin 0.7s linear infinite;
}

/* ---- Mouvement propre à l'accueil ------------------------------------ */
@keyframes evRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes evMask {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 -12% 0);
    transform: none;
  }
}

@keyframes evRule {
  from {
    width: 0;
  }
  to {
    width: 28px;
  }
}

@keyframes evAcc {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes evScrollCue {
  0%,
  100% {
    transform: translateY(-4px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}
