/* ===================================================================
   LA Studio — stylesheet
   Palette brand originale: rosso #E51B1B + blu #0257FF su fondo chiaro
   Zero dipendenze · mobile-first
   =================================================================== */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f5f6f8;
  --bg-card:   #ffffff;
  --line:      #e5e7eb;
  --text:      #0b0b0d;
  --muted:     #6b7280;

  --red:       #e51b1b;   /* rosso brand (primario) */
  --red-dark:  #cf2626;
  --blue:      #0257ff;   /* blu brand (secondario) */
  --navy:      #103294;
  --on-color:  #ffffff;

  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1160px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ===== Typography helpers ===== */
.eyebrow, .section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  margin: 10px 0 18px;
  color: var(--text);
}
.section-text { color: var(--muted); max-width: 60ch; }
.section-text--center { margin-left: auto; margin-right: auto; text-align: center; }
.accent { color: var(--red); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--red); color: var(--on-color); box-shadow: 0 8px 20px rgba(229,27,27,.25); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(229,27,27,.32); }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: var(--on-color); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: inline-flex; align-items: baseline; gap: 7px; font-weight: 800; }
.logo-mark {
  font-family: 'Anton', sans-serif;
  background: var(--red); color: var(--on-color);
  padding: 3px 9px; border-radius: 8px; letter-spacing: .04em; line-height: 1;
}
.logo-text { font-size: 1.15rem; letter-spacing: .02em; color: var(--text); }
.logo-img { height: 42px; width: auto; display: block; border-radius: 6px; }
.footer-brand .logo-img { height: 38px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--muted); font-weight: 600; font-size: .98rem; transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav .nav-cta { color: var(--blue); padding: 9px 20px; }
.nav .nav-cta:hover { color: var(--on-color); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .2s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 72px 0 60px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(55% 65% at 78% 18%, rgba(2,87,255,.10), transparent 60%),
    radial-gradient(50% 60% at 8% 92%, rgba(229,27,27,.10), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 {
  font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: .98; margin: 14px 0 20px; color: var(--text);
}
.hero .lead { color: var(--muted); font-size: 1.12rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 36px; }

.hero-stats { display: flex; gap: 36px; list-style: none; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.9rem; color: var(--red); line-height: 1; }
.hero-stats li:nth-child(2) strong { color: var(--blue); }
.hero-stats span { font-size: .82rem; color: var(--muted); margin-top: 4px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--line);
  object-fit: cover; aspect-ratio: 13/16;
  box-shadow: 0 30px 70px rgba(16,50,148,.18);
}
.hero-media::after {
  content: ""; position: absolute; left: -14px; bottom: -14px; width: 120px; height: 120px;
  border-left: 5px solid var(--red); border-bottom: 5px solid var(--red); border-radius: 0 0 0 18px; z-index: -1;
}
.hero-media img.img-fallback { background: var(--bg-soft); min-height: 440px; }

/* ===== Sections base ===== */
.section { padding: 90px 0; }
.section-intro { padding-bottom: 40px; }
.section-intro .section-text { font-size: 1.15rem; max-width: 70ch; color: #3f444e; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 6px 24px rgba(11,11,13,.04);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(11,11,13,.10); }
.service-card { border-top: 4px solid var(--red); }
.service-card--alt { border-top: 4px solid var(--blue); }
.service-tag {
  align-self: flex-start; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--red); border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; font-weight: 700;
}
.service-card--alt .service-tag { color: var(--blue); }
.service-card h3 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: 2rem; margin-bottom: 10px; }
.service-card > p { color: var(--muted); margin-bottom: 20px; }
.service-list { list-style: none; margin: 0 0 28px; display: grid; gap: 11px; }
.service-list li { position: relative; padding-left: 28px; color: var(--text); font-size: .98rem; }
.service-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 8px;
  border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg);
}
.service-card--alt .service-list li::before { border-color: var(--blue); }
.service-card .btn { margin-top: auto; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.card-actions .btn { flex: 1 1 140px; padding-left: 16px; padding-right: 16px; margin-top: 0; }

/* ===== Brands ===== */
.section-brands { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-brands .section-eyebrow, .section-brands .section-title { text-align: center; }
.brand-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; margin-top: 40px; align-items: center;
}
.brand-grid li {
  list-style: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 14px; display: grid; place-items: center; aspect-ratio: 3/2;
  transition: transform .2s, box-shadow .2s;
}
.brand-grid li:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(11,11,13,.08); }
.brand-grid img { max-height: 46px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .25s, opacity .25s; }
.brand-grid li:hover img { filter: grayscale(0); opacity: 1; }

