/* ============================================================
   YaCash — Sitio oficial (v2, lenguaje editorial)
   Color alineado al logo: naranja $ + negro + crema cálido.
   Layout v2: hero centrado + foto a sangre completa con stats
   superpuestas · ventajas como "spotlight" de imagen a pantalla
   completa · funciones como lista numerada sin cajas · opiniones
   editoriales sin tarjetas · confianza en fila con divisores ·
   FAQ abierto a dos columnas · legales con índice lateral fijo.
   (La barra de navegación se mantiene sin cambios.)
   ============================================================ */

:root {
  --brand: #f5821f;
  --brand-dark: #e06a00;
  --brand-deep: #b95400;
  --brand-light: #fba94c;
  --brand-soft: #fff2e1;

  --bg: #fffcf6;
  --cream: #fbf1df;
  --cream-2: #f6e7cd;
  --ink: #211c16;
  --ink-2: #3a332a;
  --ink-soft: #6f6657;
  --line: rgba(33, 28, 22, .14);
  --on-dark: #f5ecdd;

  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-6: 48px; --space-8: 64px; --space-12: 96px;
  --radius-sm: 8px; --radius: 14px; --radius-lg: 22px; --radius-pill: 999px;
  --maxw: 1180px;
  --nav-h: 72px;

  --fs-h1: clamp(2.4rem, 6vw, 4.6rem);
  --fs-h2: clamp(1.7rem, 3.4vw, 2.7rem);
  --fs-lead: clamp(1rem, 1.5vw, 1.18rem);
  --ease: cubic-bezier(.4, 0, .2, 1);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--ink); line-height: 1.7;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; }
section { scroll-margin-top: calc(var(--nav-h) + 12px); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px); }
.wrap-wide { max-width: 1320px; }

h1, h2, h3 { line-height: 1.16; letter-spacing: -.02em; font-weight: 800; }
.eyebrow { display: inline-block; font-size: .76rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--brand-dark); }
.hl { color: var(--brand); }

/* Encabezado de sección — editorial, alineado a la izquierda, sin reglas */
.shead { max-width: 60ch; margin-bottom: var(--space-8); }
.shead h2 { font-size: var(--fs-h2); margin: 12px 0 14px; }
.shead p { color: var(--ink-soft); font-size: var(--fs-lead); }
.shead.center { margin-inline: auto; text-align: center; }
.shead.on-dark h2, .shead.on-brand h2 { color: #fff; }
.shead.on-dark p, .shead.on-brand p { color: rgba(245, 236, 221, .82); }
.shead.on-brand .eyebrow, .shead.on-dark .eyebrow { color: var(--brand-light); }

/* Botones */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; font-size: 1rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
    background .22s var(--ease), color .22s var(--ease); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(245, 130, 31, .34); }
.btn-primary:hover { transform: translateY(-2px); background: var(--brand-dark);
  box-shadow: 0 12px 26px rgba(245, 130, 31, .44); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn.on-brand { background: #fff; color: var(--brand-dark); box-shadow: none; }
.btn.on-brand:hover { background: var(--ink); color: #fff; }

/* ===================== NAV (sin cambios) ===================== */
.nav { position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.nav.scrolled { background: rgba(255, 252, 246, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line); }
.nav-inner { height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-3); }
.nav-menu { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.nav-links a { font-weight: 600; font-size: .95rem; color: var(--ink-2);
  position: relative; padding: 6px 2px; white-space: nowrap; transition: color .2s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px;
  width: 0; background: var(--brand); transition: width .25s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brand-dark); }
.brand { display: flex; align-items: center; gap: 9px; }
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.brand b { font-size: 1.16rem; font-weight: 800; letter-spacing: -.02em; }
.nav-links .cta { margin-left: 8px; padding: 9px 18px; font-size: .9rem; flex: none; border: 0; }
.burger { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px;
  justify-self: end; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto;
  transition: .3s var(--ease); }

/* ===================== HERO v2 (centrado + foto a sangre completa) ===================== */
.hero2 { padding: calc(var(--nav-h) + 76px) 0 0; text-align: center; background: var(--cream);
  position: relative; overflow: hidden; }
.hero2::before { content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 680px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 31, .16), transparent 70%); }
.hero2 .wrap { position: relative; z-index: 2; }
.hero2 h1 { font-size: var(--fs-h1); max-width: 18ch; margin: 18px auto 22px; }
.hero2 .lead { max-width: 56ch; margin: 0 auto 32px; color: var(--ink-soft); font-size: var(--fs-lead); }
.hero2-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  padding-bottom: var(--space-12); }
.hero2-band { position: relative; }
.hero2-band img { width: 100%; height: clamp(340px, 48vh, 580px); object-fit: cover; }
.hero2-band::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(33, 28, 22, .82)); }
.hero2-stats { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }
.hero2-stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
  padding-block: var(--space-6); }
