/*!
Theme Name: RoomCare Marketing
Theme URI: https://roomcare.app/
Author: RoomCare — Senior WordPress Developer
Description: Mobile-first marketing theme for the RoomCare presentation website (ROO-136 / ROO-147). Voice-first room-issue reporting for hotels and vacation rentals. MicBubble brand system.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.1
License: Proprietary
Text Domain: roomcare
*/

/* ==========================================================================
   Design tokens — MicBubble brand palette (docs/.../repro/palette.md)
   ========================================================================== */
:root {
  --blue: #0f766e;   /* Care-Teal — canonical brand primary (matches web app --brand); links, accents. ROO-154 */
  --blue-600: #134e4a; /* darker teal — hover / gradient stop (web app --brand-dark) */
  --blue-050: #e6f4f1; /* soft teal tint — hero + light-surface backgrounds */
  --mint: #16c79a;   /* Fresh-Mint — AI spark / positive accent */
  --mint-050: #e7faf4;
  --navy: #0e2a47;   /* Night-Navy — headings, bezels, depth */
  --ink: #111417;    /* high-contrast mono */
  --bg: #ffffff;
  --bg-tint: #f4f8fd;      /* airy section background */
  --muted: #5b7695;       /* secondary copy */
  --hairline: #d9e6f5;    /* borders / dividers */

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 71, .06), 0 2px 8px rgba(14, 42, 71, .06);
  --shadow-md: 0 8px 24px rgba(14, 42, 71, .10);
  --shadow-lg: 0 24px 60px rgba(14, 42, 71, .16);

  --container: 1140px;
  --gap: 24px;
  --header-h: 76px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    "Helvetica Neue", sans-serif;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
strong { color: var(--navy); font-weight: 700; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(48px, 8vw, 92px); }
.section--tint { background: var(--bg-tint); }
.section--navy { background: var(--navy); color: #d7e6f6; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--tight { padding-block: clamp(36px, 5vw, 60px); }
.section__head { max-width: 720px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section__head.is-left { margin-inline: 0; text-align: left; }
.section__head p { color: var(--muted); font-size: 1.08rem; }
.section--navy .section__head p { color: #a9c4de; }

.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .8rem;
}
.eyebrow--mint { color: var(--mint); }
.lead { font-size: 1.18rem; color: var(--muted); }
.section--navy .lead { color: #bcd4ea; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--blue); --btn-fg: #fff; --btn-bd: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-decoration: none;
  /* Let long CTA labels wrap on narrow viewports instead of forcing a single
     line that overflows the screen — e.g. the longer IT combined label
     "Richiedi una demo / Iscriviti alla lista d'attesa". Guards below keep any
     label length within its container at every width. ROO-151. */
  white-space: normal; text-wrap: balance; text-align: center;
  max-width: 100%; overflow-wrap: break-word;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary { --btn-bg: var(--blue); --btn-fg: #fff; --btn-bd: var(--blue); box-shadow: 0 6px 18px rgba(15,118,110,.28); }
.btn--secondary { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: var(--hairline); }
.btn--secondary:hover { --btn-bd: var(--blue); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy); --btn-bd: #fff; }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.btn--lg { padding: 17px 30px; font-size: 1.08rem; }
.btn--sm { padding: 10px 16px; font-size: .92rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row--center { justify-content: center; }

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
/* Mobile-first: a compact mark that clears the CTA + hamburger; the desktop
   breakpoint below scales it up to its full ~42px height. */
.brand img { height: 34px; width: auto; }
.brand:hover { text-decoration: none; }

.primary-nav { display: none; }
.primary-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.primary-nav a {
  display: block; padding: 8px 12px; border-radius: 8px;
  color: var(--navy); font-weight: 600; font-size: .96rem; white-space: nowrap;
}
.primary-nav a:hover { background: var(--blue-050); color: var(--blue-600); text-decoration: none; }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: var(--blue); }

/* "Solutions" dropdown (desktop). Pure-CSS disclosure revealed on hover or
   keyboard focus, so both segment pages stay reachable without a nav item each
   and without JavaScript. On mobile the same markup renders inline (below). */
.primary-nav .nav-has-sub { position: relative; }
.primary-nav .nav-sub-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border: 0; background: none; cursor: pointer;
  font: inherit; color: var(--navy); font-weight: 600; font-size: .96rem;
  border-radius: 8px; white-space: nowrap;
}
.primary-nav .nav-sub-toggle::after {
  content: ""; width: 6px; height: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); opacity: .55;
}
.primary-nav .nav-has-sub:hover .nav-sub-toggle,
.primary-nav .nav-has-sub:focus-within .nav-sub-toggle { background: var(--blue-050); color: var(--blue-600); }
.primary-nav .nav-sub {
  position: absolute; top: 100%; left: 0; z-index: 101;
  min-width: 220px; margin: 8px 0 0; padding: 6px;
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; border: 1px solid var(--hairline); border-radius: 12px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(4px); pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
/* Transparent hover-bridge that fills the 8px offset between the toggle and the
   panel. Without it the gap is a non-hoverable dead zone: moving the pointer
   from "Solutions" toward a subitem drops .nav-has-sub:hover mid-gap and the
   submenu flicker-closes. As a descendant of .nav-has-sub the bridge keeps
   :hover alive across the gap, and it inherits the panel's pointer-events
   (none while hidden) so it never opens the menu on its own. */
.primary-nav .nav-sub::before {
  content: ""; position: absolute; left: 0; bottom: 100%;
  width: 100%; height: 8px;
}
.primary-nav .nav-has-sub:hover .nav-sub,
.primary-nav .nav-has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.primary-nav .nav-sub a { white-space: nowrap; }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* language switcher */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; font-size: .85rem; font-weight: 700; }
.lang-switch a, .lang-switch span { padding: 5px 8px; border-radius: 7px; color: var(--muted); }
.lang-switch a:hover { background: var(--blue-050); text-decoration: none; }
.lang-switch .is-current { color: var(--navy); background: var(--bg-tint); }

/* mobile nav */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--hairline); border-radius: 10px;
  background: #fff; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0; z-index: 99;
  background: #fff; padding: 24px 20px 40px; overflow-y: auto;
  border-top: 1px solid var(--hairline);
}
body.nav-open .mobile-nav { display: block; }
body.nav-open { overflow: hidden; }
.mobile-nav ul { list-style: none; margin: 0 0 20px; padding: 0; }
.mobile-nav a { display: block; padding: 14px 8px; font-size: 1.15rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--hairline); }
.mobile-nav .btn { width: 100%; margin-top: 6px; }
.mobile-nav .lang-switch { margin-top: 20px; font-size: 1rem; }

