/* ==========================================================================
   ELEVATE — styles.css
   Premium, minimal, editorial, mobile-first.
   ========================================================================== */

:root{
  --bg: #FDFDFC;
  --bg-soft: #F7F7F5;
  --surface: #FFFFFF;
  --text: #12110D;
  --black: #0B0B0A;
  --text-secondary: #6B6964;
  --text-muted: #A3A09A;
  --border: #E5E7EB;
  --line: rgba(18, 17, 13, 0.08);
  --whatsapp: #25D366;
  --whatsapp-glow: rgba(37, 211, 102, 0.38);
  --meta-blue: #0668E1;
  --meta-dark: #1C2B33;
  --error: #C2413B;

  --font: "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; }
ul{ list-style: none; margin: 0; padding: 0; }
p{ margin: 0; }

img, svg{ display: block; max-width: 100%; }

::selection{ background: var(--black); color: var(--bg); }

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

/* ==========================================================================
   LOADER
   ========================================================================== */

.loader{
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  opacity: 1;
  transform: translateY(0);
}

.loader-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: loaderPulse 0.9s ease-in-out infinite;
}

@keyframes loaderPulse{
  0%, 100%{ opacity: 0.4; transform: scale(0.85); }
  50%{ opacity: 1; transform: scale(1); }
}

