/* ==========================================================================
   Jongstra Transport & Logistiek — homepage
   Tokens from brand-guidelines skill. Layout mirrors approved comp.
   ========================================================================== */

:root {
  /* Color */
  --orange:        #E8651A;
  --orange-hover:  #C9540F;
  --orange-light:  #FFF0E8;
  --charcoal:      #1E1E1E;
  --dark:          #2D2D2D;
  --white:         #FFFFFF;
  --offwhite:      #F5F4F2;
  --muted:         #6B7280;
  --border:        #E5E2DC;
  --success:       #2E7D52;

  /* Type */
  --display: 'Barlow Condensed', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 7vw, 6rem);
  --radius: 8px;
  --radius-sm: 4px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(30,30,30,.06), 0 2px 8px rgba(30,30,30,.05);
  --shadow-md: 0 8px 30px rgba(30,30,30,.10);
  --shadow-lg: 0 24px 60px rgba(30,30,30,.22);

  /* z-scale */
  --z-sticky: 100;
  --z-drawer: 200;

  --ease-out: cubic-bezier(.22,1,.36,1);
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3 { margin: 0; font-family: var(--display); font-weight: 700; color: var(--charcoal); line-height: 1.04; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--offwhite); }
.center { text-align: center; }

/* Accent rule (echoes the two logo rules) */
.rule-accent { display: block; width: 64px; height: 4px; background: var(--orange); border-radius: 2px; margin-top: 14px; }
.rule-accent--center { margin-inline: auto; margin-top: 16px; }

.kicker {
  font-family: var(--body); font-weight: 600; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --arrow-shift: 0px;
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 13px 26px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.btn .arr { width: 20px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--onorange { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn--onorange:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.btn--nav { padding: 10px 20px; font-size: .9rem; }
.btn--sm { padding: 9px 16px; font-size: .82rem; }

/* Inline text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--orange); font-size: .95rem;
}
.link-arrow .arr { width: 20px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease-out); }
.link-arrow:hover .arr { transform: translateX(4px); }
.link-arrow--sm { font-size: .85rem; }

/* ==========================================================================
   Utility bar
   ========================================================================== */
.utilbar { background: var(--charcoal); color: rgba(255,255,255,.72); font-size: .8rem; }
.utilbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; }
.utilbar__region { display: inline-flex; align-items: center; gap: .5rem; background: none; border: 0; color: inherit; font: inherit; cursor: pointer; padding: 0; }
.utilbar__region .flag { width: 18px; height: 12px; border-radius: 2px; background: linear-gradient(180deg,#AE1C28 33.3%,#fff 33.3% 66.6%,#21468B 66.6%); }
.utilbar__region .chev { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.utilbar__links { display: flex; gap: 1.5rem; }
.utilbar__links a { transition: color .15s; }
.utilbar__links a:hover { color: #fff; }
@media (max-width: 720px) { .utilbar__links a:not(:last-child) { display: none; } }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 74px; }

.logo { display: inline-flex; flex-direction: column; gap: 3px; line-height: 1; }
.logo__name { font-family: var(--display); font-weight: 700; font-size: 1.6rem; letter-spacing: .01em; color: var(--orange); }
.logo__rules { display: flex; flex-direction: column; gap: 2px; }
.logo__rules i { height: 2px; background: var(--orange); border-radius: 1px; }
.logo__sub { font-family: var(--display); font-weight: 600; font-size: .62rem; letter-spacing: .22em; color: var(--orange); }

.mainnav { display: flex; gap: 2rem; }
.mainnav a {
  position: relative; font-weight: 600; font-size: .95rem; color: var(--charcoal); padding: 4px 0;
  transition: color .15s;
}
.mainnav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out);
}
.mainnav a:hover { color: var(--orange); }
.mainnav a:hover::after, .mainnav a.is-active::after { transform: scaleX(1); }
.mainnav a.is-active { color: var(--orange); }

.header__cta { display: flex; align-items: center; gap: 1rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobilenav { display: none; }
@media (max-width: 900px) {
  .mainnav { display: none; }
  .hamburger { display: flex; }
  .header__cta .btn--nav { display: none; }
  .mobilenav {
    display: flex; flex-direction: column; gap: .25rem;
    padding: 1rem var(--gutter) 1.5rem; background: #fff; border-top: 1px solid var(--border);
    z-index: var(--z-drawer);
  }
  .mobilenav a { padding: 12px 4px; font-weight: 600; color: var(--charcoal); border-bottom: 1px solid var(--border); }
  .mobilenav a.btn { justify-content: center; margin-top: .75rem; border-bottom: 0; color: #fff; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,18,16,.94) 0%, rgba(20,18,16,.82) 34%, rgba(20,18,16,.28) 70%, rgba(20,18,16,.10) 100%),
    linear-gradient(0deg, rgba(20,18,16,.55), rgba(20,18,16,0) 45%);
}
.hero__inner { padding-block: clamp(3.5rem, 9vw, 7rem); }
.hero__copy { max-width: 620px; }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.9); line-height: 1.5; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero__facts { display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem; margin-top: 2.5rem; }
.hero__facts li { display: flex; align-items: center; gap: .7rem; font-size: .95rem; line-height: 1.25; }
.hero__facts strong { font-weight: 700; }
.tick { flex: none; width: 22px; height: 22px; position: relative; }
.tick::before {
  content: ""; position: absolute; left: 3px; top: 5px; width: 9px; height: 15px;
  border-right: 3px solid var(--orange); border-bottom: 3px solid var(--orange); transform: rotate(40deg);
}
.tick--orange::before { border-color: var(--orange); }

/* ==========================================================================
   Features
   ========================================================================== */
.features__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.features__intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.25rem; }
.features__intro > p { color: var(--dark); max-width: 42ch; margin-bottom: 1.5rem; }

.features__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem); }
.feature__icon { display: inline-flex; width: 44px; height: 44px; margin-bottom: .85rem; }
.feature__icon svg { width: 100%; height: 100%; fill: none; stroke: var(--orange); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.feature p { font-size: .95rem; color: var(--dark); }

@media (max-width: 820px) {
  .features__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features__list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }

.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem;
  margin-top: 2.25rem;
}
.svc {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc img { aspect-ratio: 16/11; object-fit: cover; width: 100%; }
.svc__body { padding: 1.25rem 1.25rem 1.4rem; }
.svc h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.svc p { font-size: .92rem; color: var(--dark); margin-bottom: 1rem; }

/* ==========================================================================
   Warehouse / dashboard
   ========================================================================== */
.warehouse { position: relative; color: #fff; overflow: hidden; isolation: isolate; padding-block: clamp(4rem, 8vw, 6.5rem); }
.warehouse__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.warehouse__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(18,16,14,.96) 0%, rgba(18,16,14,.86) 40%, rgba(18,16,14,.55) 100%); }
.warehouse__inner { display: grid; grid-template-columns: 1fr auto; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.warehouse__copy { max-width: 480px; }
.warehouse h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1.1rem; }
.warehouse__copy > p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }

.checklist { display: grid; gap: .8rem; }
.checklist li { display: flex; align-items: center; gap: .75rem; font-size: 1rem; font-weight: 500; }

.dashcard {
  width: min(360px, 86vw); background: #fff; color: var(--charcoal);
  border-radius: 12px; padding: 1.4rem 1.5rem; box-shadow: var(--shadow-lg);
}
.dashcard__head { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.dashcard__trend { color: var(--success); background: rgba(46,125,82,.12); padding: 2px 8px; border-radius: 20px; font-size: .72rem; letter-spacing: .02em; }
.dashcard__figure { font-family: var(--display); font-weight: 700; font-size: 3.2rem; line-height: 1; margin: .5rem 0 1.1rem; letter-spacing: -0.01em; }
.dashcard__rows { display: grid; gap: .1rem; border-top: 1px solid var(--border); padding-top: .5rem; }
.dashcard__rows li { display: flex; align-items: center; gap: .7rem; padding: .55rem 0; font-size: .92rem; color: var(--dark); border-bottom: 1px solid var(--border); }
.dashcard__rows b { margin-left: auto; font-weight: 700; color: var(--charcoal); }
.di { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.di--in { background: var(--success); }
.di--out { background: var(--orange); }
.di--soon { background: #B8A94A; }
.dashcard__alert { display: flex; align-items: center; gap: .55rem; margin-top: .85rem; font-size: .85rem; font-weight: 600; color: var(--orange-hover); }
.dashcard__alert span { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); color: #fff; font-size: .72rem; }

@media (max-width: 800px) {
  .warehouse__inner { grid-template-columns: 1fr; }
  .dashcard { justify-self: start; }
}

/* ==========================================================================
   Process
   ========================================================================== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem;
  position: relative;
}
.step { text-align: center; position: relative; padding-inline: .5rem; }
/* connector line */
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 45px; left: calc(50% + 55px); right: calc(-50% + 55px); height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
}
.step__node {
  position: relative; width: 90px; height: 90px; margin: 0 auto 1.1rem; border-radius: 50%;
  border: 2px solid var(--border); background: #fff; display: grid; place-items: center;
}
.step__num {
  position: absolute; top: -6px; right: -2px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: #fff; font-family: var(--display); font-weight: 700; font-size: 1rem;
  display: grid; place-items: center; box-shadow: 0 2px 8px rgba(232,101,26,.4);
}
.step__icon { width: 40px; height: 40px; fill: none; stroke: var(--orange); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.step p { font-size: .9rem; color: var(--muted); max-width: 22ch; margin-inline: auto; }

@media (max-width: 720px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1rem; }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 400px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   Clients
   ========================================================================== */
.clients__title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 2.5rem; }
.clients__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); }
.clients__row li {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: .01em; color: #9a968f; text-transform: uppercase;
  filter: grayscale(1); opacity: .85; transition: color .2s, opacity .2s;
}
.clients__row li:hover { color: var(--charcoal); opacity: 1; }