/* ===== Results ===== */
.section-results .section-eyebrow, .section-results .section-title { text-align: center; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.result-card { margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 8px 28px rgba(11,11,13,.08); }
.result-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .4s var(--ease); }
.result-card:hover img { transform: scale(1.05); }

/* ===== FAQ ===== */
.section-faq { background: var(--bg-soft); }
.faq { margin-top: 36px; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 22px; position: relative;
  font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--red); transition: transform .3s var(--ease);
}
.faq-item[open] { border-color: var(--red); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 22px 22px; color: var(--muted); }

/* ===== Contact ===== */
.section-contact { background: var(--navy); color: #fff; }
.section-contact .section-title { color: #fff; }
.section-contact .section-eyebrow { color: #ff6b6b; }
.section-contact .section-text { color: #c9d2ec; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-list { list-style: none; margin: 28px 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; color: #eaeefb; }
.contact-ic {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; font-size: 1.1rem;
}
.contact-list a:hover { color: #fff; text-decoration: underline; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.section-contact .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.section-contact .btn-ghost:hover { background: #fff; color: var(--navy); }
.contact-map { min-height: 380px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.2); }
.contact-map iframe { display: block; height: 100%; min-height: 380px; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); padding: 50px 0 40px; background: var(--bg-soft); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-brand p { color: var(--muted); font-size: .9rem; width: 100%; margin-top: 6px; }
.footer-nav { display: flex; gap: 22px; }
.footer-nav a { color: var(--muted); font-size: .92rem; }
.footer-nav a:hover { color: var(--red); }
.footer-copy { color: #9aa0ab; font-size: .85rem; width: 100%; text-align: center; padding-top: 26px; margin-top: 8px; border-top: 1px solid var(--line); }

/* ===== WhatsApp floating ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ===== Detail pages (Open Gym / Personal) ===== */
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 10px; letter-spacing: .02em; }
.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: var(--line); }
.hero .note {
  margin-top: 14px; font-size: .98rem; color: #3f444e;
  background: var(--bg-soft); border-left: 4px solid var(--red);
  padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; max-width: 48ch;
}

.section-detail .section-eyebrow { color: var(--red); }
.feature-list { margin-top: 36px; display: grid; gap: 16px; }
.feature {
  display: flex; gap: 22px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red);
  border-radius: var(--radius-sm); padding: 26px 28px;
  box-shadow: 0 6px 22px rgba(11,11,13,.04);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateX(4px); box-shadow: 0 12px 30px rgba(11,11,13,.09); }
.feature--blue { border-left-color: var(--blue); }
.feature-num {
  font-family: 'Anton', sans-serif; font-size: 1.6rem; line-height: 1;
  color: var(--red); flex: none; min-width: 42px;
}
.feature--blue .feature-num { color: var(--blue); }
.feature h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 1rem; }

.info-box {
  margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.info-box > div { background: #fff; padding: 20px 22px; display: flex; flex-direction: column; gap: 4px; }
.info-k { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--blue); font-weight: 700; }
.info-v { font-size: 1rem; color: var(--text); font-weight: 500; }

.cta-band { background: var(--red); color: #fff; text-align: center; padding: 70px 0; }
.cta-band h2 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.92); margin-bottom: 26px; }
.cta-band .hero-actions { justify-content: center; margin: 0; }
.cta-band .btn-primary { background: #fff; color: var(--red); box-shadow: none; }
.cta-band .btn-primary:hover { background: #f1f1f1; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--red); }

@media (max-width: 560px) { .info-box { grid-template-columns: 1fr; } }

/* ===== Listino prezzi + email gate ===== */
.section-prices { background: var(--bg-soft); }
.section-prices .section-eyebrow, .section-prices .section-title { text-align: center; }
.price-gate {
  margin: 36px auto 0; max-width: 560px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: 0 14px 40px rgba(11,11,13,.08);
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.gate-lead { font-weight: 600; text-align: center; margin-bottom: 18px; }
.gate-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.gate-form input[type=text], .gate-form input[type=email] {
  width: 100%; padding: 14px 16px; font-size: 1rem; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-soft); color: var(--text);
  transition: border-color .2s, background .2s;
}
.gate-form input:focus { outline: none; border-color: var(--blue); background: #fff; }
.gate-submit { margin-top: 4px; }
.gate-mini { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 12px; }
.gate-form.is-error input:invalid { border-color: var(--red); }

.gate-consent {
  display: flex; align-items: flex-start; gap: 10px; text-align: left;
  font-size: .85rem; color: var(--muted); margin: 4px 0 16px; line-height: 1.45;
}
.gate-consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); cursor: pointer; }
.gate-consent a { color: var(--blue); font-weight: 600; }
.gate-consent a:hover { text-decoration: underline; }

.gate-success {
  background: #e8f7ec; border: 1px solid #b7e4c1; color: #1c7c34;
  padding: 13px 16px; border-radius: var(--radius-sm); text-align: center;
  font-weight: 600; margin-bottom: 18px;
}

/* Stato sbloccato: nascondi form, mostra prezzi */
.price-gate.is-unlocked .gate-form { display: none; }
.price-reveal { animation: gateIn .45s var(--ease); }
@keyframes gateIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.price-list { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.price-list li {
  display: grid; grid-template-columns: 1fr auto auto; align-items: baseline; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-soft);
}
.pl-name { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; color: var(--text); }
.pl-amt { font-family: 'Anton', sans-serif; font-size: 1.7rem; color: var(--red); line-height: 1; }
.pl-note { font-weight: 700; color: var(--blue); font-size: .9rem; min-width: 92px; text-align: right; }
.price-list li.pl-featured { background: #eaf0ff; border-color: var(--blue); }
.price-list li.pl-extra { opacity: .92; }
.price-list li.pl-extra .pl-amt { color: var(--blue); }

@media (max-width: 480px) {
  .gate-row { grid-template-columns: 1fr; }
  .price-list li { grid-template-columns: 1fr auto; }
  .pl-note { grid-column: 1 / -1; text-align: left; min-width: 0; }
}

/* ===== Banner cookie ===== */
.cookie-banner {
  position: fixed; left: 16px; bottom: 16px; z-index: 70;
  width: calc(100% - 32px); max-width: 430px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(11,11,13,.22); padding: 20px 22px;
  animation: cookieIn .35s var(--ease);
}
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cookie-banner p { font-size: .9rem; color: var(--text); margin-bottom: 14px; line-height: 1.5; }
.cookie-banner a { color: var(--blue); font-weight: 600; }
.cookie-banner a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { flex: 1; padding: 11px 18px; font-size: .92rem; }
/* mentre il banner è aperto, nascondi il bottone WhatsApp per non sovrapporsi */
body.cookie-open .wa-float { opacity: 0; pointer-events: none; }

/* Placeholder mappa (prima del consenso) */
.map-consent {
  height: 100%; min-height: 380px; display: grid; place-content: center; justify-items: center;
  gap: 14px; text-align: center; padding: 24px;
  background: rgba(255,255,255,.05); color: #c9d2ec;
}
.map-consent p { font-size: .92rem; max-width: 30ch; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; max-width: 420px; }
  .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 24px;
    transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .nav-cta {
    margin: 16px 0 6px;
    padding: 13px 20px;
    border: 2px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    text-align: center;
    justify-content: center;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 64px 0; }
  /* Statistiche hero: 3 colonne fisse così non vanno a capo male */
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stats li { gap: 2px; }
  .hero-stats strong { font-size: 1.5rem; }
  .hero-stats span { font-size: .72rem; line-height: 1.25; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }

  /* Hero mobile: foto contenuta così si vedono anche titolo e CTA */
  .hero { padding: 22px 0 44px; }
  .hero-media { max-width: 100%; margin: 0 auto; }
  .hero-media img {
    aspect-ratio: auto;
    height: 34vh; min-height: 220px; max-height: 330px;
    object-fit: cover; object-position: 50% 16%;
  }
  .hero h1 { font-size: clamp(2rem, 10.5vw, 3rem); margin: 10px 0 12px; }
  .hero .lead { font-size: 1rem; }
  /* CTA su una sola riga */
  .hero-actions { margin: 18px 0 22px; flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 0; padding: 13px 12px; font-size: .92rem; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .service-card { padding: 30px 24px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