.hstat { text-align: center; color: #fff; }
.hstat b { display: block; font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; line-height: 1; }
.hstat b .suf { color: var(--brand-light); }
.hstat span { font-size: .84rem; color: rgba(255, 255, 255, .78); margin-top: 8px; display: block; }

/* ===================== Secciones base ===================== */
.sec { padding: var(--space-12) 0; }
.sec.cream { background: var(--cream); }
.sec.ink { background: var(--ink); color: var(--on-dark); }
.sec.brand { background: var(--brand); color: #fff; }

/* VENTAJAS (#why) — "spotlight": foto a sangre completa + texto superpuesto */
.spot { position: relative; min-height: clamp(380px, 60vh, 600px); display: flex; align-items: center; }
.spot + .spot { border-top: 1px solid rgba(255, 255, 255, .12); }
.spot-bg { position: absolute; inset: 0; z-index: 0; }
.spot-bg img { width: 100%; height: 100%; object-fit: cover; }
.spot-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 12, .86) 0%, rgba(20, 16, 12, .62) 42%, rgba(20, 16, 12, .12) 100%); }
.spot.rev .spot-bg::after {
  background: linear-gradient(270deg, rgba(20, 16, 12, .86) 0%, rgba(20, 16, 12, .62) 42%, rgba(20, 16, 12, .12) 100%); }
.spot .wrap { position: relative; z-index: 2; width: 100%; }
.spot-text { max-width: 480px; color: #fff; }
.spot.rev .spot-text { margin-left: auto; text-align: right; }
.spot-text .eyebrow { color: var(--brand-light); }
.spot-text h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 12px 0 16px; }
.spot-text p { color: rgba(245, 236, 221, .9); margin-bottom: 18px; }
.spot-feats { display: inline-flex; flex-direction: column; gap: 10px; }
.spot.rev .spot-feats { align-items: flex-end; }
.spot-feats li { display: flex; gap: 10px; align-items: center; font-weight: 600; font-size: .96rem; }
.spot.rev .spot-feats li { flex-direction: row-reverse; }
.spot-feats .tick { flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }

/* FUNCIONES (#features) — lista numerada a dos columnas, sin cajas */
.flist { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 90px); }
.fitem { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 30px 0;
  border-top: 1px solid var(--line); align-items: start; }
.fitem .gn { font-size: 2.1rem; font-weight: 800; color: var(--brand-light); line-height: 1;
  font-variant-numeric: tabular-nums; }
.fitem h3 { font-size: 1.16rem; margin-bottom: 6px; }
.fitem p { color: var(--ink-soft); font-size: .95rem; }

/* OPINIONES (#reviews) — editorial, sin tarjetas, comillas grandes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 5vw, 64px); }
.quote { position: relative; }
.quote .mark { font-family: Georgia, "Times New Roman", serif; font-size: 4rem; line-height: .1;
  color: var(--brand); display: block; height: 30px; }
.quote p { font-size: 1.04rem; color: var(--ink); margin-bottom: 20px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote .who b { display: block; font-size: .95rem; }
.quote .who span { font-size: .82rem; color: var(--ink-soft); }
.quote .stars { color: var(--brand); letter-spacing: 2px; font-size: .85rem; margin-bottom: 10px; }

/* CONFIANZA (#partners) — fila con divisores, sin cajas */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 6px clamp(18px, 2.4vw, 32px); border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item .ico { width: 34px; height: 34px; color: var(--brand); margin-bottom: 14px; }
.trust-item h3 { font-size: 1.04rem; margin-bottom: 6px; }
.trust-item p { color: var(--ink-soft); font-size: .9rem; }

/* NOSOTROS (#about) — banda de imagen ancha + texto centrado + stats */
.about-band { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-8); }
.about-band img { width: 100%; height: clamp(220px, 34vh, 380px); object-fit: cover; }
.about-copy { max-width: 760px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 14px; }
.about-stats { display: flex; gap: clamp(28px, 6vw, 72px); margin-top: var(--space-4); flex-wrap: wrap; }
.about-stats div b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--brand-dark); }
.about-stats div span { font-size: .85rem; color: var(--ink-soft); }