/* "Solutions" on mobile: the toggle reads as a section label and both segment
   links are always shown inline (no dropdown), so nothing is hidden behind a
   hover the way it would be on a touch screen. */
.mobile-nav .nav-sub-toggle {
  display: block; width: 100%; text-align: left; border: 0; background: none;
  font: inherit; font-size: 1.15rem; font-weight: 600; color: var(--navy);
  padding: 14px 8px; border-bottom: 1px solid var(--hairline); cursor: default;
}
.mobile-nav .nav-sub { display: block; margin: 0; padding: 0; }
.mobile-nav .nav-sub a { padding-left: 24px; font-size: 1.05rem; color: var(--muted); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blue-050) 0%, #fff 72%); }
.hero__grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; padding-block: clamp(40px, 6vw, 76px); }
.hero__content h1 { margin-bottom: .35em; }
.hero__content .lead { margin-bottom: 1.6rem; max-width: 36ch; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__media.is-plain img { border-radius: 0; box-shadow: none; filter: drop-shadow(0 24px 40px rgba(14,42,71,.18)); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 1.4rem; color: var(--muted); font-size: .92rem; font-weight: 600; }
.hero__badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero__badges svg { color: var(--mint); flex: none; }

.hero--segment { background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 80%); }
.hero--compact .hero__grid { padding-block: clamp(32px, 4vw, 52px); }

/* ==========================================================================
   Steps (how it works teaser + page)
   ========================================================================== */
.steps { display: grid; gap: 20px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; margin-bottom: 14px;
  background: var(--blue); color: #fff; font-weight: 800; font-size: 1.05rem;
}
.step h3 { margin-bottom: .35em; }
.step p { margin: 0; color: var(--muted); }

/* ==========================================================================
   Feature / benefit grid + cards
   ========================================================================== */
.grid { display: grid; gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); height: 100%;
}
.card h3 { margin-bottom: .4em; }
.card p { margin: 0; color: var(--muted); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  background: var(--blue-050); color: var(--blue);
}
.card__icon svg { width: 24px; height: 24px; }
.card--mint .card__icon { background: var(--mint-050); color: var(--mint); }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: var(--navy); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--mint-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2316c79a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.checklist--inline { display: flex; flex-wrap: wrap; gap: 10px 22px; }

/* ==========================================================================
   Alternating feature rows (segment / how-it-works detail)
   ========================================================================== */
.feature-row { display: grid; gap: clamp(24px, 4vw, 52px); align-items: center; margin-bottom: clamp(40px, 6vw, 72px); }
.feature-row:last-child { margin-bottom: 0; }
.feature-row__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.feature-row__media.is-plain img { border-radius: 0; box-shadow: none; filter: drop-shadow(0 18px 34px rgba(14,42,71,.16)); }
.feature-row h3 { font-size: 1.5rem; }
.feature-row p { color: var(--muted); }