/* ==========================================================================
   Recruit banner
   ========================================================================== */
.recruit { position: relative; background: var(--orange); color: #fff; overflow: hidden; isolation: isolate; }
.recruit__photo {
  position: absolute; right: 0; top: 0; height: 100%; width: clamp(240px, 32%, 460px);
  object-fit: cover; object-position: center; z-index: -1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%);
  mask-image: linear-gradient(90deg, transparent, #000 38%);
}
.recruit::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, var(--orange) 45%, rgba(232,101,26,.35) 100%); }
.recruit__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(2.25rem, 5vw, 3.25rem); flex-wrap: wrap; }
.recruit__copy { max-width: 620px; }
.recruit h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: .6rem; }
.recruit__copy p { color: rgba(255,255,255,.94); max-width: 52ch; }

/* ==========================================================================
   Contact CTA
   ========================================================================== */
.contactcta__inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: var(--offwhite); border: 1px solid var(--border); border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.contactcta__badge { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); }
.contactcta__badge svg { width: 40px; height: 40px; fill: none; stroke: var(--orange); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contactcta__copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .4rem; }
.contactcta__copy p { color: var(--dark); max-width: 44ch; }
.contactcta__actions { display: grid; gap: .75rem; justify-items: start; }
.contactcta__line { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--charcoal); }
.contactcta__line:hover { color: var(--orange); }
.contactcta__line .ci { display: inline-flex; width: 20px; height: 20px; }
.contactcta__line .ci svg { width: 100%; height: 100%; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 820px) {
  .contactcta__inner { grid-template-columns: 1fr; text-align: left; }
  .contactcta__badge { display: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--charcoal); color: rgba(255,255,255,.66); border-top: 3px solid var(--orange); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.logo--footer .logo__name, .logo--footer .logo__sub { color: #fff; }
.logo--footer .logo__rules i { background: #fff; }
.footer__addr { font-style: normal; margin: 1.1rem 0; font-size: .9rem; line-height: 1.7; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); transition: background .2s; }
.footer__social a:hover { background: var(--orange); }
.footer__social svg { width: 18px; height: 18px; fill: #fff; }

.footer__col h3 { font-family: var(--body); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1.1rem; }
.footer__col a { display: block; padding: .32rem 0; font-size: .92rem; color: rgba(255,255,255,.72); transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__contact p { font-size: .9rem; margin: .5rem 0 1rem; line-height: 1.6; }
.footer__contact .btn { color: #fff; }

.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.25rem; font-size: .8rem; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Motion — reveal enhances an already-visible default
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  /* Hidden initial state applies ONLY once JS confirms it can reveal (.reveal-ready
     on <html>). No JS / headless without the class → content stays visible. */
  .reveal-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
  .reveal-ready [data-reveal].in { opacity: 1; transform: none; }
  .reveal-ready [data-reveal-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
  .reveal-ready [data-reveal-stagger].in > * { opacity: 1; transform: none; }
  .reveal-ready [data-reveal-stagger].in > *:nth-child(2) { transition-delay: .07s; }
  .reveal-ready [data-reveal-stagger].in > *:nth-child(3) { transition-delay: .14s; }
  .reveal-ready [data-reveal-stagger].in > *:nth-child(4) { transition-delay: .21s; }
  .reveal-ready [data-reveal-stagger].in > *:nth-child(5) { transition-delay: .28s; }
  .reveal-ready [data-reveal-stagger].in > *:nth-child(6) { transition-delay: .35s; }

  .hero__copy > * { animation: heroIn .8s var(--ease-out) both; }
  .hero__lead { animation-delay: .08s; }
  .hero__actions { animation-delay: .16s; }
  .hero__facts { animation-delay: .24s; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