/* FAQ (#faq) — abierto a dos columnas (sin acordeón) */
.qa2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6) clamp(40px, 6vw, 80px); }
.qa2 .q { font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; display: flex; gap: 10px; }
.qa2 .q::before { content: "—"; color: var(--brand); }
.qa2 .a { color: var(--ink-soft); font-size: .96rem; }

/* DETALLES DEL PRÉSTAMO (#detalles) — especificaciones + ejemplo de cálculo */
.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4);
  margin-bottom: var(--space-8); }
.spec { border-top: 2px solid var(--brand); padding-top: 16px; }
.spec b { display: block; font-size: clamp(1.3rem, 2.3vw, 1.85rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.1; }
.spec b small { font-size: .9rem; font-weight: 700; color: var(--ink-soft); }
.spec span { display: block; color: var(--ink-soft); font-size: .9rem; margin-top: 6px; }
.calc { background: var(--ink); color: var(--on-dark); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px); }
.calc h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.calc .sub { color: rgba(245, 236, 221, .7); font-size: .92rem; margin-bottom: 18px; }
.calc-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: .96rem; }
.calc-row span { color: rgba(245, 236, 221, .82); }
.calc-row b { color: #fff; font-variant-numeric: tabular-nums; }
.calc-row.total { border-bottom: 0; margin-top: 6px; padding-top: 16px;
  border-top: 2px solid var(--brand); }
.calc-row.total span, .calc-row.total b { font-size: 1.15rem; color: #fff; font-weight: 800; }
.calc-note { color: rgba(245, 236, 221, .7); font-size: .86rem; margin-top: 16px; }

/* CÓMO SOLICITAR (#how) — requisitos */
.req { margin-top: var(--space-8); }
.req h3 { font-size: 1.15rem; margin-bottom: 16px; }
.req-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px clamp(40px, 6vw, 80px); }
.req-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: .96rem; }
.req-list .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-soft);
  color: var(--brand-dark); display: grid; place-items: center; font-size: .72rem; font-weight: 800; margin-top: 2px; }

/* CTA final (#download) — franja naranja centrada */
.cta-band { text-align: center; }
.cta-band h2 { font-size: var(--fs-h2); color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .9); font-size: var(--fs-lead); margin: 0 auto 26px; max-width: 52ch; }

/* ===================== FOOTER (sin cambios) ===================== */
.foot { background: var(--ink); color: var(--on-dark); padding: var(--space-12) 0 var(--space-6); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: var(--space-6); }
.foot .brand b { color: #fff; }
.foot .brand img { width: 40px; height: 40px; border-radius: 10px; }
.foot p { font-size: .92rem; margin-top: 14px; max-width: 32ch; color: rgba(245, 236, 221, .72); }
.foot h4 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.foot li { margin-bottom: 10px; }
.foot a { color: rgba(245, 236, 221, .82); font-size: .92rem; transition: color .2s; }
.foot a:hover { color: var(--brand-light); }
.foot-contact li { font-size: .9rem; line-height: 1.5; color: rgba(245, 236, 221, .82); }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: var(--space-8);
  padding-top: var(--space-3); display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; font-size: .85rem; color: rgba(245, 236, 221, .55); }