/* ==========================================================================
   Showcase (device mockup band)
   ========================================================================== */
.showcase__media { margin-top: 32px; }
.showcase__media img { margin-inline: auto; filter: drop-shadow(0 28px 50px rgba(14,42,71,.2)); }
/* Device showcase — phone capture + web-app management (ROO-158).
   Web previews are the hero: a large Reports browser paired with the phone,
   then the Rooms browser below. Mobile stacks everything, no overlap-clipping. */
.webshow { margin-top: 36px; display: grid; gap: 30px; }
.webshow img { display: block; width: 100%; height: auto; margin-inline: auto;
  filter: drop-shadow(0 18px 34px rgba(14,42,71,.16)); }
.webshow__lead { display: grid; gap: 24px; align-items: end; }
.webshow__phone { max-width: 340px; }
.webshow__browser--rooms { max-width: 820px; }

/* ==========================================================================
   Segment split cards
   ========================================================================== */
.segments { display: grid; gap: 22px; }
.segment-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; box-shadow: var(--shadow-md);
}
.segment-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.segment-card__body { position: relative; padding: 28px 26px; background: linear-gradient(180deg, rgba(14,42,71,0) 0%, rgba(14,42,71,.86) 78%); }
.segment-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: .3em; }
.segment-card p { color: #dbe8f6; margin-bottom: 1em; }
.segment-card .btn { align-self: flex-start; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-panel {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); max-width: 760px; margin-inline: auto;
}
.price-tag { font-size: 1.35rem; font-weight: 800; color: var(--navy); }
.price-tag small { display: block; font-size: .95rem; font-weight: 600; color: var(--muted); }
.note {
  border-left: 3px solid var(--mint); background: var(--mint-050);
  padding: 14px 18px; border-radius: 0 10px 10px 0; color: var(--navy); font-size: .96rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  /* Deep-teal band (ROO-154): all stops sit in the teal family so it reads teal,
     not blue. Kept dark overall so white text clears WCAG AA at every stop. */
  background: linear-gradient(135deg, #0b3f3a 0%, #0f5f57 55%, var(--blue) 130%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px);
  text-align: center; box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #e2f3ef; max-width: 60ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 22px; }

/* ==========================================================================
   Lead form
   ========================================================================== */
.lead-form-wrap { display: grid; gap: clamp(28px, 4vw, 48px); align-items: start; }
.lead-form {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.is-half { grid-column: span 2; }
.form-field label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.form-field .req { color: var(--blue); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--hairline);
  border-radius: 10px; background: #fff; color: var(--navy); width: 100%;
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(15,118,110,.15);
}
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.alert { padding: 14px 16px; border-radius: 10px; margin-bottom: 18px; font-weight: 600; }
.alert--ok { background: var(--mint-050); color: #0a6b52; border: 1px solid #a9e6d5; }
.alert--err { background: #fdecec; color: #b3261e; border: 1px solid #f4c7c3; }
.field-error { color: #b3261e; font-size: .82rem; }

.contact-aside { color: var(--muted); }
.contact-aside h3 { color: var(--navy); }
.contact-aside .checklist li { color: var(--navy); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #a9c4de; padding-block: clamp(40px, 6vw, 64px) 28px; }
.site-footer a { color: #cfe0f2; }
.site-footer a:hover { color: #fff; }
.footer__top { display: grid; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand img { height: 30px; filter: brightness(0) invert(1); opacity: .96; }
.footer__brand p { margin-top: 14px; max-width: 34ch; font-size: .95rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .95rem; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding-top: 22px; font-size: .86rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; }
.footer__trust { display: inline-flex; align-items: center; gap: 8px; color: #9fbdd8; }
.footer__trust svg { color: var(--mint); flex: none; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--navy); padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid rgba(15,118,110,.4); outline-offset: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; }

/* ==========================================================================
   Responsive — mobile-first breakpoints
   ========================================================================== */
@media (min-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .segments { grid-template-columns: repeat(2, 1fr); }
  .form-field.is-half { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  /* Phone (support) beside the large Reports browser (hero), heights matched. */
  .webshow__lead { grid-template-columns: 0.44fr 1fr; }
  .webshow__phone { max-width: none; }
}
@media (min-width: 900px) {
  .primary-nav { display: block; }
  .nav-toggle { display: none; }
  .brand img { height: 42px; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero--segment .hero__grid { grid-template-columns: 1.1fr .9fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.is-reversed .feature-row__media { order: 2; }
  .lead-form-wrap { grid-template-columns: 1.15fr .85fr; }
  .footer__top { grid-template-columns: 1.4fr 2fr; align-items: start; }
}
@media (min-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