body.is-loaded .loader{
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

body.is-loading main.hero,
body.is-loading .section,
body.is-loading .footer{
  opacity: 0;
}

main.hero, .section, .footer{
  opacity: 1;
  transition: opacity 0.6s var(--ease-out);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero{
  position: relative;
  height: 100svh;
  min-height: 560px;
  width: 100%;
  background: var(--bg);
  overflow: hidden;
}

.hero-topbar{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 24px;
  z-index: 20;
}

.wordmark{
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.07em;
  color: var(--black);
  line-height: 1;
}

.hero-controls{
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
  display: inline-block;
}

.menu-trigger{
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.menu-trigger:hover{
  background: var(--bg-soft);
  transform: scale(1.04);
}

.grid-dots{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.grid-dots i{
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--black);
  display: block;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.menu-trigger:hover .grid-dots i{
  transform: scale(1.3);
}

body.menu-open .menu-trigger .grid-dots i{
  background: var(--text-muted);
}

/* ORBIT / HERO CENTER */

.hero-orbit{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-line{
  max-width: 320px;
  text-align: center;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--text);
  position: relative;
  z-index: 5;
  padding: 0 12px;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}

@media (min-width: 860px){
  .hero-line{
    max-width: 520px;
    font-size: 24px;
  }
}

/* ORBIT BUBBLES */

.orbit-bubble{
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 9999px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  transform-origin: center;
  will-change: transform;
  transition: opacity 0.5s var(--ease-out), filter 0.5s var(--ease-out), scale 0.35s var(--ease-out), border-color 0.3s var(--ease-out);
  padding: 0;
  z-index: 4;
}

.orbit-bubble:hover,
.orbit-bubble:focus-visible{
  border-color: rgba(18,17,13,0.18);
}

.orbit-bubble:hover{
  scale: 1.05;
}

.orbit-bubble .bubble-art{
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s var(--ease-out);
}

.orbit-bubble .bubble-art svg{
  width: 100%;
  height: 100%;
}

.bubble-tooltip{
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 9999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  z-index: 6;
}

.orbit-bubble:hover .bubble-tooltip,
.orbit-bubble:focus-visible .bubble-tooltip{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px){
  .bubble-tooltip{ display: none; }
}

/* bubble sizes - mobile default */
.orbit-bubble[data-service="website-creation"]{ width: 96px; height: 96px; }
.orbit-bubble[data-service="google-business-profile"]{ width: 82px; height: 82px; }
.orbit-bubble[data-service="meta-ads"]{ width: 86px; height: 86px; }
.orbit-bubble[data-service="local-seo"]{ width: 76px; height: 76px; }
.orbit-bubble[data-service="whatsapp-lead-automation"]{ width: 100px; height: 100px; }
.orbit-bubble[data-service="content-system"]{ width: 78px; height: 78px; }
.orbit-bubble[data-service="lead-capture-page"]{ width: 84px; height: 84px; }
.orbit-bubble[data-service="full-elevate-build"]{ width: 108px; height: 108px; }

@media (min-width: 860px){
  .orbit-bubble[data-service="website-creation"]{ width: 150px; height: 150px; }
  .orbit-bubble[data-service="google-business-profile"]{ width: 120px; height: 120px; }
  .orbit-bubble[data-service="meta-ads"]{ width: 130px; height: 130px; }
  .orbit-bubble[data-service="local-seo"]{ width: 112px; height: 112px; }
  .orbit-bubble[data-service="whatsapp-lead-automation"]{ width: 150px; height: 150px; }
  .orbit-bubble[data-service="content-system"]{ width: 118px; height: 118px; }
  .orbit-bubble[data-service="lead-capture-page"]{ width: 126px; height: 126px; }
  .orbit-bubble[data-service="full-elevate-build"]{ width: 165px; height: 165px; }
}

/* soften bubbles + hero when menu/service open */
body.menu-open .orbit-bubble,
body.service-open .orbit-bubble{
  opacity: 0.15;
  filter: blur(2px);
  pointer-events: none;
}

body.menu-open .hero-line,
body.service-open .hero-line{
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(2px);
}

.orbit-bubble.is-selected{
  opacity: 0 !important;
}

/* WHATSAPP CTA */

.whatsapp-cta{
  position: absolute;
  left: 24px;
  bottom: 84px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: #fff;
  padding: 12px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease-out), opacity 0.4s var(--ease-out);
}

.whatsapp-cta:hover{ transform: translateY(-2px); }

.whatsapp-glow{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 18px var(--whatsapp-glow);
  animation: whatsappPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes whatsappPulse{
  0%, 100%{ box-shadow: 0 0 10px var(--whatsapp-glow); }
  50%{ box-shadow: 0 0 20px var(--whatsapp-glow); }
}

body.menu-open .whatsapp-cta,
body.service-open .whatsapp-cta{
  opacity: 0;
  pointer-events: none;
}

.whatsapp-cta-inline{
  position: static;
  display: inline-flex;
}

/* DOTTED INDICATOR */

.dotted-indicator{
  position: absolute;
  right: 20px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  z-index: 10;
  opacity: 0.8;
  animation: dottedSpin 22s linear infinite;
}

@keyframes dottedSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

@media (min-width: 860px){
  .dotted-indicator{ width: 56px; height: 56px; right: 32px; bottom: 40px; }
}

/* MOBILE BROWSER PILL */

.browser-pill{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 9999px;
  font-size: 12px;
  color: var(--text-secondary);
}

.pill-icon-left{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pill-icon-left i{
  width: 12px;
  height: 1.4px;
  background: var(--text-muted);
  display: block;
  border-radius: 1px;
}

.pill-icon-right{
  font-size: 13px;
  color: var(--text-muted);
}

@media (min-width: 860px){
  .browser-pill{ opacity: 0.55; }
}

/* ==========================================================================
   MENU PANEL
   ========================================================================== */

.menu-panel{
  position: fixed;
  top: 20px;
  right: 20px;
  width: min(320px, calc(100vw - 40px));
  background: var(--black);
  color: #fff;
  border-radius: 22px;
  z-index: 100;
  padding: 28px 24px;
  transform-origin: top right;
  transform: scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.35s var(--ease-out);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

body.menu-open .menu-panel{
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.menu-list{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-link{
  display: block;
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 8px 0;
  color: #fff;
  transition: opacity 0.2s var(--ease-out);
}

.menu-link:hover{ opacity: 0.6; }

.menu-list-secondary{
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.menu-link-small{
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  transition: color 0.2s var(--ease-out);
}

.menu-link-small:hover{ color: #fff; }

/* ==========================================================================
   SERVICE VIEW
   ========================================================================== */

.service-view{
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  padding: 90px 24px 80px;
}

body.service-open .service-view{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-back{
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

body.service-open .service-back{
  opacity: 1;
  pointer-events: auto;
}

.service-back:hover{ transform: translateX(-2px); }

.service-content{
  max-width: 1080px;
  margin: 0 auto;
}

.service-transition-clone{
  position: fixed;
  z-index: 200;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  pointer-events: none;
  transition: all 0.9s var(--ease-out);
}

.service-transition-clone svg{ width: 100%; height: 100%; }

.service-hero{
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.service-visual-wrap{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.service-visual-wrap svg{ width: 78%; height: 78%; }

.service-eyebrow{
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.service-title{
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.service-positioning{
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 620px;
}

.service-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.btn:hover{ transform: translateY(-2px); }

.btn-black{ background: var(--black); color: #fff; }
.btn-outline{ background: transparent; color: var(--text); border-color: var(--border); }

.service-sections{
  display: grid;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.service-block h3{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-block p, .service-block li{
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.service-block ul{
  display: grid;
  gap: 8px;
}

.service-block li{
  position: relative;
  padding-left: 18px;
}

.service-block li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
}

.service-plan-match{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

@media (min-width: 900px){
  .service-hero{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .service-sections{
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */

.section{
  padding: 96px 24px;
  background: var(--bg);
}

.section.soft{ background: var(--bg-soft); }

.section-inner{
  max-width: 1080px;
  margin: 0 auto;
}

.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.eyebrow{
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.section-title{
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.section-intro{
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 56px;
}

/* PROCESS */

.process-grid{
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.process-block{
  background: var(--surface);
  padding: 32px 28px;
}

.process-day{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.process-text{
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 760px){
  .process-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* SERVICES LIST */

.services-list{
  display: grid;
  border-top: 1px solid var(--border);
}

.service-row{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  background: transparent;
  border-left: none;
  border-right: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.25s var(--ease-out);
}

.service-row:hover{ background: rgba(18,17,13,0.02); }

.service-row-dot{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.service-row-dot svg{ width: 100%; height: 100%; }

.service-row-text{ flex: 1; }

.service-row-title{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.service-row-summary{
  font-size: 14px;
  color: var(--text-secondary);
}

.service-row-arrow{
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease-out);
}

.service-row:hover .service-row-arrow{ transform: translateX(4px); }

/* PRICING */

.plans-grid{
  display: grid;
  gap: 20px;
}

@media (min-width: 860px){
  .plans-grid{ grid-template-columns: repeat(3, 1fr); }
}

.plan-card{
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-card.is-featured{
  border-color: var(--black);
}

.plan-name{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.plan-role{
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-description{
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.plan-best-for{
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 12px;
}

.plan-includes{
  display: grid;
  gap: 7px;
  margin: 4px 0;
}

.plan-includes li{
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 16px;
}

.plan-includes li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
}

.plan-cta{
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 9999px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-out);
}

.plan-cta:hover{ transform: translateY(-2px); }

/* APPROACH */

.approach-grid{
  display: grid;
  gap: 28px;
}

@media (min-width: 760px){
  .approach-grid{ grid-template-columns: repeat(3, 1fr); }
}

.approach-block{
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.approach-name{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.approach-text{
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* BOOK A CALL */

.book-grid{
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px){
  .book-grid{ grid-template-columns: 260px 1fr; }
}

.book-form{
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.form-row{
  display: grid;
  gap: 6px;
}

.form-row label{
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-row input,
.form-row select,
.form-row textarea{
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--black);
}

.form-submit{
  justify-self: start;
  background: var(--black);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out);
}

.form-submit:hover{ transform: translateY(-2px); }

.form-success{
  font-size: 14px;
  color: var(--whatsapp);
  font-weight: 500;
  min-height: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer{
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 72px 24px 32px;
}

.footer-inner{
  max-width: 1080px;
  margin: 0 auto;
}

.footer-top{ margin-bottom: 44px; }

.footer-wordmark{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 8px;
}

.footer-line{
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}

.footer-columns{
  display: grid;
  gap: 32px;
  margin-bottom: 44px;
}

@media (min-width: 640px){
  .footer-columns{ grid-template-columns: repeat(2, 1fr); }
}

.footer-heading{
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col p{
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a:hover{ color: #fff; }

.footer-small{
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