/* ===================== Animación ===================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }

/* ===================== Páginas legales v2 (índice lateral fijo) ===================== */
.legal-hero { background: var(--ink); color: #fff; padding: calc(var(--nav-h) + 52px) 0 64px; }
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-hero p { color: rgba(245, 236, 221, .7); margin-top: 10px; }
.legal2 { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: start; max-width: 1080px; margin: 0 auto; padding: var(--space-12) 0; }
.legal-toc { position: sticky; top: calc(var(--nav-h) + 24px); }
.legal-toc .toc-tt { font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 14px; }
.legal-toc a { display: block; padding: 7px 0 7px 14px; color: var(--ink-soft); font-size: .9rem;
  border-left: 2px solid var(--line); transition: color .2s, border-color .2s; }
.legal-toc a:hover, .legal-toc a.active { color: var(--brand-dark); border-color: var(--brand); }
.legal2-body { min-width: 0; }
.legal2-body > p { color: var(--ink-2); margin-bottom: 14px; }
.legal2-body h2 { font-size: 1.3rem; color: var(--ink); margin: var(--space-8) 0 14px;
  padding-top: var(--space-2); }
.legal2-body h2:first-of-type { margin-top: 0; }
.legal2-body h2 .n { color: var(--brand); font-variant-numeric: tabular-nums; margin-right: 10px; }
.legal2-body h3 { font-size: 1.02rem; color: var(--brand-deep); margin: 22px 0 8px; }
.legal2-body p { color: var(--ink-2); margin-bottom: 12px; font-size: .96rem; }
.legal2-body ul { margin: 8px 0 16px; }
.legal2-body ul li { position: relative; padding: 8px 0 8px 22px; border-bottom: 1px solid var(--cream-2);
  font-size: .95rem; color: var(--ink-2); }
.legal2-body ul li::before { content: "•"; position: absolute; left: 4px; color: var(--brand); font-weight: 800; }
.legal2-body a { color: var(--brand-dark); word-break: break-word; border-bottom: 1px solid var(--brand-light); }
.legal-back { display: inline-flex; gap: 8px; align-items: center; margin-top: 30px;
  font-weight: 700; color: var(--brand-dark); }

/* Página: Eliminación de datos — pasos en línea de tiempo vertical */
.del-main { max-width: 860px; margin-inline: auto; padding: var(--space-12) 0; }
.del-intro { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 60ch; margin-bottom: var(--space-8); }
.del-way { margin-bottom: var(--space-8); }
.del-way > .tag { display: inline-flex; align-items: center; gap: 10px; font-weight: 800;
  color: #fff; background: var(--brand); padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--space-4); }
.timeline { list-style: none; border-left: 2px solid var(--cream-2); margin-left: 14px; }
.timeline li { position: relative; padding: 0 0 28px 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -8px; top: 2px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--brand); border: 3px solid var(--bg); }
.timeline b { display: block; margin-bottom: 3px; }
.timeline span { color: var(--ink-soft); font-size: .94rem; }
.del-terms { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
  margin-top: var(--space-4); }
.del-term { border-top: 3px solid var(--brand); padding: 18px 0 0; }
.del-term b { display: block; margin-bottom: 6px; }
.del-term p { color: var(--ink-soft); font-size: .92rem; }
.del-contact { margin-top: var(--space-8); color: var(--ink-soft); }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero2-stats .wrap { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
  .flist, .qa2, .req-list { grid-template-columns: 1fr; }
  .specs { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; gap: var(--space-6); }
  .trust { grid-template-columns: 1fr 1fr; gap: var(--space-4) 0; }
  .trust-item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .legal2 { grid-template-columns: 1fr; }
  .legal-toc { position: static; margin-bottom: var(--space-4);
    border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
  .del-terms { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 0; }
  .brand { order: 0; }
  .burger { display: block; order: 0; }
  .nav-menu { display: flex; flex-direction: column; position: fixed; left: 0; right: 0; top: var(--nav-h);
    background: rgba(255, 252, 246, .98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    padding: 6px 24px 20px; box-shadow: 0 12px 30px rgba(33, 28, 22, .14); border-top: 1px solid var(--line);
    transform: translateY(-135%); transition: transform .35s var(--ease);
    max-height: calc(100svh - var(--nav-h)); overflow-y: auto; }
  .nav.open .nav-menu { transform: translateY(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav .nav-links a { width: 100%; padding: 13px 2px; border-bottom: 1px solid var(--line); }
  .nav .nav-links a::after { display: none; }
  .nav-links .cta { margin: 14px 0 0; width: 100%; justify-content: center; color: #fff !important; border-bottom: 0; }
  .nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .burger span:nth-child(2) { opacity: 0; }
  .nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .spot { min-height: 0; padding: var(--space-12) 0; }
  .spot-bg::after, .spot.rev .spot-bg::after {
    background: linear-gradient(180deg, rgba(20, 16, 12, .55), rgba(20, 16, 12, .82)); }
  .spot.rev .spot-text { margin-left: 0; text-align: left; }
  .spot.rev .spot-feats { align-items: flex-start; }
  .spot.rev .spot-feats li { flex-direction: row; }
}
@media (max-width: 560px) {
  .hero2-stats .wrap { grid-template-columns: 1fr 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal, [data-stagger] > * { transition: none; opacity: 1; transform: none; }
}
